From: Jim Meyering Date: Sun, 1 Feb 2009 19:23:06 +0000 (+0100) Subject: * src/system.h (emit_bug_reporting_address): Remove periods. X-Git-Tag: v7.1~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6b8578af5ecbd2c8d6b04832f1a36501b47cd6c1;p=thirdparty%2Fcoreutils.git * src/system.h (emit_bug_reporting_address): Remove periods. --- diff --git a/src/system.h b/src/system.h index fb864985fb..2f6249b1e9 100644 --- a/src/system.h +++ b/src/system.h @@ -619,12 +619,12 @@ ptr_align (void const *ptr, size_t alignment) static inline void emit_bug_reporting_address (void) { - printf (_("\nReport %s bugs to <%s>.\n"), last_component (program_name), + printf (_("\nReport %s bugs to %s\n"), last_component (program_name), PACKAGE_BUGREPORT); /* FIXME 2010: use AC_PACKAGE_URL once we require autoconf-2.64 */ - printf (_("%s home page: .\n"), + printf (_("%s home page: \n"), PACKAGE_NAME, PACKAGE); - fputs (_("General help using GNU software: .\n"), + fputs (_("General help using GNU software: \n"), stdout); /* TRANSLATORS: Replace LANG_CODE in this URL with your language code @@ -633,7 +633,7 @@ emit_bug_reporting_address (void) the entire URL with your translation team's email address. */ if (hard_locale (LC_MESSAGES)) printf (_("Report %s translation bugs to " - ".\n"), + "\n"), last_component (program_name)); }