From a3d43ead87a742e6c1ffa24c9528608cc68c7e52 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Tue, 14 May 2013 11:50:28 +0200 Subject: 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 --- src/io.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/io.c') diff --git a/src/io.c b/src/io.c index 0f5d711..7448227 100644 --- a/src/io.c +++ b/src/io.c @@ -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); } -- cgit v1.2.3-54-g00ecf