From 9af652f60865624b4f44605c0c8bd4c23a18a2a7 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 20 Aug 2001 06:37:56 +0000 Subject: Update. 2001-08-19 Ulrich Drepper * 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: test requires . --- ChangeLog | 18 +- argp/argp-help.c | 100 +++- po/ko.po | 1538 +++++++++++++++++++++++++++----------------------- string/envz.c | 8 +- sunrpc/clnt_gen.c | 2 +- sunrpc/clnt_simp.c | 2 +- sunrpc/getrpcport.c | 2 +- sunrpc/rpc_cmsg.c | 10 +- sunrpc/svc_authux.c | 2 +- sunrpc/svcauth_des.c | 2 +- sunrpc/xdr_mem.c | 4 +- sunrpc/xdr_rec.c | 4 +- 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 + + * 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 * sysdeps/generic/strtol.c: Little optimizations. Add some __builtin_expect. - * conform/conformtest.pl: test required . + * conform/conformtest.pl: test requires . * 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 . @@ -52,6 +52,9 @@ char *alloca (); #include #include #include +#ifdef USE_IN_LIBIO +# include +#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 \n" "Language-Team: Korean \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 " 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\" 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 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: must be greater than \n" msgstr "%s: ´Â º¸´Ù Ä¿¾ß ÇÕ´Ï´Ù\n" @@ -335,87 +341,82 @@ msgstr "%s: C 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: 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' 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' 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' 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: 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: 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: 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: 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' 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 " 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 " character must not be in class `%s'" msgstr " ¹®ÀÚ´Â `%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 " character not in class `%s'" msgstr " ¹®ÀÚ´Â `%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 " 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 " 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 " 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 " 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 " 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 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 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 " 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 " 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 " 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 " 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