summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-02-01 20:23:06 +0100
committerJim Meyering <meyering@redhat.com>2009-02-02 09:37:48 +0100
commit6b8578af5ecbd2c8d6b04832f1a36501b47cd6c1 (patch)
treece1bc93958a94ec2a3a54f69e83945ebbb84719c /src
parent04d49874a23f40e38ba4f302b5b8025f43cba3c5 (diff)
downloadcoreutils-6b8578af5ecbd2c8d6b04832f1a36501b47cd6c1.tar.xz
* src/system.h (emit_bug_reporting_address): Remove periods.
Diffstat (limited to 'src')
-rw-r--r--src/system.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/system.h b/src/system.h
index fb864985f..2f6249b1e 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: <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));
}