summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2009-02-24 09:47:00 +0000
committerPádraig Brady <P@draigBrady.com>2009-02-24 11:58:01 +0000
commitca4e48f822c41df7b9d269f8d3391915b6a40850 (patch)
tree154217e455f75119aeed128f40f016de024a5b1b
parent3a8d16800cd645113ae9f22461ee35b1cc897f72 (diff)
downloadcoreutils-ca4e48f822c41df7b9d269f8d3391915b6a40850.tar.xz
Ensure comment for translators is included in po file
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.
-rw-r--r--THANKS2
-rw-r--r--src/system.h16
2 files changed, 10 insertions, 8 deletions
diff --git a/THANKS b/THANKS
index 9d25aafbc..5c25321d7 100644
--- 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
diff --git a/src/system.h b/src/system.h
index 2f6249b1e..990be0c69 100644
--- a/src/system.h
+++ b/src/system.h
@@ -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"