diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-05-14 11:50:28 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-05-14 12:03:04 +0200 |
commit | a3d43ead87a742e6c1ffa24c9528608cc68c7e52 (patch) | |
tree | b2bed4578c8c44c961517a007061fd1da6018ec5 /src/day.c | |
parent | 616677fb347607a84d4879d78d0a2dc8e1bc3f91 (diff) | |
download | calcurse-a3d43ead87a742e6c1ffa24c9528608cc68c7e52.zip |
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>
Diffstat (limited to 'src/day.c')
-rw-r--r-- | src/day.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |