[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commits] r24307 - in /branches/eglibc-2_18: ./ libc/ libc/nptl/ libc/po/ libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/np...



Author: joseph
Date: Fri Oct 18 14:35:25 2013
New Revision: 24307

Log:
Merge changes between r23928 and r24306 from /fsf/glibc-2_18-branch.

Modified:
    branches/eglibc-2_18/   (props changed)
    branches/eglibc-2_18/libc/ChangeLog
    branches/eglibc-2_18/libc/NEWS
    branches/eglibc-2_18/libc/nptl/ChangeLog
    branches/eglibc-2_18/libc/nptl/pthread_cond_broadcast.c
    branches/eglibc-2_18/libc/nptl/pthread_cond_signal.c
    branches/eglibc-2_18/libc/po/zh_TW.po
    branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/c++-types.data   (props changed)
    branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nptl/localplt.data   (props changed)
    branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/c++-types.data   (props changed)
    branches/eglibc-2_18/libc/ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/single/nptl/localplt.data   (props changed)

Propchange: branches/eglibc-2_18/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Oct 18 14:35:25 2013
@@ -1,2 +1,2 @@
-/fsf/glibc-2_18-branch:23787-23928
+/fsf/glibc-2_18-branch:23787-24306
 /fsf/trunk:15224-23715

Modified: branches/eglibc-2_18/libc/ChangeLog
==============================================================================
--- branches/eglibc-2_18/libc/ChangeLog (original)
+++ branches/eglibc-2_18/libc/ChangeLog Fri Oct 18 14:35:25 2013
@@ -1,3 +1,8 @@
+2013-09-06  David S. Miller  <davem@xxxxxxxxxxxxx>
+
+	* po/zh_TW.po: Update Chinese (traditional) translation from
+	translation project.
+
 2013-08-22  David S. Miller  <davem@xxxxxxxxxxxxx>
 
 	* po/ca.po: Update Catalan translation from translation project.

Modified: branches/eglibc-2_18/libc/NEWS
==============================================================================
--- branches/eglibc-2_18/libc/NEWS (original)
+++ branches/eglibc-2_18/libc/NEWS Fri Oct 18 14:35:25 2013
@@ -9,7 +9,7 @@
 
 * The following bugs are resolved with this release:
 
-  15909.
+  15909, 15996.
 
 Version 2.18
 

Modified: branches/eglibc-2_18/libc/nptl/ChangeLog
==============================================================================
--- branches/eglibc-2_18/libc/nptl/ChangeLog (original)
+++ branches/eglibc-2_18/libc/nptl/ChangeLog Fri Oct 18 14:35:25 2013
@@ -1,3 +1,12 @@
+2013-10-03  Siddhesh Poyarekar  <siddhesh@xxxxxxxxxx>
+
+	[BZ #15996]
+	* pthread_cond_broadcast.c (__pthread_cond_broadcast)
+	[lll_futex_cmp_requeue_pi && __ASSUME_REQUEUE_PI]: Use
+	USE_REQUEUE_PI.
+	* pthread_cond_signal.c (__pthread_cond_signal)
+	[lll_futex_cmd_requeue_pi && __ASSUME_REQUEUE_PI]: Likewise.
+
 2013-07-23  David S. Miller  <davem@xxxxxxxxxxxxx>
 
 	* tst-cancel4.c (WRITE_BUFFER_SIZE): Adjust comment.

Modified: branches/eglibc-2_18/libc/nptl/pthread_cond_broadcast.c
==============================================================================
--- branches/eglibc-2_18/libc/nptl/pthread_cond_broadcast.c (original)
+++ branches/eglibc-2_18/libc/nptl/pthread_cond_broadcast.c Fri Oct 18 14:35:25 2013
@@ -63,10 +63,7 @@
 
 #if (defined lll_futex_cmp_requeue_pi \
      && defined __ASSUME_REQUEUE_PI)
-      int pi_flag = PTHREAD_MUTEX_PRIO_INHERIT_NP | PTHREAD_MUTEX_ROBUST_NP;
-      pi_flag &= mut->__data.__kind;
-
-      if (pi_flag == PTHREAD_MUTEX_PRIO_INHERIT_NP)
+      if (USE_REQUEUE_PI (mut))
 	{
 	  if (lll_futex_cmp_requeue_pi (&cond->__data.__futex, 1, INT_MAX,
 					&mut->__data.__lock, futex_val,

Modified: branches/eglibc-2_18/libc/nptl/pthread_cond_signal.c
==============================================================================
--- branches/eglibc-2_18/libc/nptl/pthread_cond_signal.c (original)
+++ branches/eglibc-2_18/libc/nptl/pthread_cond_signal.c Fri Oct 18 14:35:25 2013
@@ -49,14 +49,9 @@
 
 #if (defined lll_futex_cmp_requeue_pi \
      && defined __ASSUME_REQUEUE_PI)
-      int pi_flag = PTHREAD_MUTEX_PRIO_INHERIT_NP | PTHREAD_MUTEX_ROBUST_NP;
       pthread_mutex_t *mut = cond->__data.__mutex;
 
-      /* Do not use requeue for pshared condvars.  */
-      if (mut != (void *) ~0l)
-	pi_flag &= mut->__data.__kind;
-
-      if (__builtin_expect (pi_flag == PTHREAD_MUTEX_PRIO_INHERIT_NP, 0)
+      if (USE_REQUEUE_PI (mut)
 	/* This can only really fail with a ENOSYS, since nobody can modify
 	   futex while we have the cond_lock.  */
 	  && lll_futex_cmp_requeue_pi (&cond->__data.__futex, 1, 0,

Modified: branches/eglibc-2_18/libc/po/zh_TW.po
==============================================================================
--- branches/eglibc-2_18/libc/po/zh_TW.po (original)
+++ branches/eglibc-2_18/libc/po/zh_TW.po Fri Oct 18 14:35:25 2013
@@ -8,9 +8,9 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: libc 2.17-pre1\n"
-"POT-Creation-Date: 2012-12-07 15:10-0500\n"
-"PO-Revision-Date: 2013-06-11 08:59+0200\n"
+"Project-Id-Version: libc 2.17.90.20130724\n"
+"POT-Creation-Date: 2013-07-24 23:29-0700\n"
+"PO-Revision-Date: 2013-09-03 13:39+0800\n"
 "Last-Translator: Wei-Lun Chao <bluebat@xxxxxxxxxxxxxx>\n"
 "Language-Team: Chinese (traditional) <zh-l10n@xxxxxxxxxxxx>\n"
 "Language: zh_TW\n"
@@ -68,32 +68,42 @@
 msgid "Give a short usage message"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: argp/argp-parse.c:103
+#: argp/argp-parse.c:103 catgets/gencat.c:109 catgets/gencat.c:113
+#: iconv/iconv_prog.c:60 iconv/iconv_prog.c:61 nscd/nscd.c:115
+#: nss/makedb.c:120
+msgid "NAME"
+msgstr "ÃÂÂÃÂÂ"
+
+#: argp/argp-parse.c:104
 msgid "Set the program name"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
 #: argp/argp-parse.c:105
+msgid "SECS"
+msgstr "ÃÂÂÃÂÂ"
+
+#: argp/argp-parse.c:106
 msgid "Hang for SECS seconds (default 3600)"
 msgstr "SECS ÃÂÂÃÂÂÃÂÂÃÂÂ (ÃÂÂÃÂÂÃÂÂ 3600)"
 
-#: argp/argp-parse.c:166
+#: argp/argp-parse.c:167
 msgid "Print program version"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: argp/argp-parse.c:182
+#: argp/argp-parse.c:183
 msgid "(PROGRAM ERROR) No version known!?"
 msgstr "(ÃÂÂÃÂÂÃÂÂÃÂÂ) ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ!?"
 
-#: argp/argp-parse.c:622
+#: argp/argp-parse.c:623
 #, c-format
 msgid "%s: Too many arguments\n"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ\n"
 
-#: argp/argp-parse.c:765
+#: argp/argp-parse.c:766
 msgid "(PROGRAM ERROR) Option should have been recognized!?"
 msgstr "(ÃÂÂÃÂÂÃÂÂÃÂÂ) ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ!?"
 
-#: assert/assert-perr.c:36
+#: assert/assert-perr.c:35
 #, c-format
 msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n"
 msgstr "%s%s%s:%u: %s%sÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ: %sÃÂÂ\n"
@@ -107,10 +117,6 @@
 "%s%s%s:%uÃÂÂ%s%sÃÂÂÃÂÂÃÂÂ%sÃÂÂÃÂÂÃÂÂÃÂÂ\n"
 "%n"
 
-#: catgets/gencat.c:109 catgets/gencat.c:113 nscd/nscd.c:115 nss/makedb.c:119
-msgid "NAME"
-msgstr "ÃÂÂÃÂÂ"
-
 #: catgets/gencat.c:110
 msgid "Create C header file NAME containing symbol definitions"
 msgstr "ÃÂÂÃÂÂÃÂÂ C ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
@@ -119,7 +125,7 @@
 msgid "Do not use existing catalog, force new output file"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ catalog, ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:113 nss/makedb.c:119
+#: catgets/gencat.c:113 nss/makedb.c:120
 msgid "Write output to file NAME"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ NAME ÃÂÂ"
 
@@ -139,11 +145,11 @@
 "-o ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ [ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ]...\n"
 "[ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ [ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ]...]"
 
-#: catgets/gencat.c:235 debug/pcprofiledump.c:208 elf/ldconfig.c:302
-#: elf/pldd.c:222 elf/sln.c:85 elf/sprof.c:371 iconv/iconv_prog.c:408
-#: iconv/iconvconfig.c:383 locale/programs/locale.c:279
-#: locale/programs/localedef.c:363 login/programs/pt_chown.c:88
-#: malloc/memusagestat.c:536 nscd/nscd.c:459 nss/getent.c:965 nss/makedb.c:371
+#: catgets/gencat.c:229 debug/pcprofiledump.c:209 elf/ldconfig.c:307
+#: elf/pldd.c:219 elf/sln.c:85 elf/sprof.c:372 iconv/iconv_prog.c:408
+#: iconv/iconvconfig.c:379 locale/programs/locale.c:277
+#: locale/programs/localedef.c:364 login/programs/pt_chown.c:88
+#: malloc/memusagestat.c:563 nscd/nscd.c:450 nss/getent.c:965 nss/makedb.c:369
 #: posix/getconf.c:1121 sunrpc/rpcinfo.c:691
 #: sysdeps/unix/sysv/linux/lddlibc4.c:61
 #, c-format
@@ -154,12 +160,12 @@
 "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ\n"
 "%sÃÂÂ\n"
 
-#: catgets/gencat.c:251 debug/pcprofiledump.c:224 debug/xtrace.sh:64
-#: elf/ldconfig.c:318 elf/ldd.bash.in:38 elf/pldd.c:238 elf/sotruss.ksh:75
-#: elf/sprof.c:388 iconv/iconv_prog.c:425 iconv/iconvconfig.c:400
-#: locale/programs/locale.c:296 locale/programs/localedef.c:389
+#: catgets/gencat.c:245 debug/pcprofiledump.c:225 debug/xtrace.sh:64
+#: elf/ldconfig.c:323 elf/ldd.bash.in:38 elf/pldd.c:235 elf/sotruss.ksh:75
+#: elf/sprof.c:389 iconv/iconv_prog.c:425 iconv/iconvconfig.c:396
+#: locale/programs/locale.c:294 locale/programs/localedef.c:390
 #: login/programs/pt_chown.c:62 malloc/memusage.sh:71
-#: malloc/memusagestat.c:552 nscd/nscd.c:475 nss/getent.c:86 nss/makedb.c:387
+#: malloc/memusagestat.c:579 nscd/nscd.c:466 nss/getent.c:86 nss/makedb.c:385
 #: posix/getconf.c:1103 sysdeps/unix/sysv/linux/lddlibc4.c:68
 #, c-format
 msgid ""
@@ -168,126 +174,126 @@
 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
 msgstr ""
 "ÃÂÂÃÂÂÃÂÂÃÂÂ (C) %s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ\n"
-"ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ\n"
+"ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ\n"
 "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ\n"
 
-#: catgets/gencat.c:256 debug/pcprofiledump.c:229 debug/xtrace.sh:68
-#: elf/ldconfig.c:323 elf/pldd.c:243 elf/sprof.c:394 iconv/iconv_prog.c:430
-#: iconv/iconvconfig.c:405 locale/programs/locale.c:301
-#: locale/programs/localedef.c:394 malloc/memusage.sh:75
-#: malloc/memusagestat.c:557 nscd/nscd.c:480 nss/getent.c:91 nss/makedb.c:392
+#: catgets/gencat.c:250 debug/pcprofiledump.c:230 debug/xtrace.sh:68
+#: elf/ldconfig.c:328 elf/pldd.c:240 elf/sprof.c:395 iconv/iconv_prog.c:430
+#: iconv/iconvconfig.c:401 locale/programs/locale.c:299
+#: locale/programs/localedef.c:395 malloc/memusage.sh:75
+#: malloc/memusagestat.c:584 nscd/nscd.c:471 nss/getent.c:91 nss/makedb.c:390
 #: posix/getconf.c:1108
 #, c-format
 msgid "Written by %s.\n"
 msgstr "ÃÂÂÃÂÂ %sÃÂÂ\n"
 
-#: catgets/gencat.c:287
+#: catgets/gencat.c:281
 msgid "*standard input*"
 msgstr "*ÃÂÂÃÂÂÃÂÂÃÂÂ*"
 
-#: catgets/gencat.c:293 iconv/iconv_charmap.c:169 iconv/iconv_prog.c:293
-#: nss/makedb.c:248
+#: catgets/gencat.c:287 iconv/iconv_charmap.c:167 iconv/iconv_prog.c:293
+#: nss/makedb.c:246
 #, c-format
 msgid "cannot open input file `%s'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s'"
 
-#: catgets/gencat.c:422 catgets/gencat.c:497
+#: catgets/gencat.c:416 catgets/gencat.c:491
 msgid "illegal set number"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:449
+#: catgets/gencat.c:443
 msgid "duplicate set definition"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:451 catgets/gencat.c:623 catgets/gencat.c:675
+#: catgets/gencat.c:445 catgets/gencat.c:617 catgets/gencat.c:669
 msgid "this is the first definition"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:522
+#: catgets/gencat.c:516
 #, c-format
 msgid "unknown set `%s'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s'"
 
-#: catgets/gencat.c:563
+#: catgets/gencat.c:557
 msgid "invalid quote character"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:576
+#: catgets/gencat.c:570
 #, c-format
 msgid "unknown directive `%s': line ignored"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s': ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:621
+#: catgets/gencat.c:615
 msgid "duplicated message number"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:672
+#: catgets/gencat.c:666
 msgid "duplicated message identifier"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:729
+#: catgets/gencat.c:723
 msgid "invalid character: message ignored"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:772
+#: catgets/gencat.c:766
 msgid "invalid line"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:826
+#: catgets/gencat.c:820
 msgid "malformed line ignored"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:990 catgets/gencat.c:1031
+#: catgets/gencat.c:984 catgets/gencat.c:1025
 #, c-format
 msgid "cannot open output file `%s'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s'"
 
-#: catgets/gencat.c:1193 locale/programs/linereader.c:559
+#: catgets/gencat.c:1187 locale/programs/linereader.c:560
 msgid "invalid escape sequence"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:1215
+#: catgets/gencat.c:1209
 msgid "unterminated message"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:1239
+#: catgets/gencat.c:1233
 #, c-format
 msgid "while opening old catalog file"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:1330
+#: catgets/gencat.c:1324
 #, c-format
 msgid "conversion modules not available"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: catgets/gencat.c:1356
+#: catgets/gencat.c:1350
 #, c-format
 msgid "cannot determine escape character"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: debug/pcprofiledump.c:52
+#: debug/pcprofiledump.c:53
 msgid "Don't buffer output"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: debug/pcprofiledump.c:57
+#: debug/pcprofiledump.c:58
 msgid "Dump information generated by PC profiling."
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ PC ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: debug/pcprofiledump.c:60
+#: debug/pcprofiledump.c:61
 msgid "[FILE]"
 msgstr "[ÃÂÂÃÂÂ]"
 
-#: debug/pcprofiledump.c:107
+#: debug/pcprofiledump.c:108
 #, c-format
 msgid "cannot open input file"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: debug/pcprofiledump.c:114
+#: debug/pcprofiledump.c:115
 #, c-format
 msgid "cannot read header"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: debug/pcprofiledump.c:178
+#: debug/pcprofiledump.c:179
 #, c-format
 msgid "invalid pointer size"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
@@ -374,64 +380,64 @@
 msgid "invalid mode parameter"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/cache.c:68
+#: elf/cache.c:69
 msgid "unknown"
 msgstr "ÃÂÂÃÂÂ"
 
-#: elf/cache.c:121
+#: elf/cache.c:126
 msgid "Unknown OS"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/cache.c:126
+#: elf/cache.c:131
 #, c-format
 msgid ", OS ABI: %s %d.%d.%d"
 msgstr ", OS ABI: %s %d.%d.%d"
 
-#: elf/cache.c:143 elf/ldconfig.c:1309
+#: elf/cache.c:148 elf/ldconfig.c:1318
 #, c-format
 msgid "Can't open cache file %s\n"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s\n"
 
-#: elf/cache.c:157
+#: elf/cache.c:162
 #, c-format
 msgid "mmap of cache file failed.\n"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ mmap ÃÂÂÃÂÂÃÂÂ\n"
 
-#: elf/cache.c:161 elf/cache.c:175
+#: elf/cache.c:166 elf/cache.c:180
 #, c-format
 msgid "File is not a cache file.\n"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ\n"
 
-#: elf/cache.c:208 elf/cache.c:218
+#: elf/cache.c:213 elf/cache.c:223
 #, c-format
 msgid "%d libs found in cache `%s'\n"
 msgstr "%d ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂ\n"
 
-#: elf/cache.c:412
+#: elf/cache.c:417
 #, c-format
 msgid "Can't create temporary cache file %s"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s"
 
-#: elf/cache.c:420 elf/cache.c:430 elf/cache.c:434 elf/cache.c:439
+#: elf/cache.c:425 elf/cache.c:435 elf/cache.c:439 elf/cache.c:444
 #, c-format
 msgid "Writing of cache data failed"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/cache.c:444
+#: elf/cache.c:449
 #, c-format
 msgid "Changing access rights of %s to %#o failed"
 msgstr "ÃÂÂÃÂÂ %s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %#o ÃÂÂÃÂÂ"
 
-#: elf/cache.c:449
+#: elf/cache.c:454
 #, c-format
 msgid "Renaming of %s to %s failed"
 msgstr "ÃÂÂ %s ÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂ"
 
-#: elf/dl-close.c:378 elf/dl-open.c:474
+#: elf/dl-close.c:384 elf/dl-open.c:470
 msgid "cannot create scope list"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-close.c:771
+#: elf/dl-close.c:777
 msgid "shared object not open"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
@@ -448,15 +454,15 @@
 msgid "cannot load auxiliary `%s' because of empty dynamic string token substitution\n"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s'\n"
 
-#: elf/dl-deps.c:483
+#: elf/dl-deps.c:479
 msgid "cannot allocate dependency list"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-deps.c:520 elf/dl-deps.c:580
+#: elf/dl-deps.c:516 elf/dl-deps.c:576
 msgid "cannot allocate symbol search list"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-deps.c:560
+#: elf/dl-deps.c:556
 msgid "Filters not supported with LD_TRACE_PRELINKING"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ LD_TRACE_PRELINKING ÃÂÂÃÂÂ"
 
@@ -480,23 +486,23 @@
 msgid "internal error: symidx out of range of fptr table"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂsymidx ÃÂÂÃÂÂ fptr ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-hwcaps.c:173 elf/dl-hwcaps.c:185
+#: elf/dl-hwcaps.c:184 elf/dl-hwcaps.c:196
 msgid "cannot create capability list"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ capability ÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:471
+#: elf/dl-load.c:465
 msgid "cannot allocate name record"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:548 elf/dl-load.c:664 elf/dl-load.c:749 elf/dl-load.c:862
+#: elf/dl-load.c:542 elf/dl-load.c:658 elf/dl-load.c:743 elf/dl-load.c:862
 msgid "cannot create cache for search path"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:639
+#: elf/dl-load.c:633
 msgid "cannot create RUNPATH/RPATH copy"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ RUNPATH/RPATH ÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:735
+#: elf/dl-load.c:729
 msgid "cannot create search path array"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
@@ -508,11 +514,11 @@
 msgid "cannot open zero fill device"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1059 elf/dl-load.c:2339
+#: elf/dl-load.c:1059 elf/dl-load.c:2342
 msgid "cannot create shared object descriptor"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1078 elf/dl-load.c:1751 elf/dl-load.c:1854
+#: elf/dl-load.c:1078 elf/dl-load.c:1755 elf/dl-load.c:1858
 msgid "cannot read file data"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
@@ -544,7 +550,7 @@
 msgid "cannot dynamically load executable"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1383
+#: elf/dl-load.c:1383 elf/dl-load.c:1492
 msgid "cannot change memory protections"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
@@ -564,95 +570,95 @@
 msgid "cannot allocate memory for program header"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1469 elf/dl-open.c:180
+#: elf/dl-load.c:1469 elf/dl-open.c:195
 msgid "invalid caller"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1508
+#: elf/dl-load.c:1512
 msgid "cannot enable executable stack as shared object requires"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1521
+#: elf/dl-load.c:1525
 msgid "cannot close file descriptor"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1751
+#: elf/dl-load.c:1755
 msgid "file too short"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1787
+#: elf/dl-load.c:1791
 msgid "invalid ELF header"
 msgstr "ÃÂÂÃÂÂÃÂÂ ELF ÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1799
+#: elf/dl-load.c:1803
 msgid "ELF file data encoding not big-endian"
 msgstr "ELF ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1801
+#: elf/dl-load.c:1805
 msgid "ELF file data encoding not little-endian"
 msgstr "ELF ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1805
+#: elf/dl-load.c:1809
 msgid "ELF file version ident does not match current one"
 msgstr "ELF ÃÂÂÃÂÂÃÂÂ ident ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1809
+#: elf/dl-load.c:1813
 msgid "ELF file OS ABI invalid"
 msgstr "ELF ÃÂÂ OS ABI ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1812
+#: elf/dl-load.c:1816
 msgid "ELF file ABI version invalid"
 msgstr "ELF ÃÂÂ ABI ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1815
+#: elf/dl-load.c:1819
 msgid "nonzero padding in e_ident"
 msgstr "ÃÂÂ e_ident ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1818
+#: elf/dl-load.c:1822
 msgid "internal error"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1825
+#: elf/dl-load.c:1829
 msgid "ELF file version does not match current one"
 msgstr "ELF ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1833
+#: elf/dl-load.c:1837
 msgid "only ET_DYN and ET_EXEC can be loaded"
 msgstr "ÃÂÂÃÂÂ ET_DYN ÃÂÂÃÂÂ ET_EXEC ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:1839
+#: elf/dl-load.c:1843
 msgid "ELF file's phentsize not the expected size"
 msgstr "ELF ÃÂÂÃÂÂ phentsize ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-load.c:2358
+#: elf/dl-load.c:2361
 msgid "wrong ELF class: ELFCLASS64"
 msgstr "ÃÂÂÃÂÂ ELF ÃÂÂÃÂÂÃÂÂELFCLASS64"
 
-#: elf/dl-load.c:2359
+#: elf/dl-load.c:2362
 msgid "wrong ELF class: ELFCLASS32"
 msgstr "ÃÂÂÃÂÂ ELF ÃÂÂÃÂÂÃÂÂELFCLASS32"
 
-#: elf/dl-load.c:2362
+#: elf/dl-load.c:2365
 msgid "cannot open shared object file"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-lookup.c:757 ports/sysdeps/mips/dl-lookup.c:774
+#: elf/dl-lookup.c:753 ports/sysdeps/mips/dl-lookup.c:771
 msgid "relocation error"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-lookup.c:786 ports/sysdeps/mips/dl-lookup.c:803
+#: elf/dl-lookup.c:780 ports/sysdeps/mips/dl-lookup.c:798
 msgid "symbol lookup error"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-open.c:110
+#: elf/dl-open.c:102
 msgid "cannot extend global scope"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-open.c:524
+#: elf/dl-open.c:520
 msgid "TLS generation counter wrapped!  Please report this."
 msgstr "TLS ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-open.c:546
+#: elf/dl-open.c:542
 msgid "cannot load any more object with static TLS"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ TLS ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
@@ -672,29 +678,29 @@
 msgid "cannot allocate memory in static TLS block"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ TLS ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-reloc.c:213
+#: elf/dl-reloc.c:212
 msgid "cannot make segment writable for relocation"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-reloc.c:276
+#: elf/dl-reloc.c:275
 #, c-format
 msgid "%s: no PLTREL found in object %s\n"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ PLTREL\n"
 
-#: elf/dl-reloc.c:287
+#: elf/dl-reloc.c:286
 #, c-format
 msgid "%s: out of memory to store relocation results for %s\n"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s\n"
 
-#: elf/dl-reloc.c:303
+#: elf/dl-reloc.c:302
 msgid "cannot restore segment prot after reloc"
 msgstr "ÃÂÂ reloc ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ segment prot"
 
-#: elf/dl-reloc.c:332
+#: elf/dl-reloc.c:331
 msgid "cannot apply additional memory protection after relocation"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-sym.c:163
+#: elf/dl-sym.c:153
 msgid "RTLD_NEXT used in code not dynamically loaded"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ RTLD_NEXT ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
@@ -706,224 +712,224 @@
 msgid "version lookup error"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/dl-version.c:297
+#: elf/dl-version.c:296
 msgid "cannot allocate version reference table"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:140
+#: elf/ldconfig.c:141
 msgid "Print cache"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:141
+#: elf/ldconfig.c:142
 msgid "Generate verbose messages"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:142
+#: elf/ldconfig.c:143
 msgid "Don't build cache"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:143
+#: elf/ldconfig.c:144
 msgid "Don't generate links"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:144
+#: elf/ldconfig.c:145
 msgid "Change to and use ROOT as root directory"
 msgstr "ÃÂÂÃÂÂÃÂÂ ROOT ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:144
+#: elf/ldconfig.c:145
 msgid "ROOT"
 msgstr "ROOT"
 
-#: elf/ldconfig.c:145
+#: elf/ldconfig.c:146
 msgid "CACHE"
 msgstr "CACHE"
 
-#: elf/ldconfig.c:145
+#: elf/ldconfig.c:146
 msgid "Use CACHE as cache file"
 msgstr "ÃÂÂÃÂÂ CACHE ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:146
+#: elf/ldconfig.c:147
 msgid "CONF"
 msgstr "CONF"
 
-#: elf/ldconfig.c:146
+#: elf/ldconfig.c:147
 msgid "Use CONF as configuration file"
 msgstr "ÃÂÂÃÂÂ CONF ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:147
+#: elf/ldconfig.c:148
 msgid "Only process directories specified on the command line.  Don't build cache."
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:148
+#: elf/ldconfig.c:149
 msgid "Manually link individual libraries."
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:149
+#: elf/ldconfig.c:150
 msgid "FORMAT"
 msgstr "FORMAT"
 
-#: elf/ldconfig.c:149
+#: elf/ldconfig.c:150
 msgid "Format to use: new, old or compat (default)"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ (ÃÂÂÃÂÂ)"
 
-#: elf/ldconfig.c:150
+#: elf/ldconfig.c:151
 msgid "Ignore auxiliary cache file"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:158
+#: elf/ldconfig.c:159
 msgid "Configure Dynamic Linker Run Time Bindings."
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:341
+#: elf/ldconfig.c:346
 #, c-format
 msgid "Path `%s' given more than once"
 msgstr "ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:381
+#: elf/ldconfig.c:386
 #, c-format
 msgid "%s is not a known library type"
 msgstr "%s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:409
+#: elf/ldconfig.c:414
 #, c-format
 msgid "Can't stat %s"
 msgstr "ÃÂÂÃÂÂ stat %s"
 
-#: elf/ldconfig.c:483
+#: elf/ldconfig.c:488
 #, c-format
 msgid "Can't stat %s\n"
 msgstr "ÃÂÂÃÂÂ stat %s\n"
 
-#: elf/ldconfig.c:493
+#: elf/ldconfig.c:498
 #, c-format
 msgid "%s is not a symbolic link\n"
 msgstr "%s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ\n"
 
-#: elf/ldconfig.c:512
+#: elf/ldconfig.c:517
 #, c-format
 msgid "Can't unlink %s"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s"
 
-#: elf/ldconfig.c:518
+#: elf/ldconfig.c:523
 #, c-format
 msgid "Can't link %s to %s"
 msgstr "ÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂÃÂÂ %s"
 
-#: elf/ldconfig.c:524
+#: elf/ldconfig.c:529
 msgid " (changed)\n"
 msgstr " (ÃÂÂÃÂÂÃÂÂ)\n"
 
-#: elf/ldconfig.c:526
+#: elf/ldconfig.c:531
 msgid " (SKIPPED)\n"
 msgstr " (ÃÂÂÃÂÂÃÂÂ)\n"
 
-#: elf/ldconfig.c:581
+#: elf/ldconfig.c:586
 #, c-format
 msgid "Can't find %s"
 msgstr "ÃÂÂÃÂÂÃÂÂ %s"
 
-#: elf/ldconfig.c:597 elf/ldconfig.c:770 elf/ldconfig.c:829 elf/ldconfig.c:863
+#: elf/ldconfig.c:602 elf/ldconfig.c:775 elf/ldconfig.c:834 elf/ldconfig.c:868
 #, c-format
 msgid "Cannot lstat %s"
 msgstr "ÃÂÂÃÂÂ lstat %s"
 
-#: elf/ldconfig.c:604
+#: elf/ldconfig.c:609
 #, c-format
 msgid "Ignored file %s since it is not a regular file."
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:613
+#: elf/ldconfig.c:618
 #, c-format
 msgid "No link created since soname could not be found for %s"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:696
+#: elf/ldconfig.c:701
 #, c-format
 msgid "Can't open directory %s"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s"
 
-#: elf/ldconfig.c:788 elf/ldconfig.c:850 elf/readlib.c:90
+#: elf/ldconfig.c:793 elf/ldconfig.c:855 elf/readlib.c:90
 #, c-format
 msgid "Input file %s not found.\n"
 msgstr "ÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂÃÂÂÃÂÂ\n"
 
-#: elf/ldconfig.c:795
+#: elf/ldconfig.c:800
 #, c-format
 msgid "Cannot stat %s"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s"
 
-#: elf/ldconfig.c:924
+#: elf/ldconfig.c:929
 #, c-format
 msgid "libc5 library %s in wrong directory"
 msgstr "libc5 ÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:927
+#: elf/ldconfig.c:932
 #, c-format
 msgid "libc6 library %s in wrong directory"
 msgstr "libc6 ÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:930
+#: elf/ldconfig.c:935
 #, c-format
 msgid "libc4 library %s in wrong directory"
 msgstr "libc4 ÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:958
+#: elf/ldconfig.c:963
 #, c-format
 msgid "libraries %s and %s in directory %s have same soname but different type."
 msgstr "ÃÂÂÃÂÂÃÂÂ %s ÃÂÂ %s (ÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂ) ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:1067
+#: elf/ldconfig.c:1072
 #, c-format
 msgid "Warning: ignoring configuration file that cannot be opened: %s"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ%s"
 
-#: elf/ldconfig.c:1133
+#: elf/ldconfig.c:1138
 #, c-format
 msgid "%s:%u: bad syntax in hwcap line"
 msgstr "%s:%u: ÃÂÂ hwcap ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:1139
+#: elf/ldconfig.c:1144
 #, c-format
 msgid "%s:%u: hwcap index %lu above maximum %u"
 msgstr "%s:%u: hwcap ÃÂÂÃÂÂ %lu ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %u"
 
-#: elf/ldconfig.c:1146 elf/ldconfig.c:1154
+#: elf/ldconfig.c:1151 elf/ldconfig.c:1159
 #, c-format
 msgid "%s:%u: hwcap index %lu already defined as %s"
 msgstr "%s:%u: hwcap ÃÂÂÃÂÂ %lu ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s"
 
-#: elf/ldconfig.c:1157
+#: elf/ldconfig.c:1162
 #, c-format
 msgid "%s:%u: duplicate hwcap %lu %s"
 msgstr "%s:%u: ÃÂÂÃÂÂ hwcap %lu %s"
 
-#: elf/ldconfig.c:1179
+#: elf/ldconfig.c:1184
 #, c-format
 msgid "need absolute file name for configuration file when using -r"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ -r"
 
-#: elf/ldconfig.c:1186 locale/programs/xmalloc.c:65 malloc/obstack.c:433
-#: malloc/obstack.c:435 posix/getconf.c:1076 posix/getconf.c:1296
+#: elf/ldconfig.c:1191 locale/programs/xmalloc.c:64 malloc/obstack.c:432
+#: malloc/obstack.c:434 posix/getconf.c:1076 posix/getconf.c:1296
 #, c-format
 msgid "memory exhausted"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/ldconfig.c:1218
+#: elf/ldconfig.c:1223
 #, c-format
 msgid "%s:%u: cannot read directory %s"
 msgstr "%s:%u: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s"
 
-#: elf/ldconfig.c:1262
+#: elf/ldconfig.c:1267
 #, c-format
 msgid "relative path `%s' used to build cache"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s'"
 
-#: elf/ldconfig.c:1288
+#: elf/ldconfig.c:1297
 #, c-format
 msgid "Can't chdir to /"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ /"
 
-#: elf/ldconfig.c:1329
+#: elf/ldconfig.c:1338
 #, c-format
 msgid "Can't open cache file directory %s\n"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s\n"
@@ -1028,55 +1034,55 @@
 msgid "cannot read object name"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/pldd.c:65
+#: elf/pldd.c:62
 msgid "List dynamic shared objects loaded into process."
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/pldd.c:69
+#: elf/pldd.c:66
 msgid "PID"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/pldd.c:100
+#: elf/pldd.c:97
 #, c-format
 msgid "Exactly one parameter with process ID required.\n"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ\n"
 
-#: elf/pldd.c:112
+#: elf/pldd.c:109
 #, c-format
 msgid "invalid process ID '%s'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s"
 
-#: elf/pldd.c:120
+#: elf/pldd.c:117
 #, c-format
 msgid "cannot open %s"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ %s"
 
-#: elf/pldd.c:145
+#: elf/pldd.c:142
 #, c-format
 msgid "cannot open %s/task"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ %s/ÃÂÂÃÂÂ"
 
-#: elf/pldd.c:148
+#: elf/pldd.c:145
 #, c-format
 msgid "cannot prepare reading %s/task"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s/ÃÂÂÃÂÂ"
 
-#: elf/pldd.c:161
+#: elf/pldd.c:158
 #, c-format
 msgid "invalid thread ID '%s'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s"
 
-#: elf/pldd.c:172
+#: elf/pldd.c:169
 #, c-format
 msgid "cannot attach to process %lu"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %lu"
 
-#: elf/pldd.c:264
+#: elf/pldd.c:261
 #, c-format
 msgid "cannot get information about process %lu"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %lu ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/pldd.c:277
+#: elf/pldd.c:274
 #, c-format
 msgid "process %lu is no ELF program"
 msgstr "ÃÂÂÃÂÂ %lu ÃÂÂÃÂÂ ELF ÃÂÂÃÂÂ"
@@ -1236,147 +1242,147 @@
 msgid "%s: unrecognized option '%c%s'\\n"
 msgstr "%sÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ%c%sÃÂÂ\\n"
 
-#: elf/sprof.c:76
+#: elf/sprof.c:77
 msgid "Output selection:"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ:"
 
-#: elf/sprof.c:78
+#: elf/sprof.c:79
 msgid "print list of count paths and their number of use"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:80
+#: elf/sprof.c:81
 msgid "generate flat profile with counts and ticks"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:81
+#: elf/sprof.c:82
 msgid "generate call graph"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:88
+#: elf/sprof.c:89
 msgid "Read and display shared object profiling data."
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:93
+#: elf/sprof.c:94
 msgid "SHOBJ [PROFDATA]"
 msgstr "SHOBJ [PROFDATA]"
 
-#: elf/sprof.c:432
+#: elf/sprof.c:433
 #, c-format
 msgid "failed to load shared object `%s'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂ"
 
-#: elf/sprof.c:441
+#: elf/sprof.c:442
 #, c-format
 msgid "cannot create internal descriptors"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:553
+#: elf/sprof.c:554
 #, c-format
 msgid "Reopening shared object `%s' failed"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂ"
 
-#: elf/sprof.c:560 elf/sprof.c:655
+#: elf/sprof.c:561 elf/sprof.c:656
 #, c-format
 msgid "reading of section headers failed"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:568 elf/sprof.c:663
+#: elf/sprof.c:569 elf/sprof.c:664
 #, c-format
 msgid "reading of section header string table failed"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:594
+#: elf/sprof.c:595
 #, c-format
 msgid "*** Cannot read debuginfo file name: %m\n"
 msgstr "*** ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ%m\n"
 
-#: elf/sprof.c:615
+#: elf/sprof.c:616
 #, c-format
 msgid "cannot determine file name"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:648
+#: elf/sprof.c:649
 #, c-format
 msgid "reading of ELF header failed"
 msgstr "ÃÂÂÃÂÂ ELF ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:684
+#: elf/sprof.c:685
 #, c-format
 msgid "*** The file `%s' is stripped: no detailed analysis possible\n"
 msgstr "*** ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂ: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ\n"
 
-#: elf/sprof.c:714
+#: elf/sprof.c:715
 #, c-format
 msgid "failed to load symbol data"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:779
+#: elf/sprof.c:780
 #, c-format
 msgid "cannot load profiling data"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:788
+#: elf/sprof.c:789
 #, c-format
 msgid "while stat'ing profiling data file"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:796
+#: elf/sprof.c:797
 #, c-format
 msgid "profiling data file `%s' does not match shared object `%s'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:807
+#: elf/sprof.c:808
 #, c-format
 msgid "failed to mmap the profiling data file"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ mmap ÃÂÂÃÂÂ"
 
-#: elf/sprof.c:815
+#: elf/sprof.c:816
 #, c-format
 msgid "error while closing the profiling data file"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:824 elf/sprof.c:922
+#: elf/sprof.c:825 elf/sprof.c:923
 #, c-format
 msgid "cannot create internal descriptor"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:898
+#: elf/sprof.c:899
 #, c-format
 msgid "`%s' is no correct profile data file for `%s'"
 msgstr "`%s' ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: elf/sprof.c:1079 elf/sprof.c:1137
+#: elf/sprof.c:1080 elf/sprof.c:1138
 #, c-format
 msgid "cannot allocate symbol data"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: iconv/iconv_charmap.c:143 iconv/iconv_prog.c:448
+#: iconv/iconv_charmap.c:141 iconv/iconv_prog.c:448
 #, c-format
 msgid "cannot open output file"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: iconv/iconv_charmap.c:189 iconv/iconv_prog.c:311
+#: iconv/iconv_charmap.c:187 iconv/iconv_prog.c:311
 #, c-format
 msgid "error while closing input `%s'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: iconv/iconv_charmap.c:463
+#: iconv/iconv_charmap.c:461
 #, c-format
 msgid "illegal input sequence at position %Zd"
 msgstr "ÃÂÂÃÂÂ %Zd ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: iconv/iconv_charmap.c:482 iconv/iconv_prog.c:539
+#: iconv/iconv_charmap.c:480 iconv/iconv_prog.c:539
 #, c-format
 msgid "incomplete character or shift sequence at end of buffer"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ shift sequence"
 
-#: iconv/iconv_charmap.c:527 iconv/iconv_charmap.c:563 iconv/iconv_prog.c:582
+#: iconv/iconv_charmap.c:525 iconv/iconv_charmap.c:561 iconv/iconv_prog.c:582
 #: iconv/iconv_prog.c:618
 #, c-format
 msgid "error while reading the input"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: iconv/iconv_charmap.c:545 iconv/iconv_prog.c:600
+#: iconv/iconv_charmap.c:543 iconv/iconv_prog.c:600
 #, c-format
 msgid "unable to allocate buffer for input"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
@@ -1401,13 +1407,20 @@
 msgid "list all known coded character sets"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: iconv/iconv_prog.c:64 locale/programs/localedef.c:126
+#: iconv/iconv_prog.c:64 locale/programs/localedef.c:127
 msgid "Output control:"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ:"
 
 #: iconv/iconv_prog.c:65
 msgid "omit invalid characters from output"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
+
+#: iconv/iconv_prog.c:66 iconv/iconvconfig.c:128
+#: locale/programs/localedef.c:120 locale/programs/localedef.c:122
+#: locale/programs/localedef.c:124 locale/programs/localedef.c:145
+#: malloc/memusagestat.c:56
+msgid "FILE"
+msgstr "ÃÂÂÃÂÂ"
 
 #: iconv/iconv_prog.c:66
 msgid "output file"
@@ -1502,34 +1515,38 @@
 msgid "[DIR...]"
 msgstr "[ÃÂÂÃÂÂÃÂÂ]"
 
-#: iconv/iconvconfig.c:126
+#: iconv/iconvconfig.c:126 locale/programs/localedef.c:131
+msgid "PATH"
+msgstr "ÃÂÂÃÂÂ"
+
+#: iconv/iconvconfig.c:127
 msgid "Prefix used for all file accesses"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: iconv/iconvconfig.c:127
+#: iconv/iconvconfig.c:128
 msgid "Put output in FILE instead of installed location (--prefix does not apply to FILE)"
 msgstr "ÃÂÂ FILE ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ (--prefix ÃÂÂÃÂÂÃÂÂÃÂÂ FILE)"
 
-#: iconv/iconvconfig.c:131
+#: iconv/iconvconfig.c:132
 msgid "Do not search standard directories, only those on the command line"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: iconv/iconvconfig.c:303
+#: iconv/iconvconfig.c:299
 #, c-format
 msgid "Directory arguments required when using --nostdlib"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ --nostdlib"
 
-#: iconv/iconvconfig.c:345 locale/programs/localedef.c:287
+#: iconv/iconvconfig.c:341 locale/programs/localedef.c:288
 #, c-format
 msgid "no output file produced because warnings were issued"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: iconv/iconvconfig.c:434
+#: iconv/iconvconfig.c:430
 #, c-format
 msgid "while inserting in search tree"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: iconv/iconvconfig.c:1243
+#: iconv/iconvconfig.c:1239
 #, c-format
 msgid "cannot generate output file"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
@@ -1616,789 +1633,789 @@
 msgid "Unknown .netrc keyword %s"
 msgstr "ÃÂÂÃÂÂÃÂÂ .netrc ÃÂÂÃÂÂÃÂÂ %s"
 
-#: libidn/nfkc.c:462
+#: libidn/nfkc.c:463
 msgid "Character out of range for UTF-8"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ UTF-8 ÃÂÂÃÂÂ"
 
-#: locale/programs/charmap-dir.c:58
+#: locale/programs/charmap-dir.c:57
 #, c-format
 msgid "cannot read character map directory `%s'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s'"
 
-#: locale/programs/charmap.c:137
+#: locale/programs/charmap.c:138
 #, c-format
 msgid "character map file `%s' not found"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s'"
 
-#: locale/programs/charmap.c:194
+#: locale/programs/charmap.c:195
 #, c-format
 msgid "default character map file `%s' not found"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s'"
 
-#: locale/programs/charmap.c:257
+#: locale/programs/charmap.c:258
 #, c-format
 msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂ ASCII ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ ISO C\n"
 
-#: locale/programs/charmap.c:336
+#: locale/programs/charmap.c:337
 #, c-format
 msgid "%s: <mb_cur_max> must be greater than <mb_cur_min>\n"
 msgstr "%s: <mb_cur_max> ÃÂÂÃÂÂÃÂÂÃÂÂ <mb_cur_min>\n"
 
-#: locale/programs/charmap.c:356 locale/programs/charmap.c:373
-#: locale/programs/repertoire.c:173
+#: locale/programs/charmap.c:357 locale/programs/charmap.c:374
+#: locale/programs/repertoire.c:174
 #, c-format
 msgid "syntax error in prolog: %s"
 msgstr "prolog ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ: %s"
 
-#: locale/programs/charmap.c:357
+#: locale/programs/charmap.c:358
 msgid "invalid definition"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:374 locale/programs/locfile.c:125
-#: locale/programs/locfile.c:152 locale/programs/repertoire.c:174
+#: locale/programs/charmap.c:375 locale/programs/locfile.c:125
+#: locale/programs/locfile.c:152 locale/programs/repertoire.c:175
 msgid "bad argument"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:402
+#: locale/programs/charmap.c:403
 #, c-format
 msgid "duplicate definition of <%s>"
 msgstr "<%s> ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:409
+#: locale/programs/charmap.c:410
 #, c-format
 msgid "value for <%s> must be 1 or greater"
 msgstr "<%s> ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ 1 ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:421
+#: locale/programs/charmap.c:422
 #, c-format
 msgid "value of <%s> must be greater or equal than the value of <%s>"
 msgstr "<%s> ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ <%s> ÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:444 locale/programs/repertoire.c:182
+#: locale/programs/charmap.c:445 locale/programs/repertoire.c:183
 #, c-format
 msgid "argument to <%s> must be a single character"
 msgstr "ÃÂÂ <%s> ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:470
+#: locale/programs/charmap.c:471
 msgid "character sets with locking states are not supported"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ locking ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:497 locale/programs/charmap.c:551
-#: locale/programs/charmap.c:583 locale/programs/charmap.c:677
-#: locale/programs/charmap.c:732 locale/programs/charmap.c:773
-#: locale/programs/charmap.c:814
+#: locale/programs/charmap.c:498 locale/programs/charmap.c:552
+#: locale/programs/charmap.c:584 locale/programs/charmap.c:678
+#: locale/programs/charmap.c:733 locale/programs/charmap.c:774
+#: locale/programs/charmap.c:815
 #, c-format
 msgid "syntax error in %s definition: %s"
 msgstr "ÃÂÂÃÂÂ %s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ: %s"
 
-#: locale/programs/charmap.c:498 locale/programs/charmap.c:678
-#: locale/programs/charmap.c:774 locale/programs/repertoire.c:229
+#: locale/programs/charmap.c:499 locale/programs/charmap.c:679
+#: locale/programs/charmap.c:775 locale/programs/repertoire.c:230
 msgid "no symbolic name given"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:552
+#: locale/programs/charmap.c:553
 msgid "invalid encoding given"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:561
+#: locale/programs/charmap.c:562
 msgid "too few bytes in character encoding"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:563
+#: locale/programs/charmap.c:564
 msgid "too many bytes in character encoding"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:585 locale/programs/charmap.c:733
-#: locale/programs/charmap.c:816 locale/programs/repertoire.c:295
+#: locale/programs/charmap.c:586 locale/programs/charmap.c:734
+#: locale/programs/charmap.c:817 locale/programs/repertoire.c:296
 msgid "no symbolic name given for end of range"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:609 locale/programs/ld-address.c:601
-#: locale/programs/ld-collate.c:2766 locale/programs/ld-collate.c:3924
-#: locale/programs/ld-ctype.c:2255 locale/programs/ld-ctype.c:3006
-#: locale/programs/ld-identification.c:451
-#: locale/programs/ld-measurement.c:237 locale/programs/ld-messages.c:331
-#: locale/programs/ld-monetary.c:942 locale/programs/ld-name.c:306
-#: locale/programs/ld-numeric.c:367 locale/programs/ld-paper.c:240
-#: locale/programs/ld-telephone.c:312 locale/programs/ld-time.c:1220
-#: locale/programs/repertoire.c:312
+#: locale/programs/charmap.c:610 locale/programs/ld-address.c:602
+#: locale/programs/ld-collate.c:2767 locale/programs/ld-collate.c:3925
+#: locale/programs/ld-ctype.c:2256 locale/programs/ld-ctype.c:3007
+#: locale/programs/ld-identification.c:452
+#: locale/programs/ld-measurement.c:238 locale/programs/ld-messages.c:332
+#: locale/programs/ld-monetary.c:942 locale/programs/ld-name.c:307
+#: locale/programs/ld-numeric.c:368 locale/programs/ld-paper.c:241
+#: locale/programs/ld-telephone.c:313 locale/programs/ld-time.c:1221
+#: locale/programs/repertoire.c:313
 #, c-format
 msgid "%1$s: definition does not end with `END %1$s'"
 msgstr "%1$s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `END %1$s' ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:642
+#: locale/programs/charmap.c:643
 msgid "only WIDTH definitions are allowed to follow the CHARMAP definition"
 msgstr "ÃÂÂÃÂÂ WIDTH ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ CHARMAP ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:650 locale/programs/charmap.c:713
+#: locale/programs/charmap.c:651 locale/programs/charmap.c:714
 #, c-format
 msgid "value for %s must be an integer"
 msgstr "%s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:841
+#: locale/programs/charmap.c:842
 #, c-format
 msgid "%s: error in state machine"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:849 locale/programs/ld-address.c:617
-#: locale/programs/ld-collate.c:2763 locale/programs/ld-collate.c:4117
-#: locale/programs/ld-ctype.c:2252 locale/programs/ld-ctype.c:3023
-#: locale/programs/ld-identification.c:467
-#: locale/programs/ld-measurement.c:253 locale/programs/ld-messages.c:347
-#: locale/programs/ld-monetary.c:958 locale/programs/ld-name.c:322
-#: locale/programs/ld-numeric.c:383 locale/programs/ld-paper.c:256
-#: locale/programs/ld-telephone.c:328 locale/programs/ld-time.c:1236
-#: locale/programs/locfile.c:825 locale/programs/repertoire.c:323
+#: locale/programs/charmap.c:850 locale/programs/ld-address.c:618
+#: locale/programs/ld-collate.c:2764 locale/programs/ld-collate.c:4118
+#: locale/programs/ld-ctype.c:2253 locale/programs/ld-ctype.c:3024
+#: locale/programs/ld-identification.c:468
+#: locale/programs/ld-measurement.c:254 locale/programs/ld-messages.c:348
+#: locale/programs/ld-monetary.c:958 locale/programs/ld-name.c:323
+#: locale/programs/ld-numeric.c:384 locale/programs/ld-paper.c:257
+#: locale/programs/ld-telephone.c:329 locale/programs/ld-time.c:1237
+#: locale/programs/locfile.c:825 locale/programs/repertoire.c:324
 #, c-format
 msgid "%s: premature end of file"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:868 locale/programs/charmap.c:879
+#: locale/programs/charmap.c:869 locale/programs/charmap.c:880
 #, c-format
 msgid "unknown character `%s'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s'"
 
-#: locale/programs/charmap.c:887
+#: locale/programs/charmap.c:888
 #, c-format
 msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ: %d vs %d"
 
-#: locale/programs/charmap.c:992 locale/programs/ld-collate.c:3043
-#: locale/programs/repertoire.c:418
+#: locale/programs/charmap.c:993 locale/programs/ld-collate.c:3044
+#: locale/programs/repertoire.c:419
 msgid "invalid names for character range"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:1004 locale/programs/repertoire.c:430
+#: locale/programs/charmap.c:1005 locale/programs/repertoire.c:431
 msgid "hexadecimal range format should use only capital characters"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:1022 locale/programs/repertoire.c:448
+#: locale/programs/charmap.c:1023 locale/programs/repertoire.c:449
 #, c-format
 msgid "<%s> and <%s> are invalid names for range"
 msgstr "<%s> ÃÂÂÃÂÂ <%s> ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:1028 locale/programs/repertoire.c:455
+#: locale/programs/charmap.c:1029 locale/programs/repertoire.c:456
 msgid "upper limit in range is smaller than lower limit"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/charmap.c:1086
+#: locale/programs/charmap.c:1087
 msgid "resulting bytes for range not representable."
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-address.c:134 locale/programs/ld-collate.c:1557
-#: locale/programs/ld-ctype.c:420 locale/programs/ld-identification.c:132
-#: locale/programs/ld-measurement.c:93 locale/programs/ld-messages.c:96
-#: locale/programs/ld-monetary.c:193 locale/programs/ld-name.c:93
-#: locale/programs/ld-numeric.c:97 locale/programs/ld-paper.c:90
-#: locale/programs/ld-telephone.c:93 locale/programs/ld-time.c:158
+#: locale/programs/ld-address.c:135 locale/programs/ld-collate.c:1558
+#: locale/programs/ld-ctype.c:421 locale/programs/ld-identification.c:133
+#: locale/programs/ld-measurement.c:94 locale/programs/ld-messages.c:97
+#: locale/programs/ld-monetary.c:193 locale/programs/ld-name.c:94
+#: locale/programs/ld-numeric.c:98 locale/programs/ld-paper.c:91
+#: locale/programs/ld-telephone.c:94 locale/programs/ld-time.c:159
 #, c-format
 msgid "No definition for %s category found"
 msgstr "ÃÂÂÃÂÂÃÂÂ %s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-address.c:145 locale/programs/ld-address.c:183
-#: locale/programs/ld-address.c:201 locale/programs/ld-address.c:230
-#: locale/programs/ld-address.c:302 locale/programs/ld-address.c:321
-#: locale/programs/ld-address.c:334 locale/programs/ld-identification.c:145
-#: locale/programs/ld-measurement.c:104 locale/programs/ld-monetary.c:205
+#: locale/programs/ld-address.c:146 locale/programs/ld-address.c:184
+#: locale/programs/ld-address.c:202 locale/programs/ld-address.c:231
+#: locale/programs/ld-address.c:303 locale/programs/ld-address.c:322
+#: locale/programs/ld-address.c:335 locale/programs/ld-identification.c:146
+#: locale/programs/ld-measurement.c:105 locale/programs/ld-monetary.c:205
 #: locale/programs/ld-monetary.c:249 locale/programs/ld-monetary.c:265
-#: locale/programs/ld-monetary.c:277 locale/programs/ld-name.c:104
-#: locale/programs/ld-name.c:141 locale/programs/ld-numeric.c:111
-#: locale/programs/ld-numeric.c:125 locale/programs/ld-paper.c:101
-#: locale/programs/ld-paper.c:110 locale/programs/ld-telephone.c:104
-#: locale/programs/ld-telephone.c:161 locale/programs/ld-time.c:174
-#: locale/programs/ld-time.c:195
+#: locale/programs/ld-monetary.c:277 locale/programs/ld-name.c:105
+#: locale/programs/ld-name.c:142 locale/programs/ld-numeric.c:112
+#: locale/programs/ld-numeric.c:126 locale/programs/ld-paper.c:102
+#: locale/programs/ld-paper.c:111 locale/programs/ld-telephone.c:105
+#: locale/programs/ld-telephone.c:162 locale/programs/ld-time.c:175
+#: locale/programs/ld-time.c:196
 #, c-format
 msgid "%s: field `%s' not defined"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-address.c:157 locale/programs/ld-address.c:209
-#: locale/programs/ld-address.c:239 locale/programs/ld-address.c:277
-#: locale/programs/ld-name.c:116 locale/programs/ld-telephone.c:116
+#: locale/programs/ld-address.c:158 locale/programs/ld-address.c:210
+#: locale/programs/ld-address.c:240 locale/programs/ld-address.c:278
+#: locale/programs/ld-name.c:117 locale/programs/ld-telephone.c:117
 #, c-format
 msgid "%s: field `%s' must not be empty"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-address.c:169
+#: locale/programs/ld-address.c:170
 #, c-format
 msgid "%s: invalid escape `%%%c' sequence in field `%s'"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%%%c', ÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂ"
 
-#: locale/programs/ld-address.c:220
+#: locale/programs/ld-address.c:221
 #, c-format
 msgid "%s: terminology language code `%s' not defined"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-address.c:245
+#: locale/programs/ld-address.c:246
 #, c-format
 msgid "%s: field `%s' must not be defined"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂ%sÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-address.c:259 locale/programs/ld-address.c:288
+#: locale/programs/ld-address.c:260 locale/programs/ld-address.c:289
 #, c-format
 msgid "%s: language abbreviation `%s' not defined"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-address.c:266 locale/programs/ld-address.c:294
-#: locale/programs/ld-address.c:328 locale/programs/ld-address.c:340
+#: locale/programs/ld-address.c:267 locale/programs/ld-address.c:295
+#: locale/programs/ld-address.c:329 locale/programs/ld-address.c:341
 #, c-format
 msgid "%s: `%s' value does not match `%s' value"
 msgstr "%s: `%s' ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-address.c:313
+#: locale/programs/ld-address.c:314
 #, c-format
 msgid "%s: numeric country code `%d' not valid"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%d' ÃÂÂÃÂÂ"
 
-#: locale/programs/ld-address.c:509 locale/programs/ld-address.c:546
-#: locale/programs/ld-address.c:584 locale/programs/ld-ctype.c:2630
-#: locale/programs/ld-identification.c:363
-#: locale/programs/ld-measurement.c:220 locale/programs/ld-messages.c:300
+#: locale/programs/ld-address.c:510 locale/programs/ld-address.c:547
+#: locale/programs/ld-address.c:585 locale/programs/ld-ctype.c:2631
+#: locale/programs/ld-identification.c:364
+#: locale/programs/ld-measurement.c:221 locale/programs/ld-messages.c:301
 #: locale/programs/ld-monetary.c:700 locale/programs/ld-monetary.c:735
-#: locale/programs/ld-monetary.c:776 locale/programs/ld-name.c:279
-#: locale/programs/ld-numeric.c:262 locale/programs/ld-paper.c:223
-#: locale/programs/ld-telephone.c:287 locale/programs/ld-time.c:1125
-#: locale/programs/ld-time.c:1167
+#: locale/programs/ld-monetary.c:776 locale/programs/ld-name.c:280
+#: locale/programs/ld-numeric.c:263 locale/programs/ld-paper.c:224
+#: locale/programs/ld-telephone.c:288 locale/programs/ld-time.c:1126
+#: locale/programs/ld-time.c:1168
 #, c-format
 msgid "%s: field `%s' declared more than once"
 msgstr "%s: `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-address.c:513 locale/programs/ld-address.c:551
-#: locale/programs/ld-identification.c:367 locale/programs/ld-messages.c:310
+#: locale/programs/ld-address.c:514 locale/programs/ld-address.c:552
+#: locale/programs/ld-identification.c:368 locale/programs/ld-messages.c:311
 #: locale/programs/ld-monetary.c:704 locale/programs/ld-monetary.c:739
-#: locale/programs/ld-name.c:283 locale/programs/ld-numeric.c:266
-#: locale/programs/ld-telephone.c:291 locale/programs/ld-time.c:1019
-#: locale/programs/ld-time.c:1088 locale/programs/ld-time.c:1130
+#: locale/programs/ld-name.c:284 locale/programs/ld-numeric.c:267
+#: locale/programs/ld-telephone.c:292 locale/programs/ld-time.c:1020
+#: locale/programs/ld-time.c:1089 locale/programs/ld-time.c:1131
 #, c-format
 msgid "%s: unknown character in field `%s'"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂ"
 
-#: locale/programs/ld-address.c:598 locale/programs/ld-collate.c:3922
-#: locale/programs/ld-ctype.c:3003 locale/programs/ld-identification.c:448
-#: locale/programs/ld-measurement.c:234 locale/programs/ld-messages.c:329
-#: locale/programs/ld-monetary.c:940 locale/programs/ld-name.c:304
-#: locale/programs/ld-numeric.c:365 locale/programs/ld-paper.c:238
-#: locale/programs/ld-telephone.c:310 locale/programs/ld-time.c:1218
+#: locale/programs/ld-address.c:599 locale/programs/ld-collate.c:3923
+#: locale/programs/ld-ctype.c:3004 locale/programs/ld-identification.c:449
+#: locale/programs/ld-measurement.c:235 locale/programs/ld-messages.c:330
+#: locale/programs/ld-monetary.c:940 locale/programs/ld-name.c:305
+#: locale/programs/ld-numeric.c:366 locale/programs/ld-paper.c:239
+#: locale/programs/ld-telephone.c:311 locale/programs/ld-time.c:1219
 #, c-format
 msgid "%s: incomplete `END' line"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂ `END' ÃÂÂ"
 
-#: locale/programs/ld-address.c:608 locale/programs/ld-collate.c:543
-#: locale/programs/ld-collate.c:595 locale/programs/ld-collate.c:891
-#: locale/programs/ld-collate.c:904 locale/programs/ld-collate.c:2732
-#: locale/programs/ld-collate.c:2753 locale/programs/ld-collate.c:4107
-#: locale/programs/ld-ctype.c:1984 locale/programs/ld-ctype.c:2242
-#: locale/programs/ld-ctype.c:2828 locale/programs/ld-ctype.c:3014
-#: locale/programs/ld-identification.c:458
-#: locale/programs/ld-measurement.c:244 locale/programs/ld-messages.c:338
-#: locale/programs/ld-monetary.c:949 locale/programs/ld-name.c:313
-#: locale/programs/ld-numeric.c:374 locale/programs/ld-paper.c:247
-#: locale/programs/ld-telephone.c:319 locale/programs/ld-time.c:1227
+#: locale/programs/ld-address.c:609 locale/programs/ld-collate.c:544
+#: locale/programs/ld-collate.c:596 locale/programs/ld-collate.c:892
+#: locale/programs/ld-collate.c:905 locale/programs/ld-collate.c:2733
+#: locale/programs/ld-collate.c:2754 locale/programs/ld-collate.c:4108
+#: locale/programs/ld-ctype.c:1985 locale/programs/ld-ctype.c:2243
+#: locale/programs/ld-ctype.c:2829 locale/programs/ld-ctype.c:3015
+#: locale/programs/ld-identification.c:459
+#: locale/programs/ld-measurement.c:245 locale/programs/ld-messages.c:339
+#: locale/programs/ld-monetary.c:949 locale/programs/ld-name.c:314
+#: locale/programs/ld-numeric.c:375 locale/programs/ld-paper.c:248
+#: locale/programs/ld-telephone.c:320 locale/programs/ld-time.c:1228
 #, c-format
 msgid "%s: syntax error"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:418
+#: locale/programs/ld-collate.c:419
 #, c-format
 msgid "`%.*s' already defined in charmap"
 msgstr "`%.*s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:427
+#: locale/programs/ld-collate.c:428
 #, c-format
 msgid "`%.*s' already defined in repertoire"
 msgstr "`%.*s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:434
+#: locale/programs/ld-collate.c:435
 #, c-format
 msgid "`%.*s' already defined as collating symbol"
 msgstr "`%.*s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:441
+#: locale/programs/ld-collate.c:442
 #, c-format
 msgid "`%.*s' already defined as collating element"
 msgstr "`%.*s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:472 locale/programs/ld-collate.c:498
+#: locale/programs/ld-collate.c:473 locale/programs/ld-collate.c:499
 #, c-format
 msgid "%s: `forward' and `backward' are mutually excluding each other"
 msgstr "%s: `forward' ÃÂÂÃÂÂ `backward' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:482 locale/programs/ld-collate.c:508
-#: locale/programs/ld-collate.c:524
+#: locale/programs/ld-collate.c:483 locale/programs/ld-collate.c:509
+#: locale/programs/ld-collate.c:525
 #, c-format
 msgid "%s: `%s' mentioned more than once in definition of weight %d"
 msgstr "%s: `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %d ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:580
+#: locale/programs/ld-collate.c:581
 #, c-format
 msgid "%s: too many rules; first entry only had %d"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %d"
 
-#: locale/programs/ld-collate.c:616
+#: locale/programs/ld-collate.c:617
 #, c-format
 msgid "%s: not enough sorting rules"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:781
+#: locale/programs/ld-collate.c:782
 #, c-format
 msgid "%s: empty weight string not allowed"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:876
+#: locale/programs/ld-collate.c:877
 #, c-format
 msgid "%s: weights must use the same ellipsis symbol as the name"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:932
+#: locale/programs/ld-collate.c:933
 #, c-format
 msgid "%s: too many values"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1052 locale/programs/ld-collate.c:1227
+#: locale/programs/ld-collate.c:1053 locale/programs/ld-collate.c:1228
 #, c-format
 msgid "order for `%.*s' already defined at %s:%Zu"
 msgstr "`%.*s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s:%Zu ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1102
+#: locale/programs/ld-collate.c:1103
 #, c-format
 msgid "%s: the start and the end symbol of a range must stand for characters"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1129
+#: locale/programs/ld-collate.c:1130
 #, c-format
 msgid "%s: byte sequences of first and last character must have the same length"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1171
+#: locale/programs/ld-collate.c:1172
 #, c-format
 msgid "%s: byte sequence of first character of range is not lower than that of the last character"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1296
+#: locale/programs/ld-collate.c:1297
 #, c-format
 msgid "%s: symbolic range ellipsis must not directly follow `order_start'"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `order_start' ÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1300
+#: locale/programs/ld-collate.c:1301
 #, c-format
 msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `order_end' ÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1320 locale/programs/ld-ctype.c:1501
+#: locale/programs/ld-collate.c:1321 locale/programs/ld-ctype.c:1502
 #, c-format
 msgid "`%s' and `%.*s' are not valid names for symbolic range"
 msgstr "`%s' ÃÂÂ `%.*s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1370 locale/programs/ld-collate.c:3858
+#: locale/programs/ld-collate.c:1371 locale/programs/ld-collate.c:3859
 #, c-format
 msgid "%s: order for `%.*s' already defined at %s:%Zu"
 msgstr "%s: `%.*s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s:%Zu ÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1379
+#: locale/programs/ld-collate.c:1380
 #, c-format
 msgid "%s: `%s' must be a character"
 msgstr "%s: `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1574
+#: locale/programs/ld-collate.c:1575
 #, c-format
 msgid "%s: `position' must be used for a specific level in all sections or none"
 msgstr "%s: `position' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1599
+#: locale/programs/ld-collate.c:1600
 #, c-format
 msgid "symbol `%s' not defined"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1675 locale/programs/ld-collate.c:1781
+#: locale/programs/ld-collate.c:1676 locale/programs/ld-collate.c:1782
 #, c-format
 msgid "symbol `%s' has the same encoding as"
 msgstr "ÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ: "
 
-#: locale/programs/ld-collate.c:1679 locale/programs/ld-collate.c:1785
+#: locale/programs/ld-collate.c:1680 locale/programs/ld-collate.c:1786
 #, c-format
 msgid "symbol `%s'"
 msgstr "ÃÂÂÃÂÂ `%s'"
 
-#: locale/programs/ld-collate.c:1827
+#: locale/programs/ld-collate.c:1828
 #, c-format
 msgid "no definition of `UNDEFINED'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ `UNDEFINED' ÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:1856
+#: locale/programs/ld-collate.c:1857
 #, c-format
 msgid "too many errors; giving up"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:2658 locale/programs/ld-collate.c:4046
+#: locale/programs/ld-collate.c:2659 locale/programs/ld-collate.c:4047
 #, c-format
 msgid "%s: nested conditionals not supported"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:2676
+#: locale/programs/ld-collate.c:2677
 #, c-format
 msgid "%s: more then one 'else'"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂelseÃÂÂ"
 
-#: locale/programs/ld-collate.c:2851
+#: locale/programs/ld-collate.c:2852
 #, c-format
 msgid "%s: duplicate definition of `%s'"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s'"
 
-#: locale/programs/ld-collate.c:2887
+#: locale/programs/ld-collate.c:2888
 #, c-format
 msgid "%s: duplicate declaration of section `%s'"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3023
+#: locale/programs/ld-collate.c:3024
 #, c-format
 msgid "%s: unknown character in collating symbol name"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3152
+#: locale/programs/ld-collate.c:3153
 #, c-format
 msgid "%s: unknown character in equivalent definition name"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3163
+#: locale/programs/ld-collate.c:3164
 #, c-format
 msgid "%s: unknown character in equivalent definition value"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3173
+#: locale/programs/ld-collate.c:3174
 #, c-format
 msgid "%s: unknown symbol `%s' in equivalent definition"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3182
+#: locale/programs/ld-collate.c:3183
 msgid "error while adding equivalent collating symbol"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3220
+#: locale/programs/ld-collate.c:3221
 #, c-format
 msgid "duplicate definition of script `%s'"
 msgstr "ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3268
+#: locale/programs/ld-collate.c:3269
 #, c-format
 msgid "%s: unknown section name `%.*s'"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ%.*sÃÂÂ"
 
-#: locale/programs/ld-collate.c:3297
+#: locale/programs/ld-collate.c:3298
 #, c-format
 msgid "%s: multiple order definitions for section `%s'"
 msgstr "%s: `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3325
+#: locale/programs/ld-collate.c:3326
 #, c-format
 msgid "%s: invalid number of sorting rules"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3352
+#: locale/programs/ld-collate.c:3353
 #, c-format
 msgid "%s: multiple order definitions for unnamed section"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3407 locale/programs/ld-collate.c:3537
-#: locale/programs/ld-collate.c:3900
+#: locale/programs/ld-collate.c:3408 locale/programs/ld-collate.c:3538
+#: locale/programs/ld-collate.c:3901
 #, c-format
 msgid "%s: missing `order_end' keyword"
 msgstr "%s: ÃÂÂÃÂÂ `order_end' ÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3470
+#: locale/programs/ld-collate.c:3471
 #, c-format
 msgid "%s: order for collating symbol %.*s not yet defined"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂ %.*s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3488
+#: locale/programs/ld-collate.c:3489
 #, c-format
 msgid "%s: order for collating element %.*s not yet defined"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂ %.*s ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3499
+#: locale/programs/ld-collate.c:3500
 #, c-format
 msgid "%s: cannot reorder after %.*s: symbol not known"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %.*s ÃÂÂÃÂÂ: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3551 locale/programs/ld-collate.c:3912
+#: locale/programs/ld-collate.c:3552 locale/programs/ld-collate.c:3913
 #, c-format
 msgid "%s: missing `reorder-end' keyword"
 msgstr "%s: ÃÂÂÃÂÂ `reorder-end' ÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3585 locale/programs/ld-collate.c:3783
+#: locale/programs/ld-collate.c:3586 locale/programs/ld-collate.c:3784
 #, c-format
 msgid "%s: section `%.*s' not known"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%.*s'"
 
-#: locale/programs/ld-collate.c:3650
+#: locale/programs/ld-collate.c:3651
 #, c-format
 msgid "%s: bad symbol <%.*s>"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ <%.*s>"
 
-#: locale/programs/ld-collate.c:3846
+#: locale/programs/ld-collate.c:3847
 #, c-format
 msgid "%s: cannot have `%s' as end of ellipsis range"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3896
+#: locale/programs/ld-collate.c:3897
 #, c-format
 msgid "%s: empty category description not allowed"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:3915
+#: locale/programs/ld-collate.c:3916
 #, c-format
 msgid "%s: missing `reorder-sections-end' keyword"
 msgstr "%s: ÃÂÂÃÂÂ `reorder-sections-end' ÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-collate.c:4079
+#: locale/programs/ld-collate.c:4080
 #, c-format
 msgid "%s: '%s' without matching 'ifdef' or 'ifndef'"
 msgstr "%s:ÃÂÂ%sÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂifdefÃÂÂÃÂÂÃÂÂifndefÃÂÂ"
 
-#: locale/programs/ld-collate.c:4097
+#: locale/programs/ld-collate.c:4098
 #, c-format
 msgid "%s: 'endif' without matching 'ifdef' or 'ifndef'"
 msgstr "%s:ÃÂÂendifÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂifdefÃÂÂÃÂÂÃÂÂifndefÃÂÂ"
 
-#: locale/programs/ld-ctype.c:439
+#: locale/programs/ld-ctype.c:440
 #, c-format
 msgid "No character set name specified in charmap"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ (charmap) ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:468
+#: locale/programs/ld-ctype.c:469
 #, c-format
 msgid "character L'\\u%0*x' in class `%s' must be in class `%s'"
 msgstr "character L'\\u%0*x' (ÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂ) ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:483
+#: locale/programs/ld-ctype.c:484
 #, c-format
 msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'"
 msgstr "character L'\\u%0*x' (ÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂ) ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:497 locale/programs/ld-ctype.c:555
+#: locale/programs/ld-ctype.c:498 locale/programs/ld-ctype.c:556
 #, c-format
 msgid "internal error in %s, line %u"
 msgstr "%s ÃÂÂÃÂÂ %u ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:526
+#: locale/programs/ld-ctype.c:527
 #, c-format
 msgid "character '%s' in class `%s' must be in class `%s'"
 msgstr "ÃÂÂÃÂÂ '%s' (ÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂ) ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:542
+#: locale/programs/ld-ctype.c:543
 #, c-format
 msgid "character '%s' in class `%s' must not be in class `%s'"
 msgstr "ÃÂÂÃÂÂ '%s' (ÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂ) ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:572 locale/programs/ld-ctype.c:610
+#: locale/programs/ld-ctype.c:573 locale/programs/ld-ctype.c:611
 #, c-format
 msgid "<SP> character not in class `%s'"
 msgstr "<SP> ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂ"
 
-#: locale/programs/ld-ctype.c:584 locale/programs/ld-ctype.c:621
+#: locale/programs/ld-ctype.c:585 locale/programs/ld-ctype.c:622
 #, c-format
 msgid "<SP> character must not be in class `%s'"
 msgstr "<SP> ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂ"
 
-#: locale/programs/ld-ctype.c:599
+#: locale/programs/ld-ctype.c:600
 #, c-format
 msgid "character <SP> not defined in character map"
 msgstr "ÃÂÂÃÂÂ <SP> ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:735
+#: locale/programs/ld-ctype.c:736
 #, c-format
 msgid "`digit' category has not entries in groups of ten"
 msgstr "`digit' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ \"ÃÂÂ\" ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:784
+#: locale/programs/ld-ctype.c:785
 #, c-format
 msgid "no input digits defined and none of the standard names in the charmap"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:849
+#: locale/programs/ld-ctype.c:850
 #, c-format
 msgid "not all characters used in `outdigit' are available in the charmap"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `outdigit' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:866
+#: locale/programs/ld-ctype.c:867
 #, c-format
 msgid "not all characters used in `outdigit' are available in the repertoire"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `outdigit' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:1269
+#: locale/programs/ld-ctype.c:1270
 #, c-format
 msgid "character class `%s' already defined"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:1275
+#: locale/programs/ld-ctype.c:1276
 #, c-format
 msgid "implementation limit: no more than %Zd character classes allowed"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:1301
+#: locale/programs/ld-ctype.c:1302
 #, c-format
 msgid "character map `%s' already defined"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:1307
+#: locale/programs/ld-ctype.c:1308
 #, c-format
 msgid "implementation limit: no more than %d character maps allowed"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %d ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:1572 locale/programs/ld-ctype.c:1697
-#: locale/programs/ld-ctype.c:1803 locale/programs/ld-ctype.c:2493
-#: locale/programs/ld-ctype.c:3489
+#: locale/programs/ld-ctype.c:1573 locale/programs/ld-ctype.c:1698
+#: locale/programs/ld-ctype.c:1804 locale/programs/ld-ctype.c:2494
+#: locale/programs/ld-ctype.c:3490
 #, c-format
 msgid "%s: field `%s' does not contain exactly ten entries"
 msgstr "%s: `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:1600 locale/programs/ld-ctype.c:2174
+#: locale/programs/ld-ctype.c:1601 locale/programs/ld-ctype.c:2175
 #, c-format
 msgid "to-value <U%0*X> of range is smaller than from-value <U%0*X>"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ <U%0*X> ÃÂÂÃÂÂÃÂÂÃÂÂ <U%0*X> ÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:1727
+#: locale/programs/ld-ctype.c:1728
 msgid "start and end character sequence of range must have the same length"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:1734
+#: locale/programs/ld-ctype.c:1735
 msgid "to-value character sequence is smaller than from-value sequence"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:2094 locale/programs/ld-ctype.c:2145
+#: locale/programs/ld-ctype.c:2095 locale/programs/ld-ctype.c:2146
 msgid "premature end of `translit_ignore' definition"
 msgstr "`translit_ignore' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:2100 locale/programs/ld-ctype.c:2151
-#: locale/programs/ld-ctype.c:2193
+#: locale/programs/ld-ctype.c:2101 locale/programs/ld-ctype.c:2152
+#: locale/programs/ld-ctype.c:2194
 msgid "syntax error"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:2326
+#: locale/programs/ld-ctype.c:2327
 #, c-format
 msgid "%s: syntax error in definition of new character class"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:2341
+#: locale/programs/ld-ctype.c:2342
 #, c-format
 msgid "%s: syntax error in definition of new character map"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:2515
+#: locale/programs/ld-ctype.c:2516
 msgid "ellipsis range must be marked by two operands of same type"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:2524
+#: locale/programs/ld-ctype.c:2525
 msgid "with symbolic name range values the absolute ellipsis `...' must not be used"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `ÃÂÂ'"
 
-#: locale/programs/ld-ctype.c:2539
+#: locale/programs/ld-ctype.c:2540
 msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂ UCS ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `..'"
 
-#: locale/programs/ld-ctype.c:2553
+#: locale/programs/ld-ctype.c:2554
 msgid "with character code range values one must use the absolute ellipsis `...'"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `ÃÂÂ'"
 
-#: locale/programs/ld-ctype.c:2704
+#: locale/programs/ld-ctype.c:2705
 #, c-format
 msgid "duplicated definition for mapping `%s'"
 msgstr "ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:2790 locale/programs/ld-ctype.c:2934
+#: locale/programs/ld-ctype.c:2791 locale/programs/ld-ctype.c:2935
 #, c-format
 msgid "%s: `translit_start' section does not end with `translit_end'"
 msgstr "%s: `translit_start' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `translit_end' ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:2885
+#: locale/programs/ld-ctype.c:2886
 #, c-format
 msgid "%s: duplicate `default_missing' definition"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂ `default_missing' ÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:2890
+#: locale/programs/ld-ctype.c:2891
 msgid "previous definition was here"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:2912
+#: locale/programs/ld-ctype.c:2913
 #, c-format
 msgid "%s: no representable `default_missing' definition found"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `default_missing' ÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:3065 locale/programs/ld-ctype.c:3149
-#: locale/programs/ld-ctype.c:3169 locale/programs/ld-ctype.c:3190
-#: locale/programs/ld-ctype.c:3211 locale/programs/ld-ctype.c:3232
-#: locale/programs/ld-ctype.c:3253 locale/programs/ld-ctype.c:3293
-#: locale/programs/ld-ctype.c:3314 locale/programs/ld-ctype.c:3381
-#: locale/programs/ld-ctype.c:3423 locale/programs/ld-ctype.c:3448
+#: locale/programs/ld-ctype.c:3066 locale/programs/ld-ctype.c:3150
+#: locale/programs/ld-ctype.c:3170 locale/programs/ld-ctype.c:3191
+#: locale/programs/ld-ctype.c:3212 locale/programs/ld-ctype.c:3233
+#: locale/programs/ld-ctype.c:3254 locale/programs/ld-ctype.c:3294
+#: locale/programs/ld-ctype.c:3315 locale/programs/ld-ctype.c:3382
+#: locale/programs/ld-ctype.c:3424 locale/programs/ld-ctype.c:3449
 #, c-format
 msgid "%s: character `%s' not defined while needed as default value"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:3070 locale/programs/ld-ctype.c:3154
-#: locale/programs/ld-ctype.c:3174 locale/programs/ld-ctype.c:3195
-#: locale/programs/ld-ctype.c:3216 locale/programs/ld-ctype.c:3237
-#: locale/programs/ld-ctype.c:3258 locale/programs/ld-ctype.c:3298
-#: locale/programs/ld-ctype.c:3319 locale/programs/ld-ctype.c:3386
+#: locale/programs/ld-ctype.c:3071 locale/programs/ld-ctype.c:3155
+#: locale/programs/ld-ctype.c:3175 locale/programs/ld-ctype.c:3196
+#: locale/programs/ld-ctype.c:3217 locale/programs/ld-ctype.c:3238
+#: locale/programs/ld-ctype.c:3259 locale/programs/ld-ctype.c:3299
+#: locale/programs/ld-ctype.c:3320 locale/programs/ld-ctype.c:3387
 #, c-format
 msgid "%s: character `%s' in charmap not representable with one byte"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:3430 locale/programs/ld-ctype.c:3455
+#: locale/programs/ld-ctype.c:3431 locale/programs/ld-ctype.c:3456
 #, c-format
 msgid "%s: character `%s' needed as default value not representable with one byte"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:3511
+#: locale/programs/ld-ctype.c:3512
 #, c-format
 msgid "no output digits defined and none of the standard names in the charmap"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:3802
+#: locale/programs/ld-ctype.c:3803
 #, c-format
 msgid "%s: transliteration data from locale `%s' not available"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂ`%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-ctype.c:3903
+#: locale/programs/ld-ctype.c:3904
 #, c-format
 msgid "%s: table for class \"%s\": %lu bytes\n"
 msgstr "%s: ÃÂÂÃÂÂ \"%s\" ÃÂÂÃÂÂ: %lu ÃÂÂÃÂÂÃÂÂ\n"
 
-#: locale/programs/ld-ctype.c:3972
+#: locale/programs/ld-ctype.c:3973
 #, c-format
 msgid "%s: table for map \"%s\": %lu bytes\n"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂ \"%s\" ÃÂÂÃÂÂ: %lu ÃÂÂÃÂÂÃÂÂ\n"
 
-#: locale/programs/ld-ctype.c:4105
+#: locale/programs/ld-ctype.c:4106
 #, c-format
 msgid "%s: table for width: %lu bytes\n"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂ: %lu ÃÂÂÃÂÂÃÂÂ\n"
 
-#: locale/programs/ld-identification.c:169
+#: locale/programs/ld-identification.c:170
 #, c-format
 msgid "%s: no identification for category `%s'"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-identification.c:434
+#: locale/programs/ld-identification.c:435
 #, c-format
 msgid "%s: duplicate category version definition"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-measurement.c:112
+#: locale/programs/ld-measurement.c:113
 #, c-format
 msgid "%s: invalid value for field `%s'"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-messages.c:113 locale/programs/ld-messages.c:147
+#: locale/programs/ld-messages.c:114 locale/programs/ld-messages.c:148
 #, c-format
 msgid "%s: field `%s' undefined"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-messages.c:120 locale/programs/ld-messages.c:154
-#: locale/programs/ld-monetary.c:255 locale/programs/ld-numeric.c:117
+#: locale/programs/ld-messages.c:121 locale/programs/ld-messages.c:155
+#: locale/programs/ld-monetary.c:255 locale/programs/ld-numeric.c:118
 #, c-format
 msgid "%s: value for field `%s' must not be an empty string"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-messages.c:136 locale/programs/ld-messages.c:170
+#: locale/programs/ld-messages.c:137 locale/programs/ld-messages.c:171
 #, c-format
 msgid "%s: no correct regular expression for field `%s': %s"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %s"
@@ -2418,17 +2435,17 @@
 msgid "%s: value for field `%s' must be in range %d...%d"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %dÃÂÂ%d"
 
-#: locale/programs/ld-monetary.c:746 locale/programs/ld-numeric.c:273
+#: locale/programs/ld-monetary.c:746 locale/programs/ld-numeric.c:274
 #, c-format
 msgid "%s: value for field `%s' must be a single character"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-monetary.c:843 locale/programs/ld-numeric.c:317
+#: locale/programs/ld-monetary.c:843 locale/programs/ld-numeric.c:318
 #, c-format
 msgid "%s: `-1' must be last entry in `%s' field"
 msgstr "%s: `-1' ÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-monetary.c:865 locale/programs/ld-numeric.c:334
+#: locale/programs/ld-monetary.c:865 locale/programs/ld-numeric.c:335
 #, c-format
 msgid "%s: values for field `%s' must be smaller than 127"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ 127"
@@ -2437,126 +2454,126 @@
 msgid "conversion rate value cannot be zero"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-name.c:128 locale/programs/ld-telephone.c:125
-#: locale/programs/ld-telephone.c:148
+#: locale/programs/ld-name.c:129 locale/programs/ld-telephone.c:126
+#: locale/programs/ld-telephone.c:149
 #, c-format
 msgid "%s: invalid escape sequence in field `%s'"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-time.c:246
+#: locale/programs/ld-time.c:247
 #, c-format
 msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'"
 msgstr "%s: ÃÂÂ `era' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ '+' ÃÂÂÃÂÂÃÂÂ '-'"
 
-#: locale/programs/ld-time.c:257
+#: locale/programs/ld-time.c:258
 #, c-format
 msgid "%s: direction flag in string %Zd in `era' field is not a single character"
 msgstr "%s: ÃÂÂ `era' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-time.c:270
+#: locale/programs/ld-time.c:271
 #, c-format
 msgid "%s: invalid number for offset in string %Zd in `era' field"
 msgstr "%s: ÃÂÂ `era' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-time.c:278
+#: locale/programs/ld-time.c:279
 #, c-format
 msgid "%s: garbage at end of offset value in string %Zd in `era' field"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `era' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-time.c:329
+#: locale/programs/ld-time.c:330
 #, c-format
 msgid "%s: invalid starting date in string %Zd in `era' field"
 msgstr "%s: ÃÂÂ `era' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-time.c:338
+#: locale/programs/ld-time.c:339
 #, c-format
 msgid "%s: garbage at end of starting date in string %Zd in `era' field "
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `era' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-time.c:357
+#: locale/programs/ld-time.c:358
 #, c-format
 msgid "%s: starting date is invalid in string %Zd in `era' field"
 msgstr "%s: ÃÂÂ `era' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-time.c:406 locale/programs/ld-time.c:434
+#: locale/programs/ld-time.c:407 locale/programs/ld-time.c:435
 #, c-format
 msgid "%s: invalid stopping date in string %Zd in `era' field"
 msgstr "%s: ÃÂÂ `era' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-time.c:415
+#: locale/programs/ld-time.c:416
 #, c-format
 msgid "%s: garbage at end of stopping date in string %Zd in `era' field"
 msgstr "%s: ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ `era' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-time.c:443
+#: locale/programs/ld-time.c:444
 #, c-format
 msgid "%s: missing era name in string %Zd in `era' field"
 msgstr "%s: ÃÂÂÃÂÂ era ÃÂÂÃÂÂÃÂÂÃÂÂ `era' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂ"
 
-#: locale/programs/ld-time.c:455
+#: locale/programs/ld-time.c:456
 #, c-format
 msgid "%s: missing era format in string %Zd in `era' field"
 msgstr "%s: ÃÂÂÃÂÂ era ÃÂÂÃÂÂÃÂÂÃÂÂ `era' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %Zd ÃÂÂ"
 
-#: locale/programs/ld-time.c:496
+#: locale/programs/ld-time.c:497
 #, c-format
 msgid "%s: third operand for value of field `%s' must not be larger than %d"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %d ÃÂÂ"
 
-#: locale/programs/ld-time.c:504 locale/programs/ld-time.c:512
-#: locale/programs/ld-time.c:520
+#: locale/programs/ld-time.c:505 locale/programs/ld-time.c:513
+#: locale/programs/ld-time.c:521
 #, c-format
 msgid "%s: values for field `%s' must not be larger than %d"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ %d"
 
-#: locale/programs/ld-time.c:1003
+#: locale/programs/ld-time.c:1004
 #, c-format
 msgid "%s: too few values for field `%s'"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-time.c:1048
+#: locale/programs/ld-time.c:1049
 msgid "extra trailing semicolon"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/ld-time.c:1051
+#: locale/programs/ld-time.c:1052
 #, c-format
 msgid "%s: too many values for field `%s'"
 msgstr "%s: ÃÂÂÃÂÂ `%s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/linereader.c:129
+#: locale/programs/linereader.c:130
 msgid "trailing garbage at end of line"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/linereader.c:297
+#: locale/programs/linereader.c:298
 msgid "garbage at end of number"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/linereader.c:409
+#: locale/programs/linereader.c:410
 msgid "garbage at end of character code specification"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/linereader.c:495
+#: locale/programs/linereader.c:496
 msgid "unterminated symbolic name"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/linereader.c:622
+#: locale/programs/linereader.c:623
 msgid "illegal escape sequence at end of string"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/linereader.c:626 locale/programs/linereader.c:854
+#: locale/programs/linereader.c:627 locale/programs/linereader.c:855
 msgid "unterminated string"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/linereader.c:668
+#: locale/programs/linereader.c:669
 msgid "non-symbolic character value should not be used"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/linereader.c:815
+#: locale/programs/linereader.c:816
 #, c-format
 msgid "symbol `%.*s' not in charmap"
 msgstr "ÃÂÂÃÂÂ `%.*s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/linereader.c:836
+#: locale/programs/linereader.c:837
 #, c-format
 msgid "symbol `%.*s' not in repertoire map"
 msgstr "ÃÂÂÃÂÂ `%.*s' ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
@@ -2566,39 +2583,39 @@
 msgid "unknown name \"%s\""
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ%sÃÂÂ"
 
-#: locale/programs/locale.c:74
+#: locale/programs/locale.c:72
 msgid "System information:"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ:"
 
-#: locale/programs/locale.c:76
+#: locale/programs/locale.c:74
 msgid "Write names of available locales"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/locale.c:78
+#: locale/programs/locale.c:76
 msgid "Write names of available charmaps"
 msgstr "ÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂÃÂÂ"
 
-#: locale/programs/locale.c:79

[... 2722 lines stripped ...]
_______________________________________________
Commits mailing list
Commits@xxxxxxxxxx
http://eglibc.org/cgi-bin/mailman/listinfo/commits