From c34e15ea482394866837f4c080474abdf8440d7e Mon Sep 17 00:00:00 2001 From: Stephen Watson Date: Wed, 25 Jan 2006 19:01:39 +0000 Subject: [PATCH] r4323: Make sure all the help message is translatable (Stephen Watson, reported by Andras Mohari). --- ROX-Filer/Help/Changes | 5 +++++ ROX-Filer/src/main.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ROX-Filer/Help/Changes b/ROX-Filer/Help/Changes index 2ba01fbf..219f48b9 100644 --- a/ROX-Filer/Help/Changes +++ b/ROX-Filer/Help/Changes @@ -2,6 +2,11 @@ A RISC OS-like filer for X by Thomas Leonard +25-Jan-2006 +~~~~~~~~~~~ +Make sure all the help message is translatable (Stephen Watson, reported +by Andras Mohari). + 10-Jan-2006 ~~~~~~~~~~~ Use a monospace font for the size and permissions columsn in the list view diff --git a/ROX-Filer/src/main.c b/ROX-Filer/src/main.c index 8a8ae999..c0eb0175 100644 --- a/ROX-Filer/src/main.c +++ b/ROX-Filer/src/main.c @@ -133,7 +133,7 @@ GtkTooltips *tooltips = NULL; " -u, --user show user name in each window \n" \ " -v, --version display the version information and exit\n" \ " -x, --examine=FILE FILE has changed - re-examine it\n" \ - "\nReport bugs to " BUGS_TO ".\n" \ + "\nReport bugs to %s.\n" \ "Home page (including updated versions): http://rox.sourceforge.net/\n") #define SHORT_OPS "c:d:t:b:l:r:B:op:s:hvnux:m:D:RS" @@ -400,7 +400,7 @@ int main(int argc, char **argv) show_features(); return EXIT_SUCCESS; case 'h': - g_print("%s", _(HELP)); + g_print(_(HELP), BUGS_TO); g_print("%s", _(SHORT_ONLY_WARNING)); return EXIT_SUCCESS; case 'D': -- 2.11.4.GIT