summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-08-20 06:37:56 +0000
committerUlrich Drepper <drepper@redhat.com>2001-08-20 06:37:56 +0000
commit9af652f60865624b4f44605c0c8bd4c23a18a2a7 (patch)
tree74905537f4aacd0ad0f819845808639df06d8612
parent091b895531aabba1adc36ac6b68dd91ba52a0945 (diff)
Update.
2001-08-19 Ulrich Drepper <drepper@redhat.com> * sunrpc/svcauth_des.c (_svcauth_des): Avoid using bcopy. * sunrpc/xdr_rec.c: Likewise. * sunrpc/xdr_mem.c: Likewise. * sunrpc/svc_authux.c (_svcauth_unix): Likewise. * sunrpc/rpc_cmsg.c: Likewise. * sunrpc/getrpcport.c (getrpcport): Likewise. * sunrpc/clnt_simp.c (callrpc): Likewise. * sunrpc/clnt_gen.c (clnt_create): Likewise. * string/envz.c: Likewise. * po/ko.po: Update from translation team. * argp/argp-help.c: Handle wide oriented stderr stream. * conform/conformtest.pl: <inttypes.h> test requires <stddef.h>.
-rw-r--r--ChangeLog18
-rw-r--r--argp/argp-help.c100
-rw-r--r--po/ko.po1538
-rw-r--r--string/envz.c8
-rw-r--r--sunrpc/clnt_gen.c2
-rw-r--r--sunrpc/clnt_simp.c2
-rw-r--r--sunrpc/getrpcport.c2
-rw-r--r--sunrpc/rpc_cmsg.c10
-rw-r--r--sunrpc/svc_authux.c2
-rw-r--r--sunrpc/svcauth_des.c2
-rw-r--r--sunrpc/xdr_mem.c4
-rw-r--r--sunrpc/xdr_rec.c4
12 files changed, 950 insertions, 742 deletions
diff --git a/ChangeLog b/ChangeLog
index c8d5e9aa94..19aa87f32d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,25 @@
+2001-08-19 Ulrich Drepper <drepper@redhat.com>
+
+ * sunrpc/svcauth_des.c (_svcauth_des): Avoid using bcopy.
+ * sunrpc/xdr_rec.c: Likewise.
+ * sunrpc/xdr_mem.c: Likewise.
+ * sunrpc/svc_authux.c (_svcauth_unix): Likewise.
+ * sunrpc/rpc_cmsg.c: Likewise.
+ * sunrpc/getrpcport.c (getrpcport): Likewise.
+ * sunrpc/clnt_simp.c (callrpc): Likewise.
+ * sunrpc/clnt_gen.c (clnt_create): Likewise.
+ * string/envz.c: Likewise.
+
+ * po/ko.po: Update from translation team.
+
+ * argp/argp-help.c: Handle wide oriented stderr stream.
+
2001-08-18 Ulrich Drepper <drepper@redhat.com>
* sysdeps/generic/strtol.c: Little optimizations. Add some
__builtin_expect.
- * conform/conformtest.pl: <inttypes.h> test required <stddef.h>.
+ * conform/conformtest.pl: <inttypes.h> test requires <stddef.h>.
* wcsmbs/wchar.h (wcwdith): Change parameter type to wchar_t.
* wcsmbs/wcwidth.c (wcwdith): Likewise.
diff --git a/argp/argp-help.c b/argp/argp-help.c
index 852992591e..de709dff8f 100644
--- a/argp/argp-help.c
+++ b/argp/argp-help.c
@@ -1,5 +1,5 @@
/* Hierarchial argument parsing help output
- Copyright (C) 1995,1996,1997,1998,1999,2000 Free Software Foundation, Inc.
+ Copyright (C) 1995-2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Written by Miles Bader <miles@gnu.ai.mit.edu>.
@@ -52,6 +52,9 @@ char *alloca ();
#include <stdarg.h>
#include <malloc.h>
#include <ctype.h>
+#ifdef USE_IN_LIBIO
+# include <wchar.h>
+#endif
#ifndef _
/* This is for other GNU distributions with internationalized messages. */
@@ -1702,19 +1705,39 @@ __argp_error (const struct argp_state *state, const char *fmt, ...)
__flockfile (stream);
- fputs_unlocked (state ? state->name : program_invocation_short_name,
- stream);
- putc_unlocked (':', stream);
- putc_unlocked (' ', stream);
-
va_start (ap, fmt);
- vfprintf (stream, fmt, ap);
- va_end (ap);
- putc_unlocked ('\n', stream);
+#ifdef USE_IN_LIBIO
+ if (_IO_fwide (stream, 0) > 0)
+ {
+ char *buf;
+
+ asprintf (&buf, fmt, ap);
+
+ fwprintf (stream, L"%s: %s\n",
+ state ? state->name : program_invocation_short_name,
+ buf);
+
+ free (buf);
+ }
+ else
+#endif
+ {
+ fputs_unlocked (state
+ ? state->name : program_invocation_short_name,
+ stream);
+ putc_unlocked (':', stream);
+ putc_unlocked (' ', stream);
+
+ vfprintf (stream, fmt, ap);
+
+ putc_unlocked ('\n', stream);
+ }
__argp_state_help (state, stream, ARGP_HELP_STD_ERR);
+ va_end (ap);
+
__funlockfile (stream);
}
}
@@ -1743,29 +1766,68 @@ __argp_failure (const struct argp_state *state, int status, int errnum,
{
__flockfile (stream);
- fputs_unlocked (state ? state->name : program_invocation_short_name,
- stream);
+#ifdef USE_IN_LIBIO
+ if (_IO_fwide (stream, 0) > 0)
+ fputws_unlocked (state
+ ? state->name : program_invocation_short_name,
+ stream);
+ else
+#endif
+ fputs_unlocked (state
+ ? state->name : program_invocation_short_name,
+ stream);
if (fmt)
{
va_list ap;
- putc_unlocked (':', stream);
- putc_unlocked (' ', stream);
-
va_start (ap, fmt);
- vfprintf (stream, fmt, ap);
+#ifdef USE_IN_LIBIO
+ if (_IO_fwide (stream, 0) > 0)
+ {
+ char *buf;
+
+ asprintf (&buf, fmt, ap);
+
+ fwprintf (stream, L": %s", buf);
+
+ free (buf);
+ }
+ else
+#endif
+ {
+ putc_unlocked (':', stream);
+ putc_unlocked (' ', stream);
+
+ vfprintf (stream, fmt, ap);
+ }
+
va_end (ap);
}
if (errnum)
{
- putc_unlocked (':', stream);
- putc_unlocked (' ', stream);
- fputs (strerror (errnum), stream);
+ char buf[200];
+
+#ifdef USE_IN_LIBIO
+ if (_IO_fwide (stream, 0) > 0)
+ fwprintf (stream, ": %s",
+ __strerror_r (errnum, buf, sizeof (buf)));
+ else
+#endif
+ {
+ putc_unlocked (':', stream);
+ putc_unlocked (' ', stream);
+ fputs (__strerror_r (errnum, buf, sizeof (buf)), stream);
+ }
}
- putc_unlocked ('\n', stream);
+#ifdef USE_IN_LIBIO
+ if (_IO_fwide (stream, 0) > 0)
+ putwc_unlocked (L'\n', stream);
+ else
+#endif
+ putc_unlocked ('\n', stream);
__funlockfile (stream);
diff --git a/po/ko.po b/po/ko.po
index c9c03089c5..0a9ff8528e 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -4,82 +4,88 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: GNU libc 2.2.3\n"
-"POT-Creation-Date: 2001-01-21 08:03-0800\n"
-"PO-Revision-Date: 2001-06-07 02:20+0900\n"
+"Project-Id-Version: GNU libc 2.2.4\n"
+"POT-Creation-Date: 2001-08-13 15:08-0700\n"
+"PO-Revision-Date: 2001-08-20 15:03+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: Korean <ko@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=EUC-KR\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: nis/nis_print.c:274
+#: locale/programs/ld-monetary.c:278
+#, c-format
+msgid "\t\t\t\t\t\t\t %s: value for field `%s' must be in range %d...%d"
+msgstr "\t\t\t\t\t\t\t %s: `%s' ÇʵåÀÇ °ªÀº %d...%d »çÀÌ¿¡ ÀÖ¾î¾ß ÇÕ´Ï´Ù"
+
+#: nis/nis_print.c:277
msgid "\t\tAccess Rights : "
msgstr "\t\tÁ¢±Ù ±ÇÇÑ : "
-#: nis/nis_print.c:272
+#: nis/nis_print.c:275
msgid "\t\tAttributes : "
msgstr "\t\t¼Ó¼º : "
-#: sunrpc/rpc_main.c:1425
+#: sunrpc/rpc_main.c:1427
#, c-format
msgid "\t%s [-abkCLNTM][-Dname[=value]] [-i size] [-I [-K seconds]] [-Y path] infile\n"
msgstr "\t%s [-abkCLNTM][-DÀ̸§[=°ª]] [-i Å©±â] [-I [-K ÃÊ]] [-Y °æ·Î] ÀÔ·ÂÆÄÀÏ\n"
-#: sunrpc/rpc_main.c:1427
+#: sunrpc/rpc_main.c:1429
#, c-format
msgid "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o outfile] [infile]\n"
msgstr "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o Ãâ·ÂÆÄÀÏ] [ÀÔ·ÂÆÄÀÏ]\n"
-#: sunrpc/rpc_main.c:1430
+#: sunrpc/rpc_main.c:1432
#, c-format
msgid "\t%s [-n netid]* [-o outfile] [infile]\n"
msgstr "\t%s [-n ³×Æ®id]* [-o Ãâ·ÂÆÄÀÏ] [ÀÔ·ÂÆÄÀÏ]\n"
-#: sunrpc/rpc_main.c:1429
+#: sunrpc/rpc_main.c:1431
#, c-format
msgid "\t%s [-s nettype]* [-o outfile] [infile]\n"
msgstr "\t%s [-s ³×ƮŸÀÔ]* [-o Ãâ·ÂÆÄÀÏ] [ÀÔ·ÂÆÄÀÏ]\n"
-#: nis/nis_print.c:236
+#: nis/nis_print.c:239
msgid "\tAccess rights: "
msgstr "\tÁ¢±Ù ±ÇÇÑ: "
-#: nis/nis_print.c:294
+#: nis/nis_print.c:297
#, c-format
msgid "\tEntry data of type %s\n"
msgstr "\tŸÀÔ %sÀÇ entry µ¥ÀÌŸ\n"
-#: nis/nis_print.c:172
+#: nis/nis_print.c:175
#, c-format
msgid "\tName : %s\n"
msgstr "\tÀ̸§ : %s\n"
-#: nis/nis_print.c:173
+#: nis/nis_print.c:176
msgid "\tPublic Key : "
msgstr "\t°ø¿ë Å° : "
-#: nis/nis_print.c:235
+#: nis/nis_print.c:238
#, c-format
msgid "\tType : %s\n"
msgstr "\tŸÀÔ : %s\n"
-#: nis/nis_print.c:202
+#: nis/nis_print.c:205
#, c-format
msgid "\tUniversal addresses (%u)\n"
msgstr "\tº¸Æí ÁÖ¼Ò (%u)\n"
-#: nis/nis_print.c:270
+#: nis/nis_print.c:273
#, c-format
msgid "\t[%d]\tName : %s\n"
msgstr "\t[%d]\tÀ̸§ : %s\n"
-#: nis/nis_print.c:297
+#: nis/nis_print.c:300
#, c-format
msgid "\t[%u] - [%u bytes] "
msgstr "\t[%u] - [%u ¹ÙÀÌÆ®] "
#: nscd/nscd_stat.c:154
+#, c-format
msgid ""
"\n"
"%s cache:\n"
@@ -109,11 +115,11 @@ msgstr ""
"%15ld%% ij½¬ È÷Æ®À²\n"
"%15s check /etc/%s for changes\n"
-#: nis/nis_print.c:252
+#: nis/nis_print.c:255
msgid "\nGroup Members :\n"
msgstr "\n±×·ì ¸â¹ö :\n"
-#: nis/nis_print.c:323
+#: nis/nis_print.c:326
msgid "\nTime to Live : "
msgstr "\nÀ¯Áö ½Ã°£ : "
@@ -141,7 +147,7 @@ msgstr " ¾Æ´Ï¿À"
msgid " yes"
msgstr " ¿¹"
-#: nis/nis_print.c:349
+#: nis/nis_print.c:352
#, c-format
msgid " Data Length = %u\n"
msgstr " µ¥ÀÌŸ ±æÀÌ = %u\n"
@@ -198,15 +204,15 @@ msgstr " ÇÁ·Î±×·¥ ¹öÀü ¿øÇü Æ÷Æ®\n"
msgid " or: "
msgstr " ȤÀº: "
-#: elf/ldconfig.c:448
+#: elf/ldconfig.c:457
msgid " (SKIPPED)\n"
msgstr " (Áö³ªÄ§)\n"
-#: elf/ldconfig.c:446
+#: elf/ldconfig.c:455
msgid " (changed)\n"
msgstr " (º¯°æµÊ)\n"
-#: timezone/zic.c:421
+#: timezone/zic.c:427
#, c-format
msgid " (rule from \"%s\", line %d)"
msgstr " (\"%s\"¿¡ ÀÖ´Â ±ÔÄ¢, Çà %d)"
@@ -215,22 +221,22 @@ msgstr " (\"%s\"¿¡ ÀÖ´Â ±ÔÄ¢, Çà %d)"
msgid " [OPTION...]"
msgstr "[<¿É¼Ç>...]"
-#: timezone/zic.c:418
+#: timezone/zic.c:424
#, c-format
msgid "\"%s\", line %d: %s"
msgstr "\"%s\", Çà %d: %s"
-#: timezone/zic.c:983
+#: timezone/zic.c:989
#, c-format
msgid "\"Zone %s\" line and -l option are mutually exclusive"
msgstr "\"Áö¿ª %s\" Çà°ú -l ¿É¼ÇÀº »óÈ£ ¹èŸÀûÀÔ´Ï´Ù"
-#: timezone/zic.c:991
+#: timezone/zic.c:997
#, c-format
msgid "\"Zone %s\" line and -p option are mutually exclusive"
msgstr "\"Áö¿ª %s\" Çà°ú -p ¿É¼ÇÀº »óÈ£ ¹èŸÀûÀÔ´Ï´Ù"
-#: sunrpc/rpc_main.c:1410
+#: sunrpc/rpc_main.c:1412
msgid "\"infile\" is required for template generation flags.\n"
msgstr "ÅÛÇø´ »ý¼º Ç÷¡±×¸¦ À§Çؼ­´Â \"ÀÔ·ÂÆÄÀÏ\"ÀÌ ÇÊ¿äÇÕ´Ï´Ù\n"
@@ -244,58 +250,58 @@ msgstr "%.*s: ARGP_HELP_FMT Àμö´Â °ªÀÌ ÇÊ¿äÇÕ´Ï´Ù"
msgid "%.*s: Unknown ARGP_HELP_FMT parameter"
msgstr "%.*s: ¾Ë¼ö ¾ø´Â ARGP_HELP_FMT ÀÎÀÚ"
-#: locale/programs/ld-address.c:576 locale/programs/ld-collate.c:2593
-#: locale/programs/ld-collate.c:3719 locale/programs/ld-ctype.c:2110
-#: locale/programs/ld-ctype.c:2847 locale/programs/ld-identification.c:440
-#: locale/programs/ld-measurement.c:232 locale/programs/ld-messages.c:326
-#: locale/programs/ld-monetary.c:934 locale/programs/ld-name.c:300
-#: locale/programs/ld-numeric.c:370 locale/programs/ld-paper.c:233
-#: locale/programs/ld-telephone.c:308 locale/programs/ld-time.c:1172
+#: locale/programs/ld-address.c:581 locale/programs/ld-collate.c:2612
+#: locale/programs/ld-collate.c:3740 locale/programs/ld-ctype.c:2112
+#: locale/programs/ld-ctype.c:2849 locale/programs/ld-identification.c:448
+#: locale/programs/ld-measurement.c:237 locale/programs/ld-messages.c:331
+#: locale/programs/ld-monetary.c:936 locale/programs/ld-name.c:305
+#: locale/programs/ld-numeric.c:375 locale/programs/ld-paper.c:238
+#: locale/programs/ld-telephone.c:313 locale/programs/ld-time.c:1199
#, c-format
msgid "%1$s: definition does not end with `END %1$s'"
msgstr "%1$s: Á¤ÀÇ°¡ `END %1$s'·Î ³¡³ªÁö ¾Ê½À´Ï´Ù"
-#: elf/cache.c:165 elf/cache.c:175
+#: elf/cache.c:190 elf/cache.c:200
#, c-format
msgid "%d libs found in cache `%s'\n"
msgstr "%2$s ij½¬¿¡ %1$d°³ÀÇ ¶óÀ̺귯¸®°¡ ¹ß°ßµÇ¾ú½À´Ï´Ù\n"
-#: timezone/zic.c:793
+#: timezone/zic.c:799
#, c-format
msgid "%s in ruleless zone"
msgstr "±ÔÄ¢¾ø´Â Áö¿ª¿¡ %s°¡ ÀÖÀ½"
-#: elf/../sysdeps/generic/readelflib.c:65
+#: elf/../sysdeps/generic/readelflib.c:67
#, c-format
msgid "%s is a 32 bit ELF file.\n"
msgstr "%sÀº(´Â) 32ºñÆ® ELF ÆÄÀÏÀÔ´Ï´Ù.\n"
-#: elf/../sysdeps/generic/readelflib.c:67
+#: elf/../sysdeps/generic/readelflib.c:69
#, c-format
msgid "%s is a 64 bit ELF file.\n"
msgstr "%sÀº(´Â) 64ºñÆ® ELF ÆÄÀÏÀÔ´Ï´Ù.\n"
-#: elf/../sysdeps/unix/sysv/linux/i386/readelflib.c:48
+#: elf/../sysdeps/unix/sysv/linux/i386/readelflib.c:49
#, c-format
msgid "%s is for unknown machine %d.\n"
msgstr "%sÀº(´Â) ¾Ë·ÁÁöÁö ¾ÊÀº ±â°è %dÀ»(¸¦) À§ÇÑ °ÍÀÔ´Ï´Ù.\n"
-#: elf/ldconfig.c:329
+#: elf/ldconfig.c:326
#, c-format
msgid "%s is not a known library type"
msgstr "%sÀº(´Â) ¾Ë·ÁÁø ¶óÀ̺귯¸® ŸÀÔÀÌ ¾Æ´Õ´Ï´Ù"
-#: elf/../sysdeps/generic/readelflib.c:76
+#: elf/../sysdeps/generic/readelflib.c:78
#, c-format
msgid "%s is not a shared object file (Type: %d).\n"
msgstr "%sÀº(´Â) µ¿Àû ¿ÀºêÁ§Æ® ÆÄÀÏÀÌ ¾Æ´Õ´Ï´Ù (ŸÀÔ: %d).\n"
-#: elf/ldconfig.c:415
+#: elf/ldconfig.c:424
#, c-format
msgid "%s is not a symbolic link\n"
msgstr "%sÀº(´Â) ½Éº¼¸¯ ¸µÅ©°¡ ¾Æ´Õ´Ï´Ù\n"
-#: elf/readlib.c:157
+#: elf/readlib.c:155
#, c-format
msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n"
msgstr "%sÀº(´Â) ELF ÆÄÀÏÀÌ ¾Æ´Õ´Ï´Ù - ½ÃÀۺκÐÀÇ ¸ÅÁ÷ ¹ÙÀÌÆ®°¡ Ʋ·È½À´Ï´Ù.\n"
@@ -315,12 +321,12 @@ msgstr "%s%s%s:%u: %s%s¿¹±âÄ¡ ¸øÇÑ ¿À·ù: %s.\n"
msgid "%s%sUnknown signal %d\n"
msgstr "%s%s¾Ë ¼ö ¾ø´Â ½ÅÈ£ %d\n"
-#: timezone/zic.c:2228
+#: timezone/zic.c:2234
#, c-format
msgid "%s: %d did not sign extend correctly\n"
msgstr "%s: %d´Â ºÎÈ£ È®ÀåÀÌ Á¦´ë·Î µÇÁö ¾Ê¾Ò½À´Ï´Ù\n"
-#: locale/programs/charmap.c:326
+#: locale/programs/charmap.c:331
#, c-format
msgid "%s: <mb_cur_max> must be greater than <mb_cur_min>\n"
msgstr "%s: <mb_cur_max>´Â <mb_cur_min>º¸´Ù Ä¿¾ß ÇÕ´Ï´Ù\n"
@@ -335,87 +341,82 @@ msgstr "%s: C Àü󸮱Ⱑ Á¾·á ÄÚµå %d·Î ½ÇÆÐÇÏ¿´½À´Ï´Ù\n"
msgid "%s: C preprocessor failed with signal %d\n"
msgstr "%s: C Àü󷯱Ⱑ ½Ã±×³¯ %d·Î ½ÇÆÐÇÏ¿´½À´Ï´Ù\n"
-#: timezone/zic.c:1494
+#: timezone/zic.c:1500
#, c-format
msgid "%s: Can't create %s: %s\n"
msgstr "%s: %s¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù: %s\n"
-#: timezone/zic.c:2206
+#: timezone/zic.c:2212
#, c-format
msgid "%s: Can't create directory %s: %s\n"
msgstr "%s: %s µð·ºÅ丮¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù: %s\n"
-#: timezone/zic.c:645
+#: timezone/zic.c:651
#, c-format
msgid "%s: Can't link from %s to %s: %s\n"
msgstr "%s: %s¸¦ %s·Î ¸µÅ©ÇÒ ¼ö ¾ø½À´Ï´Ù: %s\n"
-#: timezone/zic.c:819
+#: timezone/zic.c:825
#, c-format
msgid "%s: Can't open %s: %s\n"
msgstr "%s: %s¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù: %s\n"
-#: timezone/zic.c:1484
+#: timezone/zic.c:1490
#, c-format
msgid "%s: Can't remove %s: %s\n"
msgstr "%s: %sÀ»(¸¦) Áö¿ï ¼ö ¾ø½À´Ï´Ù: %s\n"
-#: timezone/zic.c:630
+#: timezone/zic.c:636
#, c-format
msgid "%s: Can't unlink %s: %s\n"
msgstr "%s: %sÀ»(¸¦) Áö¿ï ¼ö ¾ø½À´Ï´Ù: %s\n"
-#: timezone/zic.c:888
+#: timezone/zic.c:894
#, c-format
msgid "%s: Error closing %s: %s\n"
msgstr "%s: %sÀ»(¸¦) ´Ý´Â µµÁß ¿À·ù ¹ß»ý: %s\n"
-#: timezone/zic.c:881
+#: timezone/zic.c:887
#, c-format
msgid "%s: Error reading %s\n"
msgstr "%s: %sÀ»(¸¦) Àд µµÁß ¿À·ù ¹ß»ý\n"
-#: timezone/zdump.c:267
-#, c-format
-msgid "%s: Error writing "
-msgstr "%s: ¾²´Â µµÁß ¿À·ù ¹ß»ý"
-
-#: timezone/zic.c:1560
+#: timezone/zic.c:1566
#, c-format
msgid "%s: Error writing %s\n"
msgstr "%s: %sÀ»(¸¦) ¾²´Â µµÁß ¿À·ù ¹ß»ý\n"
-#: timezone/zic.c:866
+#: timezone/zic.c:872
#, c-format
msgid "%s: Leap line in non leap seconds file %s\n"
msgstr "%s: À±ÃÊ ÆÄÀÏÀÌ ¾Æ´Ñ %s ÆÄÀÏ¿¡ Leap ÁÙÀÌ ÀÖÀ½\n"
-#: timezone/zic.c:359
+#: timezone/zic.c:365
#, c-format
msgid "%s: Memory exhausted: %s\n"
msgstr "%s: ¸Þ¸ð¸®°¡ ¹Ù´Ú³²: %s\n"
-#: timezone/zic.c:525
+#: timezone/zic.c:531
#, c-format
msgid "%s: More than one -L option specified\n"
msgstr "%s: Çϳª ÀÌ»óÀÇ -L ¿É¼ÇÀÌ ÁöÁ¤µÇ¾úÀ½\n"
-#: timezone/zic.c:485
+#: timezone/zic.c:491
#, c-format
msgid "%s: More than one -d option specified\n"
msgstr "%s: Çϳª ÀÌ»óÀÇ -d ¿É¼ÇÀÌ ÁöÁ¤µÇ¾úÀ½\n"
-#: timezone/zic.c:495
+#: timezone/zic.c:501
#, c-format
msgid "%s: More than one -l option specified\n"
msgstr "%s: Çϳª ÀÌ»óÀÇ -l ¿É¼ÇÀÌ ÁöÁ¤µÇ¾úÀ½\n"
-#: timezone/zic.c:505
+#: timezone/zic.c:511
#, c-format
msgid "%s: More than one -p option specified\n"
msgstr "%s: Çϳª ÀÌ»óÀÇ -p ¿É¼ÇÀÌ ÁöÁ¤µÇ¾úÀ½\n"
-#: timezone/zic.c:515
+#: timezone/zic.c:521
#, c-format
msgid "%s: More than one -y option specified\n"
msgstr "%s: Çϳª ÀÌ»óÀÇ -y ¿É¼ÇÀÌ ÁöÁ¤µÇ¾úÀ½\n"
@@ -431,7 +432,7 @@ msgstr "%s: ÀÎÀÚ°¡ ³Ê¹« ¸¹À½\n"
msgid "%s: `%s' mentioned more than once in definition of weight %d"
msgstr "%1$s: ¹«°Ô %3$dÀÇ Á¤ÀÇ¿¡¼­ `%2$s'ÀÌ(°¡) ¿©·¯ ¹ø ³ªÅ¸³µ½À´Ï´Ù"
-#: locale/programs/ld-collate.c:1323
+#: locale/programs/ld-collate.c:1336
#, c-format
msgid "%s: `%s' must be a character"
msgstr "%s: `%s'Àº(´Â) ´ÜÀÏ ¹®ÀÚ¿©¾ß ÇÕ´Ï´Ù"
@@ -442,7 +443,7 @@ msgstr "%s: `%s'Àº(´Â) ´ÜÀÏ ¹®ÀÚ¿©¾ß ÇÕ´Ï´Ù"
msgid "%s: `%s' value does not match `%s' value"
msgstr "%s: `%s'ÀÇ °ªÀº `%s'ÀÇ °ª°ú ¸ÂÁö ¾Ê½À´Ï´Ù"
-#: locale/programs/ld-monetary.c:835 locale/programs/ld-numeric.c:313
+#: locale/programs/ld-monetary.c:837 locale/programs/ld-numeric.c:318
#, c-format
msgid "%s: `-1' must be last entry in `%s' field"
msgstr "%s: `-1'Àº `%2$s' ¹üÁÖÀÇ `%s' ÇʵåÀÇ ¸¶Áö¸· Ç׸ñÀ̾î¾ß ÇÕ´Ï´Ù"
@@ -452,101 +453,101 @@ msgstr "%s: `-1'Àº `%2$s' ¹üÁÖÀÇ `%s' ÇʵåÀÇ ¸¶Áö¸· Ç׸ñÀ̾î¾ß ÇÕ´Ï´Ù"
msgid "%s: `forward' and `backward' are mutually excluding each other"
msgstr "%s: Á¤·Ä ¼ø¼­ `forward'¿Í `backward'´Â ¼­·Î ¹èŸÀûÀÔ´Ï´Ù"
-#: locale/programs/ld-collate.c:1515
+#: locale/programs/ld-collate.c:1528
#, c-format
msgid "%s: `position' must be used for a specific level in all sections or none"
msgstr "%s: `position'Àº ¸ðµç ¼½¼ÇÀÇ Æ¯Á¤ ´Ü°è¿¡¼­¸¸ »ç¿ëµÇ°Å³ª ¾Æ¿¹ »ç¿ëµÇÁö ¸»¾Æ¾ß ÇÕ´Ï´Ù"
-#: locale/programs/ld-ctype.c:2635 locale/programs/ld-ctype.c:2775
+#: locale/programs/ld-ctype.c:2637 locale/programs/ld-ctype.c:2777
#, c-format
msgid "%s: `translit_start' section does not end with `translit_end'"
msgstr "%s: `translit_start' ¼½¼ÇÀÌ `translit_end'·Î ³¡³ªÁö ¾Ê½À´Ï´Ù."
-#: locale/programs/ld-collate.c:1123
+#: locale/programs/ld-collate.c:1136
#, c-format
msgid "%s: byte sequence of first character of sequence is not lower than that of the last character"
msgstr "%s: ¼ø¼­¿­ÀÇ Ã¹¹ø° ¹®ÀÚÀÇ ¹ÙÀÌÆ® ¼ø¼­°¡ ¸¶Áö¸· ¹®ÀÚÀÇ ¹ÙÀÌÆ® ¼ø¼­º¸´Ù ÀÛÁö ¾Ê½À´Ï´Ù"
-#: locale/programs/ld-collate.c:1081
+#: locale/programs/ld-collate.c:1094
#, c-format
msgid "%s: byte sequences of first and last character must have the same length"
msgstr "%s: ù¹ø° ¹®ÀÚ¿Í ¸¶Áö¸· ¹®ÀÚÀÇ ¹ÙÀÌÆ® ¼ø¼­´Â ±æÀÌ°¡ °°¾Æ¾ß ÇÕ´Ï´Ù"
-#: locale/programs/ld-collate.c:3642
+#: locale/programs/ld-collate.c:3663
#, c-format
msgid "%s: cannot have `%s' as end of ellipsis range"
msgstr "%s: ¸»ÁÙÀÓÇ¥ ¹üÀ§ÀÇ ³¡¿¡ `%s'À»(¸¦) µÑ ¼ö ¾ø½À´Ï´Ù"
# ????
-#: locale/programs/ld-collate.c:3308
+#: locale/programs/ld-collate.c:3327
#, c-format
msgid "%s: cannot reorder after %.*s: symbol not known"
msgstr "%s: %.*s µÚ¿¡ ¼ø¼­¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù: ±âÈ£¸¦ ¾Ë ¼ö ¾ø½À´Ï´Ù"
-#: locale/programs/ld-ctype.c:2910 locale/programs/ld-ctype.c:2994
-#: locale/programs/ld-ctype.c:3014 locale/programs/ld-ctype.c:3035
-#: locale/programs/ld-ctype.c:3056 locale/programs/ld-ctype.c:3077
-#: locale/programs/ld-ctype.c:3098 locale/programs/ld-ctype.c:3138
-#: locale/programs/ld-ctype.c:3159 locale/programs/ld-ctype.c:3226
+#: locale/programs/ld-ctype.c:2912 locale/programs/ld-ctype.c:2996
+#: locale/programs/ld-ctype.c:3016 locale/programs/ld-ctype.c:3037
+#: locale/programs/ld-ctype.c:3058 locale/programs/ld-ctype.c:3079
+#: locale/programs/ld-ctype.c:3100 locale/programs/ld-ctype.c:3140
+#: locale/programs/ld-ctype.c:3161 locale/programs/ld-ctype.c:3228
#, c-format
msgid "%s: character `%s' in charmap not representable with one byte"
msgstr "%s: ¹®ÀÚÁöµµÀÇ `%s' ¹®ÀÚ´Â ÇÑ ¹ÙÀÌÆ®·Î Ç¥ÇöÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: locale/programs/ld-ctype.c:3270 locale/programs/ld-ctype.c:3295
+#: locale/programs/ld-ctype.c:3272 locale/programs/ld-ctype.c:3297
#, c-format
msgid "%s: character `%s' needed as default value not representable with one byte"
msgstr "%s: ±âº»°ª `%s' ¹®ÀÚ´Â ÇÑ ¹ÙÀÌÆ®·Î Ç¥ÇöÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: locale/programs/ld-ctype.c:2905
+#: locale/programs/ld-ctype.c:2907
#, c-format
msgid "%s: character `%s' not defined in charmap while needed as default value"
msgstr "%s: ¹®ÀÚ `%s'´Â ±âº»°ªÀ¸·Î ÇÊ¿äÇÏÁö¸¸ ¹®Àڸʿ¡ Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù"
-#: locale/programs/ld-ctype.c:2989 locale/programs/ld-ctype.c:3009
-#: locale/programs/ld-ctype.c:3051 locale/programs/ld-ctype.c:3072
-#: locale/programs/ld-ctype.c:3093 locale/programs/ld-ctype.c:3133
-#: locale/programs/ld-ctype.c:3154 locale/programs/ld-ctype.c:3221
-#: locale/programs/ld-ctype.c:3263 locale/programs/ld-ctype.c:3288
+#: locale/programs/ld-ctype.c:2991 locale/programs/ld-ctype.c:3011
+#: locale/programs/ld-ctype.c:3053 locale/programs/ld-ctype.c:3074
+#: locale/programs/ld-ctype.c:3095 locale/programs/ld-ctype.c:3135
+#: locale/programs/ld-ctype.c:3156 locale/programs/ld-ctype.c:3223
+#: locale/programs/ld-ctype.c:3265 locale/programs/ld-ctype.c:3290
#, c-format
msgid "%s: character `%s' not defined while needed as default value"
msgstr "%s: ¹®ÀÚ `%s'´Â ±âº»°ªÀ¸·Î ÇÊ¿äÇÏÁö¸¸ Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù"
-#: timezone/zic.c:1927
+#: timezone/zic.c:1933
#, c-format
msgid "%s: command was '%s', result was %d\n"
msgstr "%s: ¸í·ÉÀº '%s'¿´°í, °á°ú´Â %d¿´½À´Ï´Ù\n"
-#: locale/programs/ld-time.c:225
+#: locale/programs/ld-time.c:246
#, c-format
msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'"
msgstr "%s: `era' Çʵ忡 ÀÖ´Â ¹®ÀÚ¿­ `%Zd'ÀÇ ¹æÇâ Ç÷¡±×°¡ '+'µµ '-'µµ ¾Æ´Õ´Ï´Ù"
-#: locale/programs/ld-time.c:237
+#: 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' Çʵ忡 ÀÖ´Â ¹®ÀÚ¿­ `%d'ÀÇ ¹æÇâ Ç÷¡±×°¡ ´ÜÀÏ ¹®ÀÚ°¡ ¾Æ´Õ´Ï´Ù"
-#: locale/programs/ld-ctype.c:2727
+#: locale/programs/ld-ctype.c:2729
#, c-format
msgid "%s: duplicate `default_missing' definition"
msgstr "%s: `default_missing' Á¤ÀÇ°¡ Áߺ¹µÇ¾ú½À´Ï´Ù"
-#: locale/programs/ld-identification.c:423
+#: locale/programs/ld-identification.c:431
#, c-format
msgid "%s: duplicate category version definition"
msgstr "%s: ¹üÁÖ ¹öÀü Á¤ÀÇ°¡ Áߺ¹µÇ¾ú½À´Ï´Ù"
-#: locale/programs/ld-collate.c:2711
+#: locale/programs/ld-collate.c:2730
#, c-format
msgid "%s: duplicate declaration of section `%s'"
msgstr "%s: ¼½¼Ç `%s'ÀÇ ¼±¾ðÀÌ Áߺ¹µÇ¾ú½À´Ï´Ù"
-#: locale/programs/ld-collate.c:2675
+#: locale/programs/ld-collate.c:2694
#, c-format
msgid "%s: duplicate definition of `%s'"
msgstr "%s: `%s'ÀÇ Á¤ÀÇ°¡ Áߺ¹µÇ¾ú½À´Ï´Ù"
-#: locale/programs/ld-collate.c:3691
+#: locale/programs/ld-collate.c:3712
#, c-format
msgid "%s: empty category description not allowed"
msgstr "%s: ºó ¹üÀ§ ±â¼úÀÚ¸¦ ¾µ ¼ö ¾ø½À´Ï´Ù"
@@ -556,19 +557,27 @@ msgstr "%s: ºó ¹üÀ§ ±â¼úÀÚ¸¦ ¾µ ¼ö ¾ø½À´Ï´Ù"
msgid "%s: empty weight string not allowed"
msgstr "%s: ºó weight ¹®ÀÚ¿­Àº Çã¿ëµÇÁö ¾Ê½À´Ï´Ù"
-#: locale/programs/charmap.c:831
+#: locale/programs/charmap.c:836
#, c-format
msgid "%s: error in state machine"
msgstr "%s: »óÅ ±â°è¿¡ ¿À·ù ¹ß»ý"
-#: locale/programs/ld-ctype.c:2483
+#: locale/programs/ld-address.c:489 locale/programs/ld-address.c:526
+#: locale/programs/ld-address.c:564 locale/programs/ld-ctype.c:2485
+#: locale/programs/ld-identification.c:360
+#: locale/programs/ld-measurement.c:220 locale/programs/ld-messages.c:300
+#: locale/programs/ld-monetary.c:694 locale/programs/ld-monetary.c:729
+#: locale/programs/ld-monetary.c:770 locale/programs/ld-name.c:278
+#: locale/programs/ld-numeric.c:263 locale/programs/ld-paper.c:221
+#: locale/programs/ld-telephone.c:288 locale/programs/ld-time.c:1104
+#: locale/programs/ld-time.c:1146
#, c-format
msgid "%s: field `%s' declared more than once"
msgstr "%s: `%s' Çʵ尡 ¿©·¯ ¹ø ¼±¾ðµÇ¾ú½À´Ï´Ù"
-#: locale/programs/ld-ctype.c:1525 locale/programs/ld-ctype.c:1650
-#: locale/programs/ld-ctype.c:1756 locale/programs/ld-ctype.c:2346
-#: locale/programs/ld-ctype.c:3329
+#: locale/programs/ld-ctype.c:1526 locale/programs/ld-ctype.c:1651
+#: locale/programs/ld-ctype.c:1757 locale/programs/ld-ctype.c:2348
+#: locale/programs/ld-ctype.c:3331
#, c-format
msgid "%s: field `%s' does not contain exactly ten entries"
msgstr "%s: `%s' Çʵ忡 µé¾î ÀÖ´Â Ç׸ñÀÌ 10°³°¡ ¾Æ´Õ´Ï´Ù"
@@ -580,14 +589,18 @@ msgstr "%s: `%s' Çʵ忡 µé¾î ÀÖ´Â Ç׸ñÀÌ 10°³°¡ ¾Æ´Õ´Ï´Ù"
msgid "%s: field `%s' must not be empty"
msgstr "%s: `%s' Çʵå´Â ºñ¾î ÀÖÀ¸¸é ¾È µË´Ï´Ù"
-#: locale/programs/ld-address.c:142 locale/programs/ld-address.c:197
-#: locale/programs/ld-address.c:224 locale/programs/ld-address.c:284
-#: locale/programs/ld-address.c:303 locale/programs/ld-address.c:315
-#: locale/programs/ld-measurement.c:104 locale/programs/ld-monetary.c:244
-#: locale/programs/ld-monetary.c:260 locale/programs/ld-name.c:104
-#: locale/programs/ld-numeric.c:113 locale/programs/ld-numeric.c:127
-#: locale/programs/ld-paper.c:101 locale/programs/ld-paper.c:109
-#: locale/programs/ld-telephone.c:105
+#: locale/programs/ld-address.c:142 locale/programs/ld-address.c:180
+#: locale/programs/ld-address.c:197 locale/programs/ld-address.c:224
+#: locale/programs/ld-address.c:284 locale/programs/ld-address.c:303
+#: locale/programs/ld-address.c:315 locale/programs/ld-identification.c:145
+#: locale/programs/ld-measurement.c:104 locale/programs/ld-monetary.c:206
+#: locale/programs/ld-monetary.c:244 locale/programs/ld-monetary.c:260
+#: locale/programs/ld-monetary.c:272 locale/programs/ld-name.c:104
+#: locale/programs/ld-name.c:141 locale/programs/ld-numeric.c:113
+#: locale/programs/ld-numeric.c:127 locale/programs/ld-paper.c:101
+#: locale/programs/ld-paper.c:109 locale/programs/ld-telephone.c:105
+#: locale/programs/ld-telephone.c:163 locale/programs/ld-time.c:175
+#: locale/programs/ld-time.c:195
#, c-format
msgid "%s: field `%s' not defined"
msgstr "%s: `%s' Çʵ尡 Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù"
@@ -597,37 +610,38 @@ msgstr "%s: `%s' Çʵ尡 Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù"
msgid "%s: field `%s' undefined"
msgstr "%s: `%s' Çʵ尡 Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù"
-#: locale/programs/ld-time.c:258
+#: 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:318
+#: 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:395
+#: 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¿¡¼­ ¸ØÃã ³¯Â¥ °ªÀÇ ³¡¿¡ ¾µ¸ð¾ø´Â °ÍÀÌ ÀÖ½À´Ï´Ù"
-#: posix/getopt.c:795
+#: posix/getopt.c:788
#, c-format
msgid "%s: illegal option -- %c\n"
msgstr "%s: À߸øµÈ ¿É¼Ç -- %c\n"
-#: locale/programs/ld-address.c:573 locale/programs/ld-collate.c:3717
-#: locale/programs/ld-ctype.c:2844 locale/programs/ld-identification.c:437
-#: locale/programs/ld-measurement.c:229 locale/programs/ld-messages.c:324
-#: locale/programs/ld-monetary.c:932 locale/programs/ld-name.c:298
-#: locale/programs/ld-numeric.c:368 locale/programs/ld-paper.c:231
-#: locale/programs/ld-telephone.c:306 locale/programs/ld-time.c:1170
+#: locale/programs/ld-address.c:578 locale/programs/ld-collate.c:3738
+#: locale/programs/ld-ctype.c:2846 locale/programs/ld-identification.c:445
+#: locale/programs/ld-measurement.c:234 locale/programs/ld-messages.c:329
+#: locale/programs/ld-monetary.c:934 locale/programs/ld-name.c:303
+#: locale/programs/ld-numeric.c:373 locale/programs/ld-paper.c:236
+#: locale/programs/ld-telephone.c:311 locale/programs/ld-time.c:1197
#, c-format
msgid "%s: incomplete `END' line"
msgstr "%s: ºÒ¿ÏÀüÇÑ `END' ÁÙ"
#: locale/programs/ld-address.c:166
+#, c-format
msgid "%s: invalid escape `%%%c' sequence in field `%s'"
msgstr "%1$s: `%3$s' Çʵ忡 À߸øµÈ À̽ºÄÉÀÌÇÁ `%%%2$c' ¼ø¼­¿­"
@@ -637,27 +651,27 @@ msgstr "%1$s: `%3$s' Çʵ忡 À߸øµÈ À̽ºÄÉÀÌÇÁ `%%%2$c' ¼ø¼­¿­"
msgid "%s: invalid escape sequence in field `%s'"
msgstr "%s: `%s' Çʵ忡 À߸øµÈ À̽ºÄÉÀÌÇÁ ¼ø¼­¿­ÀÌ ÀÖ½À´Ï´Ù"
-#: locale/programs/ld-time.c:250
+#: 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-collate.c:3143
+#: locale/programs/ld-collate.c:3162
#, c-format
msgid "%s: invalid number of sorting rules"
msgstr "%s: Á¤·Ä ±ÔÄ¢ÀÇ °¹¼ö°¡ À߸øµÇ¾ú½À´Ï´Ù"
-#: posix/getopt.c:798
+#: posix/getopt.c:791
#, c-format
msgid "%s: invalid option -- %c\n"
msgstr "%s: ºÎÀûÀýÇÑ ¿É¼Ç -- %c\n"
-#: locale/programs/ld-time.c:309
+#: 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:386
+#: locale/programs/ld-time.c:407
#, c-format
msgid "%s: invalid stopping date in string %Zd in `era' field"
msgstr "%s: `era' Çʵ忡 ÀÖ´Â ¹®ÀÚ¿­ %ZdÀÇ ¿ÀÇÁ¼Â¿¡ À߸øµÈ Á¤Áö ³¯Â¥°¡ ÀÖ½À´Ï´Ù "
@@ -672,38 +686,38 @@ msgstr "%s: `%s' ÇʵåÀÇ °ªÀÌ À߸øµÇ¾ú½À´Ï´Ù"
msgid "%s: language abbreviation `%s' not defined"
msgstr "%s: ¾ð¾î ÁÙÀÓ¸» `%s'ÀÌ(°¡) Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù"
-#: locale/programs/ld-collate.c:3223 locale/programs/ld-collate.c:3346
-#: locale/programs/ld-collate.c:3695
+#: locale/programs/ld-collate.c:3242 locale/programs/ld-collate.c:3365
+#: locale/programs/ld-collate.c:3716
#, c-format
msgid "%s: missing `order_end' keyword"
msgstr "%s: `order_end' Å°¿öµå°¡ ºüÁ³½À´Ï´Ù"
-#: locale/programs/ld-collate.c:3360 locale/programs/ld-collate.c:3707
+#: locale/programs/ld-collate.c:3379 locale/programs/ld-collate.c:3728
#, c-format
msgid "%s: missing `reorder-end' keyword"
msgstr "%s: `reorder-end' Å°¿öµå°¡ ºüÁ³½À´Ï´Ù"
-#: locale/programs/ld-collate.c:3710
+#: locale/programs/ld-collate.c:3731
#, c-format
msgid "%s: missing `reorder-sections-end' keyword"
msgstr "%s: `reorder-sections-end' Å°¿öµå°¡ ºüÁ³½À´Ï´Ù"
-#: locale/programs/ld-time.c:435
+#: locale/programs/ld-time.c:456
#, c-format
msgid "%s: missing era format in string %Zd in `era' field"
msgstr "%s: era Çʵ忡 ÀÖ´Â ¹®ÀÚ¿­ %Zd¿¡ era Çü½ÄÀÌ ¾ø½À´Ï´Ù"
-#: locale/programs/ld-time.c:423
+#: locale/programs/ld-time.c:444
#, c-format
msgid "%s: missing era name in string %Zd in `era' field"
msgstr "%s: era Çʵ忡 ÀÖ´Â ¹®ÀÚ¿­ %Zd¿¡ era À̸§ÀÌ ¾ø½À´Ï´Ù"
-#: locale/programs/ld-collate.c:3119
+#: locale/programs/ld-collate.c:3138
#, c-format
msgid "%s: multiple order definitions for section `%s'"
msgstr "%s: `%s' ¼½¼ÇÀÇ ¼ø¼­ Á¤ÀÇ°¡ Áߺ¹µÇ¾ú½À´Ï´Ù"
-#: locale/programs/ld-collate.c:3169
+#: locale/programs/ld-collate.c:3188
#, c-format
msgid "%s: multiple order definitions for unnamed section"
msgstr "%s: À̸§¾ø´Â ¼½¼Ç¿¡ ¼ø¼­ Á¤ÀÇ°¡ ¿©·¯¹ø ³ªÅ¸³µ½À´Ï´Ù"
@@ -720,7 +734,7 @@ msgid "%s: no identification for category `%s'"
msgstr "%s: `%s' ¹üÁÖ¿¡ ¿Ã¹Ù¸¥ identificationÀÌ ¾ø½À´Ï´Ù"
# ¹ø¿ª: representableÀÌ ¿©±â¼­??
-#: locale/programs/ld-ctype.c:2753
+#: locale/programs/ld-ctype.c:2755
#, c-format
msgid "%s: no representable `default_missing' definition found"
msgstr "%s: Ç¥½ÃÇÒ ¼ö ÀÖ´Â `default_missing' Á¤ÀÇ°¡ ¾ø½À´Ï´Ù"
@@ -735,52 +749,52 @@ msgstr "%s: Á¤·Ä ±ÔÄ¢ÀÌ ÃæºÐÇÏÁö ¾Ê½À´Ï´Ù"
msgid "%s: numeric country code `%d' not valid"
msgstr "%s: ¼ýÀÚ·Î µÈ ±¹°¡ ÄÚµå `%d'´Â ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù"
-#: posix/getopt.c:718
+#: posix/getopt.c:711
#, c-format
msgid "%s: option `%c%s' doesn't allow an argument\n"
msgstr "%s: `%c%s' ¿É¼ÇÀº Àμö¸¦ Çã¿ëÇÏÁö ¾Ê½À´Ï´Ù\n"
-#: posix/getopt.c:688
+#: posix/getopt.c:681
#, c-format
msgid "%s: option `%s' is ambiguous\n"
msgstr "%s: `%s'´Â ¸ðÈ£ÇÑ ¿É¼ÇÀÔ´Ï´Ù\n"
-#: posix/getopt.c:736 posix/getopt.c:909
+#: posix/getopt.c:729 posix/getopt.c:902
#, c-format
msgid "%s: option `%s' requires an argument\n"
msgstr "%s: `%s' ¿É¼ÇÀº Àμö°¡ ÇÊ¿äÇÕ´Ï´Ù\n"
-#: posix/getopt.c:713
+#: posix/getopt.c:706
#, c-format
msgid "%s: option `--%s' doesn't allow an argument\n"
msgstr "%s: `--%s' ¿É¼ÇÀº Àμö¸¦ Çã¿ëÇÏÁö ¾Ê½À´Ï´Ù\n"
-#: posix/getopt.c:893
+#: posix/getopt.c:886
#, c-format
msgid "%s: option `-W %s' doesn't allow an argument\n"
msgstr "%s: `-W %s' ¿É¼ÇÀº Àμö¸¦ Çã¿ëÇÏÁö ¾Ê½À´Ï´Ù\n"
-#: posix/getopt.c:875
+#: posix/getopt.c:868
#, c-format
msgid "%s: option `-W %s' is ambiguous\n"
msgstr "%s: `-W %s'´Â ¸ðÈ£ÇÑ ¿É¼ÇÀÔ´Ï´Ù\n"
-#: posix/getopt.c:828 posix/getopt.c:958
+#: posix/getopt.c:821 posix/getopt.c:951
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: ÀÌ ¿É¼ÇÀº Àμö°¡ ÇÊ¿äÇÕ´Ï´Ù -- %c\n"
-#: locale/programs/ld-collate.c:1314 locale/programs/ld-collate.c:3654
+#: locale/programs/ld-collate.c:1327 locale/programs/ld-collate.c:3675
#, c-format
msgid "%s: order for `%.*s' already defined at %s:%Zu"
msgstr "%s: `%.*s'¿¡ ´ëÇÑ ¼ø¼­´Â ÀÌ¹Ì %s:%Zu¿¡ Á¤ÀǵǾú½À´Ï´Ù"
-#: locale/programs/ld-collate.c:3297
+#: locale/programs/ld-collate.c:3316
#, c-format
msgid "%s: order for collating element %.*s not yet defined"
msgstr "%s: »çÀü¼ø¼­ ¿ä¼Ò `%.*s'ÀÇ ¼ø¼­´Â ¾ÆÁ÷ Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù"
-#: locale/programs/ld-collate.c:3281
+#: locale/programs/ld-collate.c:3300
#, c-format
msgid "%s: order for collating symbol %.*s not yet defined"
msgstr "%s: »çÀü¼ø¼­ ½Éº¼ `%.*s'ÀÇ ¼ø¼­´Â ¾ÆÁ÷ Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù"
@@ -790,84 +804,84 @@ msgstr "%s: »çÀü¼ø¼­ ½Éº¼ `%.*s'ÀÇ ¼ø¼­´Â ¾ÆÁ÷ Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù"
msgid "%s: output would overwrite %s\n"
msgstr "%s: Ãâ·ÂÀÌ %s¸¦ µ¤¾î¾µ °ÍÀÔ´Ï´Ù\n"
-#: timezone/zic.c:873 timezone/zic.c:1287 timezone/zic.c:1312
+#: timezone/zic.c:879 timezone/zic.c:1293 timezone/zic.c:1318
#, c-format
msgid "%s: panic: Invalid l_value %d\n"
msgstr "%s: panic: ºÎÀûÀýÇÑ ÁÂÇ×°ª %d\n"
-#: locale/programs/charmap.c:838 locale/programs/ld-address.c:592
-#: locale/programs/ld-collate.c:2590 locale/programs/ld-collate.c:3735
-#: locale/programs/ld-ctype.c:2107 locale/programs/ld-ctype.c:2864
-#: locale/programs/ld-identification.c:456
-#: locale/programs/ld-measurement.c:248 locale/programs/ld-messages.c:342
-#: locale/programs/ld-monetary.c:950 locale/programs/ld-name.c:316
-#: locale/programs/ld-numeric.c:386 locale/programs/ld-paper.c:249
-#: locale/programs/ld-telephone.c:324 locale/programs/ld-time.c:1188
+#: locale/programs/charmap.c:843 locale/programs/ld-address.c:597
+#: locale/programs/ld-collate.c:2609 locale/programs/ld-collate.c:3756
+#: locale/programs/ld-ctype.c:2109 locale/programs/ld-ctype.c:2866
+#: locale/programs/ld-identification.c:464
+#: locale/programs/ld-measurement.c:253 locale/programs/ld-messages.c:347
+#: locale/programs/ld-monetary.c:952 locale/programs/ld-name.c:321
+#: locale/programs/ld-numeric.c:391 locale/programs/ld-paper.c:254
+#: locale/programs/ld-telephone.c:329 locale/programs/ld-time.c:1215
#: locale/programs/locfile.h:103 locale/programs/repertoire.c:325
#, c-format
msgid "%s: premature end of file"
msgstr "%s: ÆÄÀÏÀÌ ¿Ï°áµÇÁö ¾ÊÀº ä ³¡³²"
-#: locale/programs/ld-collate.c:3394 locale/programs/ld-collate.c:3580
+#: locale/programs/ld-collate.c:3413 locale/programs/ld-collate.c:3601
#, c-format
msgid "%s: section `%.*s' not known"
msgstr "%s: `%.*s' ¼½¼ÇÀ» ¾Ë ¼ö ¾ø½À´Ï´Ù"
-#: locale/programs/ld-time.c:337
+#: 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:414
+#: locale/programs/ld-time.c:435
#, c-format
msgid "%s: stopping date is invalid in string %Zd in `era' field"
msgstr "%s: `era' Çʵ忡 ÀÖ´Â ¹®ÀÚ¿­ %Zd¿¡¼­ Á¤Áö ³¯Â¥°¡ À߸øµÇ¾ú½À´Ï´Ù"
-#: locale/programs/ld-collate.c:1248
+#: locale/programs/ld-collate.c:1261
#, c-format
-msgid "%s: symbolic range ellipsis must not be direct followed by `order_end'"
+msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'"
msgstr "%s: ±âÈ£ ¹üÀ§ ¸»ÁÙÀÓÇ¥´Â `order_end' ¹Ù·Î µÚ¿¡ ³ª¿Í¼­´Â ¾È µË´Ï´Ù"
-#: locale/programs/ld-collate.c:1244
+#: locale/programs/ld-collate.c:1257
#, c-format
msgid "%s: symbolic range ellipsis must not directly follow `order_start'"
msgstr "%s: ±âÈ£ ¹üÀ§ ¸»ÁÙÀÓÇ¥´Â `order_start' ¹Ù·Î µÚ¿¡ ³ª¿Í¼­´Â ¾È µË´Ï´Ù"
-#: locale/programs/ld-address.c:583 locale/programs/ld-collate.c:518
+#: locale/programs/ld-address.c:588 locale/programs/ld-collate.c:518
#: locale/programs/ld-collate.c:570 locale/programs/ld-collate.c:865
-#: locale/programs/ld-collate.c:878 locale/programs/ld-collate.c:2581
-#: locale/programs/ld-collate.c:3726 locale/programs/ld-ctype.c:1840
-#: locale/programs/ld-ctype.c:2098 locale/programs/ld-ctype.c:2673
-#: locale/programs/ld-ctype.c:2855 locale/programs/ld-identification.c:447
-#: locale/programs/ld-measurement.c:239 locale/programs/ld-messages.c:333
-#: locale/programs/ld-monetary.c:941 locale/programs/ld-name.c:307
-#: locale/programs/ld-numeric.c:377 locale/programs/ld-paper.c:240
-#: locale/programs/ld-telephone.c:315 locale/programs/ld-time.c:1179
+#: locale/programs/ld-collate.c:878 locale/programs/ld-collate.c:2599
+#: locale/programs/ld-collate.c:3747 locale/programs/ld-ctype.c:1841
+#: locale/programs/ld-ctype.c:2099 locale/programs/ld-ctype.c:2675
+#: locale/programs/ld-ctype.c:2857 locale/programs/ld-identification.c:455
+#: locale/programs/ld-measurement.c:244 locale/programs/ld-messages.c:338
+#: locale/programs/ld-monetary.c:943 locale/programs/ld-name.c:312
+#: locale/programs/ld-numeric.c:382 locale/programs/ld-paper.c:245
+#: locale/programs/ld-telephone.c:320 locale/programs/ld-time.c:1206
#, c-format
msgid "%s: syntax error"
msgstr "%s: ¹®¹ý ¿À·ù"
-#: locale/programs/ld-ctype.c:2178
+#: locale/programs/ld-ctype.c:2180
#, c-format
msgid "%s: syntax error in definition of new character class"
msgstr "%s: »õ·Î¿î ¹®ÀÚ Å¬·¡½º Á¤ÀÇ¿¡ ¹®¹ý ¿À·ù°¡ ÀÖ½À´Ï´Ù"
-#: locale/programs/ld-ctype.c:2193
+#: locale/programs/ld-ctype.c:2195
#, c-format
msgid "%s: syntax error in definition of new character map"
msgstr "%s: »õ·Î¿î ¹®ÀÚ ¸Ê Á¤ÀÇ¿¡ ¹®¹ý ¿À·ù°¡ ÀÖ½À´Ï´Ù"
-#: locale/programs/ld-ctype.c:3735
+#: locale/programs/ld-ctype.c:3737
#, c-format
msgid "%s: table for class \"%s\": %lu bytes\n"
msgstr "%s: \"%s\" Ŭ·¡½º¿¡ ´ëÇÑ Å×À̺í: %lu ¹ÙÀÌÆ®\n"
-#: locale/programs/ld-ctype.c:3803
+#: locale/programs/ld-ctype.c:3805
#, c-format
msgid "%s: table for map \"%s\": %lu bytes\n"
msgstr "%s: \"%s\" ¸Ê¿¡ ´ëÇÑ Å×À̺í: %lu ¹ÙÀÌÆ®\n"
-#: locale/programs/ld-ctype.c:3935
+#: locale/programs/ld-ctype.c:3937
#, c-format
msgid "%s: table for width: %lu bytes\n"
msgstr "%s: Æø¿¡ ´ëÇÑ Å×À̺í: %lu bytes\n"
@@ -878,16 +892,21 @@ msgstr "%s: Æø¿¡ ´ëÇÑ Å×À̺í: %lu bytes\n"
msgid "%s: terminology language code `%s' not defined"
msgstr "%s: terminology ¾ð¾îÄÚµå `%s'ÀÌ(°¡) Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù"
-#: locale/programs/ld-collate.c:1054
+#: locale/programs/ld-collate.c:1067
#, c-format
msgid "%s: the start and the end symbol of a range must stand for characters"
msgstr "%s: ¹üÀ§ÀÇ ½ÃÀÛ ±âÈ£¿Í ³¡ ½Éº¼Àº ¹®ÀÚ¸¦ ³ªÅ¸³»¾ß ÇÕ´Ï´Ù"
-#: locale/programs/ld-time.c:464
+#: locale/programs/ld-time.c:485
#, 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:983
+#, c-format
+msgid "%s: too few values for field `%s'"
+msgstr "%s: `%s' ÇʵåÀÇ °ªÀÌ ³Ê¹« Àû½À´Ï´Ù"
+
# ¹ø¿ª: ???? had???
#: locale/programs/ld-collate.c:555
#, c-format
@@ -899,8 +918,13 @@ msgstr "%s: ±ÔÄ¢ÀÌ ³Ê¹« ¸¹À½; ù ¹ø° Ç׸ñ¸¸ÀÌ %d°³¸¦ °¡Áý´Ï´Ù"
msgid "%s: too many values"
msgstr "%s: °ªÀÌ ³Ê¹« ¸¹½À´Ï´Ù"
+#: locale/programs/ld-time.c:1030
+#, c-format
+msgid "%s: too many values for field `%s'"
+msgstr "%s: `%s' ÇʵåÀÇ °ªÀÌ ³Ê¹« ¸¹½À´Ï´Ù"
+
# transliteration: °íÃľ¸, À½¿ª
-#: locale/programs/ld-ctype.c:3639
+#: locale/programs/ld-ctype.c:3641
#, c-format
msgid "%s: transliteration data from locale `%s' not available"
msgstr "%s: ·ÎÄÉÀÏ `%s'ÀÇ °íÃľ¸ µ¥ÀÌŸ°¡ ¾ø½À´Ï´Ù"
@@ -910,49 +934,54 @@ msgstr "%s: ·ÎÄÉÀÏ `%s'ÀÇ °íÃľ¸ µ¥ÀÌŸ°¡ ¾ø½À´Ï´Ù"
msgid "%s: unable to open %s: %m\n"
msgstr "%s: %sÀ»(¸¦) ¿­ ¼ö ¾øÀ½: %m\n"
-#: locale/programs/ld-collate.c:2849
+#: locale/programs/ld-collate.c:2868
#, c-format
msgid "%s: unknown character in collating symbol name"
msgstr "%s: »çÀü¼ø¼­ ±âÈ£ À̸§¿¡ ¾Ë ¼ö ¾ø´Â ¹®ÀÚ"
# ¹ø¿ª: equivalent definition??
-#: locale/programs/ld-collate.c:2981
+#: locale/programs/ld-collate.c:3000
#, c-format
msgid "%s: unknown character in equivalent definition name"
msgstr "%s: ´ëÀÀ ¹®ÀÚ Á¤ÀÇ À̸§¿¡ ¾Ë·ÁÁöÁö ¾ÊÀº ¹®ÀÚ°¡ ÀÖ½À´Ï´Ù"
-#: locale/programs/ld-collate.c:2994
+#: locale/programs/ld-collate.c:3013
#, c-format
msgid "%s: unknown character in equivalent definition value"
msgstr "%s: ´ëÀÀ ¹®ÀÚ Á¤ÀÇ °ª¿¡ ¾Ë·ÁÁöÁö ¾ÊÀº ¹®ÀÚ°¡ ÀÖ½À´Ï´Ù"
-#: locale/programs/ld-time.c:1040
+#: locale/programs/ld-address.c:493 locale/programs/ld-address.c:531
+#: locale/programs/ld-identification.c:364 locale/programs/ld-messages.c:310
+#: locale/programs/ld-monetary.c:698 locale/programs/ld-monetary.c:733
+#: locale/programs/ld-name.c:282 locale/programs/ld-numeric.c:267
+#: locale/programs/ld-telephone.c:292 locale/programs/ld-time.c:999
+#: locale/programs/ld-time.c:1067 locale/programs/ld-time.c:1109
#, c-format
msgid "%s: unknown character in field `%s'"
msgstr "%s: `%s' Çʵ忡 ¾Ë·ÁÁöÁö ¾ÊÀº ¹®ÀÚ°¡ ÀÖ½À´Ï´Ù"
-#: locale/programs/ld-collate.c:3091
+#: locale/programs/ld-collate.c:3110
#, c-format
msgid "%s: unknown section name `%s'"
msgstr "%s: ¾Ë ¼ö ¾ø´Â ¼½¼Ç À̸§ `%s'"
# ¹ø¿ª: equivalent definition??
-#: locale/programs/ld-collate.c:3004
+#: locale/programs/ld-collate.c:3023
#, c-format
msgid "%s: unknown symbol `%s' in equivalent definition"
msgstr "%s: ´ëÀÀ¹®ÀÚ Á¤ÀÇ¿¡ ¾Ë ¼ö ¾ø´Â ±âÈ£ `%s'"
-#: posix/getopt.c:769
+#: posix/getopt.c:762
#, c-format
msgid "%s: unrecognized option `%c%s'\n"
msgstr "%s: ÀνÄÇÒ ¼ö ¾ø´Â ¿É¼Ç `%c%s'\n"
-#: posix/getopt.c:765
+#: posix/getopt.c:758
#, c-format
msgid "%s: unrecognized option `--%s'\n"
msgstr "%s: ÀνÄÇÒ ¼ö ¾ø´Â ¿É¼Ç `--%s'\n"
-#: timezone/zic.c:443
+#: timezone/zic.c:449
#, c-format
msgid ""
"%s: usage is %s [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n"
@@ -966,6 +995,16 @@ msgstr ""
msgid "%s: usage is %s [ -v ] [ -c cutoff ] zonename ...\n"
msgstr "%s: »ç¿ë¹ýÀº %s [ -v ] [ -c Àý´Ü ] Áö¿ª¸í ... ÀÔ´Ï´Ù\n"
+#: locale/programs/ld-monetary.c:740 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:308
+#, c-format
+msgid "%s: value for field `%s' must be in range %d...%d"
+msgstr "%s: `%s' ÇʵåÀÇ °ªÀº %d...%d »çÀÌ¿¡ ÀÖ¾î¾ß ÇÕ´Ï´Ù"
+
#: locale/programs/ld-messages.c:121 locale/programs/ld-messages.c:154
#, c-format
msgid "%s: value for field `%s' must not be an empty string"
@@ -986,17 +1025,17 @@ msgstr "%s: `int_curr_symbol' ÇʵåÀÇ °ªÀÌ ISO 4217¿¡ Çã¿ëµÇ´Â À̸§ÀÌ ¾Æ´Õ´Ï´Ù"
msgid "%s: value of field `int_curr_symbol' has wrong length"
msgstr "%s: curr_symbol' ÇʵåÀÇ °ªÀÇ ±æÀÌ°¡ Ʋ·È½À´Ï´Ù"
-#: locale/programs/ld-monetary.c:857 locale/programs/ld-numeric.c:334
+#: locale/programs/ld-monetary.c:859 locale/programs/ld-numeric.c:339
#, c-format
msgid "%s: values for field `%s' must be smaller than 127"
msgstr "%s: `%s' ÇʵåÀÇ °ªÀº 127º¸´Ù ÀÛ¾Æ¾ß ÇÕ´Ï´Ù"
-#: locale/programs/ld-time.c:488
+#: locale/programs/ld-time.c:509
#, c-format
msgid "%s: values for field `%s' must not be larger than %d"
msgstr "%s: `%s' ÇʵåÀÇ °ªÀº %dº¸´Ù Å©¸é ¾È µË´Ï´Ù"
-#: locale/programs/ld-time.c:472 locale/programs/ld-time.c:480
+#: locale/programs/ld-time.c:493 locale/programs/ld-time.c:501
#, c-format
msgid "%s: values of field `%s' must not be larger than %d"
msgstr "%s: `%s' ÇʵåÀÇ °ªÀº %dº¸´Ù Å©¸é ¾È µË´Ï´Ù"
@@ -1019,11 +1058,11 @@ msgstr "(ÇÁ·Î±×·¥ ¿À·ù) ¹öÀüÀ» ¾Ë ¼ö ¾ø½À´Ï´Ù!?"
msgid "(PROGRAM ERROR) Option should have been recognized!?"
msgstr "(ÇÁ·Î±×·¥ ¿À·ù) ¿É¼ÇÀ» ¾Ë¼ö ÀÖ¾î¾ß ÇÕ´Ï´Ù!?"
-#: nis/nis_print.c:130
+#: nis/nis_print.c:133
msgid "(Unknown object)\n"
msgstr "(¾Ë ¼ö ¾ø´Â ¿ÀºêÁ§Æ®)\n"
-#: sunrpc/clnt_perr.c:125
+#: sunrpc/clnt_perr.c:132
#, c-format
msgid "(unknown authentication error - %d)"
msgstr "(¾Ë ¼ö ¾ø´Â ÀÎÁõ ¿À·ù - %d)"
@@ -1041,6 +1080,11 @@ msgstr "*** `%s' ÆÄÀÏÀº µð¹ö±ëÁ¤º¸°¡ Á¦°ÅµÇ¾ú½À´Ï´Ù: ´õ ÀÚ¼¼ÇÑ ºÐ¼®Àº ºÒ°¡´ÉÇÕ´Ï
msgid "*standard input*"
msgstr "*Ç¥ÁØ ÀÔ·Â*"
+#: elf/cache.c:105
+#, c-format
+msgid ", OS ABI: %s %d.%d.%d"
+msgstr ", OS ABI: %s %d.%d.%d"
+
#: catgets/gencat.c:125
msgid ""
"-o OUTPUT-FILE [INPUT-FILE]...\n"
@@ -1054,16 +1098,16 @@ msgstr ""
msgid ".lib section in a.out corrupted"
msgstr "a.outÀÇ .lib ÀýÀÌ ¼Õ»óµÇ¾úÀ½"
-#: sunrpc/clnt_perr.c:111 sunrpc/clnt_perr.c:132
+#: sunrpc/clnt_perr.c:118 sunrpc/clnt_perr.c:139
#, c-format
msgid "; low version = %lu, high version = %lu"
msgstr "; ³·Àº ¹öÀü = %lu, ³ôÀº ¹öÀü = %lu"
-#: sunrpc/clnt_perr.c:118
+#: sunrpc/clnt_perr.c:125
msgid "; why = "
msgstr "; ÀÌÀ¯ = "
-#: locale/programs/charmap.c:999
+#: locale/programs/charmap.c:1004
#, c-format
msgid "<%s> and <%s> are illegal names for range"
msgstr "¹®ÀÚÀÇ ¹üÀ§·Î À߸øµÈ À̸§ <%s>¿Í <%s>"
@@ -1073,12 +1117,12 @@ msgstr "¹®ÀÚÀÇ ¹üÀ§·Î À߸øµÈ À̸§ <%s>¿Í <%s>"
msgid "<%s> and <%s> are invalid names for range"
msgstr "<%s>°ú(¿Í) <%s>Àº(´Â) ¹®ÀÚÀÇ ¹üÀ§·Î À߸øµÈ À̸§ÀÔ´Ï´Ù"
-#: locale/programs/ld-ctype.c:565 locale/programs/ld-ctype.c:600
+#: locale/programs/ld-ctype.c:573 locale/programs/ld-ctype.c:608
#, c-format
msgid "<SP> character must not be in class `%s'"
msgstr "<SP> ¹®ÀÚ´Â `%s' Ŭ·¡½º¿¡ ÀÖÀ¸¸é ¾ÈµË´Ï´Ù"
-#: locale/programs/ld-ctype.c:553 locale/programs/ld-ctype.c:589
+#: locale/programs/ld-ctype.c:561 locale/programs/ld-ctype.c:597
#, c-format
msgid "<SP> character not in class `%s'"
msgstr "<SP> ¹®ÀÚ´Â `%s' Ŭ·¡½º¿¡ ¾øÀ½"
@@ -1094,7 +1138,7 @@ msgstr "?"
msgid "Aborted"
msgstr "ÁßÁöµÊ"
-#: nis/nis_print.c:321
+#: nis/nis_print.c:324
msgid "Access Rights : "
msgstr "Á¢±Ù ±ÇÇÑ : "
@@ -1133,6 +1177,10 @@ msgstr "±¤°í ¿À·ù"
msgid "Alarm clock"
msgstr "ÀÚ¸íÁ¾ ½Ã°è"
+#: posix/../sysdeps/posix/gai_strerror.c:45
+msgid "All requests done"
+msgstr "¸ðµç ¿äûÀÌ ¿Ï·áµÇ¾ú½À´Ï´Ù"
+
#: malloc/memusagestat.c:57
msgid "Also draw graph for total memory consumption"
msgstr "Àüü ¸Þ¸ð¸® ¼Ò¸ð¿¡ ´ëÇÑ ±×·¡ÇÁµµ ±×¸³´Ï´Ù"
@@ -1141,7 +1189,7 @@ msgstr "Àüü ¸Þ¸ð¸® ¼Ò¸ð¿¡ ´ëÇÑ ±×·¡ÇÁµµ ±×¸³´Ï´Ù"
msgid "Anode table overflow"
msgstr "Anode Å×À̺í Èê·¯ ³Ñħ"
-#: intl/tst-gettext2.c:37
+#: intl/tst-gettext2.c:38
msgid "Another string for testing."
msgstr "Å×½ºÆ®ÇÒ ¶Ç ´Ù¸¥ ¹®ÀÚ¿­."
@@ -1173,7 +1221,7 @@ msgstr "½Ã½ºÅÛÀÇ Á¦ÇѺ¸´Ù ¸¹Àº µ¿Àû ¶óÀ̺귯¸®¿Í ¸µÅ©ÇÏ·Á°í ÇßÀ½"
msgid "Attempting to link in too many shared libraries"
msgstr "³Ê¹« ¸¹Àº µ¿Àû ¶óÀ̺귯¸®¿Í ¸µÅ©ÇÏ·Á°í ½ÃµµÇÏ¿´À½"
-#: sunrpc/clnt_perr.c:329
+#: sunrpc/clnt_perr.c:338
msgid "Authentication OK"
msgstr "ÀÎÁõ ¼º°ø"
@@ -1182,7 +1230,7 @@ msgstr "ÀÎÁõ ¼º°ø"
msgid "Authentication error"
msgstr "ÀÎÁõ ¿À·ù"
-#: nis/nis_print.c:106
+#: nis/nis_print.c:109
msgid "BOGUS OBJECT\n"
msgstr "¾ûÅ͸® ¿ÀºêÁ§Æ®\n"
@@ -1238,7 +1286,7 @@ msgstr "À߸øµÈ ai_flagsÀÇ °ª"
msgid "Be strictly POSIX conform"
msgstr "¾ö°ÝÇÏ°Ô POSIX¸¦ µû¸§"
-#: nis/nis_print.c:302
+#: nis/nis_print.c:305
msgid "Binary data\n"
msgstr "ÀÌÁø µ¥ÀÌŸ\n"
@@ -1270,10 +1318,6 @@ msgstr "ÆÄÀÌÇÁ°¡ ±ú¾îÁü"
msgid "Bus error"
msgstr "¹ö½º ¿À·ù"
-#: nis/nis_print.c:46
-msgid "CDS"
-msgstr "CDS"
-
#: stdio-common/../sysdeps/unix/siglist.c:50 sysdeps/generic/siglist.h:50
msgid "CPU time limit exceeded"
msgstr "CPU ½Ã°£ Á¦ÇÑ ÃÊ°úÇÔ"
@@ -1291,77 +1335,82 @@ msgstr "ÇÊ¿äÇÑ °øÀ¯ ¶óÀ̺귯¸®¿¡ Á¢±ÙÇÒ ¼ö ¾ø½À´Ï´Ù"
msgid "Can not exec a shared library directly"
msgstr "°øÀ¯ ¶óÀ̺귯¸®¸¦ Á÷Á¢ ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: nis/ypclnt.c:792
+#: nis/ypclnt.c:794
msgid "Can't bind to server which serves this domain"
msgstr "ÀÌ µµ¸ÞÀÎÀ» Á¦°øÇÏ´Â ¼­¹ö¿¡ ¿¬°áÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: elf/ldconfig.c:934
+#: elf/ldconfig.c:1008
msgid "Can't chdir to /"
msgstr "/·Î µð·ºÅ丮¸¦ À̵¿ÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: nis/ypclnt.c:804
+#: nis/ypclnt.c:806
msgid "Can't communicate with portmapper"
msgstr "rpcinfo: Æ÷Æ®¸ÅÆÛ¿Í Åë½ÅÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: nis/ypclnt.c:806
+#: nis/ypclnt.c:808
msgid "Can't communicate with ypbind"
msgstr "ypbind¿Í Åë½ÅÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: nis/ypclnt.c:808
+#: nis/ypclnt.c:810
msgid "Can't communicate with ypserv"
msgstr "ypserv¿Í Åë½ÅÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: elf/cache.c:359
+#: elf/cache.c:394
#, c-format
msgid "Can't create temporary cache file %s"
msgstr "Àӽà ij½¬ ÆÄÀÏ %sÀ»(¸¦) ¿­ ¼ö ¾ø½À´Ï´Ù"
-#: elf/ldconfig.c:502
+#: elf/ldconfig.c:512
#, c-format
msgid "Can't find %s"
msgstr "%sÀ»(¸¦) ãÀ» ¼ö ¾ø½À´Ï´Ù"
-#: elf/ldconfig.c:440
+#: elf/ldconfig.c:449
#, c-format
msgid "Can't link %s to %s"
msgstr "%s¸¦ %s·Î ¸µÅ©ÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: elf/ldconfig.c:518 elf/ldconfig.c:672
+#: elf/ldconfig.c:528
#, c-format
msgid "Can't lstat %s"
msgstr "%s¿¡ lstat()ÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: elf/cache.c:108 elf/ldconfig.c:955
+#: elf/cache.c:131 elf/ldconfig.c:1029
#, c-format
msgid "Can't open cache file %s\n"
msgstr "ij½¬ ÆÄÀÏ `%s'À»(¸¦) ¿­ ¼ö ¾ø½À´Ï´Ù\n"
-#: elf/ldconfig.c:976
+#: elf/ldconfig.c:1050
#, c-format
msgid "Can't open cache file directory %s\n"
msgstr "ij½¬ ÆÄÀÏ µð·ºÅ丮 `%s'À»(¸¦) ¿­ ¼ö ¾ø½À´Ï´Ù\n"
-#: elf/ldconfig.c:865
+#: elf/ldconfig.c:924
#, c-format
msgid "Can't open configuration file %s"
msgstr "¼³Á¤ ÆÄÀÏ `%s'À»(¸¦) ¿­ ¼ö ¾ø½À´Ï´Ù"
-#: elf/ldconfig.c:621
+#: elf/ldconfig.c:634
#, c-format
msgid "Can't open directory %s"
msgstr "µð·ºÅ丮 %sÀ»(¸¦) ¿­ ¼ö ¾ø½À´Ï´Ù"
-#: elf/cache.c:353
+#: elf/cache.c:387
#, c-format
msgid "Can't remove old temporary cache file %s"
msgstr "¿À·¡µÈ Àӽà ij½¬ ÆÄÀÏ %sÀ»(¸¦) Áö¿ï ¼ö ¾ø½À´Ï´Ù"
-#: elf/ldconfig.c:405
+#: elf/ldconfig.c:344
+#, c-format
+msgid "Can't stat %s"
+msgstr "%s¿¡ stat()ÇÒ ¼ö ¾ø½À´Ï´Ù"
+
+#: elf/ldconfig.c:414
#, c-format
msgid "Can't stat %s\n"
msgstr "%s¿¡ stat()ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: elf/ldconfig.c:434
+#: elf/ldconfig.c:443
#, c-format
msgid "Can't unlink %s"
msgstr "%sÀ»(¸¦) Áö¿ï ¼ö ¾ø½À´Ï´Ù"
@@ -1388,16 +1437,21 @@ msgstr "ºê·Îµåij½ºÆ® rpc¸¦ À§ÇÑ ¼ÒÄÏÀ» ¸¸µé ¼ö ¾ø½À´Ï´Ù"
msgid "Cannot exec a shared library directly"
msgstr "°øÀ¯ ¶óÀ̺귯¸®¸¦ Á÷Á¢ ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: elf/readlib.c:98
+#: elf/readlib.c:99
#, c-format
msgid "Cannot fstat file %s.\n"
msgstr "`%s'ÆÄÀÏ¿¡ fstat()À» ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: sunrpc/rpc_main.c:1415
+#: sunrpc/rpc_main.c:1417
msgid "Cannot have more than one file generation flag!\n"
msgstr "ÇÑ°³ ÀÌ»óÀÇ ÆÄÀÏ »ý¼º Ç÷¡±×¸¦ ¾µ ¼ö ¾ø½À´Ï´Ù\n"
-#: elf/readlib.c:117
+#: elf/ldconfig.c:689 elf/ldconfig.c:732
+#, c-format
+msgid "Cannot lstat %s"
+msgstr "%s¿¡ lstat()ÇÒ ¼ö ¾ø½À´Ï´Ù"
+
+#: elf/readlib.c:118
#, c-format
msgid "Cannot mmap file %s.\n"
msgstr "ÆÄÀÏ `%s'¿¡ mmap()ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
@@ -1431,33 +1485,38 @@ msgstr "¼ÒÄÏ ¿É¼Ç SO_BROADCAST¸¦ ¼³Á¤ÇÒ ¼ö ¾ø½À´Ï´Ù"
msgid "Cannot specify more than one input file!\n"
msgstr "ÇÑ°³ ÀÌ»óÀÇ ÀÔ·Â ÆÄÀÏÀ» ÁöÁ¤ÇÒ ¼ö ¾ø½À´Ï´Ù!\n"
-#: sunrpc/rpc_main.c:1372
+#: elf/ldconfig.c:701
+#, c-format
+msgid "Cannot stat %s"
+msgstr "%s¿¡ stat()ÇÒ ¼ö ¾ø½À´Ï´Ù"
+
+#: sunrpc/rpc_main.c:1374
msgid "Cannot use netid flag with inetd flag!\n"
msgstr "³×Æ®id Ç÷¡±×¸¦ inetd Ç÷¡±×¿Í ÇÔ²² ¾µ ¼ö ¾ø½À´Ï´Ù!\n"
-#: sunrpc/rpc_main.c:1384
+#: sunrpc/rpc_main.c:1386
msgid "Cannot use netid flag without TIRPC!\n"
msgstr "³×Æ®id Ç÷¡±×¸¦ TIRPC¿Í ÇÔ²² ¾µ ¼ö ¾ø½À´Ï´Ù!\n"
-#: sunrpc/rpc_main.c:1391
+#: sunrpc/rpc_main.c:1393
msgid "Cannot use table flags with newstyle!\n"
msgstr "»õ·Î¿î ½ºÅ¸ÀÏ¿¡¼­´Â Å×À̺í Ç÷¡±×¸¦ ¾µ ¼ö ¾ø½À´Ï´Ù!\n"
-#: elf/ldconfig.c:131
+#: elf/ldconfig.c:126
msgid "Change to and use ROOT as root directory"
msgstr "<·çÆ®>·Î À̵¿ÇÑ ´ÙÀ½ <·çÆ®>¸¦ ·çÆ® µð·ºÅ丮·Î »ç¿ëÇÕ´Ï´Ù"
-#: elf/cache.c:390
+#: elf/cache.c:426
#, c-format
-msgid "Changing access rights of %s to 0644 failed"
-msgstr "%sÀÇ Á¢±Ù±ÇÇÑÀ» to 0644·Î ¹Ù²Ù´Â µ¥ ½ÇÆÐÇß½À´Ï´Ù"
+msgid "Changing access rights of %s to %#o failed"
+msgstr "%sÀÇ Á¢±Ù±ÇÇÑÀ» to %#o·Î(À¸·Î) ¹Ù²Ù´Â µ¥ ½ÇÆÐÇß½À´Ï´Ù"
#: stdio-common/../sysdeps/gnu/errlist.c:689
#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:67
msgid "Channel number out of range"
msgstr "¹üÀ§¸¦ ¹þ¾î³­ ä³Î ¹øÈ£"
-#: nis/nis_print.c:265
+#: nis/nis_print.c:268
#, c-format
msgid "Character Separator : %c\n"
msgstr "¹®ÀÚ ±¸ºÐÀÚ : %c\n"
@@ -1466,11 +1525,11 @@ msgstr "¹®ÀÚ ±¸ºÐÀÚ : %c\n"
msgid "Child exited"
msgstr "ÀÚ½ÄÀÌ Á¾·áµÊ"
-#: sunrpc/clnt_perr.c:348
+#: sunrpc/clnt_perr.c:357
msgid "Client credential too weak"
msgstr "Ŭ¶óÀ̾ðÆ® ÀÚ°Ý ºÎ¿©°¡ ³Ê¹« ¾àÇÔ"
-#: nis/nis_print.c:267
+#: nis/nis_print.c:270
msgid "Columns :\n"
msgstr "¿­ :\n"
@@ -1488,7 +1547,7 @@ msgstr "·ÎÄÉÀÏ ¸í¼¼¸¦ ÄÄÆÄÀÏ"
msgid "Computer bought the farm"
msgstr "ÄÄÇ»ÅÍ°¡ ³óÀåÀ» »ò½À´Ï´Ù"
-#: elf/ldconfig.c:141
+#: elf/ldconfig.c:136
msgid "Configure Dynamic Linker Run Time Bindings."
msgstr "µ¿Àû ¸µÄ¿ÀÇ ·±Å¸ÀÓ ¹ÙÀεùÀ» ¼³Á¤"
@@ -1518,14 +1577,14 @@ msgstr "¿¬°á ½Ã°£ ÃÊ°ú"
msgid "Continued"
msgstr "°è¼ÓµÊ"
-#: iconv/iconv_prog.c:69
+#: iconv/iconv_prog.c:73
msgid "Convert encoding of given files from one encoding to another."
msgstr "ÁÖ¾îÁø ÆÄÀÏÀÇ ÀÎÄÚµùÀ» ÇÑ ÀÎÄÚµù¿¡¼­ ¶Ç´Ù¸¥ ÀÎÄÚµùÀ¸·Î º¯È¯ÇÔ."
-#: catgets/gencat.c:246 elf/ldconfig.c:264 elf/sprof.c:355
-#: iconv/iconv_prog.c:351 locale/programs/locale.c:269
+#: catgets/gencat.c:246 elf/ldconfig.c:259 elf/sprof.c:355
+#: iconv/iconv_prog.c:393 iconv/iconvconfig.c:335 locale/programs/locale.c:281
#: locale/programs/localedef.c:311 nscd/nscd.c:287 nscd/nscd_nischeck.c:90
-#: nss/getent.c:63 posix/getconf.c:751
+#: nss/getent.c:63 posix/getconf.c:904
#, c-format
msgid ""
"Copyright (C) %s Free Software Foundation, Inc.\n"
@@ -1545,6 +1604,10 @@ msgstr "±â·Ï ÆÄÀÏ `%s'¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù"
msgid "Create C header file NAME containing symbol definitions"
msgstr "±âÈ£ Á¤ÀǸ¦ ´ã°í ÀÖ´Â C Çì´õ ÆÄÀÏ NAMEÀ» ¸¸µê"
+#: iconv/iconvconfig.c:110
+msgid "Create fastloading iconv module configuration file."
+msgstr "°í¼Ó·Îµù iconv ¸ðµâ ¼³Á¤ ÆÄÀÏÀ» ¸¸µé ¼ö ¾ø½À´Ï´Ù"
+
#: locale/programs/localedef.c:102
msgid "Create old-style tables"
msgstr "°ú°Å ½ºÅ¸ÀÏÀÇ Å×À̺íÀ» ¸¸µì´Ï´Ù"
@@ -1553,7 +1616,7 @@ msgstr "°ú°Å ½ºÅ¸ÀÏÀÇ Å×À̺íÀ» ¸¸µì´Ï´Ù"
msgid "Create output even if warning messages were issued"
msgstr "°æ°í ¸Þ¼¼Áö°¡ ³ª¿Ã °æ¿ì¿¡µµ Ãâ·ÂÇÔ"
-#: nis/nis_print.c:326
+#: nis/nis_print.c:329
#, c-format
msgid "Creation Time : %s"
msgstr "¸¸µé¾îÁø ½Ã°¢ : %s"
@@ -1572,19 +1635,11 @@ msgstr "<µ¥ÀÌŸÆÄÀÏ> [<Ãâ·ÂÆÄÀÏ>]"
msgid "DES entry for netname %s not unique\n"
msgstr "³×Æ®name %s¿¡ ´ëÇÑ DES entry°¡ À¯ÀÏÇÏÁö ¾Ê½À´Ï´Ù\n"
-#: nis/nis_print.c:112
+#: nis/nis_print.c:115
msgid "DIRECTORY\n"
msgstr "µð·ºÅ丮\n"
-#: nis/nis_print.c:42
-msgid "DNANS"
-msgstr "DNANS"
-
-#: nis/nis_print.c:38
-msgid "DNS"
-msgstr "DNS"
-
-#: elf/dl-open.c:189
+#: elf/dl-deps.c:101 elf/dl-open.c:188
msgid "DST not allowed in SUID/SGID programs"
msgstr "SUID/SGID ÇÁ·Î±×·¥¿¡ DST´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù"
@@ -1596,7 +1651,7 @@ msgstr "µ¿Àû ¸µÄ¿ ¹ö±×!!!"
msgid "Database for table does not exist"
msgstr "Å×ÀÌºí¿¡ ´ëÇÑ µ¥ÀÌŸº£À̽º°¡ ¾ø½À´Ï´Ù"
-#: nis/ypclnt.c:818
+#: nis/ypclnt.c:820
msgid "Database is busy"
msgstr "µ¥ÀÌÅͺ£À̽º°¡ ÀÛ¾÷ ÁßÀÔ´Ï´Ù"
@@ -1604,7 +1659,7 @@ msgstr "µ¥ÀÌÅͺ£À̽º°¡ ÀÛ¾÷ ÁßÀÔ´Ï´Ù"
msgid "Deadlock situation detected/avoided"
msgstr "±³Âø»óÅ°¡ ¹ß°ßµÇ¾ú°Å³ª ȸÇÇÇÕ´Ï´Ù"
-#: nis/nis_print.c:226
+#: nis/nis_print.c:229
msgid "Default Access rights :\n"
msgstr "±âº» Á¢±Ù ±ÇÇÑ :\n"
@@ -1631,12 +1686,12 @@ msgstr "ÀåÄ¡°¡ ½ºÆ®¸²ÀÌ ¾Æ´Ô"
msgid "Device or resource busy"
msgstr "ÀåÄ¡³ª ÀÚ¿øÀÌ µ¿ÀÛ Áß"
-#: nis/nis_print.c:180
+#: nis/nis_print.c:183
#, c-format
msgid "Diffie-Hellmann (%d bits)\n"
msgstr "Diffie-Hellman (%d ºñÆ®)\n"
-#: nis/nis_print.c:318
+#: nis/nis_print.c:321
#, c-format
msgid "Directory : %s\n"
msgstr "µð·ºÅ丮 : %s\n"
@@ -1665,15 +1720,15 @@ msgstr "forkÇÏÁö ¾Ê°í ÇöÀç tty¿¡ ¸Þ¼¼Áö¸¦ Ç¥½ÃÇÔ"
msgid "Do not use existing catalog, force new output file"
msgstr "ÀÌ¹Ì Á¸ÀçÇÏ´Â ¸ñ·ÏÀ» »ç¿ëÇÏÁö ¾Ê°í, »õ·Î¿î ÆÄÀÏ¿¡ Ãâ·ÂÇÔ"
-#: nis/ypclnt.c:864
+#: nis/ypclnt.c:866
msgid "Domain not bound"
msgstr "µµ¸ÞÀÎÀÌ ¹Ù¿îµåµÇÁö ¾ÊÀ½"
-#: elf/ldconfig.c:129
+#: elf/ldconfig.c:124
msgid "Don't build cache"
msgstr "ij½¬¸¦ ¸¸µéÁö ¾ÊÀ½"
-#: elf/ldconfig.c:130
+#: elf/ldconfig.c:125
msgid "Don't generate links"
msgstr "¸µÅ©¸¦ ¸¸µéÁö ¾ÊÀ½"
@@ -1681,31 +1736,31 @@ msgstr "¸µÅ©¸¦ ¸¸µéÁö ¾ÊÀ½"
msgid "Dump information generated by PC profiling."
msgstr "PC ÇÁ·ÎÆÄÀϸµÀ¸·Î ¸¸µé¾îÁø Á¤º¸¸¦ ´ýÇÁÇÕ´Ï´Ù."
-#: elf/dl-load.c:1290
+#: elf/dl-load.c:1293
msgid "ELF file ABI version invalid"
msgstr "ELF ÆÄÀÏ ABI ¹öÀüÀÌ À߸øµÇ¾ú½À´Ï´Ù"
-#: elf/dl-load.c:1287
+#: elf/dl-load.c:1290
msgid "ELF file OS ABI invalid"
msgstr "ELF ÆÄÀÏ OS ABI°¡ À߸øµÇ¾ú½À´Ï´Ù"
-#: elf/dl-load.c:1296
+#: elf/dl-load.c:1299
msgid "ELF file version does not match current one"
msgstr "ELF ÆÄÀÏ ¹öÀüÀÌ ÇöÀç ¹öÀü°ú ¸ÂÁö ¾Ê½À´Ï´Ù"
-#: elf/dl-load.c:1283
+#: elf/dl-load.c:1286
msgid "ELF file version ident does not match current one"
msgstr "ELF ÆÄÀÏ ¹öÀü ident°¡ ÇöÀç ident¿Í ¸ÂÁö ¾Ê½À´Ï´Ù"
-#: elf/dl-load.c:1307
+#: elf/dl-load.c:1305
msgid "ELF file's phentsize not the expected size"
msgstr "ELF ÆÄÀÏÀÇ phentsize°¡ ¿¹»ó°ú ¸ÂÁö ¾Ê½À´Ï´Ù"
-#: elf/dl-load.c:876
+#: elf/dl-load.c:884
msgid "ELF load command address/offset not properly aligned"
msgstr "ELF ·Îµå ¸í·ÉÀÇ ÁÖ¼Ò/¿ÀÇÁ¼ÂÀÌ ¿Ã¹Ù¸£°Ô alignµÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù"
-#: elf/dl-load.c:873
+#: elf/dl-load.c:881
msgid "ELF load command alignment not page-aligned"
msgstr "ELF ·Îµå ¸í·ÉÀÇÀÇ alignÀÌ ÆäÀÌÁö¿¡ alignµÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù"
@@ -1713,11 +1768,11 @@ msgstr "ELF ·Îµå ¸í·ÉÀÇÀÇ alignÀÌ ÆäÀÌÁö¿¡ alignµÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù"
msgid "EMT trap"
msgstr "EMT Æ®·¦"
-#: nis/nis_print.c:121
+#: nis/nis_print.c:124
msgid "ENTRY\n"
msgstr "ENTRY\n"
-#: nis/nis_print.c:300
+#: nis/nis_print.c:303
msgid "Encrypted data\n"
msgstr "¾ÏȣȭµÈ µ¥ÀÌŸ\n"
@@ -1871,7 +1926,11 @@ msgstr "¾Ë ¼ö ¾ø´Â ¿À·ù ½Ã½ºÅÛ¿¡ ¿À·ù: "
msgid "Error while talking to callback proc"
msgstr "Äݹé ÇÁ·Î½ÃÀú¸¦ »ç¿ëÇÏ´Â µ¥ ¿À·ù"
-#: inet/ruserpass.c:181
+#: timezone/zdump.c:268
+msgid "Error writing standard output"
+msgstr "Ç¥ÁØ Ãâ·Â¿¡ ¾²´Â µ¥ ¿À·ù"
+
+#: inet/ruserpass.c:184
msgid "Error: .netrc file is readable by others."
msgstr "¿À·ù: .netrc ÆÄÀÏÀ» ´Ù¸¥ »ç¶÷ÀÌ ÀÐÀ» ¼ö ÀÖ½À´Ï´Ù."
@@ -1894,7 +1953,7 @@ msgstr "Áß¿ä: ½Ã½ºÅÛ¿¡ `_POSIX2_LOCALEDEF'°¡ Á¤ÀǵǾî ÀÖÁö ¾Ê½À´Ï´Ù"
msgid "FILE contains mapping from symbolic names to UCS4 values"
msgstr "<ÆÄÀÏ>Àº ±âÈ£·Î Ç¥½ÃµÈ À̸§¿¡¼­ UCS4 °ªÀ¸·ÎÀÇ ¸ÅÇÎÀ» °®°í ÀÖ½À´Ï´Ù"
-#: sunrpc/clnt_perr.c:356
+#: sunrpc/clnt_perr.c:365
msgid "Failed (unspecified error)"
msgstr "½ÇÆÐ (ÁöÁ¤µÇÁö ¾ÊÀº ¿À·ù)"
@@ -1903,7 +1962,7 @@ msgstr "½ÇÆÐ (ÁöÁ¤µÇÁö ¾ÊÀº ¿À·ù)"
msgid "Failed to look up user '%s' to run server as"
msgstr "´ÙÀ½À¸·Î ¼­¹ö¸¦ ½ÇÇàÇÏ·Á°í, »ç¿ëÀÚ '%s'À»(¸¦) ã´Âµ¥ ½ÇÆÐ:"
-#: elf/readlib.c:108
+#: elf/readlib.c:109
#, c-format
msgid "File %s is too small, not checked."
msgstr "ÆÄÀÏ %sÀÌ(°¡) ³Ê¹« À۾Ƽ­, üũÇÏÁö ¾Ê½À´Ï´Ù."
@@ -1920,7 +1979,7 @@ msgstr "ÆÄÀÏ ±â¼úÀÚ°¡ À߸øµÈ »óÅ¿¡ ÀÖÀ½"
msgid "File exists"
msgstr "ÆÄÀÏÀÌ Á¸ÀçÇÕ´Ï´Ù"
-#: elf/cache.c:124 elf/cache.c:134
+#: elf/cache.c:147 elf/cache.c:157
msgid "File is not a cache file.\n"
msgstr "ÆÄÀÏÀÌ Ä³½¬ ÆÄÀÏÀÌ ¾Æ´Õ´Ï´Ù.\n"
@@ -1954,7 +2013,7 @@ msgstr "ÆÄÀÏ Å×À̺í Èê·¯ ³Ñħ"
msgid "File too large"
msgstr "ÆÄÀÏÀÌ ³Ê¹« Å®´Ï´Ù"
-#: intl/tst-gettext2.c:36
+#: intl/tst-gettext2.c:37
msgid "First string for testing."
msgstr "Å×½ºÆ®ÇÒ Ã¹ ¹ø° ¹®ÀÚ¿­."
@@ -1966,7 +2025,7 @@ msgstr "First/next ¿¬°áÀÌ ²÷¾îÁü"
msgid "Floating point exception"
msgstr "ºÎµ¿ ¼Ò¼öÁ¡ ¿¹¿Ü"
-#: elf/ldconfig.c:136
+#: elf/ldconfig.c:131
msgid "Format to use: new, old or compat (default)"
msgstr "ÀÌ¿ëÇÒ Çü½Ä: new, old ȤÀº compat (±âº»°ª)"
@@ -1983,7 +2042,7 @@ msgstr "µð·ºÅ丮¿¡ ´ëÇØ ¿ÏÀüÇÑ resync°¡ ÇÊ¿äÇÔ"
msgid "Function not implemented"
msgstr "ÇÔ¼ö°¡ ±¸ÇöµÇÁö ¾Ê¾ÒÀ½"
-#: nis/nis_print.c:115
+#: nis/nis_print.c:118
msgid "GROUP\n"
msgstr "±×·ì\n"
@@ -2006,7 +2065,7 @@ msgstr "¸Þ¼¼Áö ¸ñ·ÏÀ» ¸¸µì´Ï´Ù\\v<ÀÔ·Â-ÆÄÀÏ>ÀÌ - À̸é Ç¥ÁØ ÀÔ·ÂÀ» ÀÐ°Ô µË´Ï´Ù.
msgid "Generate output linear to time (default is linear to number of function calls)"
msgstr "½Ã°£¿¡ ºñ·ÊÇÏ´Â Ãâ·ÂÀ» ¸¸µì´Ï´Ù (±âº»°ªÀº ÇÔ¼ö È£Ãâ Ƚ¼ö¿¡ ºñ·ÊÇÕ´Ï´Ù)"
-#: elf/ldconfig.c:128
+#: elf/ldconfig.c:123
msgid "Generate verbose messages"
msgstr "´õ ¸¹Àº ¸Þ½ÃÁö Ç¥½Ã"
@@ -2014,7 +2073,7 @@ msgstr "´õ ¸¹Àº ¸Þ½ÃÁö Ç¥½Ã"
msgid "Generic system error"
msgstr "ÀÏ¹Ý ½Ã½ºÅÛ ¿À·ù"
-#: locale/programs/locale.c:77
+#: locale/programs/locale.c:86
msgid "Get locale-specific information."
msgstr "ƯÁ¤ ·ÎÄÉÀÏ °ü·Ã Á¤º¸¸¦ ¾òÀ½"
@@ -2031,12 +2090,12 @@ msgstr "ÀÌ µµ¿ò¸» ¸®½ºÆ®¸¦ Ç¥½ÃÇÔ"
msgid "Gratuitous error"
msgstr "ÀÌÀ¯¾ø´Â ¿À·ù"
-#: nis/nis_print.c:320
+#: nis/nis_print.c:323
#, c-format
msgid "Group : %s\n"
msgstr "±×·ì : %s\n"
-#: nis/nis_print.c:249
+#: nis/nis_print.c:252
msgid "Group Flags :"
msgstr "±×·ì Ç÷¡±× :"
@@ -2101,16 +2160,12 @@ msgstr "ÀÔÃâ·Â °¡´É"
msgid "IOT trap"
msgstr "IOT Æ®·¦"
-#: nis/nis_print.c:36
-msgid "IVY"
-msgstr "IVY"
-
#: stdio-common/../sysdeps/gnu/errlist.c:645
#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:66
msgid "Identifier removed"
msgstr "½Äº°ÀÚ Á¦°ÅµÊ"
-#: elf/ldconfig.c:525
+#: elf/ldconfig.c:535
#, c-format
msgid "Ignored file %s since it is not a regular file."
msgstr "ÀÏ¹Ý ÆÄÀÏÀÌ ¾Æ´Ï¹Ç·Î %s ÆÄÀÏÀ» ¹«½ÃÇÕ´Ï´Ù."
@@ -2163,7 +2218,7 @@ msgstr "¹è°æ ÇÁ·Î¼¼½º·Î ºÎÀûÇÕÇÑ µ¿ÀÛ"
msgid "Information request"
msgstr "Á¤º¸ ¿äû"
-#: iconv/iconv_prog.c:58
+#: iconv/iconv_prog.c:62
msgid "Information:"
msgstr "Á¤º¸:"
@@ -2171,12 +2226,12 @@ msgstr "Á¤º¸:"
msgid "Input Files:"
msgstr "ÀÔ·Â ÆÄÀÏ:"
-#: elf/ldconfig.c:698 elf/readlib.c:92
+#: elf/ldconfig.c:754 elf/readlib.c:93
#, c-format
msgid "Input file %s not found.\n"
msgstr "ÀÔ·Â ÆÄÀÏ %sÀ»(¸¦) ãÁö ¸øÇß½À´Ï´Ù.\n"
-#: iconv/iconv_prog.c:55
+#: iconv/iconv_prog.c:59
msgid "Input/Output format specification:"
msgstr "ÀÔ/Ãâ·Â Çü½Ä ÁöÁ¤:"
@@ -2185,11 +2240,11 @@ msgstr "ÀÔ/Ãâ·Â Çü½Ä ÁöÁ¤:"
msgid "Input/output error"
msgstr "ÀÔ·Â/Ãâ·Â ¿À·ù"
-#: nis/ypclnt.c:798
+#: nis/ypclnt.c:800
msgid "Internal NIS error"
msgstr "³»ºÎ NIS ¿À·ù"
-#: nis/ypclnt.c:862
+#: nis/ypclnt.c:864
msgid "Internal ypbind error"
msgstr "³»ºÎ ypbind ¿À·ù"
@@ -2197,6 +2252,10 @@ msgstr "³»ºÎ ypbind ¿À·ù"
msgid "Interrupt"
msgstr "ÀÎÅÍ·´Æ®"
+#: posix/../sysdeps/posix/gai_strerror.c:46
+msgid "Interrupted by a signal"
+msgstr "½Ã±×³Î¿¡ ÀÇÇØ ÁߴܵÊ"
+
#. TRANS Interrupted function call; an asynchronous signal occurred and prevented
#. TRANS completion of the call. When this happens, you should try the call
#. TRANS again.
@@ -2220,27 +2279,27 @@ msgstr "Áß´ÜµÈ ½Ã½ºÅÛ È£ÃâÀº Àç½ÃÀ۵Ǿî¾ß ÇÕ´Ï´Ù"
msgid "Invalid argument"
msgstr "ºÎÀûÀýÇÑ Àμö"
-#: posix/regex.c:1102
+#: posix/regex.c:1380
msgid "Invalid back reference"
msgstr "ºÎÀûÀýÇÑ ÈĹæ ÂüÁ¶"
-#: posix/regex.c:1096
+#: posix/regex.c:1374
msgid "Invalid character class name"
msgstr "ºÎÀûÀýÇÑ ¹®ÀÚ Å¬·¡½º À̸§"
-#: sunrpc/clnt_perr.c:332
+#: sunrpc/clnt_perr.c:341
msgid "Invalid client credential"
msgstr "ºÎÀûÀýÇÑ Å¬¶óÀ̾ðÆ® ÀÚ°Ý ºÎ¿©"
-#: sunrpc/clnt_perr.c:340
+#: sunrpc/clnt_perr.c:349
msgid "Invalid client verifier"
msgstr "ºÎÀûÀýÇÑ Å¬¶óÀ̾ðÆ® °ËÁõ±â"
-#: posix/regex.c:1093
+#: posix/regex.c:1371
msgid "Invalid collation character"
msgstr "ºÎÀûÀýÇÑ ´ëÁ¶ ¹®ÀÚ"
-#: posix/regex.c:1114
+#: posix/regex.c:1392
msgid "Invalid content of \\{\\}"
msgstr "\\{\\}¿¡ ºÎÀûÀýÇÑ ³»¿ë¹°ÀÌ ÀÖÀ½"
@@ -2265,15 +2324,15 @@ msgstr "ÀÛ¾÷ÇÏ´Â µ¥ À߸øµÈ ¿ÀºêÁ§Æ®"
msgid "Invalid or incomplete multibyte or wide character"
msgstr "ºÎÀûÀýÇϰųª ºÒ¿ÏÀüÇÑ ´ÙÁß¹ÙÀÌÆ® ¶Ç´Â ±¤¿ª ¹®ÀÚ"
-#: posix/regex.c:1123
+#: posix/regex.c:1401
msgid "Invalid preceding regular expression"
msgstr "¾Õ¼± Á¤±Ô½ÄÀÌ ºÎÀûÀýÇÔ"
-#: posix/regex.c:1117
+#: posix/regex.c:1395
msgid "Invalid range end"
msgstr "ºÎÀûÀýÇÑ ¹üÀ§ ³¡"
-#: posix/regex.c:1090
+#: posix/regex.c:1368
msgid "Invalid regular expression"
msgstr "ºÎÀûÀýÇÑ Á¤±Ô½Ä"
@@ -2285,7 +2344,7 @@ msgstr "ºÎÀûÀýÇÑ ¿äû ÄÚµå"
msgid "Invalid request descriptor"
msgstr "À߸øµÈ ¿äû ±â¼úÀÚ"
-#: sunrpc/clnt_perr.c:352
+#: sunrpc/clnt_perr.c:361
msgid "Invalid server verifier"
msgstr "ºÎÀûÀýÇÑ ¼­¹ö °ËÁõ±â"
@@ -2313,7 +2372,7 @@ msgstr "name ÆÄÀÏÀÔ´Ï´Ù"
msgid "Is a named type file"
msgstr "named ŸÀÔ ÆÄÀÏÀÔ´Ï´Ù"
-#: nis/nis_print.c:188
+#: nis/nis_print.c:191
msgid "Kerberos.\n"
msgstr "Kerberos.\n"
@@ -2321,7 +2380,7 @@ msgstr "Kerberos.\n"
msgid "Killed"
msgstr "Á×¾úÀ½"
-#: nis/nis_print.c:124
+#: nis/nis_print.c:127
msgid "LINK\n"
msgstr "¿¬°á\n"
@@ -2364,20 +2423,20 @@ msgstr "¹üÀ§¸¦ ¹þ¾î³­ ¸µÅ© ¹øÈ£"
msgid "Link points to illegal name"
msgstr "¸µÅ©°¡ À߸øµÈ À̸§À» °¡¸®Å´"
-#: nis/nis_print.c:283
+#: nis/nis_print.c:286
msgid "Linked Object Type : "
msgstr "¿¬°áµÈ ¿ÀºêÁ§Æ® ŸÀÔ : "
-#: nis/nis_print.c:285
+#: nis/nis_print.c:288
#, c-format
msgid "Linked to : %s\n"
msgstr "%s¿Í ¿¬°á\n"
-#: nis/ypclnt.c:810
+#: nis/ypclnt.c:812
msgid "Local domain name not set"
msgstr "Áö¿ª µµ¸ÞÀθíÀÌ ¼³Á¤µÇÁö ¾Ê¾ÒÀ½"
-#: nis/ypclnt.c:800
+#: nis/ypclnt.c:802
msgid "Local resource allocation failure"
msgstr "Áö¿ª ÀÚ¿ø ÇÒ´ç ½ÇÆÐ"
@@ -2394,11 +2453,11 @@ msgstr "À߸øµÈ Çü½ÄÀÇ À̸§, ȤÀº ¾µ ¼ö ¾ø´Â À̸§"
msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options."
msgstr "±ä ¿É¼Ç¿¡¼­ ´ëÇØ ²À ÇÊ¿äÇϰųª ¼±ÅÃÀûÀÎ ÀÎÀÚ´Â ±× ±ä ¿É¼Ç¿¡ ÇØ´çÇϴ ªÀº ¿É¼Ç¿¡¼­µµ ²À ÇÊ¿äÇϰųª ¼±ÅÃÀûÀÔ´Ï´Ù."
-#: elf/ldconfig.c:135
+#: elf/ldconfig.c:130
msgid "Manually link individual libraries."
msgstr "¼öµ¿À¸·Î °¢°¢ÀÇ ¶óÀ̺귯¸®¸¦ ¸µÅ©ÇϽʽÿÀ."
-#: nis/nis_print.c:169
+#: nis/nis_print.c:172
msgid "Master Server :\n"
msgstr "ÁÖ ¼­¹ö :\n"
@@ -2410,7 +2469,7 @@ msgstr "ÁÖ ¼­¹ö°¡ ÀÛ¾÷ÁßÀ̹ǷÎ, ¿ÏÀüÇÑ ´ýÇÁ´Â ¿¬±âµË´Ï´Ù."
msgid "Memory allocation failure"
msgstr "¸Þ¸ð¸® ÇÒ´ç ½ÇÆÐ"
-#: posix/regex.c:1120
+#: posix/regex.c:1398
msgid "Memory exhausted"
msgstr "¸Þ¸ð¸®°¡ ¹Ù´Ú³²"
@@ -2429,7 +2488,7 @@ msgstr "¸Þ½ÃÁö°¡ ³Ê¹« ±é´Ï´Ù"
msgid "Missing or malformed attribute"
msgstr "¼Ó¼ºÀÌ ¾ø°Å³ª Çü½ÄÀÌ Æ²·ÈÀ½"
-#: nis/nis_print.c:328
+#: nis/nis_print.c:331
#, c-format
msgid "Mod. Time : %s"
msgstr "º¯°æ ½Ã°¢ : %s"
@@ -2442,7 +2501,7 @@ msgstr "¼öÁ¤ÇÏ´Â µ¥ ½ÇÆÐ"
msgid "Modify operation failed"
msgstr "¼öÁ¤ ÀÛ¾÷ÀÌ ½ÇÆÐÇÏ¿´À½"
-#: locale/programs/locale.c:70
+#: locale/programs/locale.c:78
msgid "Modify output format:"
msgstr "Ãâ·Â Çü½Ä ¼öÁ¤:"
@@ -2460,7 +2519,7 @@ msgstr "server-user ¿É¼Ç¿¡¼­ »ç¿ëÀÚÀ̸§À» ÁöÁ¤ÇØ¾ß ÇÕ´Ï´Ù"
msgid "NAME"
msgstr "<À̸§>"
-#: locale/programs/locale.c:80
+#: locale/programs/locale.c:89
msgid ""
"NAME\n"
"[-a|-m]"
@@ -2468,15 +2527,11 @@ msgstr ""
"<À̸§>\n"
"[-a|-m]"
-#: nis/nis_print.c:32
-msgid "NIS"
-msgstr "NIS"
-
-#: nis/ypclnt.c:814
+#: nis/ypclnt.c:816
msgid "NIS client/server version mismatch - can't supply service"
msgstr "NIS Ŭ¶óÀ̾ðÆ®/¼­¹ö ¹öÀü ºÒÀÏÄ¡ - ¼­ºñ½º¸¦ Á¦°øÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: nis/ypclnt.c:812
+#: nis/ypclnt.c:814
msgid "NIS map database is bad"
msgstr "NIS Áöµµ µ¥ÀÌÅͺ£À̽º°¡ À߸øµÇ¾ú½À´Ï´Ù"
@@ -2492,7 +2547,7 @@ msgstr "NIS+ ¼­¹ö¿¡ Á¢±ÙÇÒ ¼ö ¾ø½À´Ï´Ù"
msgid "NIS+ service is unavailable or not installed"
msgstr "NIS+ ¼­ºñ½º¸¦ »ç¿ëÇÒ ¼ö ¾ø°Å³ª NIS+ ¼­ºñ½º°¡ ¼³Ä¡µÇÁö ¾Ê¾Ò½À´Ï´Ù"
-#: nis/nis_print.c:109
+#: nis/nis_print.c:112
msgid "NO OBJECT\n"
msgstr "¿ÀºêÁ§Æ®°¡ ¾øÀ½\n"
@@ -2500,7 +2555,7 @@ msgstr "¿ÀºêÁ§Æ®°¡ ¾øÀ½\n"
msgid "NUMBER"
msgstr "¼ýÀÚ"
-#: nis/nis_print.c:163
+#: nis/nis_print.c:166
#, c-format
msgid "Name : `%s'\n"
msgstr "À̸§ : `%s'\n"
@@ -2591,7 +2646,7 @@ msgstr "anode°¡ ¾øÀ½"
msgid "No buffer space available"
msgstr "»ç¿ë °¡´ÉÇÑ ¹öÆÛ °ø°£ÀÌ ¾øÀ½"
-#: locale/programs/ld-ctype.c:425
+#: locale/programs/ld-ctype.c:433
msgid "No character set name specified in charmap"
msgstr "¹®ÀÚ Áöµµ¿¡¼­ ¹®Àڼ À̸§ÀÌ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
@@ -2608,8 +2663,8 @@ msgstr "ÀÚ½Ä ÇÁ·Î¼¼½º°¡ ¾øÀ½"
msgid "No data available"
msgstr "»ç¿ë °¡´ÉÇÑ ÀÚ·á°¡ ¾øÀ½"
-#: locale/programs/ld-address.c:131 locale/programs/ld-collate.c:1500
-#: locale/programs/ld-ctype.c:407 locale/programs/ld-identification.c:132
+#: locale/programs/ld-address.c:131 locale/programs/ld-collate.c:1513
+#: locale/programs/ld-ctype.c:415 locale/programs/ld-identification.c:132
#: locale/programs/ld-measurement.c:93 locale/programs/ld-messages.c:98
#: locale/programs/ld-monetary.c:194 locale/programs/ld-name.c:94
#: locale/programs/ld-numeric.c:99 locale/programs/ld-paper.c:91
@@ -2622,7 +2677,7 @@ msgstr "%s ¹üÁÖ¿¡ ´ëÇÑ Á¤ÀÇ°¡ ¾ø½À´Ï´Ù"
msgid "No file space on server"
msgstr "¼­¹ö¿¡ ³²Àº °ø°£ÀÌ ¾øÀ½"
-#: elf/ldconfig.c:532
+#: elf/ldconfig.c:543
#, c-format
msgid "No link created since soname could not be found for %s"
msgstr "%s¿¡ ´ëÇÑ sonameÀ» ãÀ» ¼ö ¾øÀ¸¹Ç·Î ¸µÅ©¸¦ ¸¸µéÁö ¾Ê½À´Ï´Ù"
@@ -2635,7 +2690,7 @@ msgstr "%s¿¡ ´ëÇÑ sonameÀ» ãÀ» ¼ö ¾øÀ¸¹Ç·Î ¸µÅ©¸¦ ¸¸µéÁö ¾Ê½À´Ï´Ù"
msgid "No locks available"
msgstr "»ç¿ë°¡´ÉÇÑ Àá±ÝÀåÄ¡°¡ ¾øÀ½"
-#: posix/regex.c:1087
+#: posix/regex.c:1365
msgid "No match"
msgstr "¸Â´Â ¦ ¾øÀ½"
@@ -2648,11 +2703,11 @@ msgstr "¸Å°³¹°ÀÌ ¾øÀ½"
msgid "No message of desired type"
msgstr "Àû´çÇÑ ÇüÀ» °¡Áø ¸Þ½ÃÁö°¡ ¾øÀ½"
-#: nis/ypclnt.c:802
+#: nis/ypclnt.c:804
msgid "No more records in map database"
msgstr "Áöµµ µ¥ÀÌÅͺ£À̽º¿¡ ´õ ÀÌ»óÀÇ ±â·ÏÀÌ ¾øÀ½"
-#: posix/regex.c:5955
+#: posix/regex.c:7919
msgid "No previous regular expression"
msgstr "ÀÌÀüÀÇ Á¤±Ô½ÄÀÌ ¾øÀ½"
@@ -2703,11 +2758,11 @@ msgstr "±×·± ÀåÄ¡ ȤÀº ÁÖ¼Ò°¡ ¾øÀ½"
msgid "No such file or directory"
msgstr "±×·± ÆÄÀÏÀ̳ª µð·ºÅ丮°¡ ¾øÀ½"
-#: nis/ypclnt.c:796
+#: nis/ypclnt.c:798
msgid "No such key in map"
msgstr "Áöµµ¿¡ ±×·± Å°°¡ ¾øÀ½"
-#: nis/ypclnt.c:794
+#: nis/ypclnt.c:796
msgid "No such map in server's domain"
msgstr "¼­¹öÀÇ µµ¸ÞÀο¡ ±×·± Áöµµ°¡ ¾øÀ½"
@@ -2725,7 +2780,7 @@ msgstr "NIS+°¡ ¾Æ´Ñ namespace ¹ß°ß"
msgid "Non-recoverable failure in name resolution"
msgstr "name resolution¿¡¼­ º¹±¸ÇÒ ¼ö ¾ø´Â ½ÇÆÐ"
-#: nis/nis_print.c:177
+#: nis/nis_print.c:180
msgid "None.\n"
msgstr "¾øÀ½.\n"
@@ -2794,12 +2849,12 @@ msgstr "¼ÒÀ¯ÀÚ°¡ ¾Æ´Ô"
msgid "Not supported"
msgstr "Áö¿øµÇÁö ¾ÊÀ½"
-#: nis/nis_print.c:264
+#: nis/nis_print.c:267
#, c-format
msgid "Number of Columns : %d\n"
msgstr "¿­ÀÇ ¼ö : %d\n"
-#: nis/nis_print.c:363
+#: nis/nis_print.c:366
#, c-format
msgid "Number of objects : %u\n"
msgstr "¿ÀºêÁ§Æ®ÀÇ ¼ö : %u\n"
@@ -2820,17 +2875,17 @@ msgstr "¿µ¿ªÀ» ¹þ¾î³­ ¼öÄ¡ Àμö"
msgid "Numerical result out of range"
msgstr "¹üÀ§¸¦ ¹þ¾î³­ ¼öÄ¡ °á°ú"
-#: nis/nis_print.c:367
+#: nis/nis_print.c:370
#, c-format
msgid "Object #%d:\n"
msgstr "¿ÀºêÁ§Æ® #%d:\n"
-#: nis/nis_print.c:317
+#: nis/nis_print.c:320
#, c-format
msgid "Object Name : %s\n"
msgstr "¿ÀºêÁ§Æ® À̸§ : %s\n"
-#: nis/nis_print.c:329
+#: nis/nis_print.c:332
msgid "Object Type : "
msgstr "¿ÀºêÁ§Æ® ŸÀÔ : "
@@ -2847,11 +2902,11 @@ msgstr "¿ø°Ý °³Ã¼ÀÔ´Ï´Ù"
msgid "Object with same name exists"
msgstr "°°Àº À̸§ÀÇ ¿ÀºêÁ§Æ®°¡ Á¸ÀçÇÕ´Ï´Ù"
-#: timezone/zic.c:2022
+#: timezone/zic.c:2028
msgid "Odd number of quotation marks"
msgstr "µû¿ÈÇ¥°¡ Ȧ¼ö °³ÀÔ´Ï´Ù"
-#: elf/ldconfig.c:134
+#: elf/ldconfig.c:129
msgid "Only process directories specified on the command line. Don't build cache."
msgstr "¸í·ÉÇà¿¡ ÁöÁ¤µÈ µð·ºÅ丮¸¸ ó¸®ÇÕ´Ï´Ù. ij½¬¸¦ ¸¸µéÁö ¾Ê½À´Ï´Ù."
@@ -2934,7 +2989,7 @@ msgstr "½ºÆ®¸² ÀÚ¿ø ºÎÁ·"
msgid "Out of streams resources"
msgstr "½ºÆ®¸² ÀÚ¿ø ºÎÁ·"
-#: iconv/iconv_prog.c:60 locale/programs/localedef.c:99
+#: iconv/iconv_prog.c:64 locale/programs/localedef.c:99
msgid "Output control:"
msgstr "Ãâ·Â Á¶Á¤:"
@@ -2942,12 +2997,12 @@ msgstr "Ãâ·Â Á¶Á¤:"
msgid "Output selection:"
msgstr "Ãâ·Â ¼±ÅÃ:"
-#: nis/nis_print.c:319
+#: nis/nis_print.c:322
#, c-format
msgid "Owner : %s\n"
msgstr "¼ÒÀ¯ÀÚ : %s\n"
-#: nis/nis_print.c:127
+#: nis/nis_print.c:130
msgid "PRIVATE\n"
msgstr "°³ÀÎ\n"
@@ -2969,13 +3024,13 @@ msgstr "ºÎºÐÀûÀÎ ¼º°ø"
msgid "Passed object is not the same object on server"
msgstr "Åë°úµÈ ¿ÀºêÁ§Æ®´Â ¼­¹öÀÇ °°Àº ¿ÀºêÁ§Æ®°¡ ¾Æ´Õ´Ï´Ù"
-#: elf/ldconfig.c:287
+#: elf/ldconfig.c:282
#, c-format
msgid "Path `%s' given more than once"
msgstr "`%s' °æ·Î°¡ ¿©·¯¹ø ÁÖ¾îÁ³½À´Ï´Ù"
#. TRANS Permission denied; the file permissions do not allow the attempted operation.
-#: nis/nis_error.c:39 nis/ypclnt.c:816
+#: nis/nis_error.c:39 nis/ypclnt.c:818
#: stdio-common/../sysdeps/gnu/errlist.c:109
#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:43
msgid "Permission denied"
@@ -2985,11 +3040,11 @@ msgstr "Çã°¡ °ÅºÎµÊ"
msgid "Power failure"
msgstr "Àü·ÂÀÌ ²÷¾îÁü"
-#: posix/regex.c:1126
+#: posix/regex.c:1404
msgid "Premature end of regular expression"
msgstr "Á¤±Ô½ÄÀÌ ¿Ï°áµÇÁö ¾ÊÀº ä ³¡³²"
-#: elf/ldconfig.c:127
+#: elf/ldconfig.c:122
msgid "Print cache"
msgstr "ij½¬ Ç¥½Ã"
@@ -2997,6 +3052,10 @@ msgstr "ij½¬ Ç¥½Ã"
msgid "Print current configuration statistic"
msgstr "ÇöÀç ¼³Á¤ »óŸ¦ Ç¥½ÃÇÔ"
+#: locale/programs/locale.c:81
+msgid "Print more information"
+msgstr "´õ ¸¹Àº Á¤º¸¸¦ Ç¥½Ã"
+
#: locale/programs/localedef.c:107
msgid "Print more messages"
msgstr "´õ ¸¹Àº ¸Þ½ÃÁö Ç¥½Ã"
@@ -3013,6 +3072,10 @@ msgstr "¾Æ¸¶µµ ¼º°ø"
msgid "Probably not found"
msgstr "¾Æ¸¶µµ ¾øÀ½"
+#: posix/../sysdeps/posix/gai_strerror.c:42
+msgid "Processing request in progress"
+msgstr "ÁøÇàÁßÀÎ ¿äûÀ» ¼öÇàÁßÀÔ´Ï´Ù"
+
#: stdio-common/../sysdeps/unix/siglist.c:53 sysdeps/generic/siglist.h:53
msgid "Profiling timer expired"
msgstr "ÇÁ·ÎÆÄÀϸµ ŸÀ̸ÓÀÇ ½Ã°£ÀÌ ÃÊ°úµÊ"
@@ -3070,7 +3133,7 @@ msgstr "RFS¿¡ ±¹ÇÑµÈ ¿À·ù"
msgid "RPC bad procedure for program"
msgstr "RPC ÇÁ·Î±×·¥ÀÇ ÇÁ·Î½ÃÁ®°¡ À߸øµÊ"
-#: nis/ypclnt.c:790
+#: nis/ypclnt.c:792
msgid "RPC failure on NIS operation"
msgstr "NIS ¿¬»ê Áß RPC ½ÇÆÐÇÔ"
@@ -3094,88 +3157,88 @@ msgstr "RPC ±¸Á¶°¡ À߸øµÇ¾ú½À´Ï´Ù"
msgid "RPC version wrong"
msgstr "RPC ¹öÀüÀÌ À߸øµÊ"
-#: sunrpc/clnt_perr.c:271
+#: sunrpc/clnt_perr.c:278
msgid "RPC: (unknown error code)"
msgstr "RPC: (¾Ë ¼ö ¾ø´Â ¿À·ù ÄÚµå)"
-#: sunrpc/clnt_perr.c:190
+#: sunrpc/clnt_perr.c:197
msgid "RPC: Authentication error"
msgstr "RPC: ÀÎÁõ ¿À·ù"
-#: sunrpc/clnt_perr.c:170
+#: sunrpc/clnt_perr.c:177
msgid "RPC: Can't decode result"
msgstr "RPC: °á°ú¸¦ Çص¶ÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: sunrpc/clnt_perr.c:166
+#: sunrpc/clnt_perr.c:173
msgid "RPC: Can't encode arguments"
msgstr "RPC: Àμö¸¦ ºÎȣȭÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: sunrpc/clnt_perr.c:230
+#: sunrpc/clnt_perr.c:237
msgid "RPC: Failed (unspecified error)"
msgstr "RPC: ½ÇÆÐ (ÁöÁ¤µÇÁö ¾ÊÀº ¿À·ù)"
-#: sunrpc/clnt_perr.c:186
+#: sunrpc/clnt_perr.c:193
msgid "RPC: Incompatible versions of RPC"
msgstr "RPC: ȣȯµÇÁö ¾Ê´Â RPC ¹öÀü"
-#: sunrpc/clnt_perr.c:222
+#: sunrpc/clnt_perr.c:229
msgid "RPC: Port mapper failure"
msgstr "RPC: Æ÷Æ® ¸ÊÆÛ ½ÇÆÐ"
-#: sunrpc/clnt_perr.c:202
+#: sunrpc/clnt_perr.c:209
msgid "RPC: Procedure unavailable"
msgstr "RPC: ÇÁ·Î½ÃÁ® »ç¿ë ºÒ°¡´É"
-#: sunrpc/clnt_perr.c:226
+#: sunrpc/clnt_perr.c:233
msgid "RPC: Program not registered"
msgstr "RPC: ÇÁ·Î±×·¥ÀÌ µî·ÏµÇÁö ¾ÊÀ½"
-#: sunrpc/clnt_perr.c:194
+#: sunrpc/clnt_perr.c:201
msgid "RPC: Program unavailable"
msgstr "RPC: ÇÁ·Î±×·¥ »ç¿ë ºÒ°¡´É"
-#: sunrpc/clnt_perr.c:198
+#: sunrpc/clnt_perr.c:205
msgid "RPC: Program/version mismatch"
msgstr "RPC: ÇÁ·Î±×·¥/¹öÀü ºÒÀÏÄ¡"
-#: sunrpc/clnt_perr.c:210
+#: sunrpc/clnt_perr.c:217
msgid "RPC: Remote system error"
msgstr "RPC: ¿ø°Ý ½Ã½ºÅÛ ¿À·ù"
-#: sunrpc/clnt_perr.c:206
+#: sunrpc/clnt_perr.c:213
msgid "RPC: Server can't decode arguments"
msgstr "RPC: ¼­¹ö°¡ Àμö¸¦ Çص¶ÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: sunrpc/clnt_perr.c:163
+#: sunrpc/clnt_perr.c:170
msgid "RPC: Success"
msgstr "RPC: ¼º°ø"
-#: sunrpc/clnt_perr.c:182
+#: sunrpc/clnt_perr.c:189
msgid "RPC: Timed out"
msgstr "RPC: ½Ã°£ ÃÊ°ú"
-#: sunrpc/clnt_perr.c:178
+#: sunrpc/clnt_perr.c:185
msgid "RPC: Unable to receive"
msgstr "RPC: ¹ÞÀ» ¼ö ¾øÀ½"
-#: sunrpc/clnt_perr.c:174
+#: sunrpc/clnt_perr.c:181
msgid "RPC: Unable to send"
msgstr "RPC: º¸³¾ ¼ö ¾øÀ½"
-#: sunrpc/clnt_perr.c:214
+#: sunrpc/clnt_perr.c:221
msgid "RPC: Unknown host"
msgstr "RPC: ¾Ë ¼ö ¾ø´Â È£½ºÆ®"
-#: sunrpc/clnt_perr.c:218
+#: sunrpc/clnt_perr.c:225
msgid "RPC: Unknown protocol"
msgstr "RPC: ¾Ë ¼ö ¾ø´Â ±Ô¾à"
-#: nis/nis_print.c:185
+#: nis/nis_print.c:188
#, c-format
msgid "RSA (%d bits)\n"
msgstr "RSA (%d ºñÆ®)\n"
-#: elf/dl-sym.c:68 elf/dl-sym.c:125
+#: elf/dl-sym.c:72 elf/dl-sym.c:134
msgid "RTLD_NEXT used in code not dynamically loaded"
msgstr "µ¿ÀûÀ¸·Î ÀûÀçµÇÁö ¾ÊÀº Äڵ忡 RTLD_NEXT°¡ »ç¿ëµÊ"
@@ -3198,7 +3261,7 @@ msgstr "ÀбâÀü¿ë ÆÄÀÏ ½Ã½ºÅÛ"
msgid "Real-time signal %d"
msgstr "½Ç-½Ã°¢ ½Ã±×³¯ %d"
-#: posix/regex.c:1129
+#: posix/regex.c:1407
msgid "Regular expression too big"
msgstr "Á¤±Ô½ÄÀÌ ³Ê¹« Å®´Ï´Ù"
@@ -3212,11 +3275,11 @@ msgstr "¿ø°Ý ÀÔÃâ·Â ¿À·ù"
msgid "Remote address changed"
msgstr "¿ø°Ý ÁÖ¼Ò°¡ ¹Ù²î¾úÀ½"
-#: inet/ruserpass.c:182
+#: inet/ruserpass.c:185
msgid "Remove password or make file unreadable by others."
msgstr "¾ÏÈ£¸¦ Áö¿ì°Å³ª ´Ù¸¥ »ç¶÷ÀÌ ÀÐÀ» ¼ö ¾ø´Â ÆÄÀÏÀ» ¸¸µì´Ï´Ù."
-#: elf/cache.c:394
+#: elf/cache.c:431
#, c-format
msgid "Renaming of %s to %s failed"
msgstr "%s¿¡¼­ %sÀ¸·Î(·Î) À̸§À» ¹Ù²Ù´Â µ¥ ½ÇÆÐÇß½À´Ï´Ù"
@@ -3226,7 +3289,7 @@ msgstr "%s¿¡¼­ %sÀ¸·Î(·Î) À̸§À» ¹Ù²Ù´Â µ¥ ½ÇÆÐÇß½À´Ï´Ù"
msgid "Reopening shared object `%s' failed"
msgstr "µ¿Àû ¿ÀºêÁ§Æ® `%s'¸¦ ´Ù½Ã ¿©´Â µ¥ ½ÇÆÐÇÔ"
-#: nis/nis_print.c:171
+#: nis/nis_print.c:174
msgid "Replicate :\n"
msgstr "Áߺ¹µÊ :\n"
@@ -3235,16 +3298,24 @@ msgstr "Áߺ¹µÊ :\n"
msgid "Report bugs to %s.\n"
msgstr "¹ö±×¸¦ %s·Î ¾Ë·ÁÁֽʽÿÀ.\n"
-#: catgets/gencat.c:233 debug/pcprofiledump.c:181 iconv/iconv_prog.c:337
-#: locale/programs/locale.c:256 locale/programs/localedef.c:297
-#: malloc/memusagestat.c:602
+#: catgets/gencat.c:233 debug/pcprofiledump.c:181 iconv/iconv_prog.c:379
+#: iconv/iconvconfig.c:321 locale/programs/locale.c:268
+#: locale/programs/localedef.c:297 malloc/memusagestat.c:602
msgid "Report bugs using the `glibcbug' script to <bugs@gnu.org>.\n"
msgstr "¹ö±×´Â `glibcbug' ½ºÅ©¸³Æ®¸¦ ÀÌ¿ëÇØ <bugs@gnu.org>¿¡ º¸°íÇϽʽÿÀ.\n"
-#: nis/ypclnt.c:788
+#: nis/ypclnt.c:790
msgid "Request arguments bad"
msgstr "¿äûµÈ Àμö°¡ À߸øµÊ"
+#: posix/../sysdeps/posix/gai_strerror.c:43
+msgid "Request canceled"
+msgstr "¿äûÀÌ Ãë¼ÒµÇ¾úÀ½"
+
+#: posix/../sysdeps/posix/gai_strerror.c:44
+msgid "Request not canceled"
+msgstr "¿äûÀÌ Ãë¼ÒµÇÁö ¾Ê¾ÒÀ½"
+
#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:171
msgid "Reserved for future use"
msgstr "¹Ì·¡¿¡ »ç¿ëÇϱâ À§ÇØ ¿¹¾àµÊ"
@@ -3315,11 +3386,7 @@ msgstr "°á°ú¸¦ Äݹé ÇÁ·Î½ÃÀú·Î º¸³ÂÀ½"
msgid "SHOBJ [PROFDATA]"
msgstr "SHOBJ [PROFDATA]"
-#: nis/nis_print.c:34
-msgid "SUNYP"
-msgstr "SUNYP"
-
-#: nis/nis_print.c:266
+#: nis/nis_print.c:269
#, c-format
msgid "Search Path : %s\n"
msgstr "ã±â °æ·Î : %s\n"
@@ -3336,11 +3403,11 @@ msgstr "¼­¹ö°¡ ´Ù¸¥ ÀÏÀ» ÇÏ°í ÀÖ½À´Ï´Ù, ´Ù½Ã ½ÃµµÇϼ¼¿ä"
msgid "Server out of memory"
msgstr "¼­¹ö ¸Þ¸ð¸® ºÎÁ·"
-#: sunrpc/clnt_perr.c:336
+#: sunrpc/clnt_perr.c:345
msgid "Server rejected credential"
msgstr "¼­¹ö°¡ ÀÚ°Ý ºÎ¿©¸¦ °ÅºÎÇß½À´Ï´Ù"
-#: sunrpc/clnt_perr.c:344
+#: sunrpc/clnt_perr.c:353
msgid "Server rejected verifier"
msgstr "¼­¹ö°¡ °ËÁõ±â¸¦ °ÅºÎÇß½À´Ï´Ù"
@@ -3408,7 +3475,7 @@ msgstr "²÷¾îÁø NFS ÆÄÀÏ ÇÚµé"
msgid "Start NUMBER threads"
msgstr "`¼ýÀÚ'°³ÀÇ ¾²·¹µå¸¦ ½ÃÀÛÇÔ"
-#: nis/nis_print.c:362
+#: nis/nis_print.c:365
#, c-format
msgid "Status : %s\n"
msgstr "»óÅÂ : %s\n"
@@ -3438,7 +3505,7 @@ msgstr "½ºÆ®¸² ÆÄÀÌÇÁ ¿À·ù"
msgid "Structure needs cleaning"
msgstr "±¸Á¶¿¡ û¼Ò°¡ ÇÊ¿äÇÕ´Ï´Ù"
-#: nis/nis_error.c:29 nis/ypclnt.c:786 nis/ypclnt.c:860 posix/regex.c:1084
+#: nis/nis_error.c:29 nis/ypclnt.c:788 nis/ypclnt.c:862 posix/regex.c:1362
#: stdio-common/../sysdeps/gnu/errlist.c:20
msgid "Success"
msgstr "¼º°ø"
@@ -3459,11 +3526,11 @@ msgstr "<ÆÄÀÏ>¿¡ ±âÈ£·Î Ç¥½ÃµÈ ¹®ÀÚ À̸§ÀÌ Á¤ÀǵÊ"
msgid "System error"
msgstr "½Ã½ºÅÛ ¿À·ù"
-#: locale/programs/locale.c:65
+#: locale/programs/locale.c:73
msgid "System information:"
msgstr "½Ã½ºÅÛ Á¤º¸:"
-#: nis/ypclnt.c:866
+#: nis/ypclnt.c:868
msgid "System resource allocation failure"
msgstr "½Ã½ºÅÛ ÀÚ¿ø ÇÒ´ç ½ÇÆÐ"
@@ -3484,7 +3551,7 @@ msgstr ""
msgid "TABLE"
msgstr "Å×À̺í"
-#: nis/nis_print.c:118
+#: nis/nis_print.c:121
msgid "TABLE\n"
msgstr "Å×À̺í\n"
@@ -3493,7 +3560,7 @@ msgstr "Å×À̺í\n"
msgid "TABLE,yes"
msgstr "Å×À̺í,¿¹"
-#: nis/nis_print.c:263
+#: nis/nis_print.c:266
#, c-format
msgid "Table Type : %s\n"
msgstr "Å×À̺í ŸÀÔ : %s\n"
@@ -3516,7 +3583,7 @@ msgstr "Á¾·áµÊ"
msgid "Text file busy"
msgstr "½ÇÇà ÆÄÀÏ »ç¿ë Áß"
-#: iconv/iconv_prog.c:627
+#: iconv/iconv_prog.c:680
msgid ""
"The following list contain all the coded character sets known. This does\n"
"not necessarily mean that all combinations of these names can be used for\n"
@@ -3532,11 +3599,11 @@ msgstr ""
"\n"
" "
-#: sunrpc/rpc_main.c:1364
+#: sunrpc/rpc_main.c:1365
msgid "This implementation doesn't support newstyle or MT-safe code!\n"
msgstr "ÀÌ ±¸Çö¹°Àº newstyleÀ̳ª MT-safe Äڵ带 Áö¿øÇÏÁö ¾Ê½À´Ï´Ù!\n"
-#: nis/nis_print.c:224
+#: nis/nis_print.c:227
msgid "Time to live : "
msgstr "À¯ÁöµÇ´Â ½Ã°£ : "
@@ -3610,7 +3677,7 @@ msgstr "»ç¿ëÀÚ°¡ ³Ê¹« ¸¹À½"
msgid "Trace/breakpoint trap"
msgstr "ÃßÀû/Áß´ÜÁ¡ ÇÔÁ¤"
-#: posix/regex.c:1099
+#: posix/regex.c:1377
msgid "Trailing backslash"
msgstr "µû¶óºÙ´Â ¿ª½½·¡½¬"
@@ -3642,12 +3709,12 @@ msgstr "Àü¼Û Á¾·áÁöÁ¡ÀÌ ¿¬°áµÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù"
msgid "Try `%s --help' or `%s --usage' for more information.\n"
msgstr "´õ ¸¹Àº Á¤º¸¸¦ º¸·Á¸é `%s --help' ȤÀº `%s --usage' ÇϽʽÿÀ.\n"
-#: nis/nis_print.c:164
+#: nis/nis_print.c:167
#, c-format
msgid "Type : %s\n"
msgstr "ŸÀÔ : %s\n"
-#: nis/nis_print.c:48
+#: nis/nis_print.c:51
msgid "UNKNOWN"
msgstr "¾Ë¼ö¾øÀ½"
@@ -3667,31 +3734,35 @@ msgstr "ÄݹéÀ» ¸¸µé ¼ö ¾øÀ½"
msgid "Unable to create process on server"
msgstr "¼­¹ö¿¡¼­ ÇÁ·Î¼¼½º¸¦ ¸¸µé ¼ö ¾øÀ½"
-#: nis/nis_print.c:191
+#: nis/nis_print.c:194
#, c-format
msgid "Unknown (type = %d, bits = %d)\n"
msgstr "¾Ë¼ö¾øÀ½ (ŸÀÔ = %d, ºñÆ®¼ö = %d)\n"
-#: inet/ruserpass.c:274
+#: inet/ruserpass.c:277
#, c-format
msgid "Unknown .netrc keyword %s"
msgstr "¾Ë ¼ö ¾ø´Â .netrc Å°¿öµå %s"
-#: elf/../sysdeps/generic/readelflib.c:69
+#: elf/../sysdeps/generic/readelflib.c:71
#, c-format
msgid "Unknown ELFCLASS in file %s.\n"
msgstr "%s ÆÄÀÏÀÌ ¾Ë·ÁÁöÁö ¾ÊÀº ELFCLASS.\n"
-#: nis/ypclnt.c:820
+#: nis/ypclnt.c:822
msgid "Unknown NIS error code"
msgstr "¾Ë ¼ö ¾ø´Â NIS ¿À·ù ÄÚµå"
+#: elf/cache.c:101
+msgid "Unknown OS"
+msgstr "¾Ë ¼ö ¾ø´Â ¿î¿µÃ¼Á¦"
+
#: nss/getent.c:771
#, c-format
msgid "Unknown database: %s\n"
msgstr "¾Ë ¼ö ¾ø´Â µ¥ÀÌŸº£À̽º: `%s'\n"
-#: posix/../sysdeps/posix/gai_strerror.c:52
+#: posix/../sysdeps/posix/gai_strerror.c:57
msgid "Unknown error"
msgstr "¾Ë ¼ö ¾ø´Â ¿À·ù"
@@ -3727,31 +3798,31 @@ msgstr "¾Ë ¼ö ¾ø´Â ¼­¹ö ¿À·ù"
msgid "Unknown signal %d"
msgstr "¾Ë ¼ö ¾ø´Â ½ÅÈ£ %d"
-#: misc/error.c:114 timezone/zic.c:384
+#: misc/error.c:113 timezone/zic.c:390
msgid "Unknown system error"
msgstr "¾Ë ¼ö ¾ø´Â ½Ã½ºÅÛ ¿À·ù"
-#: nis/ypclnt.c:868
+#: nis/ypclnt.c:870
msgid "Unknown ypbind error"
msgstr "¾Ë ¼ö ¾ø´Â ypbind ¿À·ù"
-#: posix/regex.c:1108
+#: posix/regex.c:1386
msgid "Unmatched ( or \\("
msgstr "¦ÀÌ ¸ÂÁö ¾Ê´Â ( ¶Ç´Â \\("
-#: posix/regex.c:1132
+#: posix/regex.c:1410
msgid "Unmatched ) or \\)"
msgstr "¦ÀÌ ¸ÂÁö ¾Ê´Â ) ¶Ç´Â \\)"
-#: posix/regex.c:1105
+#: posix/regex.c:1383
msgid "Unmatched [ or [^"
msgstr "¦ÀÌ ¸ÂÁö ¾Ê´Â [ ¶Ç´Â [^"
-#: posix/regex.c:1111
+#: posix/regex.c:1389
msgid "Unmatched \\{"
msgstr "¦ÀÌ ¸ÂÁö ¾Ê´Â \\{"
-#: posix/getconf.c:819
+#: posix/getconf.c:1006
#, c-format
msgid "Unrecognized variable `%s'"
msgstr "ÀνÄÇÒ ¼ö ¾ø´Â º¯¼ö `%s'"
@@ -3764,20 +3835,20 @@ msgstr "½Ã±ÞÇÑ ÀÔÃâ·Â »óȲ"
msgid "Usage:"
msgstr "»ç¿ë¹ý:"
-#: posix/getconf.c:731
+#: posix/getconf.c:883
#, c-format
-msgid "Usage: %s variable_name [pathname]\n"
-msgstr "»ç¿ë¹ý: %s º¯¼ö¸í [°æ·Î¸í]\n"
+msgid "Usage: %s [-v specification] variable_name [pathname]\n"
+msgstr "»ç¿ë¹ý: %s [-v <½ºÆå>] <º¯¼ö¸í> [<°æ·Î¸í>]\n"
#: sunrpc/rpcinfo.c:674
msgid "Usage: rpcinfo [ -n portnum ] -u host prognum [ versnum ]\n"
-msgstr "»ç¿ë¹ý: rpcinfo [ -n Æ÷Æ®¹øÈ£ ] -u È£½ºÆ® ÇÁ·Î±×·¥¹øÈ£ [ ¹öÀü¹øÈ£ ]\n"
+msgstr "»ç¿ë¹ý: rpcinfo [ -n <Æ÷Æ®¹øÈ£> ] -u <È£½ºÆ®> <ÇÁ·Î±×·¥¹øÈ£> [ <¹öÀü¹øÈ£> ]\n"
-#: elf/ldconfig.c:132
+#: elf/ldconfig.c:127
msgid "Use CACHE as cache file"
msgstr "ij½¬ ÆÄÀÏ·Î <ij½¬>¸¦ »ç¿ëÇÕ´Ï´Ù"
-#: elf/ldconfig.c:133
+#: elf/ldconfig.c:128
msgid "Use CONF as configuration file"
msgstr "¼³Á¤ ÆÄÀÏ·Î <¼³Á¤>À» »ç¿ëÇÕ´Ï´Ù"
@@ -3802,7 +3873,7 @@ msgstr "Á¤ÀÇµÈ ÀÚ·áÇüÀ¸·Î ¾²±â¿£ ³Ê¹« Å« °ª"
msgid "Virtual timer expired"
msgstr "°¡»ó ŸÀÌ¸Ó ½Ã°£ ÃÊ°ú"
-#: timezone/zic.c:1926
+#: timezone/zic.c:1932
msgid "Wild result from command execution"
msgstr "¸í·É ½ÇÇà¿¡¼­ Á¦ ¸Ú´ë·ÎÀÇ °á°ú°¡ ³ª¿ÔÀ½"
@@ -3810,19 +3881,19 @@ msgstr "¸í·É ½ÇÇà¿¡¼­ Á¦ ¸Ú´ë·ÎÀÇ °á°ú°¡ ³ª¿ÔÀ½"
msgid "Window changed"
msgstr "À©µµ¿ì º¯°æµÊ"
-#: locale/programs/locale.c:69
+#: locale/programs/locale.c:77
msgid "Write names of available charmaps"
msgstr "»ç¿ë °¡´ÉÇÑ ¹®ÀÚÁöµµÀÇ À̸§µéÀ» Ãâ·ÂÇÔ"
-#: locale/programs/locale.c:67
+#: locale/programs/locale.c:75
msgid "Write names of available locales"
msgstr "»ç¿ë °¡´ÉÇÑ ·ÎÄÉÀÏÀÇ À̸§À» Ç¥½ÃÇÔ"
-#: locale/programs/locale.c:71
+#: locale/programs/locale.c:79
msgid "Write names of selected categories"
msgstr "»ç¿ë °¡´ÉÇÑ ¹üÁÖÀÇ À̸§À» Ç¥½ÃÇÔ"
-#: locale/programs/locale.c:72
+#: locale/programs/locale.c:80
msgid "Write names of selected keywords"
msgstr "¼±ÅÃµÈ Å°¿öµåÀÇ À̸§À» Ç¥½ÃÇÔ"
@@ -3830,18 +3901,18 @@ msgstr "¼±ÅÃµÈ Å°¿öµåÀÇ À̸§À» Ç¥½ÃÇÔ"
msgid "Write output to file NAME"
msgstr "`À̸§' ÆÄÀÏ·Î Ãâ·ÂÇÔ"
-#: elf/cache.c:366 elf/cache.c:375 elf/cache.c:379
+#: elf/cache.c:402 elf/cache.c:411 elf/cache.c:415
msgid "Writing of cache data failed"
msgstr "ij½¬ µ¥ÀÌŸ ¾²±â°¡ ½ÇÆÐ"
-#: elf/cache.c:383
+#: elf/cache.c:419
msgid "Writing of cache data failed."
msgstr "ij½¬ µ¥ÀÌŸ ¾²±â°¡ ½ÇÆÐÇß½À´Ï´Ù."
-#: catgets/gencat.c:251 elf/ldconfig.c:269 elf/sprof.c:361
-#: iconv/iconv_prog.c:356 locale/programs/locale.c:274
+#: catgets/gencat.c:251 elf/ldconfig.c:264 elf/sprof.c:361
+#: iconv/iconv_prog.c:398 iconv/iconvconfig.c:340 locale/programs/locale.c:286
#: locale/programs/localedef.c:316 nscd/nscd.c:292 nscd/nscd_nischeck.c:95
-#: nss/getent.c:68 posix/getconf.c:756
+#: nss/getent.c:68 posix/getconf.c:909
#, c-format
msgid "Written by %s.\n"
msgstr "%sÀÌ ¸¸µé¾ú½À´Ï´Ù.\n"
@@ -3850,14 +3921,6 @@ msgstr "%sÀÌ ¸¸µé¾ú½À´Ï´Ù.\n"
msgid "Wrong medium type"
msgstr "À߸øµÈ ¸Å°³Ã¼ ŸÀÔ"
-#: nis/nis_print.c:40
-msgid "X500"
-msgstr "X500"
-
-#: nis/nis_print.c:44
-msgid "XCHS"
-msgstr "XCHS"
-
#: nis/ypclnt.c:174
#, c-format
msgid "YPBINDPROC_DOMAIN: %s\n"
@@ -3872,11 +3935,15 @@ msgstr "¿¹, 42´Â Á¤»óÀûÀ¸·Î µ¿ÀÛÇÑ´Ù´Â ¶æÇÕ´Ï´Ù"
msgid "You really blew it this time"
msgstr "À̹ø¿£ Á¤¸»·Î ³¯·Á¹ö·È½À´Ï´Ù"
-#: timezone/zic.c:1088
+#: timezone/zic.c:1094
msgid "Zone continuation line end time is not after end time of previous line"
msgstr "°è¼ÓµÇ´Â Zone ÁÙ¿¡ ÀÖ´Â ³¡ ½Ã°¢ÀÌ À­ ÁÙ¿¡ ÀÖ´Â ³¡½Ã°¢º¸´Ù ´ÊÀº ½Ã°¢ÀÌ ¾Æ´Õ´Ï´Ù"
-#: iconv/iconv_prog.c:73
+#: iconv/iconvconfig.c:114
+msgid "[DIR...]"
+msgstr "[<µð·ºÅ丮>...]"
+
+#: iconv/iconv_prog.c:77
msgid "[FILE...]"
msgstr "[<ÆÄÀÏ>...]"
@@ -3908,13 +3975,13 @@ msgstr "`%.*s'Àº(´Â) ¹®ÀÚÁöµµ¿¡ ÀÌ¹Ì Á¤ÀǵǾî ÀÖ½À´Ï´Ù"
msgid "`%.*s' already defined in repertoire"
msgstr "`%.*s'Àº(´Â) ·¹ÆÄÅ丮¿¡ ÀÌ¹Ì Á¤ÀǵǾî ÀÖ½À´Ï´Ù"
-#: locale/programs/charmap.c:599 locale/programs/locfile.h:96
+#: locale/programs/charmap.c:604 locale/programs/locfile.h:96
#: locale/programs/repertoire.c:314
#, c-format
msgid "`%1$s' definition does not end with `END %1$s'"
msgstr "`%1$s' Á¤ÀÇ°¡ `END %1$s'·Î ³¡³ªÁö ¾Ê½À´Ï´Ù"
-#: locale/programs/ld-collate.c:1268 locale/programs/ld-ctype.c:1454
+#: locale/programs/ld-collate.c:1281 locale/programs/ld-ctype.c:1455
#, c-format
msgid "`%s' and `%.*s' are no valid names for symbolic range"
msgstr "`%s'°ú(¿Í) `%.*s'Àº(´Â) ±âÈ£ ¹üÀ§·Î »ç¿ë°¡´ÉÇÑ À̸§ÀÌ ¾Æ´Õ´Ï´Ù"
@@ -3924,7 +3991,7 @@ msgstr "`%s'°ú(¿Í) `%.*s'Àº(´Â) ±âÈ£ ¹üÀ§·Î »ç¿ë°¡´ÉÇÑ À̸§ÀÌ ¾Æ´Õ´Ï´Ù"
msgid "`%s' is no correct profile data file for `%s'"
msgstr "`%s'´Â `%s'¿¡ ¸Â´Â ÇÁ·ÎÆÄÀÏ µ¥ÀÌŸ ÆÄÀÏÀÌ ¾Æ´Õ´Ï´Ù"
-#: locale/programs/ld-ctype.c:691
+#: locale/programs/ld-ctype.c:699
msgid "`digit' category has not entries in groups of ten"
msgstr "`digit' ¹üÁÖ°¡ 10ÀÇ ¹è¼öÀÇ Ç׸ñÀ» °¡ÁöÁö ¾Ê¾Ò½À´Ï´Ù"
@@ -3940,12 +4007,12 @@ msgstr "ai_socktypeÀÌ Áö¿øµÇÁö ¾Ê½À´Ï´Ù"
msgid "already running"
msgstr "ÀÌ¹Ì ½ÇÇàÁß"
-#: locale/programs/charmap.c:434 locale/programs/repertoire.c:184
+#: locale/programs/charmap.c:439 locale/programs/repertoire.c:184
#, c-format
msgid "argument to <%s> must be a single character"
msgstr "<%s>¿¡ ´ëÇÑ Àμö´Â ´ÜÀÏ ¹®ÀÚ¿©¾ß ÇÕ´Ï´Ù"
-#: locale/programs/locfile.c:124
+#: locale/programs/locfile.c:126
#, c-format
msgid "argument to `%s' must be a single character"
msgstr "`%s'¿¡ ´ëÇÑ Àμö´Â ´ÜÀÏ ¹®ÀÚ¿©¾ß ÇÕ´Ï´Ù"
@@ -3958,28 +4025,28 @@ msgstr "auto_none.c - Ä¡¸íÀûÀÎ Á¤·Ä(marshalling) ¹®Á¦"
msgid "authunix_create: out of memory\n"
msgstr "authunix_create: ¸Þ¸ð¸® ºÎÁ·\n"
-#: locale/programs/charmap.c:364 locale/programs/locfile.c:118
-#: locale/programs/locfile.c:145 locale/programs/repertoire.c:176
+#: locale/programs/charmap.c:369 locale/programs/locfile.c:120
+#: locale/programs/locfile.c:147 locale/programs/repertoire.c:176
msgid "bad argument"
msgstr "À߸øµÈ Àμö"
-#: inet/rcmd.c:424
+#: inet/rcmd.c:425
msgid "bad owner"
msgstr "À߸øµÈ ¼ÒÀ¯ÀÚ"
-#: timezone/zic.c:1210
+#: timezone/zic.c:1216
msgid "blank FROM field on Link line"
msgstr "Link ÁÙ¿¡ FROM Çʵ尡 ¾øÀ½"
-#: timezone/zic.c:1214
+#: timezone/zic.c:1220
msgid "blank TO field on Link line"
msgstr "Link ÁÙ¿¡ TO Çʵ尡 ¾øÀ½"
-#: malloc/mcheck.c:291
+#: malloc/mcheck.c:302
msgid "block freed twice\n"
msgstr "ºí·°ÀÌ µÎ¹ø ºñ¿öÁ³À½\n"
-#: malloc/mcheck.c:294
+#: malloc/mcheck.c:305
msgid "bogus mcheck_status, library is buggy\n"
msgstr "¾ûÅ͸® mcheck_status, ¶óÀ̺귯¸®´Â ¹ö±×°¡ ÀÖ½À´Ï´Ù\n"
@@ -4003,11 +4070,11 @@ msgstr "cache_set: ¹ö¸±°ÍÀ» ÇÒ´çÇÏÁö ¸øÇßÀ½"
msgid "cache_set: victim not found"
msgstr "cache_set: ¹ö¸±°ÍÀ» ãÁö ¸øÇßÀ½"
-#: timezone/zic.c:1751
+#: timezone/zic.c:1757
msgid "can't determine time zone abbreviation to use just after until time"
msgstr "´ÜÁö Á¾·á½Ã°¢ ÀÌÈÄ¿¡ »ç¿ëÇϱâ À§ÇÑ ½Ã°£´ë ¾à¾î¸¦ °áÁ¤ÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: sunrpc/svc_simple.c:76
+#: sunrpc/svc_simple.c:85
#, c-format
msgid "can't reassign procedure number %ld\n"
msgstr "ÇÁ·Î½ÃÁ® ¹øÈ£ %ld¸¦ ÀçÁöÁ¤ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
@@ -4021,15 +4088,15 @@ msgstr "reloc ÈÄ¿¡ prot ¼¼±×¸ÕÆ®¸¦ º¹±¸ÇÒ ¼ö ¾ø½À´Ï´Ù"
msgid "cannot add already read locale `%s' a second time"
msgstr "ÀÌ¹Ì ÀоîµéÀÎ `%s' ·ÎÄÉÀÏÀ» µÎ ¹ø Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-deps.c:470
+#: elf/dl-deps.c:454
msgid "cannot allocate dependency list"
msgstr "ÀÇÁ¸¼º ¸®½ºÆ®¸¦ ÇÒ´çÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:1031
+#: elf/dl-load.c:1039
msgid "cannot allocate memory for program header"
msgstr "ÇÁ·Î±×·¥ Çì´õ¿¡ ´ëÇÑ ¸Þ¸ð¸®¸¦ ÇÒ´çÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:339
+#: elf/dl-load.c:348
msgid "cannot allocate name record"
msgstr "³×ÀÓ ·¹Äڵ带 ÇÒ´çÇÒ ¼ö ¾ø½À´Ï´Ù"
@@ -4037,33 +4104,27 @@ msgstr "³×ÀÓ ·¹Äڵ带 ÇÒ´çÇÒ ¼ö ¾ø½À´Ï´Ù"
msgid "cannot allocate symbol data"
msgstr "±âÈ£ µ¥ÀÌŸ¸¦ ÇÒ´çÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-deps.c:501
+#: elf/dl-deps.c:484
msgid "cannot allocate symbol search list"
msgstr "±âÈ£ ã±â ¸®½ºÆ®¸¦ ÇÒ´çÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-version.c:291
+#: elf/dl-version.c:292
msgid "cannot allocate version reference table"
msgstr "¹öÀü ÂüÁ¶ Å×À̺íÀ» ÇÒ´çÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:1000
+#: elf/dl-load.c:1008
msgid "cannot change memory protections"
msgstr "¸Þ¸ð¸® º¸È£¸¦ ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:533
+#: elf/dl-load.c:540
msgid "cannot create RUNPATH/RPATH copy"
msgstr "RUNPATH/RPATH Ä«ÇǸ¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:418 elf/dl-load.c:518 elf/dl-load.c:546 elf/dl-load.c:593
-#: elf/dl-load.c:685
+#: elf/dl-load.c:456 elf/dl-load.c:525 elf/dl-load.c:553 elf/dl-load.c:600
+#: elf/dl-load.c:693
msgid "cannot create cache for search path"
msgstr "ã±â °æ·Î¿¡ ´ëÇÑ Ä³½¬¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù"
-# ¹ø¿ª: capability´Â DB¿¡¼­ authenticationÀ» ÁÙÀ̱â À§ÇØ ¾²´Â °Í..
-# °¡±î¿î DBÃ¥ ÂüÁ¶.
-#: elf/dl-support.c:191
-msgid "cannot create capability list"
-msgstr "ÄÉÀÌÆÛºô¸®Æ¼ ¸®½ºÆ®¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù"
-
#: elf/sprof.c:715 elf/sprof.c:773
msgid "cannot create internal descriptor"
msgstr "³»ºÎÀû ±â¼úÀÚ¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù"
@@ -4072,23 +4133,28 @@ msgstr "³»ºÎÀû ±â¼úÀÚ¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù"
msgid "cannot create internal descriptors"
msgstr "³»ºÎÀû ±â¼úÀÚ¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:583
+#: locale/programs/locfile.c:693
+#, c-format
+msgid "cannot create output file `%s' for category `%s'"
+msgstr "Ãâ·Â ÆÄÀÏ `%s'¸¦ ¹üÁÖ `%s'¿¡ ´ëÇØ ¸¸µé ¼ö ¾ø½À´Ï´Ù"
+
+#: elf/dl-load.c:590
msgid "cannot create search path array"
msgstr "ã±â °æ·Î ¹è¿­À» ¸¸µé ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:1137
+#: elf/dl-load.c:1125
msgid "cannot create searchlist"
msgstr "ã±â¸®½ºÆ®¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:822 elf/dl-load.c:1682
+#: elf/dl-load.c:830 elf/dl-load.c:1724
msgid "cannot create shared object descriptor"
msgstr "°øÀ¯ ¿ÀºêÁ§Æ® ±â¼úÀÚ¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù"
-#: catgets/gencat.c:1316
+#: catgets/gencat.c:1315
msgid "cannot determine escape character"
msgstr "À̽ºÄÉÀÌÇÁ ¹®ÀÚ¸¦ °áÁ¤ÇÒ ¼ö°¡ ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:950
+#: elf/dl-load.c:958
msgid "cannot dynamically load executable"
msgstr "µ¿ÀûÀ¸·Î ½ÇÇàÆÄÀÏÀ» ·ÎµåÇÒ ¼ö ¾ø½À´Ï´Ù"
@@ -4110,7 +4176,11 @@ msgstr "C Àü󸮱⸦ ãÀ» ¼ö ¾ø½À´Ï´Ù: %s \n"
msgid "cannot find any C preprocessor (cpp)\n"
msgstr "¾î¶² C Àü󸮱⵵ (cpp) ãÀ» ¼ö ¾ø½À´Ï´Ù\n"
-#: nscd/connections.c:225
+#: iconv/iconvconfig.c:1159
+msgid "cannot generate output file"
+msgstr "Ãâ·Â ÆÄÀÏÀ» ¸¸µé ¼ö ¾ø½À´Ï´Ù"
+
+#: nscd/connections.c:227
#, c-format
msgid "cannot handle old request version %d; current version is %d"
msgstr "°ú°ÅÀÇ ¿äû ¹öÀü %d¸¦ ó¸®ÇÒ ¼ö ¾ø½À´Ï´Ù; ÇöÀç ¹öÀüÀº %dÀÔ´Ï´Ù"
@@ -4119,19 +4189,15 @@ msgstr "°ú°ÅÀÇ ¿äû ¹öÀü %d¸¦ ó¸®ÇÒ ¼ö ¾ø½À´Ï´Ù; ÇöÀç ¹öÀüÀº %dÀÔ´Ï´Ù"
msgid "cannot load profiling data"
msgstr "ÇÁ·ÎÆÄÀϸµ µ¥ÀÌŸ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-deps.c:586
-msgid "cannot load shared object file"
-msgstr "µ¿Àû ¿ÀºêÁ§Æ® ÆÄÀÏÀ» ÀоîµéÀÏ ¼ö ¾ø½À´Ï´Ù"
-
-#: elf/dl-reloc.c:63
+#: elf/dl-reloc.c:62
msgid "cannot make segment writable for relocation"
msgstr "¸®·ÎÄÉÀ̼ÇÀ» À§ÇØ ¼¼±×¸ÕÆ®¸¦ ¾²±â °¡´ÉÇϵµ·Ï ¸¸µé ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:1016
+#: elf/dl-load.c:1024
msgid "cannot map zero-fill pages"
msgstr "0À¸·Î ä¿î ÆäÀÌÁö¸¦ ¸ÅÇÎÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: inet/rcmd.c:420
+#: inet/rcmd.c:421
msgid "cannot open"
msgstr "¿­ ¼ö ¾ø½À´Ï´Ù"
@@ -4144,7 +4210,7 @@ msgstr "`%s'¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù"
msgid "cannot open input file"
msgstr "ÀÔ·Â ÆÄÀÏÀ» ¿­ ¼ö ¾ø½À´Ï´Ù"
-#: catgets/gencat.c:288 iconv/iconv_prog.c:225
+#: catgets/gencat.c:288 iconv/iconv_charmap.c:159 iconv/iconv_prog.c:265
#, c-format
msgid "cannot open input file `%s'"
msgstr "ÀÔ·Â ÆÄÀÏ `%s'¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù"
@@ -4155,21 +4221,21 @@ msgstr "ÀÔ·Â ÆÄÀÏ `%s'¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù"
msgid "cannot open locale definition file `%s'"
msgstr "·ÎÄÉÀÏ Á¤ÀÇ ÆÄÀÏ `%s'¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù"
-#: iconv/iconv_prog.c:194
+#: iconv/iconv_prog.c:209
msgid "cannot open output file"
msgstr "Ãâ·Â ÆÄÀÏÀ» ¿­ ¼ö ¾ø½À´Ï´Ù"
-#: catgets/gencat.c:944 catgets/gencat.c:985
+#: catgets/gencat.c:949 catgets/gencat.c:990
#, c-format
msgid "cannot open output file `%s'"
msgstr "Ãâ·Â ÆÄÀÏ `%s'¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù"
-#: locale/programs/locfile.c:381
+#: locale/programs/locfile.c:571
#, c-format
msgid "cannot open output file `%s' for category `%s'"
msgstr "Ãâ·Â ÆÄÀÏ `%s'¸¦ ¹üÁÖ `%s'¿¡ ´ëÇØ ¿­ ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:1695
+#: elf/dl-load.c:1737
msgid "cannot open shared object file"
msgstr "µ¿Àû ¿ÀºêÁ§Æ® ÆÄÀÏÀ» ¿­ ¼ö ¾ø½À´Ï´Ù"
@@ -4178,7 +4244,7 @@ msgstr "µ¿Àû ¿ÀºêÁ§Æ® ÆÄÀÏÀ» ¿­ ¼ö ¾ø½À´Ï´Ù"
msgid "cannot open socket: %s"
msgstr "¼ÒÄÏ `%s'¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:814
+#: elf/dl-load.c:822
msgid "cannot open zero fill device"
msgstr "0À¸·Î ä¿î ÀåÄ¡¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù"
@@ -4191,7 +4257,7 @@ msgstr "¹®ÀÚ Áöµµ µð·ºÅ丮 `%s'¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù"
msgid "cannot read configuration file; this is fatal"
msgstr "¼³Á¤ ÆÄÀÏÀ» ÀÐÀ» ¼ö ¾ø½À´Ï´Ù; Ä¡¸íÀûÀÓ"
-#: elf/dl-load.c:838 elf/dl-load.c:1244
+#: elf/dl-load.c:846 elf/dl-load.c:1247 elf/dl-load.c:1319 elf/dl-load.c:1333
msgid "cannot read file data"
msgstr "ÆÄÀÏ µ¥ÀÌŸ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù"
@@ -4204,11 +4270,6 @@ msgstr "Çì´õ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù"
msgid "cannot read header from `%s'"
msgstr "`%s'¿¡¼­ Çì´õ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù"
-#: locale/programs/locale.c:308
-#, c-format
-msgid "cannot read locale directory `%s'"
-msgstr "·ÎÄÉÀÏ µð·ºÅ丮 `%s'¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù"
-
#: nscd/nscd_stat.c:128
msgid "cannot read statistics data"
msgstr "Åë°è µ¥ÀÌŸ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù"
@@ -4218,7 +4279,7 @@ msgstr "Åë°è µ¥ÀÌŸ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù"
msgid "cannot safe new repertoire map"
msgstr "»õ·Î¿î ·¹ÆÄÅ丮 Áöµµ ÆÄÀÏÀ» ¸¸µé ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-load.c:776
+#: elf/dl-load.c:784
msgid "cannot stat shared object"
msgstr "µ¿Àû ¿ÀºêÁ§Æ®¿¡ ´ëÇØ stat()ÀÌ ½ÇÆÐÇß½À´Ï´Ù"
@@ -4232,7 +4293,7 @@ msgstr "`%s'ÆÄÀÏ¿¡ stat()À» ÇÒ ¼ö ¾ø½À´Ï´Ù: %s"
msgid "cannot write output files to `%s'"
msgstr "Ãâ·Â ÆÄÀÏÀ» `%s'¿¡ ±â·ÏÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: nscd/connections.c:261 nscd/connections.c:282
+#: nscd/connections.c:265 nscd/connections.c:287
#, c-format
msgid "cannot write result: %s"
msgstr "°á°ú¸¦ ¾µ ¼ö ¾ø½À´Ï´Ù: %s"
@@ -4242,78 +4303,83 @@ msgstr "°á°ú¸¦ ¾µ ¼ö ¾ø½À´Ï´Ù: %s"
msgid "cannot write statistics: %s"
msgstr "Åë°è¸¦ ¾µ ¼ö ¾ø½À´Ï´Ù: %s"
-#: locale/programs/ld-ctype.c:509
+#: locale/programs/ld-ctype.c:517
#, c-format
msgid "character '%s' in class `%s' must be in class `%s'"
msgstr "`%2$s' Ŭ·¡½ºÀÇ '%1$s' ¹®ÀÚ´Â `%3$s' Ŭ·¡½º¿¡ µé¾î ÀÖ¾î¾ß ÇÕ´Ï´Ù"
-#: locale/programs/ld-ctype.c:524
+#: locale/programs/ld-ctype.c:532
#, c-format
msgid "character '%s' in class `%s' must not be in class `%s'"
msgstr "`%2$s' Ŭ·¡½ºÀÇ '%1$s' ¹®ÀÚ´Â `%3$s' Ŭ·¡½º¿¡ µé¾î ÀÖÀ¸¸é ¾È µË´Ï´Ù"
-#: locale/programs/ld-ctype.c:579
+#: locale/programs/ld-ctype.c:587
msgid "character <SP> not defined in character map"
msgstr "¹®ÀÚ <SP>°¡ ¹®ÀÚ Áöµµ¿¡¼­ Á¤ÀǵÇÁö ¾Ê¾ÒÀ½"
# %0*x ¿¡ positionalÀ» ¾î¶»°Ô Áý¾î ³ÖÀ»±î? %1$0*x, %0*1$x ¸ðµÎ ½ÇÆÐ.
-#: locale/programs/ld-ctype.c:453
+#: locale/programs/ld-ctype.c:461
#, c-format
msgid "character L'\\u%0*x' in class `%s' must be in class `%s'"
msgstr "L'\\u%0*x' ¹®ÀÚ´Â `%s' Ŭ·¡½º¿¡ µé¾î ÀÖÁö¸¸ `%s' Ŭ·¡½º¿¡ µé¾î ÀÖ¾î¾ß ÇÕ´Ï´Ù"
# %0*x ¿¡ positionalÀ» ¾î¶»°Ô Áý¾î ³ÖÀ»±î? %1$0*x, %0*1$x ¸ðµÎ ½ÇÆÐ.
-#: locale/programs/ld-ctype.c:467
+#: locale/programs/ld-ctype.c:475
#, c-format
msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'"
msgstr "L'\\u%0*x' ¹®ÀÚ´Â `%s' Ŭ·¡½º¿¡ µé¾î ÀÖÁö¸¸ `%s' Ŭ·¡½º¿¡ µé¾î ÀÖÀ¸¸é ¾È µË´Ï´Ù"
-#: locale/programs/ld-ctype.c:3030
+#: locale/programs/ld-ctype.c:3032
#, c-format
msgid "character `%s' not defined while needed as default value"
msgstr "¹®ÀÚ `%s'´Â ³»Á¤Ä¡·Î ÇÊ¿äÇÏÁö¸¸ Á¤ÀǵÇÁö ¾Ê¾ÒÀ½"
-#: locale/programs/ld-ctype.c:1215
+#: locale/programs/ld-ctype.c:1223
#, c-format
msgid "character class `%s' already defined"
msgstr "¹®ÀÚ Å¬·¡½º `%s'´Â ÀÌ¹Ì Á¤ÀǵǾúÀ½"
-#: locale/programs/ld-ctype.c:1247
+#: locale/programs/ld-ctype.c:1255
#, c-format
msgid "character map `%s' already defined"
msgstr "¹®ÀÚ Áöµµ `%s'´Â ÀÌ¹Ì Á¤ÀǵǾúÀ½"
-#: locale/programs/charmap.c:249
+#: locale/programs/charmap.c:254
#, 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:135
+#: locale/programs/charmap.c:140
#, c-format
msgid "character map file `%s' not found"
msgstr "¹®ÀÚ Áöµµ ÆÄÀÏ `%s'¸¦ ãÁö ¸øÇßÀ½"
-#: locale/programs/charmap.c:460
+#: locale/programs/charmap.c:465
msgid "character sets with locking states are not supported"
msgstr "Àá±Ý»óÅÂÀÇ ¹®ÀÚ¼ÂÀº Áö¿øµÇÁö ¾Ê½À´Ï´Ù"
+# ??? ¿Ø Ä¡Áî?
+#: intl/tst-codeset.c:40 intl/tst-codeset.c:50
+msgid "cheese"
+msgstr "Ä¡Áî"
+
#: locale/programs/localedef.c:482
msgid "circular dependencies between locale definitions"
msgstr "·ÎÄÉÀÏ Á¤ÀÇµé »çÀÌ¿¡ »óÈ£ ÀÇÁ¸¼º"
-#: sunrpc/clnt_raw.c:111
+#: sunrpc/clnt_raw.c:115
msgid "clnt_raw.c - Fatal header serialization error."
msgstr "clnt_raw.c - Ä¡¸íÀûÀÎ Çì´õ ¿¬¼ÓÈ­ ¿À·ù."
-#: sunrpc/clnt_tcp.c:126 sunrpc/clnt_tcp.c:134
+#: sunrpc/clnt_tcp.c:127 sunrpc/clnt_tcp.c:136
msgid "clnttcp_create: out of memory\n"
msgstr "clnttcp_create: ¸Þ¸ð¸® ºÎÁ·\n"
-#: sunrpc/clnt_udp.c:131 sunrpc/clnt_udp.c:141
+#: sunrpc/clnt_udp.c:132 sunrpc/clnt_udp.c:143
msgid "clntudp_create: out of memory\n"
msgstr "clntudp_create: ¸Þ¸ð¸® ºÎÁ·\n"
-#: sunrpc/clnt_unix.c:124 sunrpc/clnt_unix.c:132
+#: sunrpc/clnt_unix.c:125 sunrpc/clnt_unix.c:134
msgid "clntunix_create: out of memory\n"
msgstr "clntunix_create: ¸Þ¸ð¸® ºÎÁ·\n"
@@ -4321,28 +4387,28 @@ msgstr "clntunix_create: ¸Þ¸ð¸® ºÎÁ·\n"
msgid "constant or identifier expected"
msgstr "»ó¼ö ȤÀº ½Äº°ÀÚ°¡ ¿Í¾ß ÇÔ"
-#: iconv/iconv_prog.c:182
+#: iconv/iconv_prog.c:231
#, c-format
msgid "conversion from `%s' to `%s' not supported"
msgstr "`%s'¿¡¼­ `%s'·ÎÀÇ º¯È¯Àº Áö¿øµÇÁö ¾Ê½À´Ï´Ù"
-#: catgets/gencat.c:1290
+#: catgets/gencat.c:1289
msgid "conversion modules not available"
msgstr "º¯È¯ ¸ðµâÀÌ »ç¿ë ºÒ°¡´ÉÇÕ´Ï´Ù"
-#: locale/programs/ld-monetary.c:900
+#: locale/programs/ld-monetary.c:902
msgid "conversion rate value cannot be zero"
msgstr "º¯È¯ ºñÀ²ÀÇ °ªÀº 0ÀÌ µÉ ¼ö ¾ø½À´Ï´Ù"
-#: iconv/iconv_prog.c:385 iconv/iconv_prog.c:410
+#: iconv/iconv_prog.c:427 iconv/iconv_prog.c:452
msgid "conversion stopped due to problem in writing the output"
msgstr "Ãâ·ÂÆÄÀÏ¿¡ ¾µ¶§ ¹ß»ýÇÑ ¹®Á¦·Î º¯È¯ÀÛ¾÷ÀÌ ÁߴܵǾú½À´Ï´Ù"
-#: sunrpc/svc_simple.c:84
+#: sunrpc/svc_simple.c:93
msgid "couldn't create an rpc server\n"
msgstr "rpc ¼­¹ö¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù\n"
-#: sunrpc/svc_simple.c:92
+#: sunrpc/svc_simple.c:101
#, c-format
msgid "couldn't register prog %ld vers %ld\n"
msgstr "ÇÁ·Î±×·¥ %ld ¹öÀü %ld¸¦ µî·ÏÇÒ ¼ö ¾ø½À´Ï´Ù\n"
@@ -4351,17 +4417,17 @@ msgstr "ÇÁ·Î±×·¥ %ld ¹öÀü %ld¸¦ µî·ÏÇÒ ¼ö ¾ø½À´Ï´Ù\n"
msgid "database [key ...]"
msgstr "µ¥ÀÌŸº£À̽º [Å°...]"
-#: locale/programs/charmap.c:192
+#: locale/programs/charmap.c:197
#, c-format
msgid "default character map file `%s' not found"
msgstr "±âº» ¹®ÀÚ Áöµµ ÆÄÀÏ `%s'¸¦ ãÁö ¸øÇßÀ½"
-#: locale/programs/charmap.c:392
+#: locale/programs/charmap.c:397
#, c-format
msgid "duplicate definition of <%s>"
msgstr "<%s>ÀÌ(°¡) Áߺ¹ Á¤ÀǵǾî ÀÖ½À´Ï´Ù"
-#: locale/programs/ld-collate.c:3043
+#: locale/programs/ld-collate.c:3062
#, c-format
msgid "duplicate definition of script `%s'"
msgstr "½ºÅ©¸³Æ® `%s'°¡ Áߺ¹ Á¤ÀǵǾî ÀÖ½À´Ï´Ù"
@@ -4370,12 +4436,12 @@ msgstr "½ºÅ©¸³Æ® `%s'°¡ Áߺ¹ Á¤ÀǵǾî ÀÖ½À´Ï´Ù"
msgid "duplicate set definition"
msgstr "ÁýÇÕ Á¤ÀÇ°¡ Áߺ¹µÇ¾î ÀÖ½À´Ï´Ù"
-#: timezone/zic.c:1003
+#: timezone/zic.c:1009
#, c-format
msgid "duplicate zone name %s (file \"%s\", line %d)"
msgstr "Áö¿ª¸í %s (ÆÄÀÏ \"%s\", Çà %d) Áߺ¹µÇ¾î ÀÖ½À´Ï´Ù"
-#: locale/programs/ld-ctype.c:2557
+#: locale/programs/ld-ctype.c:2559
#, c-format
msgid "duplicated definition for mapping `%s'"
msgstr "¸ÅÇÎ `%s'ÀÌ(°¡) Áߺ¹ Á¤ÀǵǾî ÀÖ½À´Ï´Ù"
@@ -4388,7 +4454,7 @@ msgstr "Áߺ¹µÈ ¸Þ½ÃÁö ½Äº°ÀÚ"
msgid "duplicated message number"
msgstr "Áߺ¹µÈ ¸Þ½ÃÁö ¹øÈ£"
-#: locale/programs/ld-ctype.c:2368
+#: locale/programs/ld-ctype.c:2370
msgid "ellipsis range must be marked by two operands of same type"
msgstr "¸»ÁÙÀÓÇ¥ ¹üÀ§´Â °°Àº ŸÀÔÀÇ µÎ °³ÀÇ ÇÇ¿¬»êÀڷΠǥ½ÃÇØ¾ß ÇÕ´Ï´Ù"
@@ -4397,10 +4463,15 @@ msgid "empty char string"
msgstr "ºó ¹®ÀÚ¿­"
# ¹ø¿ª: ¹º ¼Ò¸®¾ß?
-#: elf/dl-open.c:223
+#: elf/dl-open.c:219
msgid "empty dynamic string token substitution"
msgstr "ºñ¾î ÀÖ´Â µ¿Àû ¹®ÀÚ¿­ ÅäÅ« ġȯ"
+# ¹ø¿ª: ¹º ¼Ò¸®¾ß?
+#: elf/dl-deps.c:113
+msgid "empty dynamics string token substitution"
+msgstr "ºñ¾î ÀÖ´Â µ¿Àû ¹®ÀÚ¿­ ÅäÅ« ġȯ"
+
#: sunrpc/svc_udp.c:454
msgid "enablecache: cache already enabled"
msgstr "enablecache: ij½¬°¡ ÀÌ¹Ì È°¼ºÈ­µÇ¾î ÀÖÀ½"
@@ -4417,29 +4488,29 @@ msgstr "enablecache: ij½¬ ÀڷḦ ÇÒ´çÇÒ ¼ö ¾ø½À´Ï´Ù"
msgid "enablecache: could not allocate cache fifo"
msgstr "enablecache: ij½¬ fifo¸¦ ÇÒ´çÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: iconv/iconv_prog.c:57
+#: iconv/iconv_prog.c:61
msgid "encoding for output"
msgstr "Ãâ·Â ÀÎÄÚµù"
-#: iconv/iconv_prog.c:56
+#: iconv/iconv_prog.c:60
msgid "encoding of original text"
msgstr "¿ø ¹®¼­ ÀÎÄÚµù"
-#: nscd/connections.c:361 nscd/connections.c:453
+#: nscd/connections.c:366 nscd/connections.c:460
#, c-format
msgid "error getting callers id: %s"
msgstr "È£ÃâÀÚÀÇ ID¸¦ ¾ò´Âµ¥ ¿À·ù: %s"
-#: locale/programs/ld-collate.c:3013
+#: locale/programs/ld-collate.c:3032
msgid "error while adding equivalent collating symbol"
msgstr "´ëÀÀµÇ´Â »çÀü ±âÈ£¸¦ Ãß°¡ÇÏ´Â µ¥ ¿À·ù"
-#: iconv/iconv_prog.c:242
+#: iconv/iconv_charmap.c:177 iconv/iconv_prog.c:283
#, c-format
msgid "error while closing input `%s'"
msgstr "ÀÔ·Â `%s'¸¦ ´Ý´Â µµÁß ¿À·ù ¹ß»ý"
-#: iconv/iconv_prog.c:288
+#: iconv/iconv_prog.c:330
msgid "error while closing output file"
msgstr "Ãâ·Â ÆÄÀÏÀ» ´Ý´Â µµÁß ¿À·ù ¹ß»ý"
@@ -4447,7 +4518,8 @@ msgstr "Ãâ·Â ÆÄÀÏÀ» ´Ý´Â µµÁß ¿À·ù ¹ß»ý"
msgid "error while closing the profiling data file"
msgstr "ÇÁ·ÎÆÄÀϸµ µ¥ÀÌŸ ÆÄÀÏÀ¸ ´Ý´Â µµÁß ¿À·ù ¹ß»ý"
-#: iconv/iconv_prog.c:474 iconv/iconv_prog.c:505
+#: iconv/iconv_charmap.c:507 iconv/iconv_charmap.c:538 iconv/iconv_prog.c:516
+#: iconv/iconv_prog.c:547
msgid "error while reading the input"
msgstr "ÀÔ·ÂÀ» Àд µµÁß¿¡ ¿À·ù ¹ß»ý"
@@ -4455,10 +4527,14 @@ msgstr "ÀÔ·ÂÀ» Àд µµÁß¿¡ ¿À·ù ¹ß»ý"
msgid "expect string argument for `copy'"
msgstr "`copy'¿¡ ´ëÇÑ ¹®ÀÚ¿­ Àμö°¡ ÇÊ¿äÇÔ"
-#: timezone/zic.c:893
+#: timezone/zic.c:899
msgid "expected continuation line not found"
msgstr "¿¹»óÇß´ø ¿¬¼Ó ÇàÀ» ãÁö ¸øÇßÀ½"
+#: locale/programs/ld-time.c:1027
+msgid "extra trailing semicolon"
+msgstr "¼¼¹ÌÄÝ·ÐÀÌ ´õ ºÙ¾î ÀÖÀ½"
+
#: elf/sprof.c:404
#, c-format
msgid "failed to load shared object `%s'"
@@ -4468,7 +4544,7 @@ msgstr "µ¿Àû ¿ÀºêÁ§Æ® `%s'¸¦ Àдµ¥ ½ÇÆÐ"
msgid "failed to load symbol data"
msgstr "±âÈ£ µ¥ÀÌŸ¸¦ Àд µ¥ ½ÇÆÐ"
-#: elf/dl-load.c:763
+#: elf/dl-load.c:771
msgid "failed to map segment from shared object"
msgstr "µ¿Àû ¿ÀºêÁ§Æ®ÀÇ ¼¼±×¸ÕÆ®¸¦ ¸ÅÇÎÇÏ´Â ½ÇÆÐ"
@@ -4476,18 +4552,19 @@ msgstr "µ¿Àû ¿ÀºêÁ§Æ®ÀÇ ¼¼±×¸ÕÆ®¸¦ ¸ÅÇÎÇÏ´Â ½ÇÆÐ"
msgid "failed to mmap the profiling data file"
msgstr "ÇÁ·ÎÆÄÀϸµ µ¥ÀÌŸ ÆÄÀÏÀ» mmapÇÏ´Â µ¥ ½ÇÆÐ"
-#: iconv/iconv_prog.c:186
+#: iconv/iconv_prog.c:235
msgid "failed to start conversion processing"
msgstr "º¯È¯ÀÛ¾÷À» ½ÃÀÛÇϴµ¥ ½ÇÆÐ"
-#: locale/programs/locfile.c:406
+#: locale/programs/locfile.c:596
#, c-format
msgid "failure while writing data for category `%s'"
msgstr "¹üÁÖ `%s'ÀÇ ÀڷḦ ¾²´Â µ¥ ½ÇÆÐÇß½À´Ï´Ù"
-#: nis/nis_call.c:156
-msgid "fcntl: F_SETFD"
-msgstr "fcntl: F_SETFD"
+#: elf/../sysdeps/generic/readelflib.c:35
+#, c-format
+msgid "file %s is truncated\n"
+msgstr "%s ÆÄÀÏÀÌ À߶óÁ³½À´Ï´Ù\n"
#. TRANS: the file will not be removed; this is an
#. TRANS: informative message.
@@ -4496,19 +4573,19 @@ msgstr "fcntl: F_SETFD"
msgid "file `%s' already exists and may be overwritten\n"
msgstr "`%s' ÆÄÀÏÀÌ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù. µ¤¾î ¾µ¼öµµ ÀÖ½À´Ï´Ù\n"
-#: elf/dl-load.c:1244
+#: elf/dl-load.c:1247
msgid "file too short"
msgstr "ÆÄÀÏÀÌ ³Ê¹« ª½À´Ï´Ù"
-#: inet/rcmd.c:422
+#: inet/rcmd.c:423
msgid "fstat failed"
msgstr "fstat ½ÇÆÐ"
-#: locale/programs/linereader.c:383
+#: locale/programs/linereader.c:388
msgid "garbage at end of character code specification"
msgstr "¹®ÀÚ ÄÚµå ¸í¼¼ÀÇ ³¡¿¡ ¾µ¸ð¾ø´Â °ÍÀÌ ÀÖÀ½"
-#: locale/programs/linereader.c:271
+#: locale/programs/linereader.c:276
msgid "garbage at end of number"
msgstr "¼ýÀÚÀÇ ³¡¿¡ ¾µ¸ð¾ø´Â °ÍÀÌ ÀÖÀ½"
@@ -4528,28 +4605,28 @@ msgstr "get_myaddress: ioctl (ÀÎÅÍÆäÀ̽º ¼³Á¤À» ¾òÀ½)"
msgid "getent - get entries from administrative database."
msgstr "getent - °ü¸® µ¥ÀÌŸº£À̽º¿¡¼­ entry¸¦ ¾òÀ½."
-#: nscd/connections.c:220
+#: nscd/connections.c:221
#, c-format
msgid "handle_request: request received (Version = %d)"
msgstr "handle_request: ¿äûÀ» ¹Þ¾ÒÀ½ (¹öÀü = %d)"
-#: timezone/zic.c:637
+#: timezone/zic.c:643
msgid "hard link failed, symbolic link used"
msgstr "ÇÏµå ¸µÅ© ½ÇÆÐ, ½Éº¼¸¯ ¸µÅ©°¡ »ç¿ëµË´Ï´Ù"
-#: inet/rcmd.c:428
+#: inet/rcmd.c:429
msgid "hard linked somewhere"
msgstr "¾îµò°¡¿¡ ÇÏµå ¸µÅ©µÊ"
-#: locale/programs/charmap.c:981 locale/programs/repertoire.c:430
+#: locale/programs/charmap.c:986 locale/programs/repertoire.c:430
msgid "hexadecimal range format should use only capital characters"
msgstr "16Áø¼ö ¹üÀ§ Æ÷¸ËÀº ´ë¹®ÀÚ¸¸À» »ç¿ëÇØ¾ß ÇÕ´Ï´Ù"
-#: timezone/zic.c:1187
+#: timezone/zic.c:1193
msgid "illegal CORRECTION field on Leap line"
msgstr "Leap ÁÙ¿¡ À߸øµÈ CORRECTION Çʵå"
-#: timezone/zic.c:1191
+#: timezone/zic.c:1197
msgid "illegal Rolling/Stationary field on Leap line"
msgstr "Leap ÁÙ¿¡ À߸øµÈ Rolling/Stationary Çʵå"
@@ -4557,11 +4634,16 @@ msgstr "Leap ÁÙ¿¡ À߸øµÈ Rolling/Stationary Çʵå"
msgid "illegal character in file: "
msgstr "ÆÄÀÏ¿¡ À߸øµÈ ¹®ÀÚ°¡ ÀÖÀ½"
-#: locale/programs/linereader.c:595
+#: locale/programs/linereader.c:600
msgid "illegal escape sequence at end of string"
msgstr "¹®ÀÚ¿­ ³¡¿¡ À߸øµÈ À̽ºÄÉÀÌÇÁ ¼ø¼­¿­ÀÌ ÀÖÀ½"
-#: iconv/iconv_prog.c:427
+#: iconv/iconv_charmap.c:443
+#, c-format
+msgid "illegal input sequence at position %Zd"
+msgstr "%Zd À§Ä¡¿¡ À߸øµÈ ÀÔ·Â ¼ø¼­¿­ÀÌ ÀÖÀ½"
+
+#: iconv/iconv_prog.c:469
#, c-format
msgid "illegal input sequence at position %ld"
msgstr "%ld À§Ä¡¿¡ À߸øµÈ ÀÔ·Â ¼ø¼­¿­ÀÌ ÀÖÀ½"
@@ -4575,102 +4657,102 @@ msgstr "À߸øµÈ ³×ƮŸÀÔ :`%s'\n"
msgid "illegal set number"
msgstr "ÁýÇÕ ¹øÈ£°¡ À߸øµÇ¾úÀ½"
-#: locale/programs/ld-ctype.c:1221
+#: locale/programs/ld-ctype.c:1229
#, c-format
msgid "implementation limit: no more than %Zd character classes allowed"
msgstr "±¸Çö»óÀÇ Á¦ÇÑ: %Zd°³ ¹®ÀÚº¸´Ù Å« Ŭ·¡½º´Â Çã¿ëµÇÁö ¾Ê½À´Ï´Ù"
-#: locale/programs/ld-ctype.c:1253
+#: locale/programs/ld-ctype.c:1261
#, c-format
msgid "implementation limit: no more than %d character maps allowed"
msgstr "±¸Çö»óÀÇ Á¦ÇÑ: %d °³ ÀÌ»óÀÇ ¹®ÀÚ Áöµµ´Â Çã¿ëµÇÁö ¾Ê½À´Ï´Ù"
-#: iconv/iconv_prog.c:431
+#: iconv/iconv_charmap.c:462 iconv/iconv_prog.c:473
msgid "incomplete character or shift sequence at end of buffer"
msgstr "¹öÆÛÀÇ ³¡¿¡ ºÒ¿ÏÀüÇÑ ¹®ÀÚ È¤Àº ½¬ÇÁÆ® ¿¬¼Ó"
-#: timezone/zic.c:850
+#: timezone/zic.c:856
msgid "input line of unknown type"
msgstr "¾Ë ¼ö ¾ø´Â ÇüÅÂÀÇ ÀÔ·ÂÇà"
-#: elf/dl-load.c:1291
+#: elf/dl-load.c:1294
msgid "internal error"
msgstr "³»ºÎ ¿À·ù"
-#: iconv/iconv_prog.c:435
+#: iconv/iconv_prog.c:477
msgid "internal error (illegal descriptor)"
msgstr "³»ºÎ ¿À·ù (À߸øµÈ ±â¼úÀÚ)"
-#: timezone/zic.c:1813
+#: timezone/zic.c:1819
msgid "internal error - addtype called with bad isdst"
msgstr "³»ºÎ ¿À·ù - Ʋ¸° isdst·Î addtypeÀ» È£ÃâÇßÀ½"
-#: timezone/zic.c:1821
+#: timezone/zic.c:1827
msgid "internal error - addtype called with bad ttisgmt"
msgstr "³»ºÎ ¿À·ù - Ʋ¸° ttisgmt·Î addtypeÀ» È£ÃâÇßÀ½"
-#: timezone/zic.c:1817
+#: timezone/zic.c:1823
msgid "internal error - addtype called with bad ttisstd"
msgstr "³»ºÎ ¿À·ù - Ʋ¸° ttisstd·Î addtypeÀ» È£ÃâÇßÀ½"
-#: locale/programs/ld-ctype.c:480 locale/programs/ld-ctype.c:536
+#: locale/programs/ld-ctype.c:488 locale/programs/ld-ctype.c:544
#, c-format
msgid "internal error in %s, line %u"
msgstr "%s, Çà %u¿¡ ³»ºÎ ¿À·ù ¹ß»ý"
-#: elf/dl-load.c:1264
+#: elf/dl-load.c:1267
msgid "invalid ELF header"
msgstr "À߸øµÈ ELF Çì´õ"
-#: timezone/zic.c:1059
+#: timezone/zic.c:1065
msgid "invalid UTC offset"
msgstr "UTC ¿É¼ÂÀÌ ºÎÀûÀýÇÔ"
-#: timezone/zic.c:1062
+#: timezone/zic.c:1068
msgid "invalid abbreviation format"
msgstr "¾à¾î Çü½ÄÀÌ ºÎÀûÀýÇÔ"
-#: catgets/gencat.c:687
+#: catgets/gencat.c:688
msgid "invalid character: message ignored"
msgstr "À߸øµÈ ¹®ÀÚ: ¸Þ¼¼Áö´Â ¹«½ÃµË´Ï´Ù"
-#: timezone/zic.c:1152 timezone/zic.c:1364 timezone/zic.c:1378
+#: timezone/zic.c:1158 timezone/zic.c:1370 timezone/zic.c:1384
msgid "invalid day of month"
msgstr "´ÞÀÇ ³¯Â¥ ¼ö°¡ ºÎÀûÀýÇÔ"
-#: locale/programs/charmap.c:347
+#: locale/programs/charmap.c:352
msgid "invalid definition"
msgstr "Á¤ÀÇ°¡ À߸øµÇ¾úÀ½"
-#: locale/programs/charmap.c:542
+#: locale/programs/charmap.c:547
msgid "invalid encoding given"
msgstr "À߸øµÈ ºÎȣȭ°¡ ÁÖ¾îÁü"
-#: timezone/zic.c:1316
+#: timezone/zic.c:1322
msgid "invalid ending year"
msgstr "³¡³ª´Â ÇØ°¡ ºÎÀûÀýÇÔ"
-#: catgets/gencat.c:1147 locale/programs/linereader.c:533
+#: catgets/gencat.c:1152 locale/programs/linereader.c:538
msgid "invalid escape sequence"
msgstr "À߸øµÈ À̽ºÄÉÀÌÇÁ ¼ø¼­¿­"
-#: timezone/zic.c:1124
+#: timezone/zic.c:1130
msgid "invalid leaping year"
msgstr "ºÎÀûÀýÇÑ À±³â"
-#: catgets/gencat.c:726
+#: catgets/gencat.c:731
msgid "invalid line"
msgstr "ºÎÀûÀýÇÑ ÁÙ"
-#: elf/dl-open.c:371
+#: elf/dl-open.c:349
msgid "invalid mode for dlopen()"
msgstr "dlopen()¿¡ À߸øµÈ ¸ðµå"
-#: timezone/zic.c:1139 timezone/zic.c:1242
+#: timezone/zic.c:1145 timezone/zic.c:1248
msgid "invalid month name"
msgstr "´Þ À̸§ÀÌ ºÎÀûÀýÇÔ"
-#: locale/programs/charmap.c:969 locale/programs/ld-collate.c:2869
+#: locale/programs/charmap.c:974 locale/programs/ld-collate.c:2888
#: locale/programs/repertoire.c:418
msgid "invalid names for character range"
msgstr "¹®ÀÚÀÇ ¹üÀ§·Î À߸øµÈ À̸§"
@@ -4683,52 +4765,52 @@ msgstr "À߸øµÈ Æ÷ÀÎÅÍ Å©±â"
msgid "invalid quote character"
msgstr "À߸øµÈ Àο빮ÀÚ"
-#: timezone/zic.c:958
+#: timezone/zic.c:964
msgid "invalid saved time"
msgstr "Àý¾à ½Ã°£ÀÌ ºÎÀûÀýÇÔ"
-#: timezone/zic.c:1291
+#: timezone/zic.c:1297
msgid "invalid starting year"
msgstr "½ÃÀÛÇÏ´Â ÇØ°¡ ºÎÀûÀýÇÔ"
-#: timezone/zic.c:1168 timezone/zic.c:1271
+#: timezone/zic.c:1174 timezone/zic.c:1277
msgid "invalid time of day"
msgstr "ºÎÀûÀýÇÑ ÇÏ·çÁß ½Ã°¢"
-#: timezone/zic.c:1369
+#: timezone/zic.c:1375
msgid "invalid weekday name"
msgstr "ºÎÀûÀýÇÑ ¿äÀÏ À̸§"
-#: nscd/connections.c:470
+#: nscd/connections.c:479
#, c-format
msgid "key length in request too long: %d"
msgstr "¿äûµÈ Å°ÀÇ ±æÀÌ°¡ ³Ê¹« ±è: %d"
-#: elf/ldconfig.c:738
+#: elf/ldconfig.c:794
#, c-format
msgid "libc4 library %s in wrong directory"
msgstr "libc4 library %sÀÌ(°¡) À߸øµÈ µð·ºÅ丮¿¡ ÀÖ½À´Ï´Ù"
-#: elf/ldconfig.c:732
+#: elf/ldconfig.c:788
#, c-format
msgid "libc5 library %s in wrong directory"
msgstr "libc5 library %sÀÌ(°¡) À߸øµÈ µð·ºÅ丮¿¡ ÀÖ½À´Ï´Ù"
-#: elf/ldconfig.c:735
+#: elf/ldconfig.c:791
#, c-format
msgid "libc6 library %s in wrong directory"
msgstr "libc6 library %sÀÌ(°¡) À߸øµÈ µð·ºÅ丮¿¡ ÀÖ½À´Ï´Ù"
-#: elf/ldconfig.c:765
+#: elf/ldconfig.c:821
#, c-format
msgid "libraries %s and %s in directory %s have same soname but different type."
msgstr "µð·ºÅ丮 %sÀÇ ¶óÀ̺귯¸® %s°ú(¿Í) %sÀÌ(°¡) °°Àº sonameÀ» °¡Áö°í ÀÖÁö¸¸ ŸÀÔÀÌ ´Ù¸¨´Ï´Ù."
-#: timezone/zic.c:830
+#: timezone/zic.c:836
msgid "line too long"
msgstr "ÇàÀÌ ³Ê¹« ±é´Ï´Ù"
-#: iconv/iconv_prog.c:59
+#: iconv/iconv_prog.c:63
msgid "list all known coded character sets"
msgstr "¾Ë·ÁÁø ¸ðµç ¹®Àڼ Äڵ带 ¿­°ÅÇÔ"
@@ -4736,7 +4818,7 @@ msgstr "¾Ë·ÁÁø ¸ðµç ¹®Àڼ Äڵ带 ¿­°ÅÇÔ"
msgid "locale name should consist only of portable characters"
msgstr "·ÎÄÉÀÏ À̸§Àº Æ÷ÅͺíÇÑ ¹®ÀÚ·Î ±¸¼ºµÇ¾î¾ß ÇÕ´Ï´Ù"
-#: inet/rcmd.c:413
+#: inet/rcmd.c:414
msgid "lstat failed"
msgstr "lstat ½ÇÆÐ"
@@ -4748,7 +4830,11 @@ msgstr "Ãâ·Â ±×·¡ÇÈ Çȼ¿°ªÀ» ³ô°Ô ÇÕ´Ï´Ù"
msgid "make output graphic VALUE pixel wide"
msgstr "Ãâ·Â ±×·¡ÇÈ Çȼ¿°ªÀ» ³Ð°Ô ÇÕ´Ï´Ù"
-#: catgets/gencat.c:780
+#: stdlib/../sysdeps/unix/sysv/linux/ia64/makecontext.c:63
+msgid "makecontext: does not know how to handle more than 8 arguments\n"
+msgstr "makecontext: 8°³º¸´Ù ¸¹Àº ÀÎÀÚ¸¦ ¾î¶»°Ô ó¸®ÇÒ Áö ¾Ë ¼ö ¾ø½À´Ï´Ù\n"
+
+#: catgets/gencat.c:785
msgid "malformed line ignored"
msgstr "À߸øµÈ ÇüŸ¦ °¡Áø ÇàÀº ¹«½ÃµÊ"
@@ -4760,39 +4846,34 @@ msgstr "¼½¼Ç Çì´õÀÇ ¹®ÀÚ¿­ Å×À̺íÀ» ¸ÅÇÎÇϴµ¥ ½ÇÆÐ"
msgid "mapping of section headers failed"
msgstr "¼½¼Ç Çì´õ¸¦ ¸ÅÇÎÇÏ´Â µ¥ ½ÇÆÐ"
-#: malloc/mcheck.c:285
+#: malloc/mcheck.c:296
msgid "memory clobbered before allocated block\n"
msgstr "ºí·°À» ÇÒ´çÇϱâ Àü¿¡ ¸Þ¸ð¸®°¡ ÈѼյÊ\n"
-#: malloc/mcheck.c:288
+#: malloc/mcheck.c:299
msgid "memory clobbered past end of allocated block\n"
msgstr "ºí·°À» ÇÒ´çÀÌ ³¡³ª±â Àü¿¡ ¸Þ¸ð¸®°¡ ÈѼյÊ\n"
-#: locale/programs/locfile.c:334 locale/programs/xmalloc.c:70
-#: malloc/obstack.c:477 posix/getconf.c:809
+#: locale/programs/xmalloc.c:70 malloc/obstack.c:484 posix/getconf.c:996
msgid "memory exhausted"
msgstr "¸Þ¸ð¸®°¡ ¹Ù´Ú³²"
-#: malloc/mcheck.c:282
+#: malloc/mcheck.c:293
msgid "memory is consistent, library is buggy\n"
msgstr "¸Þ¸ð¸®´Â °ß°íÇÏÁö¸¸, ¶óÀ̺귯¸®´Â ¹ö±×°¡ ¸¹½À´Ï´Ù\n"
-#: elf/cache.c:120
+#: elf/cache.c:143
msgid "mmap of cache file failed.\n"
msgstr "ij½¬ ÆÄÀÏÀ» mmapÇÏ´Â µ¥ ½ÇÆÐ\n"
-#: elf/../sysdeps/generic/readelflib.c:108
+#: elf/../sysdeps/generic/readelflib.c:110
msgid "more than one dynamic segment\n"
msgstr "¿©·¯ °³ÀÇ µ¿Àû ¼¼±×¸ÕÆ®\n"
-#: timezone/zic.c:953
+#: timezone/zic.c:959
msgid "nameless rule"
msgstr "À̸§¾ø´Â ±ÔÄ¢"
-#: iconv/iconv_prog.c:139
-msgid "neither original nor target encoding specified"
-msgstr "¿ø ÀÎÄÚµù°ú Ãâ·Â ÀÎÄÚµù ¸ðµÎ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
-
#: nis/nss_nisplus/nisplus-publickey.c:281
#: nis/nss_nisplus/nisplus-publickey.c:287
#: nis/nss_nisplus/nisplus-publickey.c:346
@@ -4825,7 +4906,7 @@ msgstr "netname2user: ÁÖ¿ä À̸§ `%s'Àº ³Ê¹« ±è"
msgid "netname2user: should not have uid 0"
msgstr "netname2user: uid¸¦ 0À¸·Î ÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: sunrpc/svc_simple.c:159
+#: sunrpc/svc_simple.c:168
#, c-format
msgid "never registered prog %d\n"
msgstr "°áÄÚ µî·ÏµÇÁö ¾ÊÀº ÇÁ·Î±×·¥ %d\n"
@@ -4834,11 +4915,11 @@ msgstr "°áÄÚ µî·ÏµÇÁö ¾ÊÀº ÇÁ·Î±×·¥ %d\n"
msgid "no <Uxxxx> or <Uxxxxxxxx> value given"
msgstr "<Uxxxx> ȤÀº <Uxxxxxxxx> °ªÀÌ ÁÖ¾îÁöÁö ¾Ê¾Ò½À´Ï´Ù"
-#: timezone/zic.c:2142
+#: timezone/zic.c:2148
msgid "no day in month matches rule"
msgstr "±ÔÄ¢¿¡ ºÎÇյǴ ³¯ÀÌ ´Þ ¾È¿¡ ¾øÀ½"
-#: locale/programs/ld-collate.c:1757
+#: locale/programs/ld-collate.c:1770
msgid "no definition of `UNDEFINED'"
msgstr "`UNDEFINED'ÀÇ Á¤ÀÇ°¡ ¾øÀ½"
@@ -4847,7 +4928,7 @@ msgstr "`UNDEFINED'ÀÇ Á¤ÀÇ°¡ ¾øÀ½"
msgid "no filename for profiling data given and shared object `%s' has no soname"
msgstr "ÇÁ·ÎÆÄÀϸµ µ¥ÀÌŸÀÇ ÆÄÀÏ À̸§ÀÌ ¾ø°í, µ¿Àû ¿ÀºêÁ§Æ® `%s'´Â sonameÀÌ ¾øÀ½"
-#: locale/programs/ld-ctype.c:739
+#: locale/programs/ld-ctype.c:747
msgid "no input digits defined and none of the standard names in the charmap"
msgstr "ÀÔ·Â ¼ýÀÚ°¡ Á¤ÀǵÇÁö ¾Ê¾Ò°í ¹®ÀÚÁöµµ¿¡ Ç¥ÁØ À̸§ÀÌ ¾ø½À´Ï´Ù"
@@ -4855,37 +4936,37 @@ msgstr "ÀÔ·Â ¼ýÀÚ°¡ Á¤ÀǵÇÁö ¾Ê¾Ò°í ¹®ÀÚÁöµµ¿¡ Ç¥ÁØ À̸§ÀÌ ¾ø½À´Ï´Ù"
msgid "no other keyword shall be specified when `copy' is used"
msgstr "`copy'°¡ »ç¿ëµÉ ¶© ´Ù¸¥ Å°¿öµå¸¦ ÁöÁ¤ÇÏ¸é ¾È µË´Ï´Ù"
-#: locale/programs/ld-ctype.c:3349
+#: locale/programs/ld-ctype.c:3351
msgid "no output digits defined and none of the standard names in the charmap"
msgstr "Ãâ·Â ¼ýÀÚ°¡ Á¤ÀǵÇÁö ¾Ê¾Ò°í ¹®ÀÚÁöµµ¿¡ Ç¥ÁØ À̸§ÀÌ ¾ø½À´Ï´Ù"
-#: locale/programs/localedef.c:236
+#: iconv/iconvconfig.c:308 locale/programs/localedef.c:236
msgid "no output file produced because warning were issued"
msgstr "°æ°í°¡ Á¦±âµÇ¾ú±â ¶§¹®¿¡ Ãâ·Â ÆÄÀÏÀÌ ¸¸µé¾îÁöÁö ¾Ê¾Ò½À´Ï´Ù"
-#: locale/programs/charmap.c:488 locale/programs/charmap.c:668
-#: locale/programs/charmap.c:764 locale/programs/repertoire.c:231
+#: locale/programs/charmap.c:493 locale/programs/charmap.c:673
+#: locale/programs/charmap.c:769 locale/programs/repertoire.c:231
msgid "no symbolic name given"
msgstr "±âÈ£¸íÀÌ ÁÖ¾îÁöÁö ¾ÊÀ½"
-#: locale/programs/charmap.c:575 locale/programs/charmap.c:723
-#: locale/programs/charmap.c:806 locale/programs/repertoire.c:297
+#: locale/programs/charmap.c:580 locale/programs/charmap.c:728
+#: locale/programs/charmap.c:811 locale/programs/repertoire.c:297
msgid "no symbolic name given for end of range"
msgstr "¹üÀ§ÀÇ ³¡±îÁö ±âÈ£ À̸§ÀÌ ¾ø½À´Ï´Ù"
-#: locale/programs/linereader.c:641
+#: locale/programs/linereader.c:646
msgid "non-symbolic character value should not be used"
msgstr "±âÈ£ ¹®ÀÚ°¡ ¾Æ´Ñ °ªÀº »ç¿ëµÇÁö ¸»¾Æ¾ß ÇÕ´Ï´Ù"
-#: locale/programs/ld-ctype.c:804
+#: locale/programs/ld-ctype.c:812
msgid "not all characters used in `outdigit' are available in the charmap"
msgstr "¹®ÀÚÁöµµÀÇ `outdigit'¿¡ »ç¿ëµÈ ¹®ÀÚÀÇ ÀüºÎ°¡ »ç¿ë °¡´ÉÇÑ °ÍÀÌ ¾Æ´Õ´Ï´Ù"
-#: locale/programs/ld-ctype.c:821
+#: locale/programs/ld-ctype.c:829
msgid "not all characters used in `outdigit' are available in the repertoire"
msgstr "·¹ÆÄÅ丮ÀÇ `outdigit'¿¡ »ç¿ëµÈ ¹®ÀÚÀÇ ÀüºÎ°¡ »ç¿ë °¡´ÉÇÑ °ÍÀÌ ¾Æ´Õ´Ï´Ù"
-#: inet/rcmd.c:415
+#: inet/rcmd.c:416
msgid "not regular file"
msgstr "ÀÏ¹Ý ÆÄÀÏÀÌ ¾Æ´Ô"
@@ -4904,36 +4985,32 @@ msgstr ""
msgid "nscd not running!\n"
msgstr "nscd°¡ ½ÇÇàµÇÁö ¾Ê¾Ò½À´Ï´Ù!\n"
-#: elf/dl-load.c:1051
+#: elf/dl-load.c:1059
msgid "object file has no dynamic section"
msgstr "¿ÀºêÁ§Æ® ÆÄÀÏ¿¡ µ¿Àû ¼½¼ÇÀÌ ¾ø½À´Ï´Ù"
-#: iconv/iconv_prog.c:61
+#: iconv/iconv_prog.c:65
msgid "omit invalid characters from output"
msgstr "Ãâ·Â¿¡¼­ À߸øµÈ ¹®ÀÚ¸¦ Á¦¿ÜÇÕ´Ï´Ù"
-#: elf/dl-load.c:1311
+#: elf/dl-load.c:1309
msgid "only ET_DYN and ET_EXEC can be loaded"
msgstr "ET_DYN°ú ET_EXEC¸¸À» ÀоîµéÀÏ ¼ö ÀÖ½À´Ï´Ù"
-#: locale/programs/charmap.c:632
+#: locale/programs/charmap.c:637
msgid "only WIDTH definitions are allowed to follow the CHARMAP definition"
msgstr "CHARMAP Á¤ÀÇ ¹Ù·Î ´ÙÀ½¿¡´Â WIDTH Á¤ÀǸ¸ÀÌ °¡´ÉÇÕ´Ï´Ù"
-#: locale/programs/ld-collate.c:1005 locale/programs/ld-collate.c:1175
+#: locale/programs/ld-collate.c:1018 locale/programs/ld-collate.c:1188
#, c-format
msgid "order for `%.*s' already defined at %s:%Zu"
msgstr "`%.*s'ÀÇ ¼ø¼­´Â ÀÌ¹Ì %s:%Zu¿¡ Á¤ÀǵǾî ÀÖ½À´Ï´Ù"
-#: iconv/iconv_prog.c:141
-msgid "original encoding not specified using `-f'"
-msgstr "`-f'¸¦ »ç¿ëÇÑ ¿ø ÀÎÄÚµùÀÌ ÁöÁ¤µÇÁö ¾Ê¾ÒÀ½"
-
-#: inet/ruserpass.c:167 inet/ruserpass.c:190
+#: inet/ruserpass.c:170 inet/ruserpass.c:193
msgid "out of memory"
msgstr "¸Þ¸ð¸® ºÎÁ·"
-#: iconv/iconv_prog.c:62
+#: iconv/iconv_prog.c:66
msgid "output file"
msgstr "Ãâ·Â ÆÄÀÏ"
@@ -4941,19 +5018,19 @@ msgstr "Ãâ·Â ÆÄÀÏ"
msgid "pmap_getmaps rpc problem"
msgstr "pmap_genmaps rcp ¹®Á¦"
-#: inet/rcmd.c:233
+#: inet/rcmd.c:234
msgid "poll: protocol failure in circuit setup\n"
msgstr "poll: ȸ·Î ¼³Á¤Áß ±Ô¾àÀÌ ºÒÀÌÇàµÊ\n"
-#: locale/programs/ld-ctype.c:1949 locale/programs/ld-ctype.c:2000
+#: locale/programs/ld-ctype.c:1950 locale/programs/ld-ctype.c:2001
msgid "premature end of `translit_ignore' definition"
msgstr "`translit_ignore' Á¤ÀÇ°¡ ¿Ï°áµÇÁö ¾ÊÀº ä ³¡³µ½À´Ï´Ù"
-#: sunrpc/rpc_scan.c:524 sunrpc/rpc_scan.c:534
+#: sunrpc/rpc_scan.c:525 sunrpc/rpc_scan.c:535
msgid "preprocessor error"
msgstr "Àü󸮱⠿À·ù"
-#: locale/programs/ld-ctype.c:2731
+#: locale/programs/ld-ctype.c:2733
msgid "previous definition was here"
msgstr "ÀÌÀü Á¤ÀÇ°¡ ¿©±â ÀÖ½À´Ï´Ù"
@@ -4961,7 +5038,7 @@ msgstr "ÀÌÀü Á¤ÀÇ°¡ ¿©±â ÀÖ½À´Ï´Ù"
msgid "print list of count paths and their number of use"
msgstr "´Ü°èÀÇ ¸ñ·Ï°ú ±× °¢ ´Ü°èÀÇ »ç¿ë Ƚ¼ö¸¦ Ç¥½Ã"
-#: iconv/iconv_prog.c:64
+#: iconv/iconv_prog.c:68
msgid "print progress information"
msgstr "ÁøÇà Á¤º¸¸¦ Ç¥½Ã"
@@ -4987,30 +5064,30 @@ msgstr "ÇÁ·Î±×·¥ %lu ¹öÀü %lu´Â »ç¿ë ºÒ°¡´ÉÇÕ´Ï´Ù\n"
msgid "program %lu version %lu ready and waiting\n"
msgstr "ÇÁ·Î±×·¥ %lu ¹öÀü %lu´Â ÁغñµÇ¾î ±â´Ù¸®°í ÀÖ½À´Ï´Ù\n"
-#: inet/rcmd.c:270
+#: inet/rcmd.c:271
#, c-format
msgid "rcmd: %s: short read"
msgstr "rcmd: %s: ÀбⰡ ²÷°åÀ½"
-#: inet/rcmd.c:230
+#: inet/rcmd.c:231
#, c-format
msgid "rcmd: poll (setting up stderr): %m\n"
msgstr "rcmd: poll (Ç¥ÁØ¿À·ù ¼³Á¤): %m\n"
-#: inet/rcmd.c:158
+#: inet/rcmd.c:159
msgid "rcmd: socket: All ports in use\n"
msgstr "rcmd: socket: ¸ðµç Æ÷Æ®°¡ »ç¿ëÁß\n"
-#: inet/rcmd.c:220
+#: inet/rcmd.c:221
#, c-format
msgid "rcmd: write (setting up stderr): %m\n"
msgstr "rcmd: write (Ç¥ÁØ¿À·ù ¼³Á¤): %m\n"
-#: sunrpc/svc_simple.c:99
+#: sunrpc/svc_simple.c:108
msgid "registerrpc: out of memory\n"
msgstr "registerrpc: ¸Þ¸ð¸® ºÎÁ·\n"
-#: timezone/zic.c:1874
+#: timezone/zic.c:1880
msgid "repeated leap second moment"
msgstr "À±ÃÊÀÇ Å©±â°¡ Áߺ¹µÇ¾úÀ½"
@@ -5019,7 +5096,7 @@ msgstr "À±ÃÊÀÇ Å©±â°¡ Áߺ¹µÇ¾úÀ½"
msgid "repertoire map file `%s' not found"
msgstr "·¹ÆÄÅ丮 Áöµµ ÆÄÀÏ `%s'¸¦ ãÁö ¸øÇßÀ½"
-#: locale/programs/charmap.c:1063
+#: locale/programs/charmap.c:1068
msgid "resulting bytes for range not representable."
msgstr "¹üÀ§ÀÇ ÃÖÁ¾ ¹ÙÀÌÆ®¼ö¸¦ Ç¥½ÃÇÒ ¼ö ¾ø½À´Ï´Ù."
@@ -5055,24 +5132,24 @@ msgstr "rpcinfo: ºê·Îµåij½ºÆ® ½ÇÆÐÇÔ: %s\n"
msgid "rpcinfo: can't contact portmapper"
msgstr "rpcinfo: Æ÷Æ®¸ÅÆÛ¿¡ ¿¬°áÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: timezone/zic.c:743 timezone/zic.c:745
+#: timezone/zic.c:749 timezone/zic.c:751
msgid "same rule name in multiple files"
msgstr "¿©·¯ ÆÄÀÏ¿¡ °°Àº À̸§ÀÇ ±ÔÄ¢ÀÌ ÀÖÀ½"
-#: elf/dl-load.c:1116
+#: elf/dl-load.c:1104
msgid "shared object cannot be dlopen()ed"
msgstr "µ¿Àû ¿ÀºêÁ§Æ®´Â dlopen()µÉ ¼ö ¾ø½À´Ï´Ù"
-#: elf/dl-close.c:63
+#: elf/dl-close.c:61
msgid "shared object not open"
msgstr "°øÀ¯ ¿ÀºêÁ§Æ®°¡ ¿­¸®Áö ¾Ê¾Ò½À´Ï´Ù"
-#: nscd/connections.c:482
+#: nscd/connections.c:493
#, c-format
msgid "short read while reading request key: %s"
msgstr "¿äûÇÑ Å°¸¦ ´Ù ÀÐÁö ¸øÇßÀ½: %s"
-#: nscd/connections.c:436
+#: nscd/connections.c:443
#, c-format
msgid "short read while reading request: %s"
msgstr "¿ä±¸»çÇ×À» ´Ù ÀÐÁö ¸øÇßÀ½: %s"
@@ -5082,35 +5159,31 @@ msgstr "¿ä±¸»çÇ×À» ´Ù ÀÐÁö ¸øÇßÀ½: %s"
msgid "short write in %s: %s"
msgstr "%s¸¦ ´Ù ¾²Áö ¸øÇßÀ½: %s"
-#: inet/rcmd.c:260
+#: inet/rcmd.c:261
msgid "socket: protocol failure in circuit setup\n"
msgstr "socket: ȸ·Î ¼³Á¤Áß ±Ô¾àÀÌ ºÒÀÌÇàµÊ\n"
-#: timezone/zic.c:814
+#: timezone/zic.c:820
msgid "standard input"
msgstr "Ç¥ÁØ ÀÔ·Â"
-#: timezone/zdump.c:269
-msgid "standard output"
-msgstr "Ç¥ÁØ Ãâ·Â"
-
-#: locale/programs/ld-ctype.c:1680
+#: locale/programs/ld-ctype.c:1681
msgid "start and end character sequence of range must have the same length"
msgstr "¹üÀ§ÀÇ ½ÃÀÛ ¹®ÀÚ ¼ø¼­¿­°ú ³¡ ¹®ÀÚ ¼ø¼­¿­Àº ±æÀÌ°¡ °°¾Æ¾ß ÇÕ´Ï´Ù"
-#: timezone/zic.c:1325
+#: timezone/zic.c:1331
msgid "starting year greater than ending year"
msgstr "½ÃÀÛÇÏ´Â ÇØ°¡ ³¡³ª´Â Çغ¸´Ù Å®´Ï´Ù"
-#: timezone/zic.c:1297 timezone/zic.c:1322
+#: timezone/zic.c:1303 timezone/zic.c:1328
msgid "starting year too high to be represented"
msgstr "½ÃÀÛ ¿¬µµ°¡ ³Ê¹« ³ôÀº ¼ö¶ó¼­ Ç¥½ÃÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: timezone/zic.c:1295 timezone/zic.c:1320
+#: timezone/zic.c:1301 timezone/zic.c:1326
msgid "starting year too low to be represented"
msgstr "½ÃÀÛ ¿¬µµ°¡ ³Ê¹« ³·Àº ¼ö¶ó¼­ Ç¥½ÃÇÒ ¼ö ¾ø½À´Ï´Ù"
-#: iconv/iconv_prog.c:63
+#: iconv/iconv_prog.c:67
msgid "suppress warnings"
msgstr "°æ°í¸¦ Ç¥½ÃÇÏÁö ¾Ê½À´Ï´Ù"
@@ -5118,31 +5191,31 @@ msgstr "°æ°í¸¦ Ç¥½ÃÇÏÁö ¾Ê½À´Ï´Ù"
msgid "svc_run: - poll failed"
msgstr "svc_run: - poll ½ÇÆÐ"
-#: sunrpc/svc_tcp.c:161
+#: sunrpc/svc_tcp.c:170
msgid "svc_tcp.c - cannot getsockname or listen"
msgstr "svc_tcp.c - getsockname ȤÀº listen ºÒ°¡´É"
-#: sunrpc/svc_tcp.c:146
+#: sunrpc/svc_tcp.c:155
msgid "svc_tcp.c - tcp socket creation problem"
msgstr "svc_tcp_c - tcp ¼ÒÄÏ »ý¼º ¹®Á¦"
-#: sunrpc/svc_tcp.c:210 sunrpc/svc_tcp.c:216
+#: sunrpc/svc_tcp.c:219 sunrpc/svc_tcp.c:225
msgid "svc_tcp: makefd_xprt: out of memory\n"
msgstr "svc_tcp: makefd_xprt: ¸Þ¸ð¸® ºÎÁ·\n"
-#: sunrpc/svc_unix.c:137
+#: sunrpc/svc_unix.c:146
msgid "svc_unix.c - AF_UNIX socket creation problem"
msgstr "svc_unix.c - AF_UNIX ¼ÒÄÏ »ý¼º ¹®Á¦"
-#: sunrpc/svc_unix.c:153
+#: sunrpc/svc_unix.c:162
msgid "svc_unix.c - cannot getsockname or listen"
msgstr "svc_unix.c - getsockname ȤÀº listen ºÒ°¡´É"
-#: sunrpc/svc_unix.c:203 sunrpc/svc_unix.c:209
+#: sunrpc/svc_unix.c:212 sunrpc/svc_unix.c:218
msgid "svc_unix: makefd_xprt: out of memory\n"
msgstr "svc_unix: makefc_xprt: ¸Þ¸ð¸® ºÎÁ·\n"
-#: sunrpc/svc_tcp.c:169 sunrpc/svc_tcp.c:177
+#: sunrpc/svc_tcp.c:178 sunrpc/svc_tcp.c:186
msgid "svctcp_create: out of memory\n"
msgstr "svctcp_create: ¸Þ¸ð¸® ºÎÁ·\n"
@@ -5162,49 +5235,49 @@ msgstr "svcudp_create: ¼ÒÄÏ »ý¼º ¹®Á¦"
msgid "svcudp_create: xp_pad is too small for IP_PKTINFO\n"
msgstr "svcudp_create: xp_pad°¡ IP_PKTINFO¿¡ ´ëÇÏ¿© ³Ê¹« ÀÛ½À´Ï´Ù\n"
-#: sunrpc/svc_unix.c:162 sunrpc/svc_unix.c:170
+#: sunrpc/svc_unix.c:171 sunrpc/svc_unix.c:179
msgid "svcunix_create: out of memory\n"
msgstr "svcunix_create: ¸Þ¸ð¸® ºÎÁ·\n"
-#: locale/programs/linereader.c:745
+#: locale/programs/linereader.c:750
#, c-format
msgid "symbol `%.*s' not in charmap"
msgstr "`%.*s' ±âÈ£´Â ¹®ÀÚ Áöµµ¿¡ ¾ø½À´Ï´Ù"
-#: locale/programs/linereader.c:766
+#: locale/programs/linereader.c:771
#, c-format
msgid "symbol `%.*s' not in repertoire map"
msgstr "`%.*s' ±âÈ£´Â ·¹ÆÄÅ丮 Áöµµ¿¡ ¾ø½À´Ï´Ù"
-#: locale/programs/ld-collate.c:1617 locale/programs/ld-collate.c:1716
+#: locale/programs/ld-collate.c:1630 locale/programs/ld-collate.c:1729
#, c-format
msgid "symbol `%s'"
msgstr "±âÈ£ `%s'"
-#: locale/programs/ld-collate.c:1614 locale/programs/ld-collate.c:1713
+#: locale/programs/ld-collate.c:1627 locale/programs/ld-collate.c:1726
#, c-format
msgid "symbol `%s' has the same encoding as"
msgstr "±âÈ£ `%s'ÀÌ(°¡) °°Àº ´ÙÀ½°ú ÀÎÄÚµùÀÔ´Ï´Ù:"
-#: locale/programs/ld-collate.c:1539
+#: locale/programs/ld-collate.c:1552
#, c-format
msgid "symbol `%s' not defined"
msgstr "`%s' ½Éº¼Àº Á¤ÀǵÇÁö ¾Ê¾Ò½À´Ï´Ù"
-#: locale/programs/ld-ctype.c:1955 locale/programs/ld-ctype.c:2006
-#: locale/programs/ld-ctype.c:2048
+#: locale/programs/ld-ctype.c:1956 locale/programs/ld-ctype.c:2007
+#: locale/programs/ld-ctype.c:2049
msgid "syntax error"
msgstr "¹®¹ý ¿À·ù"
-#: locale/programs/charmap.c:487 locale/programs/charmap.c:541
-#: locale/programs/charmap.c:573 locale/programs/charmap.c:667
-#: locale/programs/charmap.c:722 locale/programs/charmap.c:763
-#: locale/programs/charmap.c:804
+#: locale/programs/charmap.c:492 locale/programs/charmap.c:546
+#: locale/programs/charmap.c:578 locale/programs/charmap.c:672
+#: locale/programs/charmap.c:727 locale/programs/charmap.c:768
+#: locale/programs/charmap.c:809
#, c-format
msgid "syntax error in %s definition: %s"
msgstr "%s Á¤ÀǺο¡ ¹®¹ý ¿À·ù ÀÖÀ½: %s"
-#: locale/programs/charmap.c:346 locale/programs/charmap.c:363
+#: locale/programs/charmap.c:351 locale/programs/charmap.c:368
#: locale/programs/repertoire.c:175
#, c-format
msgid "syntax error in prolog: %s"
@@ -5216,73 +5289,69 @@ msgstr "¸Ó¸´¸»¿¡ ¹®¹ý ¾Ö·¯: %s"
msgid "syntax error in repertoire map definition: %s"
msgstr "·¹ÆÄÅ丮 Áöµµ Á¤ÀÇ¿¡ ¹®¹ý ¿À·ù: %s"
-#: locale/programs/locfile.c:243
+#: locale/programs/locfile.c:245
msgid "syntax error: not inside a locale definition section"
msgstr "¹®¹ý ¾Ö·¯: ·ÎÄÉÀÏ Á¤ÀÇ ºÎºÐÀÌ ¾Æ´Õ´Ï´Ù"
-#: iconv/iconv_prog.c:143
-msgid "target encoding not specified using `-t'"
-msgstr "`-t'¸¦ »ç¿ëÇÑ Ãâ·Â ÀÎÄÚµù ÁöÁ¤ÀÌ ¾ø½À´Ï´Ù"
-
#: catgets/gencat.c:432 catgets/gencat.c:605 catgets/gencat.c:634
msgid "this is the first definition"
msgstr "ÀÌ°ÍÀº ù¹ø° Á¤ÀÇÀÔ´Ï´Ù"
-#: timezone/zic.c:1157
+#: timezone/zic.c:1163
msgid "time before zero"
msgstr "0 ÀÌÀüÀÇ ½Ã°£"
-#: timezone/zic.c:1165 timezone/zic.c:2042 timezone/zic.c:2061
+#: timezone/zic.c:1171 timezone/zic.c:2048 timezone/zic.c:2067
msgid "time overflow"
msgstr "½Ã°£ Èê·¯ ³Ñħ"
-#: locale/programs/ld-ctype.c:1553 locale/programs/ld-ctype.c:2029
+#: locale/programs/ld-ctype.c:1554 locale/programs/ld-ctype.c:2030
#, c-format
msgid "to-value <U%0*X> of range is smaller than from-value <U%0*X>"
msgstr "¹üÀ§ÀÇ to-value <U%0*X>ÀÌ(°¡) from-value <U%0*X>º¸´Ù ÀÛ½À´Ï´Ù"
-#: locale/programs/ld-ctype.c:1687
+#: locale/programs/ld-ctype.c:1688
msgid "to-value character sequence is smaller than from-value sequence"
msgstr "to-value ¹®ÀÚ ¼ø¼­¿­ÀÌ from-value ¼ø¼­¿­º¸´Ù ÀÛ½À´Ï´Ù"
-#: locale/programs/charmap.c:551
+#: locale/programs/charmap.c:556
msgid "too few bytes in character encoding"
msgstr "¹®ÀÚ ºÎȣȭ¿¡ ÇÊ¿äÇÑ ¹ÙÀÌÆ®°¡ ³Ê¹« ÀûÀ½"
-#: locale/programs/charmap.c:553
+#: locale/programs/charmap.c:558
msgid "too many bytes in character encoding"
msgstr "¹®ÀÚ ºÎȣȭ¿¡ ÇÊ¿äÇÑ ¹ÙÀÌÆ®°¡ ³Ê¹« ¸¹À½"
-#: timezone/zic.c:1868
+#: timezone/zic.c:1874
msgid "too many leap seconds"
msgstr "À±ÃÊ°¡ ³Ê¹« ¸¹À½"
-#: timezone/zic.c:1840
+#: timezone/zic.c:1846
msgid "too many local time types"
msgstr "Áö¿ª½ÃÀÇ Á¾·ù°¡ ³Ê¹« ¸¹À½"
-#: timezone/zic.c:1794
+#: timezone/zic.c:1800
msgid "too many transitions?!"
msgstr "³Ê¹« ¸¹Àº ÀüÀÌ?!"
-#: timezone/zic.c:2165
+#: timezone/zic.c:2171
msgid "too many, or too long, time zone abbreviations"
msgstr "³Ê¹« ¸¹°Å³ª ³Ê¹« ±ä ½Ã°£´ë ¾à¾î"
-#: locale/programs/linereader.h:157
+#: locale/programs/linereader.h:160
msgid "trailing garbage at end of line"
msgstr "ÆÄÀÏÀÇ ³¡¿¡ ¾µ¸ð¾ø´Â °ÍÀÌ ºÙ¾î ÀÖÀ½"
-#: sunrpc/svc_simple.c:151
+#: sunrpc/svc_simple.c:160
#, c-format
msgid "trouble replying to prog %d\n"
msgstr "ÇÁ·Î±×·¥ %d¿¡ ÀÀ´äÇÏ´Â µ¥ ¹®Á¦°¡ ÀÖÀ½\n"
-#: timezone/zic.c:1332
+#: timezone/zic.c:1338
msgid "typed single year"
msgstr "ÇÑ°³ÀÇ ¿¬µµ°¡ ŸÀÌÇÁµÇ¾ú½À´Ï´Ù"
-#: iconv/iconv_prog.c:491
+#: iconv/iconv_charmap.c:524 iconv/iconv_prog.c:533
msgid "unable to allocate buffer for input"
msgstr "ÀÔ·ÂÀ» À§ÇÑ ¹öÆÛ¸¦ ÇÒ´çÇÒ ¼ö ¾ø½À´Ï´Ù"
@@ -5290,11 +5359,15 @@ msgstr "ÀÔ·ÂÀ» À§ÇÑ ¹öÆÛ¸¦ ÇÒ´çÇÒ ¼ö ¾ø½À´Ï´Ù"
msgid "unable to free arguments"
msgstr "ÀÎÀÚ¸¦ ºñ¿ï ¼ö ¾ø½À´Ï´Ù"
-#: posix/getconf.c:781 posix/getconf.c:797
+#: posix/getconf.c:968 posix/getconf.c:984
msgid "undefined"
msgstr "Á¤ÀǵÇÁö ¾ÊÀ½"
-#: locale/programs/charmap.c:856 locale/programs/charmap.c:867
+#: elf/cache.c:69
+msgid "unknown"
+msgstr "¾Ë ¼ö ¾øÀ½"
+
+#: locale/programs/charmap.c:861 locale/programs/charmap.c:872
#, c-format
msgid "unknown character `%s'"
msgstr "¾Ë ¼ö ¾ø´Â ¹®ÀÚ `%s'"
@@ -5304,7 +5377,7 @@ msgstr "¾Ë ¼ö ¾ø´Â ¹®ÀÚ `%s'"
msgid "unknown directive `%s': line ignored"
msgstr "¾Ë ¼ö ¾ø´Â Áö½ÃÀÚ `%s': Çà ¹«½ÃµÊ"
-#: iconv/iconv_prog.c:438
+#: iconv/iconv_prog.c:480
#, c-format
msgid "unknown iconv() error %d"
msgstr "¾Ë ¼ö ¾ø´Â iconv() ¿À·ù %d"
@@ -5314,15 +5387,20 @@ msgstr "¾Ë ¼ö ¾ø´Â iconv() ¿À·ù %d"
msgid "unknown set `%s'"
msgstr "¾Ë ¼ö ¾ø´Â ¼³Á¤ `%s'"
-#: timezone/zic.c:786
+#: posix/getconf.c:941
+#, c-format
+msgid "unknown specification \"%s\""
+msgstr "¾Ë ¼ö ¾ø´Â ½ºÆå \"%s\""
+
+#: timezone/zic.c:792
msgid "unruly zone"
msgstr "±ÔÄ¢¾ø´Â Áö¿ª"
-#: catgets/gencat.c:1169
+#: catgets/gencat.c:1174
msgid "unterminated message"
msgstr "Á¾·áµÇÁö ¾ÊÀº ¸Þ½ÃÁö"
-#: locale/programs/linereader.c:599 locale/programs/linereader.c:784
+#: locale/programs/linereader.c:604 locale/programs/linereader.c:789
msgid "unterminated string"
msgstr "Á¾·áµÇÁö ¾ÊÀº ¹®ÀÚ¿­"
@@ -5330,11 +5408,11 @@ msgstr "Á¾·áµÇÁö ¾ÊÀº ¹®ÀÚ¿­"
msgid "unterminated string constant"
msgstr "Á¾·áµÇÁö ¾ÊÀº ¹®ÀÚ¿­ »ó¼ö"
-#: locale/programs/linereader.c:469
+#: locale/programs/linereader.c:474
msgid "unterminated symbolic name"
msgstr "Á¾·áµÇÁö ¾ÊÀº ±âÈ£ À̸§"
-#: locale/programs/charmap.c:1005
+#: locale/programs/charmap.c:1010
msgid "upper limit in range is not higher then lower limit"
msgstr "¹üÀ§ÀÇ »óÇÑÀÌ ÇÏÇѺ¸´Ù Å©Áö ¾Ê½À´Ï´Ù"
@@ -5342,35 +5420,35 @@ msgstr "¹üÀ§ÀÇ »óÇÑÀÌ ÇÏÇѺ¸´Ù Å©Áö ¾Ê½À´Ï´Ù"
msgid "upper limit in range is not smaller then lower limit"
msgstr "¹üÀ§ÀÇ »óÇÑÀÌ ÇÏÇѺ¸´Ù ÀÛÁö ¾Ê½À´Ï´Ù"
-#: sunrpc/rpc_main.c:1424
+#: sunrpc/rpc_main.c:1426
#, c-format
msgid "usage: %s infile\n"
msgstr "»ç¿ë¹ý: %s ÀÔ·ÂÆÄÀÏ\n"
-#: timezone/zic.c:2108
+#: timezone/zic.c:2114
msgid "use of 2/29 in non leap-year"
msgstr "Æò³â¿¡ 2¿ù 29ÀÏÀ» »ç¿ëÇÔ"
-#: locale/programs/charmap.c:640 locale/programs/charmap.c:703
+#: locale/programs/charmap.c:645 locale/programs/charmap.c:708
#, c-format
msgid "value for %s must be an integer"
msgstr "%s¿¡ ´ëÇÑ °ªÀº Á¤¼ö¿©¾ß ÇÕ´Ï´Ù"
-#: locale/programs/charmap.c:399
+#: locale/programs/charmap.c:404
#, c-format
msgid "value for <%s> must be 1 or greater"
msgstr "%s¿¡ ´ëÇÑ °ªÀº 1 ÀÌ»óÀ̾î¾ß ÇÕ´Ï´Ù"
-#: locale/programs/charmap.c:411
+#: locale/programs/charmap.c:416
#, c-format
msgid "value of <%s> must be greater or equal than the value of <%s>"
msgstr "<%s>¿¡ ´ëÇÑ °ªÀº <%s>ÀÇ °ªº¸´Ù °°°Å³ª Ä¿¾ß ÇÕ´Ï´Ù"
-#: timezone/zic.c:433
+#: timezone/zic.c:439
msgid "warning: "
msgstr "°æ°í: "
-#: nscd/connections.c:427
+#: nscd/connections.c:432
#, c-format
msgid "while accepting connection: %s"
msgstr "¿¬°áÀ» ¹Þ¾ÆµéÀÌ´Â µµÁß: %s"
@@ -5387,11 +5465,15 @@ msgstr "Çؽ¬ Å×ÀÌºí¿¡ entry¸¦ ÇÒ´çÇÏ´Â µ¿¾È"
msgid "while allocating key copy"
msgstr "Å° º¹»ç¸¦ ÇÒ´çÇÏ´Â µ¿¾È"
-#: catgets/gencat.c:1199
+#: iconv/iconvconfig.c:369
+msgid "while inserting in search tree"
+msgstr "ã±â Æ®¸®¿¡ Ãß°¡ÇÏ´Â µ¿¾È"
+
+#: catgets/gencat.c:1198
msgid "while opening old catalog file"
msgstr "¿À·¡µÈ ¸ñ·Ï ÆÄÀÏÀ» ¿©´Â µ¿¾È"
-#: locale/programs/locale.c:361
+#: locale/programs/locale.c:353
msgid "while preparing output"
msgstr "Ãâ·ÂÀ» ÁغñÇÏ´Â µ¿¾È"
@@ -5400,16 +5482,16 @@ msgid "while stat'ing profiling data file"
msgstr "ÇÁ·ÎÆÄÀϸµ µ¥ÀÌŸ ÆÄÀÏÀ» ¾²´Â µ¿¾È"
# ¹ø¿ª: ¹º¼Ò¸®¾ß?
-#: locale/programs/ld-ctype.c:2392
+#: locale/programs/ld-ctype.c:2394
msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'"
msgstr "UCS ¹üÀ§ °ª¿¡¼­´Â 16Áø¼ö ±âÈ£ ¸»ÁÙÀÓÇ¥ `..'À» ½á¾ß ÇÕ´Ï´Ù"
# ¹ø¿ª: ¹º ¼Ò¸®¾ß?
-#: locale/programs/ld-ctype.c:2406
+#: locale/programs/ld-ctype.c:2408
msgid "with character code range values one must use the absolute ellipsis `...'"
msgstr "¹®ÀÚÄÚµå ¹üÀ§ °ª¿¡¼­´Â Àý´ë ¸»ÁÙÀÓÇ¥ `..'À» ½á¾ß ÇÕ´Ï´Ù"
-#: locale/programs/ld-ctype.c:2377
+#: locale/programs/ld-ctype.c:2379
msgid "with symbolic name range values the absolute ellipsis `...' must not be used"
msgstr "±âÈ£À̸§ ¹üÀ§ °ª¿¡¼­´Â Àý´ë ¸»ÁÙÀÓÇ¥ `..'À» ¾²Áö ¸»¾Æ¾ß ÇÕ´Ï´Ù"
@@ -5417,7 +5499,7 @@ msgstr "±âÈ£À̸§ ¹üÀ§ °ª¿¡¼­´Â Àý´ë ¸»ÁÙÀÓÇ¥ `..'À» ¾²Áö ¸»¾Æ¾ß ÇÕ´Ï´Ù"
msgid "write incomplete"
msgstr "¿ÏÀüÈ÷ ¾²Áö ¸øÇß½À´Ï´Ù"
-#: inet/rcmd.c:426
+#: inet/rcmd.c:427
msgid "writeable by other than owner"
msgstr "¼ÒÀ¯ÀÚ°¡ ¾Æ´Ñ »ç¶÷ÀÌ º¯°æÇÒ ¼ö ÀÖÀ½"
@@ -5425,23 +5507,23 @@ msgstr "¼ÒÀ¯ÀÚ°¡ ¾Æ´Ñ »ç¶÷ÀÌ º¯°æÇÒ ¼ö ÀÖÀ½"
msgid "wrong number of arguments"
msgstr "ÀμöÀÇ °³¼ö°¡ À߸øµÇ¾úÀ½"
-#: timezone/zic.c:1115
+#: timezone/zic.c:1121
msgid "wrong number of fields on Leap line"
msgstr "Leap ÁÙ¿¡ ÇʵåÀÇ °³¼ö°¡ À߸øµÇ¾úÀ½"
-#: timezone/zic.c:1206
+#: timezone/zic.c:1212
msgid "wrong number of fields on Link line"
msgstr "Link ÁÙ¿¡ ÇʵåÀÇ °³¼ö°¡ À߸øµÇ¾úÀ½"
-#: timezone/zic.c:949
+#: timezone/zic.c:955
msgid "wrong number of fields on Rule line"
msgstr "Rule ÁÙ¿¡ ÇʵåÀÇ °³¼ö°¡ À߸øµÇ¾úÀ½"
-#: timezone/zic.c:1019
+#: timezone/zic.c:1025
msgid "wrong number of fields on Zone continuation line"
msgstr "Zone continuation ÁÙ¿¡ ÇʵåÀÇ °³¼ö°¡ À߸øµÇ¾úÀ½"
-#: timezone/zic.c:977
+#: timezone/zic.c:983
msgid "wrong number of fields on Zone line"
msgstr "Zone ÁÙ¿¡ ÇʵåÀÇ °¹¼ö°¡ À߸øµÇ¾úÀ½"
@@ -5453,10 +5535,60 @@ msgstr "xdr_reference: ¸Þ¸ð¸® ºÎÁ·\n"
msgid "xdrrec_create: out of memory\n"
msgstr "xdrrec_create: ¸Þ¸ð¸® ºÎÁ·\n"
-#: nis/ypclnt.c:907
+#: nis/ypclnt.c:909
msgid "yp_update: cannot convert host to netname\n"
msgstr "yp_update: È£½ºÆ®¸¦ ³×Æ®À̸§À¸·Î ¹Ù²Ü ¼ö ¾ø½À´Ï´Ù\n"
-#: nis/ypclnt.c:919
+#: nis/ypclnt.c:921
msgid "yp_update: cannot get server address\n"
msgstr "yp_update: ¼­¹ö ÁÖ¼Ò¸¦ ¾òÀ» ¼ö ¾ø½À´Ï´Ù\n"
+
+#~ msgid "%s: Error writing "
+#~ msgstr "%s: ¾²´Â µµÁß ¿À·ù ¹ß»ý"
+
+#~ msgid "CDS"
+#~ msgstr "CDS"
+
+#~ msgid "DNANS"
+#~ msgstr "DNANS"
+
+#~ msgid "DNS"
+#~ msgstr "DNS"
+
+#~ msgid "IVY"
+#~ msgstr "IVY"
+
+#~ msgid "NIS"
+#~ msgstr "NIS"
+
+#~ msgid "SUNYP"
+#~ msgstr "SUNYP"
+
+#~ msgid "X500"
+#~ msgstr "X500"
+
+#~ msgid "XCHS"
+#~ msgstr "XCHS"
+
+#~ # ¹ø¿ª: capability´Â DB¿¡¼­ authenticationÀ» ÁÙÀ̱â À§ÇØ ¾²´Â °Í..
+#~ # °¡±î¿î DBÃ¥ ÂüÁ¶.
+#~ msgid "cannot create capability list"
+#~ msgstr "ÄÉÀÌÆÛºô¸®Æ¼ ¸®½ºÆ®¸¦ ¸¸µé ¼ö ¾ø½À´Ï´Ù"
+
+#~ msgid "cannot load shared object file"
+#~ msgstr "µ¿Àû ¿ÀºêÁ§Æ® ÆÄÀÏÀ» ÀоîµéÀÏ ¼ö ¾ø½À´Ï´Ù"
+
+#~ msgid "cannot read locale directory `%s'"
+#~ msgstr "·ÎÄÉÀÏ µð·ºÅ丮 `%s'¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù"
+
+#~ msgid "fcntl: F_SETFD"
+#~ msgstr "fcntl: F_SETFD"
+
+#~ msgid "neither original nor target encoding specified"
+#~ msgstr "¿ø ÀÎÄÚµù°ú Ãâ·Â ÀÎÄÚµù ¸ðµÎ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
+
+#~ msgid "original encoding not specified using `-f'"
+#~ msgstr "`-f'¸¦ »ç¿ëÇÑ ¿ø ÀÎÄÚµùÀÌ ÁöÁ¤µÇÁö ¾Ê¾ÒÀ½"
+
+#~ msgid "target encoding not specified using `-t'"
+#~ msgstr "`-t'¸¦ »ç¿ëÇÑ Ãâ·Â ÀÎÄÚµù ÁöÁ¤ÀÌ ¾ø½À´Ï´Ù"
diff --git a/string/envz.c b/string/envz.c
index 83de595af9..3805b2c410 100644
--- a/string/envz.c
+++ b/string/envz.c
@@ -1,5 +1,5 @@
/* Routines for dealing with '\0' separated environment vectors
- Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1995, 1996, 1997, 1998, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Written by Miles Bader <miles@gnu.ai.mit.edu>
@@ -104,9 +104,9 @@ envz_add (char **envz, size_t *envz_len, const char *name, const char *value)
if (new_envz)
{
- bcopy (name, new_envz + old_envz_len, name_len);
+ memcpy (new_envz + old_envz_len, name, name_len);
new_envz[old_envz_len + name_len] = SEP;
- bcopy (value, new_envz + old_envz_len + name_len + 1, value_len);
+ memcpy (new_envz + old_envz_len + name_len + 1, value, value_len);
new_envz[new_envz_len - 1] = 0;
*envz = new_envz;
@@ -163,7 +163,7 @@ envz_strip (char **envz, size_t *envz_len)
left -= entry_len;
if (! index (entry, SEP))
/* Null entry. */
- bcopy (entry, entry + entry_len, left);
+ memmove (entry + entry_len, entry, left);
else
entry += entry_len;
}
diff --git a/sunrpc/clnt_gen.c b/sunrpc/clnt_gen.c
index 27e027242b..251ad88ee5 100644
--- a/sunrpc/clnt_gen.c
+++ b/sunrpc/clnt_gen.c
@@ -110,7 +110,7 @@ clnt_create (const char *hostname, u_long prog, u_long vers,
sin.sin_family = h->h_addrtype;
sin.sin_port = 0;
__bzero (sin.sin_zero, sizeof (sin.sin_zero));
- bcopy (h->h_addr, (char *) &sin.sin_addr, h->h_length);
+ memcpy ((char *) &sin.sin_addr, h->h_addr, h->h_length);
prtbuflen = 1024;
prttmpbuf = __alloca (prtbuflen);
diff --git a/sunrpc/clnt_simp.c b/sunrpc/clnt_simp.c
index 735f2edb9a..5c11b479b2 100644
--- a/sunrpc/clnt_simp.c
+++ b/sunrpc/clnt_simp.c
@@ -122,7 +122,7 @@ callrpc (const char *host, u_long prognum, u_long versnum, u_long procnum,
timeout.tv_usec = 0;
timeout.tv_sec = 5;
- bcopy (hp->h_addr, (char *) &server_addr.sin_addr, hp->h_length);
+ memcpy ((char *) &server_addr.sin_addr, hp->h_addr, hp->h_length);
server_addr.sin_family = AF_INET;
server_addr.sin_port = 0;
if ((crp->client = clntudp_create (&server_addr, (u_long) prognum,
diff --git a/sunrpc/getrpcport.c b/sunrpc/getrpcport.c
index 2e12482abc..a8f1326f08 100644
--- a/sunrpc/getrpcport.c
+++ b/sunrpc/getrpcport.c
@@ -67,7 +67,7 @@ getrpcport (const char *host, u_long prognum, u_long versnum, u_int proto)
buffer = __alloca (buflen);
}
- bcopy (hp->h_addr, (char *) &addr.sin_addr, hp->h_length);
+ memcpy ((char *) &addr.sin_addr, hp->h_addr, hp->h_length);
addr.sin_family = AF_INET;
addr.sin_port = 0;
return pmap_getport (&addr, prognum, versnum, proto);
diff --git a/sunrpc/rpc_cmsg.c b/sunrpc/rpc_cmsg.c
index 3930de3e93..8916504a39 100644
--- a/sunrpc/rpc_cmsg.c
+++ b/sunrpc/rpc_cmsg.c
@@ -82,7 +82,7 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
IXDR_PUT_INT32 (buf, oa->oa_length);
if (oa->oa_length)
{
- bcopy (oa->oa_base, (caddr_t) buf, oa->oa_length);
+ memcpy ((caddr_t) buf, oa->oa_base, oa->oa_length);
buf = (int32_t *) ((char *) buf + RNDUP (oa->oa_length));
}
oa = &cmsg->rm_call.cb_verf;
@@ -90,7 +90,7 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
IXDR_PUT_INT32 (buf, oa->oa_length);
if (oa->oa_length)
{
- bcopy (oa->oa_base, (caddr_t) buf, oa->oa_length);
+ memcpy ((caddr_t) buf, oa->oa_base, oa->oa_length);
/* no real need....
buf = (long *) ((char *) buf + RNDUP(oa->oa_length));
*/
@@ -138,8 +138,7 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
}
else
{
- bcopy ((caddr_t) buf, oa->oa_base,
- oa->oa_length);
+ memcpy (oa->oa_base, (caddr_t) buf, oa->oa_length);
/* no real need....
buf = (long *) ((char *) buf
+ RNDUP(oa->oa_length));
@@ -179,8 +178,7 @@ xdr_callmsg (XDR *xdrs, struct rpc_msg *cmsg)
}
else
{
- bcopy ((caddr_t) buf, oa->oa_base,
- oa->oa_length);
+ memcpy (oa->oa_base, (caddr_t) buf, oa->oa_length);
/* no real need...
buf = (long *) ((char *) buf
+ RNDUP(oa->oa_length));
diff --git a/sunrpc/svc_authux.c b/sunrpc/svc_authux.c
index 08065b4184..bf533a573c 100644
--- a/sunrpc/svc_authux.c
+++ b/sunrpc/svc_authux.c
@@ -80,7 +80,7 @@ _svcauth_unix (struct svc_req *rqst, struct rpc_msg *msg)
stat = AUTH_BADCRED;
goto done;
}
- bcopy ((caddr_t) buf, aup->aup_machname, (u_int) str_len);
+ memcpy (aup->aup_machname, (caddr_t) buf, (u_int) str_len);
aup->aup_machname[str_len] = 0;
str_len = RNDUP (str_len);
buf = (int32_t *) ((char *) buf + str_len);
diff --git a/sunrpc/svcauth_des.c b/sunrpc/svcauth_des.c
index 4530066a45..6a550af8e9 100644
--- a/sunrpc/svcauth_des.c
+++ b/sunrpc/svcauth_des.c
@@ -150,7 +150,7 @@ _svcauth_des (register struct svc_req *rqst, register struct rpc_msg *msg)
return AUTH_BADCRED;
}
cred->adc_fullname.name = area->area_netname;
- bcopy ((char *) ixdr, cred->adc_fullname.name, namelen);
+ memcpy (cred->adc_fullname.name, (char *) ixdr, namelen);
cred->adc_fullname.name[namelen] = 0;
ixdr += (RNDUP (namelen) / BYTES_PER_XDR_UNIT);
cred->adc_fullname.key.key.high = *ixdr++;
diff --git a/sunrpc/xdr_mem.c b/sunrpc/xdr_mem.c
index 9cc3890427..b328d59829 100644
--- a/sunrpc/xdr_mem.c
+++ b/sunrpc/xdr_mem.c
@@ -132,7 +132,7 @@ xdrmem_getbytes (XDR *xdrs, caddr_t addr, u_int len)
{
if ((xdrs->x_handy -= len) < 0)
return FALSE;
- bcopy (xdrs->x_private, addr, len);
+ memcpy (addr, xdrs->x_private, len);
xdrs->x_private += len;
return TRUE;
}
@@ -146,7 +146,7 @@ xdrmem_putbytes (XDR *xdrs, const char *addr, u_int len)
{
if ((xdrs->x_handy -= len) < 0)
return FALSE;
- bcopy (addr, xdrs->x_private, len);
+ memcpy (xdrs->x_private, addr, len);
xdrs->x_private += len;
return TRUE;
}
diff --git a/sunrpc/xdr_rec.c b/sunrpc/xdr_rec.c
index 17c9b35575..65ffa3799e 100644
--- a/sunrpc/xdr_rec.c
+++ b/sunrpc/xdr_rec.c
@@ -286,7 +286,7 @@ xdrrec_putbytes (XDR *xdrs, const char *addr, u_int len)
{
current = rstrm->out_boundry - rstrm->out_finger;
current = (len < current) ? len : current;
- bcopy (addr, rstrm->out_finger, current);
+ memcpy (rstrm->out_finger, addr, current);
rstrm->out_finger += current;
addr += current;
len -= current;
@@ -588,7 +588,7 @@ get_input_bytes (RECSTREAM *rstrm, caddr_t addr, int len)
continue;
}
current = (len < current) ? len : current;
- bcopy (rstrm->in_finger, addr, current);
+ memcpy (addr, rstrm->in_finger, current);
rstrm->in_finger += current;
addr += current;
len -= current;