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/calcurse.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/calcurse.c')
-rw-r--r-- | src/calcurse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/calcurse.c b/src/calcurse.c index 7ab9c6a..0247ba0 100644 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -115,7 +115,7 @@ static inline void key_view_item(void) day_popup_item(day_get_item(ui_day_hilt())); else if ((wins_slctd() == TOD) && (ui_todo_hilt() != 0)) item_in_popup(NULL, NULL, ui_todo_saved_mesg(), - _("To do :")); + _("TODO:")); wins_update(FLAG_ALL); } @@ -476,7 +476,7 @@ static inline void key_generic_quit(void) note_gc(); if (conf.confirm_quit) { - if (status_ask_bool(_("Do you really want to quit ?")) == + if (status_ask_bool(_("Do you really want to quit?")) == 1) { exit_calcurse(EXIT_SUCCESS); } else { |