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/io.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/io.c')
-rw-r--r-- | src/io.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -269,7 +269,7 @@ void io_init(const char *cfile, const char *datadir) /* check if the file exists, otherwise create it */ data_file = fopen(path_apts, "r"); if (data_file == NULL) { - printf(_("%s does not exist, create it now [y or n] ? "), + printf(_("%s does not exist, create it now [y/n]? "), path_apts); ch = getchar(); switch (ch) { @@ -839,7 +839,7 @@ void io_load_keys(const char *pager) file_close(log->fd, __FILE_POS__); if (skipped > 0) { const char *view_log = - _("There were some errors when loading keys file, see log file ?"); + _("There were some errors when loading keys file, see log file?"); io_log_display(log, view_log, pager); } @@ -1106,7 +1106,7 @@ void io_import_data(enum import_type type, const char *stream_name) file_close(log->fd, __FILE_POS__); if (stats.skipped > 0) { const char *view_log = - _("Some items could not be imported, see log file ?"); + _("Some items could not be imported, see log file?"); io_log_display(log, view_log, conf.pager); } |