]> git.wh0rd.org Git - nano.git/commitdiff
Adding a translator comment for the --help output.
authorBenno Schulenberg <bensberg@justemail.net>
Wed, 28 May 2014 15:44:11 +0000 (15:44 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Wed, 28 May 2014 15:44:11 +0000 (15:44 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4924 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.c

index cd4b45704a75a5676a34f685312e458c9d443b7d..b5de8dd6340d3bc86de8affbcb196109fc9ad23c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,7 @@
        the wrong function was used in the relevant function-list item:
        'do_insertfile_void' instead of the unintuitive 'ext_cmd_void'.
        * src/browser (filesearch_init): Remove an unneeded format specifier.
+       * src/nano.c (usage): Add a translator comment for the --help output.
 
 2014-05-27  Chris Allegretta <chrisa@asty.org>
        * src/winio.c (edit_refresh): wredrawln() is not supported under
index c4a2b651df95402abb56174cd8e563c476f518ee..d495ab396b6f72eea9385da024418fe9d4543969 100644 (file)
@@ -826,7 +826,7 @@ void print_opt_full(const char *shortflag
     printf("\n");
 }
 
-/* Explain how to properly use nano and its command line options. */
+/* Explain how to properly use nano and its command-line options. */
 void usage(void)
 {
     printf(_("Usage: nano [OPTIONS] [[+LINE,COLUMN] FILE]...\n\n"));
@@ -838,6 +838,8 @@ void usage(void)
 #endif
        );
     print_opt(_("+LINE,COLUMN"), "",
+       /* TRANSLATORS: The next forty or so strings are option descriptions
+        * for the --help output.  Try to keep them at most 40 characters. */
        N_("Start at line LINE, column COLUMN"));
 #ifndef NANO_TINY
     print_opt("-A", "--smarthome", N_("Enable smart home key"));