diff options
author | Pádraig Brady <P@draigBrady.com> | 2009-02-24 09:47:00 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2009-02-24 11:58:01 +0000 |
commit | ca4e48f822c41df7b9d269f8d3391915b6a40850 (patch) | |
tree | 154217e455f75119aeed128f40f016de024a5b1b /src | |
parent | 3a8d16800cd645113ae9f22461ee35b1cc897f72 (diff) | |
download | coreutils-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.
Diffstat (limited to 'src')
-rw-r--r-- | src/system.h | 16 |
1 files changed, 9 insertions, 7 deletions
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" |