]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Ensure comment for translators is included in po file
authorPádraig Brady <P@draigBrady.com>
Tue, 24 Feb 2009 09:47:00 +0000 (09:47 +0000)
committerPádraig Brady <P@draigBrady.com>
Tue, 24 Feb 2009 11:58:01 +0000 (11:58 +0000)
Issue reported by Göran Uddeborg.

* src/system.h: Move the translator comment adjacent
to the translated string.
* THANKS: Update Göran's email address.

THANKS
src/system.h

diff --git a/THANKS b/THANKS
index 9d25aafbc7ac610fdd9a69dd724fbd51bfc866c3..5c25321d79b1ab14f3cc419bf7b1a3760c7e7d57 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -201,7 +201,7 @@ Geoff Whale                         geoffw@cse.unsw.EDU.AU
 Gerald Pfeifer                      gerald@pfeifer.com
 Gerhard Poul                        gpoul@gnu.org
 Germano Leichsenring                germano@jedi.cs.kobe-u.ac.jp
-Göran Uddeborg                      goeran@uddeborg.pp.se
+Göran Uddeborg                      goeran@uddeborg.se
 Guochun Shi                         gshi@ncsa.uiuc.edu
 GOTO Masanori                       gotom@debian.or.jp
 Greg Louis                          glouis@dynamicro.on.ca
index 2f6249b1e9e436c88ea6766cacf98f7e523a2da4..990be0c693f27ce5475bbe7138f154780242e096 100644 (file)
@@ -627,14 +627,16 @@ emit_bug_reporting_address (void)
   fputs (_("General help using GNU software: <http://www.gnu.org/gethelp/>\n"),
         stdout);
 
-  /* TRANSLATORS: Replace LANG_CODE in this URL with your language code
-     <http://translationproject.org/team/LANG_CODE.html> to form one of
-     the URLs at http://translationproject.org/team/.  Otherwise, replace
-     the entire URL with your translation team's email address.  */
   if (hard_locale (LC_MESSAGES))
-    printf (_("Report %s translation bugs to "
-             "<http://translationproject.org/team/>\n"),
-           last_component (program_name));
+    {
+      /* TRANSLATORS: Replace LANG_CODE in this URL with your language code
+        <http://translationproject.org/team/LANG_CODE.html> to form one of
+        the URLs at http://translationproject.org/team/.  Otherwise, replace
+        the entire URL with your translation team's email address.  */
+      printf (_("Report %s translation bugs to "
+               "<http://translationproject.org/team/>\n"),
+               last_component (program_name));
+    }
 }
 
 #include "inttostr.h"