diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-20 06:37:56 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-20 06:37:56 +0000 |
commit | 9af652f60865624b4f44605c0c8bd4c23a18a2a7 (patch) | |
tree | 74905537f4aacd0ad0f819845808639df06d8612 | |
parent | 091b895531aabba1adc36ac6b68dd91ba52a0945 (diff) | |
download | glibc-9af652f60865624b4f44605c0c8bd4c23a18a2a7.zip glibc-9af652f60865624b4f44605c0c8bd4c23a18a2a7.tar.gz glibc-9af652f60865624b4f44605c0c8bd4c23a18a2a7.tar.bz2 |
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-- | ChangeLog | 18 | ||||
-rw-r--r-- | argp/argp-help.c | 100 | ||||
-rw-r--r-- | po/ko.po | 1538 | ||||
-rw-r--r-- | string/envz.c | 8 | ||||
-rw-r--r-- | sunrpc/clnt_gen.c | 2 | ||||
-rw-r--r-- | sunrpc/clnt_simp.c | 2 | ||||
-rw-r--r-- | sunrpc/getrpcport.c | 2 | ||||
-rw-r--r-- | sunrpc/rpc_cmsg.c | 10 | ||||
-rw-r--r-- | sunrpc/svc_authux.c | 2 | ||||
-rw-r--r-- | sunrpc/svcauth_des.c | 2 | ||||
-rw-r--r-- | sunrpc/xdr_mem.c | 4 | ||||
-rw-r--r-- | sunrpc/xdr_rec.c | 4 |
12 files changed, 950 insertions, 742 deletions
@@ -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 8529925..de709df 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); @@ -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 "������ ij�� ������ �ƴմϴ�.\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 "ã�� ��ο� ���� ij���� ���� �� �����ϴ�" -# ����: 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 83de595..3805b2c 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 27e0272..251ad88 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 735f2ed..5c11b47 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 2e12482..a8f1326 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 3930de3..8916504 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 08065b4..bf533a5 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 4530066..6a550af 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 9cc3890..b328d59 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 17c9b35..65ffa37 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; |