]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* src/system.h (emit_bug_reporting_address): Remove periods.
authorJim Meyering <meyering@redhat.com>
Sun, 1 Feb 2009 19:23:06 +0000 (20:23 +0100)
committerJim Meyering <meyering@redhat.com>
Mon, 2 Feb 2009 08:37:48 +0000 (09:37 +0100)
src/system.h

index fb864985fb46eabeae8406f98a50ea10f358f685..2f6249b1e9e436c88ea6766cacf98f7e523a2da4 100644 (file)
@@ -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: <http://www.gnu.org/software/%s/>.\n"),
+  printf (_("%s home page: <http://www.gnu.org/software/%s/>\n"),
          PACKAGE_NAME, PACKAGE);
-  fputs (_("General help using GNU software: <http://www.gnu.org/gethelp/>.\n"),
+  fputs (_("General help using GNU software: <http://www.gnu.org/gethelp/>\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 "
-             "<http://translationproject.org/team/>.\n"),
+             "<http://translationproject.org/team/>\n"),
            last_component (program_name));
 }