Fix a couple of translatable strings

* Remove space before punctuation.
* Use "TODO" instead of "ToDo".
* Strip some formats to make sure lines are <=80 characters wide.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2013-05-14 11:50:28 +02:00
parent 616677fb34
commit a3d43ead87
7 changed files with 28 additions and 28 deletions

View File

@@ -540,7 +540,7 @@ void day_popup_item(struct day_item *day)
{
if (day->type == EVNT || day->type == RECUR_EVNT) {
item_in_popup(NULL, NULL, day_item_get_mesg(day),
_("Event :"));
_("Event:"));
} else if (day->type == APPT || day->type == RECUR_APPT) {
char a_st[100], a_end[100];
@@ -553,7 +553,7 @@ void day_popup_item(struct day_item *day)
a_st, a_end);
item_in_popup(a_st, a_end, day_item_get_mesg(day),
_("Appointment :"));
_("Appointment:"));
} else {
EXIT(_("unknown item type"));
/* NOTREACHED */