Wrap a string with _ for translation (PR translation/90274).
authorMartin Liska <mliska@suse.cz>
Tue, 30 Apr 2019 08:33:29 +0000 (10:33 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Tue, 30 Apr 2019 08:33:29 +0000 (08:33 +0000)
2019-04-30  Martin Liska  <mliska@suse.cz>

PR translation/90274
* opts.c (print_filtered_help): Wrap string in _(...).

From-SVN: r270675

gcc/ChangeLog
gcc/opts.c

index 99c54020f405ce1e6046f9548fe2077aa10feca3..2604ffa9d6f3e61c348ada0b27f7edeea64310e7 100644 (file)
@@ -1,3 +1,8 @@
+2019-04-30  Martin Liska  <mliska@suse.cz>
+
+       PR translation/90274
+       * opts.c (print_filtered_help): Wrap string in _(...).
+
 2019-04-30  Bin Cheng  <bin.cheng@linux.alibaba.com>
 
        PR tree-optimization/90240
index 02f6b4656e18be8cdee33a91103ccf25a5c936a2..6d6ff19de2d96b474c98f2b07f9b17c76ec47266 100644 (file)
@@ -1578,7 +1578,8 @@ print_filtered_help (unsigned int include_flags,
   for (unsigned i = 0; i < help_tuples.length (); i++)
     {
       const struct cl_option *option = cl_options + help_tuples[i].m_code;
-      printf ("  Known valid arguments for %s option:\n   ", option->opt_text);
+      printf (_("  Known valid arguments for %s option:\n   "),
+             option->opt_text);
       for (unsigned j = 0; j < help_tuples[i].m_values.length (); j++)
        printf (" %s", help_tuples[i].m_values[j]);
       printf ("\n\n");