diff --git a/ChangeLog b/ChangeLog index 969692626e..f70b66ccc8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,34 @@ +2003-11-25 Ulrich Drepper + + * posix/runptests.c (main): Make errors fatal. + * posix/PTESTS: One test in GA135 and GA136 check functionality + which seems not guaranteed. + +2003-11-25 Jakub Jelinek + + * posix/regexec.c (re_search_internal): If prune_impossible_nodes + returned REG_NOMATCH, set match_last to -1. Don't initialize + pmatch[0] needlessly. Fix comment. + (prune_impossible_nodes): Don't segfault on NULL state_log entry. + (set_regs): Fix comment. + * posix/regcomp.c (parse_bracket_exp): Only set has_plural_match + if adding both SIMPLE_BRACKET and COMPLEX_BRACKET. + (build_charclass_op): Set has_plural_match if adding both + SIMPLE_BRACKET and COMPLEX_BRACKET. + * posix/bug-regex11.c (tests): Fix register values for one commented + out test. Add new tests. + + * posix/regex_internal.c (re_string_allocate): Make sure init_len + is at least dfa->mb_cur_max. + (re_string_reconstruct): If is_utf8, don't fall back into + re_string_skip_chars just because idx points into a middle of + valid UTF-8 character. Instead, set the wcs bytes which correspond + to the partial character bytes to WEOF. + * posix/regexec.c (re_search_internal): Allocate input.bufs_len + 1 + instead of dfa->nodes_len + 1 state_log entries initially. + * posix/bug-regex20.c (main): Uncomment backwards case insensitive + tests. + 2003-11-24 Jakub Jelinek * posix/regex_internal.h (re_token_t): Add word_char bit. Add diff --git a/NEWS b/NEWS index b10c6f0bdc..8a16f07a9e 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -GNU C Library NEWS -- history of user-visible changes. 2003-4-24 +GNU C Library NEWS -- history of user-visible changes. 2003-11-17 Copyright (C) 1992-2002,2003 Free Software Foundation, Inc. See the end for copying conditions. @@ -18,6 +18,15 @@ Version 2.3.3 * getaddrinfo now implements AI_V4MAPPED, AI_ALL, and AI_ADDRCONF. Implemented by Ulrich Drepper. + +* support for non-executable stacks on x86 has been added. Changes mostly + by Roland McGrath. + +* regex is now much faster for multibyte locaes. Changes by Jakub Jelinek + and Ulrich Drepper. + +* getaddrinfo now performs destination address selection according to + RFC 3484. Version 2.3.2 diff --git a/elf/dl-load.c b/elf/dl-load.c index ecf2ee87eb..c7e3716cb6 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -1096,7 +1096,8 @@ cannot allocate TLS data structures for initial thread"); prefer to map such objects at; but this is only a preference, the OS can do whatever it likes. */ ElfW(Addr) mappref; - mappref = (ELF_PREFERRED_ADDRESS (loader, maplength, c->mapstart) + mappref = (ELF_PREFERRED_ADDRESS (loader, maplength, + c->mapstart & GL(dl_use_load_bias)) - MAP_BASE_ADDR (l)); /* Remember which part of the address space this object uses. */ diff --git a/elf/dl-support.c b/elf/dl-support.c index 448f4c6848..f13fd058a3 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -41,6 +41,7 @@ size_t _dl_platformlen; int _dl_debug_mask; int _dl_lazy; +ElfW(Addr) _dl_use_load_bias = -2; int _dl_dynamic_weak; /* If nonzero print warnings about problematic situations. */ diff --git a/elf/rtld.c b/elf/rtld.c index e92149a667..82f7ed3fc2 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -95,6 +95,7 @@ struct rtld_global _rtld_global = ._dl_sysinfo = DL_SYSINFO_DEFAULT, #endif ._dl_lazy = 1, + ._dl_use_load_bias = -2, ._dl_fpu_control = _FPU_DEFAULT, ._dl_correct_cache_id = _DL_CACHE_DEFAULT_ID, ._dl_hwcap_mask = HWCAP_IMPORTANT, @@ -996,6 +997,12 @@ of this helper program; chances are you did not intend to run this program.\n\ GL(dl_rtld_map).l_prev = GL(dl_loaded); ++GL(dl_nloaded); + /* If LD_USE_LOAD_BIAS env variable has not been seen, default + to not using bias for non-prelinked PIEs and libraries + and using it for executables or prelinked PIEs or libraries. */ + if (GL(dl_use_load_bias) == (ElfW(Addr)) -2) + GL(dl_use_load_bias) = (GL(dl_loaded)->l_addr == 0) ? -1 : 0; + /* Set up the program header information for the dynamic linker itself. It is needed in the dl_iterate_phdr() callbacks. */ ElfW(Ehdr) *rtld_ehdr = (ElfW(Ehdr) *) GL(dl_rtld_map).l_map_start; @@ -1992,6 +1999,17 @@ process_envvars (enum mode *modep) GL(dl_dynamic_weak) = 1; break; + case 13: + /* We might have some extra environment variable with length 13 + to handle. */ +#ifdef EXTRA_LD_ENVVARS_13 + EXTRA_LD_ENVVARS_13 +#endif + if (!INTUSE(__libc_enable_secure) + && memcmp (envline, "USE_LOAD_BIAS", 13) == 0) + GL(dl_use_load_bias) = envline[14] == '1' ? -1 : 0; + break; + case 14: /* Where to place the profiling data file. */ if (!INTUSE(__libc_enable_secure) diff --git a/math/libm-test.inc b/math/libm-test.inc index 8aa9aaaccc..d06dd5afa1 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -1626,6 +1626,7 @@ ceil_test (void) TEST_f_f (ceil, M_PIl, 4.0); TEST_f_f (ceil, -M_PIl, -3.0); TEST_f_f (ceil, 0.25, 1.0); + TEST_f_f (ceil, -0.25, minus_zero); END (ceil); } @@ -2572,6 +2573,9 @@ floor_test (void) TEST_f_f (floor, M_PIl, 3.0); TEST_f_f (floor, -M_PIl, -4.0); + TEST_f_f (floor, 0.25, 0.0); + TEST_f_f (floor, -0.25, -1.0); + END (floor); } diff --git a/po/ja.po b/po/ja.po index 64d7eaaa05..7a0d0aca40 100644 --- a/po/ja.po +++ b/po/ja.po @@ -1,5526 +1,5897 @@ # Japanese Messages for GNU libc. # Copyright (C) 1996 Free Software Foundation, Inc. -# GOTO Masanori , 2000-2001. +# GOTO Masanori , 2000-2003. # msgid "" msgstr "" -"Project-Id-Version: libc 2.2.4\n" -"POT-Creation-Date: 2001-08-13 15:08-0700\n" -"PO-Revision-Date: 2001-08-24 00:31+09:00\n" +"Project-Id-Version: libc 2.3.2\n" +"POT-Creation-Date: 2003-02-22 15:34-0800\n" +"PO-Revision-Date: 2003-11-25 00:31+09:00\n" "Last-Translator: GOTO Masanori \n" -"Language-Team: Japanese \n" +"Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=EUC-JP\n" "Content-Transfer-Encoding: 8bit\n" -#: 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:275 -msgid "\t\tAttributes : " -msgstr "\t\t°À­ : " - -#: 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: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" +#: sysdeps/generic/siglist.h:29 stdio-common/../sysdeps/unix/siglist.c:27 +msgid "Hangup" +msgstr "¥Ï¥ó¥°¥¢¥Ã¥×" -#: sunrpc/rpc_main.c:1432 -#, c-format -msgid "\t%s [-n netid]* [-o outfile] [infile]\n" -msgstr "\t%s [-n netid]* [-o ½ÐÎÏ¥Õ¥¡¥¤¥ë] [ÆþÎÏ¥Õ¥¡¥¤¥ë]\n" +#: sysdeps/generic/siglist.h:30 stdio-common/../sysdeps/unix/siglist.c:28 +msgid "Interrupt" +msgstr "³ä¤ê¹þ¤ß" -#: sunrpc/rpc_main.c:1431 -#, c-format -msgid "\t%s [-s nettype]* [-o outfile] [infile]\n" -msgstr "\t%s [-s ¥Í¥Ã¥È¥¿¥¤¥×]* [-o ½ÐÎÏ¥Õ¥¡¥¤¥ë] [ÆþÎÏ¥Õ¥¡¥¤¥ë]\n" +#: sysdeps/generic/siglist.h:31 stdio-common/../sysdeps/unix/siglist.c:29 +msgid "Quit" +msgstr "½ªÎ»" -#: nis/nis_print.c:239 -msgid "\tAccess rights: " -msgstr "\t¥¢¥¯¥»¥¹¸¢¸Â : " +#: sysdeps/generic/siglist.h:32 stdio-common/../sysdeps/unix/siglist.c:30 +msgid "Illegal instruction" +msgstr "ÉÔÀµ¤ÊÌ¿Îá¤Ç¤¹" -#: nis/nis_print.c:297 -#, c-format -msgid "\tEntry data of type %s\n" -msgstr "\t¥¨¥ó¥È¥ê¥Ç¡¼¥¿¤Î·¿ %s\n" +#: sysdeps/generic/siglist.h:33 stdio-common/../sysdeps/unix/siglist.c:31 +msgid "Trace/breakpoint trap" +msgstr "¥È¥ì¡¼¥¹/¥Ö¥ì¥¤¥¯¥Ý¥¤¥ó¥È ¥È¥é¥Ã¥×" -#: nis/nis_print.c:175 -#, c-format -msgid "\tName : %s\n" -msgstr "\t̾Á° : %s\n" +#: sysdeps/generic/siglist.h:34 +msgid "Aborted" +msgstr "¥¢¥Ü¡¼¥È¤·¤Þ¤·¤¿" -#: nis/nis_print.c:176 -msgid "\tPublic Key : " -msgstr "\t¸ø³«¸° : " +#: sysdeps/generic/siglist.h:35 stdio-common/../sysdeps/unix/siglist.c:34 +msgid "Floating point exception" +msgstr "ÉâÆ°¾®¿ôÅÀ±é»»Îã³°¤Ç¤¹" -#: nis/nis_print.c:238 -#, c-format -msgid "\tType : %s\n" -msgstr "\t·¿ : %s\n" +#: sysdeps/generic/siglist.h:36 stdio-common/../sysdeps/unix/siglist.c:35 +msgid "Killed" +msgstr "¶¯À©½ªÎ»" -#: nis/nis_print.c:205 -#, c-format -msgid "\tUniversal addresses (%u)\n" -msgstr "\t¥æ¥Ë¥Ð¡¼¥µ¥ë¥¢¥É¥ì¥¹ (%u)\n" +#: sysdeps/generic/siglist.h:37 stdio-common/../sysdeps/unix/siglist.c:36 +msgid "Bus error" +msgstr "¥Ð¥¹¥¨¥é¡¼" -#: nis/nis_print.c:273 -#, c-format -msgid "\t[%d]\tName : %s\n" -msgstr "\t[%d]\t̾Á° : %s\n" +#: sysdeps/generic/siglist.h:38 stdio-common/../sysdeps/unix/siglist.c:37 +msgid "Segmentation fault" +msgstr "¥»¥°¥á¥ó¥Æ¡¼¥·¥ç¥ó°ãÈ¿¤Ç¤¹" -#: nis/nis_print.c:300 -#, c-format -msgid "\t[%u] - [%u bytes] " -msgstr "\t[%u] - [%u¥Ð¥¤¥È] " +#. TRANS Broken pipe; there is no process reading from the other end of a pipe. +#. TRANS Every library function that returns this error code also generates a +#. TRANS @code{SIGPIPE} signal; this signal terminates the program if not handled +#. TRANS or blocked. Thus, your program will never actually see @code{EPIPE} +#. TRANS unless it has handled or blocked @code{SIGPIPE}. +#: sysdeps/generic/siglist.h:39 stdio-common/../sysdeps/gnu/errlist.c:351 +#: stdio-common/../sysdeps/unix/siglist.c:39 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:62 +msgid "Broken pipe" +msgstr "¥Ñ¥¤¥×¤¬ÀÚÃǤµ¤ì¤Þ¤·¤¿" -#: nscd/nscd_stat.c:154 -#, c-format -msgid "" -"\n" -"%s cache:\n" -"\n" -"%15s cache is enabled\n" -"%15Zd suggested size\n" -"%15ld seconds time to live for positive entries\n" -"%15ld seconds time to live for negative entries\n" -"%15ld cache hits on positive entries\n" -"%15ld cache hits on negative entries\n" -"%15ld cache misses on positive entries\n" -"%15ld cache misses on negative entries\n" -"%15ld%% cache hit rate\n" -"%15s check /etc/%s for changes\n" -msgstr "" -"\n" -"%s ¥­¥ã¥Ã¥·¥å:\n" -"\n" -"%15s ¥­¥ã¥Ã¥·¥å¤ÏÍ­¸ú\n" -"%15Zd ¿ä¾©¤µ¤ì¤Æ¤¤¤ë¥µ¥¤¥º\n" -"%15ld ¥Ý¥¸¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤¬Í­¸ú¤ÊÉÿô\n" -"%15ld ¥Í¥¬¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤¬Í­¸ú¤ÊÉÿô\n" -"%15ld ¥Ý¥¸¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤Î¥­¥ã¥Ã¥·¥å¥Ò¥Ã¥È¿ô\n" -"%15ld ¥Í¥¬¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤Î¥­¥ã¥Ã¥·¥å¥Ò¥Ã¥È¿ô\n" -"%15ld ¥Ý¥¸¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤Î¥­¥ã¥Ã¥·¥å¥ß¥¹¿ô\n" -"%15ld ¥Í¥¬¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤Î¥­¥ã¥Ã¥·¥å¥ß¥¹¿ô\n" -"%15ld%% ¥­¥ã¥Ã¥·¥å¤Î¥Ò¥Ã¥ÈΨ\n" -"%15s /etc/%s¤ÎÊѹ¹¤ò¥Á¥§¥Ã¥¯¤¹¤ë\n" +#: sysdeps/generic/siglist.h:40 stdio-common/../sysdeps/unix/siglist.c:40 +msgid "Alarm clock" +msgstr "¥¢¥é¡¼¥à¥¯¥í¥Ã¥¯" -#: nis/nis_print.c:255 -msgid "\nGroup Members :\n" -msgstr "\n¥°¥ë¡¼¥×¥á¥ó¥Ð :\n" +#: sysdeps/generic/siglist.h:41 stdio-common/../sysdeps/unix/siglist.c:41 +msgid "Terminated" +msgstr "½ªÎ»¤·¤Þ¤·¤¿" -#: nis/nis_print.c:326 -msgid "\nTime to Live : " -msgstr "\nÀ¸Â¸»þ´Ö : " +#: sysdeps/generic/siglist.h:42 stdio-common/../sysdeps/unix/siglist.c:42 +msgid "Urgent I/O condition" +msgstr "¶ÛµÞ¤ÎI/O¾õ¶·¤Ç¤¹" -#: sunrpc/rpcinfo.c:679 -msgid " rpcinfo -b prognum versnum\n" -msgstr " rpcinfo -b prognum versnum\n" +#: sysdeps/generic/siglist.h:43 stdio-common/../sysdeps/unix/siglist.c:43 +msgid "Stopped (signal)" +msgstr "Ää»ß¤·¤Þ¤·¤¿ (¥·¥°¥Ê¥ë)" -#: sunrpc/rpcinfo.c:680 -msgid " rpcinfo -d prognum versnum\n" -msgstr " rpcinfo -d prognum versnum\n" +#: sysdeps/generic/siglist.h:44 stdio-common/../sysdeps/unix/siglist.c:44 +msgid "Stopped" +msgstr "Ää»ß¤·¤Þ¤·¤¿" -#: sunrpc/rpcinfo.c:678 -msgid " rpcinfo -p [ host ]\n" -msgstr " rpcinfo -p [ ¥Û¥¹¥È ]\n" +#: sysdeps/generic/siglist.h:45 stdio-common/../sysdeps/unix/siglist.c:45 +msgid "Continued" +msgstr "·Ñ³" -#: sunrpc/rpcinfo.c:676 -msgid " rpcinfo [ -n portnum ] -t host prognum [ versnum ]\n" -msgstr " rpcinfo [ -n portnum ] -t ¥Û¥¹¥È prognum [ versnum ]\n" +#: sysdeps/generic/siglist.h:46 stdio-common/../sysdeps/unix/siglist.c:46 +msgid "Child exited" +msgstr "»Ò¥×¥í¥»¥¹¤¬½ªÎ»¤·¤Þ¤·¤¿" -#: nscd/nscd_stat.c:146 nscd/nscd_stat.c:148 -msgid " no" -msgstr " ¤¤¤¤¤¨" +#: sysdeps/generic/siglist.h:47 stdio-common/../sysdeps/unix/siglist.c:47 +msgid "Stopped (tty input)" +msgstr "Ää»ß¤·¤Þ¤·¤¿ (üËöÆþÎÏ)" -#: nscd/nscd_stat.c:146 nscd/nscd_stat.c:148 -msgid " yes" -msgstr " ¤Ï¤¤" +#: sysdeps/generic/siglist.h:48 stdio-common/../sysdeps/unix/siglist.c:48 +msgid "Stopped (tty output)" +msgstr "Ää»ß¤·¤Þ¤·¤¿ (üËö½ÐÎÏ)" -#: nis/nis_print.c:352 -#, c-format -msgid " Data Length = %u\n" -msgstr " ¥Ç¡¼¥¿Ä¹ = %u\n" +#: sysdeps/generic/siglist.h:49 stdio-common/../sysdeps/unix/siglist.c:49 +msgid "I/O possible" +msgstr "I/O²Äǽ¤Ç¤¹" -#: nis/nis_print_group_entry.c:123 -msgid " Explicit members:\n" -msgstr " ÌÀ¼¨Åª¥á¥ó¥Ð:\n" +#: sysdeps/generic/siglist.h:50 stdio-common/../sysdeps/unix/siglist.c:50 +msgid "CPU time limit exceeded" +msgstr "CPU»þ´ÖÀ©¸Â¤òĶ²á¤·¤Þ¤·¤¿" -#: nis/nis_print_group_entry.c:147 nis/nis_print_group_entry.c:163 -msgid " Explicit nonmembers:\n" -msgstr " ÌÀ¼¨ÅªÈó¥á¥ó¥Ð:\n" +#: sysdeps/generic/siglist.h:51 stdio-common/../sysdeps/unix/siglist.c:51 +msgid "File size limit exceeded" +msgstr "¥Õ¥¡¥¤¥ë¥µ¥¤¥ºÀ©¸Â¤òĶ²á¤·¤Þ¤·¤¿" -#: nis/nis_print_group_entry.c:131 -msgid " Implicit members:\n" -msgstr " °ÅÌÛŪ¥á¥ó¥Ð:\n" +#: sysdeps/generic/siglist.h:52 stdio-common/../sysdeps/unix/siglist.c:52 +msgid "Virtual timer expired" +msgstr "²¾ÁÛ¥¿¥¤¥Þ¤¬½ªÎ»¤·¤Þ¤·¤¿" -#: nis/nis_print_group_entry.c:155 -msgid " Implicit nonmembers:\n" -msgstr " °ÅÌÛŪÈó¥á¥ó¥Ð:\n" +#: sysdeps/generic/siglist.h:53 stdio-common/../sysdeps/unix/siglist.c:53 +msgid "Profiling timer expired" +msgstr "¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¥¿¥¤¥Þ¤¬ÇË´þ¤µ¤ì¤Þ¤·¤¿" -#: nis/nis_print_group_entry.c:128 -msgid " No explicit members\n" -msgstr " ÈóÌÀ¼¨Åª¥á¥ó¥Ð\n" +#: sysdeps/generic/siglist.h:54 stdio-common/../sysdeps/unix/siglist.c:54 +msgid "Window changed" +msgstr "¥¦¥£¥ó¥É¥¦¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿" -#: nis/nis_print_group_entry.c:152 -msgid " No explicit nonmembers\n" -msgstr " ÈóÌÀ¼¨ÅªÈó¥á¥ó¥Ð\n" +#: sysdeps/generic/siglist.h:55 stdio-common/../sysdeps/unix/siglist.c:56 +msgid "User defined signal 1" +msgstr "¥æ¡¼¥¶ÄêµÁ¥·¥°¥Ê¥ë 1" -#: nis/nis_print_group_entry.c:136 -msgid " No implicit members\n" -msgstr " Èó°ÅÌÛŪ¥á¥ó¥Ð\n" +#: sysdeps/generic/siglist.h:56 stdio-common/../sysdeps/unix/siglist.c:57 +msgid "User defined signal 2" +msgstr "¥æ¡¼¥¶ÄêµÁ¥·¥°¥Ê¥ë 2" -#: nis/nis_print_group_entry.c:160 -msgid " No implicit nonmembers\n" -msgstr " Èó°ÅÌÛŪÈó¥á¥ó¥Ð\n" +#: sysdeps/generic/siglist.h:60 stdio-common/../sysdeps/unix/siglist.c:33 +msgid "EMT trap" +msgstr "EMT ¥È¥é¥Ã¥×" -#: nis/nis_print_group_entry.c:144 -msgid " No recursive members\n" -msgstr " ÈóºÆµ¢Åª¥á¥ó¥Ð\n" +#: sysdeps/generic/siglist.h:63 stdio-common/../sysdeps/unix/siglist.c:38 +msgid "Bad system call" +msgstr "ÉÔÀµ¤Ê¥·¥¹¥Æ¥à¥³¡¼¥ë¤Ç¤¹" -#: nis/nis_print_group_entry.c:168 -msgid " No recursive nonmembers\n" -msgstr " ÈóºÆµ¢ÅªÈó¥á¥ó¥Ð\n" +#: sysdeps/generic/siglist.h:66 +msgid "Stack fault" +msgstr "¥¹¥¿¥Ã¥¯¼ºÇÔ" -#: nis/nis_print_group_entry.c:139 -msgid " Recursive members:\n" -msgstr " ºÆµ¢Åª¥á¥ó¥Ð:\n" +#: sysdeps/generic/siglist.h:69 +msgid "Information request" +msgstr "¾ðÊóÍ×µá" -#: sunrpc/rpcinfo.c:574 -msgid " program vers proto port\n" -msgstr " ¥×¥í¥°¥é¥à ¥Ð¡¼¥¸¥ç¥ó ¥×¥í¥È¥³¥ë ¥Ý¡¼¥È\n" +#: sysdeps/generic/siglist.h:71 +msgid "Power failure" +msgstr "ÅŸ»¸Î¾ã" -#: argp/argp-help.c:1572 -msgid " or: " -msgstr " Ëô¤Ï: " +#: sysdeps/generic/siglist.h:74 stdio-common/../sysdeps/unix/siglist.c:55 +msgid "Resource lost" +msgstr "¥ê¥½¡¼¥¹¤¬¼º¤ï¤ì¤Þ¤·¤¿" -#: elf/ldconfig.c:457 -msgid " (SKIPPED)\n" -msgstr " (¥¹¥­¥Ã¥×)\n" +#: sysdeps/mach/hurd/mips/dl-machine.c:68 +#: string/../sysdeps/mach/_strerror.c:57 +msgid "Error in unknown error system: " +msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼¥·¥¹¥Æ¥à¤Ç¤Î¥¨¥é¡¼:" -#: elf/ldconfig.c:455 -msgid " (changed)\n" -msgstr " (Êѹ¹)\n" +#: sysdeps/mach/hurd/mips/dl-machine.c:83 +#: string/../sysdeps/generic/_strerror.c:44 +#: string/../sysdeps/mach/_strerror.c:87 +msgid "Unknown error " +msgstr "̤ÃΤΥ¨¥é¡¼ " -#: timezone/zic.c:427 +#: sysdeps/unix/sysv/linux/lddlibc4.c:64 #, c-format -msgid " (rule from \"%s\", line %d)" -msgstr " (\"%s\"¤«¤é¤Îµ¬Â§, %d¹Ô)" - -#: argp/argp-help.c:1584 -msgid " [OPTION...]" -msgstr " [¥ª¥×¥·¥ç¥ó...]" +msgid "cannot open `%s'" +msgstr "`%s'¤ò³«¤±¤Þ¤»¤ó" -#: timezone/zic.c:424 +#: sysdeps/unix/sysv/linux/lddlibc4.c:68 #, c-format -msgid "\"%s\", line %d: %s" -msgstr "\"%s\", %d¹Ô: %s" +msgid "cannot read header from `%s'" +msgstr "`%s'¤Î¥Ø¥Ã¥À¤òÆɤá¤Þ¤»¤ó" -#: timezone/zic.c:989 +#: iconv/iconv_charmap.c:159 iconv/iconv_prog.c:293 catgets/gencat.c:288 #, c-format -msgid "\"Zone %s\" line and -l option are mutually exclusive" -msgstr "\"Zone %s\"¹Ô¤È -l ¥ª¥×¥·¥ç¥ó¤ÏƱ»þ»ØÄê¤Ç¤­¤Þ¤»¤ó" +msgid "cannot open input file `%s'" +msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë`%s'¤ò³«¤±¤Þ¤»¤ó" -#: timezone/zic.c:997 +#: iconv/iconv_charmap.c:177 iconv/iconv_prog.c:311 #, c-format -msgid "\"Zone %s\" line and -p option are mutually exclusive" -msgstr "\"Zone %s\"¹Ô¤È -p ¥ª¥×¥·¥ç¥ó¤ÏƱ»þ»ØÄê¤Ç¤­¤Þ¤»¤ó" - -#: sunrpc/rpc_main.c:1412 -msgid "\"infile\" is required for template generation flags.\n" -msgstr "¥Æ¥ó¥×¥ì¡¼¥ÈÀ¸À®¥Õ¥é¥°¤Ë¤Ï\"ÆþÎÏ¥Õ¥¡¥¤¥ë\"¤¬É¬ÍפǤ¹.\n" +msgid "error while closing input `%s'" +msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë `%s' ¤òÊĤ¸¤Æ¤¤¤ë´Ö¤Î¥¨¥é¡¼" -#: argp/argp-help.c:209 +#: iconv/iconv_charmap.c:443 #, c-format -msgid "%.*s: ARGP_HELP_FMT parameter requires a value" -msgstr "%.*s: ARGP_HELP_FMT ¥Ñ¥é¥á¡¼¥¿¤Ë¤ÏÃͤ¬É¬ÍפǤ¹" +msgid "illegal input sequence at position %Zd" +msgstr "°ÌÃÖ %Zd ¤ÇÉÔÀµ¤ÊÆþÎÏ¥·¡¼¥±¥ó¥¹¤¬¤¢¤ê¤Þ¤·¤¿" -#: argp/argp-help.c:218 -#, c-format -msgid "%.*s: Unknown ARGP_HELP_FMT parameter" -msgstr "%.*s: ÉÔÌÀ¤Ê ARGP_HELP_FMT ¥Ñ¥é¥á¡¼¥¿" +#: iconv/iconv_charmap.c:462 iconv/iconv_prog.c:503 +msgid "incomplete character or shift sequence at end of buffer" +msgstr "¥Ð¥Ã¥Õ¥¡¤ÎºÇ¸å¤Ç¤Î°ìÃפ·¤Ê¤¤Ê¸»ú¤Þ¤¿¤Ï¥·¥Õ¥È¥·¡¼¥±¥ó¥¹¤Ç¤¹" -#: 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' ¤Ç½ª¤Ã¤Æ¤¤¤Þ¤»¤ó" +#: iconv/iconv_charmap.c:507 iconv/iconv_charmap.c:543 iconv/iconv_prog.c:546 +#: iconv/iconv_prog.c:582 +msgid "error while reading the input" +msgstr "ÆþÎÏÆɤ߹þ¤ßÃæ¤Î¥¨¥é¡¼" -#: elf/cache.c:190 elf/cache.c:200 -#, c-format -msgid "%d libs found in cache `%s'\n" -msgstr "%d ¥é¥¤¥Ö¥é¥ê¤¬¥­¥ã¥Ã¥·¥å `%s ¤Ç¸«¤Ä¤«¤ê¤Þ¤·¤¿\n" +#: iconv/iconv_charmap.c:525 iconv/iconv_prog.c:564 +msgid "unable to allocate buffer for input" +msgstr "ÆþÎÏÍѥХåե¡¤ò³ä¤êÅö¤Æ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó" -#: timezone/zic.c:799 -#, c-format -msgid "%s in ruleless zone" -msgstr "%s in ruleless zone" +#: iconv/iconv_prog.c:61 +msgid "Input/Output format specification:" +msgstr "ÆþÎÏ/½ÐÎÏ¥Õ¥©¡¼¥Þ¥Ã¥È¤Î»ÅÍÍ:" -#: elf/../sysdeps/generic/readelflib.c:67 -#, c-format -msgid "%s is a 32 bit ELF file.\n" -msgstr "%s ¤Ï32¥Ó¥Ã¥ÈELF¥Õ¥¡¥¤¥ë¤Ç¤¹.\n" +#: iconv/iconv_prog.c:62 +msgid "encoding of original text" +msgstr "¸µ¤Î¥Æ¥­¥¹¥È¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°" -#: elf/../sysdeps/generic/readelflib.c:69 -#, c-format -msgid "%s is a 64 bit ELF file.\n" -msgstr "%s ¤Ï64¥Ó¥Ã¥ÈELF¥Õ¥¡¥¤¥ë¤Ç¤¹.\n" +#: iconv/iconv_prog.c:63 +msgid "encoding for output" +msgstr "½ÐÎÏ»þ¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°" -#: elf/../sysdeps/unix/sysv/linux/i386/readelflib.c:49 -#, c-format -msgid "%s is for unknown machine %d.\n" -msgstr "%s ¤Ï̤ÃΤΥޥ·¥ó %d ¤ËÂФ¹¤ë¤â¤Î¤Ç¤¹.\n" +#: iconv/iconv_prog.c:64 +msgid "Information:" +msgstr "¾ðÊó:" -#: elf/ldconfig.c:326 -#, c-format -msgid "%s is not a known library type" -msgstr "%s ¤Ï̤ÃΤΥ饤¥Ö¥é¥ê¥¿¥¤¥×¤Ç¤¹" +#: iconv/iconv_prog.c:65 +msgid "list all known coded character sets" +msgstr "´ûÃΤÎÁ´¥­¥ã¥é¥¯¥¿¥»¥Ã¥È¤òɽ¼¨¤¹¤ë" -#: elf/../sysdeps/generic/readelflib.c:78 -#, c-format -msgid "%s is not a shared object file (Type: %d).\n" -msgstr "%s ¤Ï¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó (¥¿¥¤¥×: %d).\n" +#: iconv/iconv_prog.c:66 locale/programs/localedef.c:128 +msgid "Output control:" +msgstr "½ÐÎÏÀ©¸æ:" -#: elf/ldconfig.c:424 -#, c-format -msgid "%s is not a symbolic link\n" -msgstr "%s ¤Ï¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" +#: iconv/iconv_prog.c:67 +msgid "omit invalid characters from output" +msgstr "½ÐÎϤ«¤éÉÔÀµ¤Êʸ»ú¤òÈ´¤«¤·¤Þ¤·¤¿" -#: 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¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó - ´Ö°ã¤Ã¤¿magic¥Ð¥¤¥È¤ò¥Õ¥¡¥¤¥ë¤ÎÀèƬ¤Ë»ý¤Ã¤Æ¤¤¤Þ¤¹.\n" +#: iconv/iconv_prog.c:68 +msgid "output file" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë" -#: assert/assert.c:52 -#, c-format -msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" -msgstr "%s%s%s:%u: %s%sAssertion `%s' ¤¬¼ºÇÔ¤·¤Þ¤·¤¿.\n" +#: iconv/iconv_prog.c:69 +msgid "suppress warnings" +msgstr "·Ù¹ð¤ÎÍÞÀ©" -#: assert/assert-perr.c:54 -#, c-format -msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n" -msgstr "%s%s%s:%u: %s%sͽ´ü¤·¤Ê¤¤¥¨¥é¡¼: %s.\n" +#: iconv/iconv_prog.c:70 +msgid "print progress information" +msgstr "·Ð²á¾ðÊó¤Îɽ¼¨" -#: stdio-common/psignal.c:48 -#, c-format -msgid "%s%sUnknown signal %d\n" -msgstr "%s%s̤ÃΤΥ·¥°¥Ê¥ë %d ¤Ç¤¹\n" +#: iconv/iconv_prog.c:75 +msgid "Convert encoding of given files from one encoding to another." +msgstr "Í¿¤¨¤é¤ì¤¿¥Õ¥¡¥¤¥ë¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤òÊÑ´¹¤¹¤ë." -#: timezone/zic.c:2234 -#, c-format -msgid "%s: %d did not sign extend correctly\n" -msgstr "%s: %d ¤ÏÀµ¤·¤¯µ­¹æ¤ò³ÈÄ¥¤·¤Þ¤»¤ó¤Ç¤·¤¿\n" +#: iconv/iconv_prog.c:79 +msgid "[FILE...]" +msgstr "[¥Õ¥¡¥¤¥ë...]" -#: locale/programs/charmap.c:331 -#, c-format -msgid "%s: must be greater than \n" -msgstr "%s: ¤Ï¤è¤êÂ礭¤¯¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" +#: iconv/iconv_prog.c:199 +msgid "cannot open output file" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó" -#: sunrpc/rpc_main.c:423 +#: iconv/iconv_prog.c:241 #, c-format -msgid "%s: C preprocessor failed with exit code %d\n" -msgstr "%s: C ¥×¥ê¥×¥í¥»¥Ã¥µ¤Ï½ªÎ»¥³¡¼¥É %d ¤Ç¼ºÇÔ¤·¤Þ¤·¤¿\n" +msgid "conversion from `%s' and to `%s' are not supported" +msgstr "`%s'¤«¤é¤ÎÊÑ´¹¤È`%s'¤Ø¤ÎÊÑ´¹¤Ï¤É¤Á¤é¤â¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: sunrpc/rpc_main.c:420 +#: iconv/iconv_prog.c:246 #, c-format -msgid "%s: C preprocessor failed with signal %d\n" -msgstr "%s: C ¥×¥ê¥×¥í¥»¥Ã¥µ¤Ï¥·¥°¥Ê¥ë %d ¤Ç¼ºÇÔ¤·¤Þ¤·¤¿\n" +msgid "conversion from `%s' is not supported" +msgstr "`%s'¤«¤é¤ÎÊÑ´¹¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: timezone/zic.c:1500 +#: iconv/iconv_prog.c:253 #, c-format -msgid "%s: Can't create %s: %s\n" -msgstr "%s: %s¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n" +msgid "conversion to `%s' is not supported" +msgstr "`%s'¤Ø¤ÎÊÑ´¹¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: timezone/zic.c:2212 +#: iconv/iconv_prog.c:257 #, c-format -msgid "%s: Can't create directory %s: %s\n" -msgstr "%s: ¥Ç¥£¥ì¥¯¥È¥ê%s¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n" +msgid "conversion from `%s' to `%s' is not supported" +msgstr "`%s'¤«¤é`%s'¤Ø¤ÎÊÑ´¹¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: timezone/zic.c:651 -#, c-format -msgid "%s: Can't link from %s to %s: %s\n" -msgstr "%s: %s¤«¤é%s¤Ø¥ê¥ó¥¯¤òÄ¥¤ì¤Þ¤»¤ó: %s\n" +#: iconv/iconv_prog.c:263 +msgid "failed to start conversion processing" +msgstr "ÊÑ´¹½èÍý¤Î³«»Ï¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: timezone/zic.c:825 -#, c-format -msgid "%s: Can't open %s: %s\n" -msgstr "%s: %s¤ò³«¤±¤Þ¤»¤ó: %s\n" +#: iconv/iconv_prog.c:358 +msgid "error while closing output file" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤òÊĤ¸¤Æ¤¤¤ë´Ö¤Î¥¨¥é¡¼" -#: timezone/zic.c:1490 -#, c-format -msgid "%s: Can't remove %s: %s\n" -msgstr "%s: %s¤òºï½ü¤Ç¤­¤Þ¤»¤ó: %s\n" +#: iconv/iconv_prog.c:407 iconv/iconvconfig.c:357 locale/programs/locale.c:274 +#: locale/programs/localedef.c:372 catgets/gencat.c:233 +#: malloc/memusagestat.c:602 debug/pcprofiledump.c:199 +msgid "Report bugs using the `glibcbug' script to .\n" +msgstr "¥Ð¥°¤Ï¥¹¥¯¥ê¥×¥È`glibcbug'¤òÍѤ¤¤Æ¤Þ¤ÇÊó¹ð¤·¤Æ¤¯¤À¤µ¤¤.\n" -#: timezone/zic.c:636 +#: iconv/iconv_prog.c:421 iconv/iconvconfig.c:371 locale/programs/locale.c:287 +#: locale/programs/localedef.c:386 catgets/gencat.c:246 posix/getconf.c:910 +#: nss/getent.c:74 nscd/nscd.c:330 nscd/nscd_nischeck.c:90 elf/ldconfig.c:271 +#: elf/sprof.c:349 #, c-format -msgid "%s: Can't unlink %s: %s\n" -msgstr "%s: %s¤ò¥¢¥ó¥ê¥ó¥¯¤Ç¤­¤Þ¤»¤ó: %s\n" +msgid "" +"Copyright (C) %s Free Software Foundation, Inc.\n" +"This is free software; see the source for copying conditions. There is NO\n" +"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +msgstr "" +"Copyright (C) %s Free Software Foundation, Inc.\n" +"This is free software; see the source for copying conditions. There is NO\n" +"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +"¤³¤ì¤Ï¥Õ¥ê¡¼¥½¥Õ¥È¥¦¥§¥¢¤Ç¤¹¡£ÍøÍѵöÂú¤Ë¤Ä¤¤¤Æ¤Ï¥½¡¼¥¹¤ò¤´Í÷¤¯¤À¤µ¤¤¡£\n" +"¾¦¶ÈÀ­¤äÆÃÄê¤ÎÌÜŪ¤Ø¤ÎŬ¹çÀ­¤ÎÇ¡²¿¤Ë´Ø¤ï¤é¤º¡¢ÌµÊݾڤǤ¹¡£ \n" -#: timezone/zic.c:894 +#: iconv/iconv_prog.c:426 iconv/iconvconfig.c:376 locale/programs/locale.c:292 +#: locale/programs/localedef.c:391 catgets/gencat.c:251 posix/getconf.c:915 +#: nss/getent.c:79 nscd/nscd.c:335 nscd/nscd_nischeck.c:95 elf/ldconfig.c:276 +#: elf/sprof.c:355 #, c-format -msgid "%s: Error closing %s: %s\n" -msgstr "%s: %s¤ò¥¯¥í¡¼¥ºÃæ¤Ë¥¨¥é¡¼: %s\n" +msgid "Written by %s.\n" +msgstr "%s¤Ë¤è¤ë½ñ¤­¹þ¤ß.\n" -#: timezone/zic.c:887 -#, c-format -msgid "%s: Error reading %s\n" -msgstr "%s: %s¤ÎÆɤ߹þ¤ß¥¨¥é¡¼\n" +#: iconv/iconv_prog.c:456 iconv/iconv_prog.c:482 +msgid "conversion stopped due to problem in writing the output" +msgstr "½ÐÎϽñ¤­½Ð¤·Ãæ¤ËÌäÂ꤬¤¢¤Ã¤¿¤¿¤áÊÑ´¹¤òÃæ»ß¤·¤Þ¤·¤¿" -#: timezone/zic.c:1566 +#: iconv/iconv_prog.c:499 #, c-format -msgid "%s: Error writing %s\n" -msgstr "%s: %s¤Î½ñ¤­¹þ¤ß¥¨¥é¡¼¤Ç¤¹\n" +msgid "illegal input sequence at position %ld" +msgstr "°ÌÃÖ %ld ¤ÇÉÔÀµ¤ÊÆþÎÏ¥·¡¼¥±¥ó¥¹¤¬¤¢¤ê¤Þ¤·¤¿" -#: timezone/zic.c:872 -#, c-format -msgid "%s: Leap line in non leap seconds file %s\n" -msgstr "%s: ±¼ÉÃ¥Õ¥¡¥¤¥ë¤Ç¤Ê¤¤¥Õ¥¡¥¤¥ë %s ¤Ë Leap ¹Ô¤¬¤¢¤ê¤Þ¤¹\n" +#: iconv/iconv_prog.c:507 +msgid "internal error (illegal descriptor)" +msgstr "ÆâÉô¥¨¥é¡¼ (ÉÔÀµ¤Êµ­½Ò»Ò¤Ç¤¹)" -#: timezone/zic.c:365 +#: iconv/iconv_prog.c:510 #, c-format -msgid "%s: Memory exhausted: %s\n" -msgstr "%s: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó: %s\n" +msgid "unknown iconv() error %d" +msgstr "ÉÔÌÀ¤Ê iconv() ¥¨¥é¡¼ %d" -#: timezone/zic.c:531 -#, c-format -msgid "%s: More than one -L option specified\n" -msgstr "%s: -L ¥ª¥×¥·¥ç¥ó¤¬Ê£¿ô»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹\n" +#: iconv/iconv_prog.c:753 +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" +"the FROM and TO command line parameters. One coded character set can be\n" +"listed with several different names (aliases).\n" +"\n" +" " +msgstr "" +"°Ê²¼¤Î¥ê¥¹¥È¤Ë¤Ï¡¢ÃΤé¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î¥­¥ã¥é¥¯¥¿¥³¡¼¥É¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹.\n" +"¤³¤ì¤Ï¡¢¤³¤ì¤é¤Î̾Á°¤Ï¥³¥Þ¥ó¥É¥é¥¤¥ó¥Ñ¥é¥á¡¼¥¿¤ÎFROM¤ÈTO¤Ç»È¤ï¤ì¤ëÁ´¤Æ¤Î\n" +"Áȹ礻¤ò°ÕÌ£¤·¤Æ¤¤¤ë¤ï¤±¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó. ¤¢¤ë¥­¥ã¥é¥¯¥¿¥»¥Ã¥È¤Ï¡¢\n" +"¤¤¤¯¤Ä¤«¤Î°Û¤Ê¤ë̾Á°(¥¨¥¤¥ê¥¢¥¹)¤È¶¦¤Ë¥ê¥¹¥È¤µ¤ì¤Þ¤¹.\n" +"\n" +" " -#: timezone/zic.c:491 -#, c-format -msgid "%s: More than one -d option specified\n" -msgstr "%s: -d ¥ª¥×¥·¥ç¥ó¤¬Ê£¿ô»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹\n" +#: iconv/iconvconfig.c:110 +msgid "Create fastloading iconv module configuration file." +msgstr "¹â®Æɹþ¤ßÍÑ iconv ¥â¥¸¥å¡¼¥ëÀßÄê¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹." -#: timezone/zic.c:501 -#, c-format -msgid "%s: More than one -l option specified\n" -msgstr "%s: -l ¥ª¥×¥·¥ç¥ó¤¬Ê£¿ô»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹\n" +#: iconv/iconvconfig.c:114 +msgid "[DIR...]" +msgstr "[¥Ç¥£¥ì¥¯¥È¥ê...]" -#: timezone/zic.c:511 -#, c-format -msgid "%s: More than one -p option specified\n" -msgstr "%s: -p ¥ª¥×¥·¥ç¥ó¤¬Ê£¿ô»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹\n" +#: iconv/iconvconfig.c:126 +msgid "Prefix used for all file accesses" +msgstr "Á´¥Õ¥¡¥¤¥ë¤Î¥¢¥¯¥»¥¹¤Ë¥×¥ì¥Õ¥£¥Ã¥¯¥¹¤ò»ÈÍѤ·¤Þ¤¹" -#: timezone/zic.c:521 -#, c-format -msgid "%s: More than one -y option specified\n" -msgstr "%s: -y ¥ª¥×¥·¥ç¥ó¤¬Ê£¿ô»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹\n" +#: iconv/iconvconfig.c:327 locale/programs/localedef.c:292 +msgid "no output file produced because warning were issued" +msgstr "·Ù¹ð¤¬½Ð¤µ¤ì¤¿¤¿¤á¥Õ¥¡¥¤¥ë¤Ë½ÐÎϤµ¤ì¤Þ¤»¤ó¤Ç¤·¤¿" -#: argp/argp-parse.c:646 -#, c-format -msgid "%s: Too many arguments\n" -msgstr "%s: °ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹\n" +#: iconv/iconvconfig.c:405 +msgid "while inserting in search tree" +msgstr "¸¡º÷ÌÚ¤ØÁÞÆþÃæ¤Ç¤¹" -#: locale/programs/ld-collate.c:457 locale/programs/ld-collate.c:483 -#: locale/programs/ld-collate.c:499 -#, c-format -msgid "%s: `%s' mentioned more than once in definition of weight %d" -msgstr "%s: `%s'¤Ï½Å¤ßÄêµÁ %d Ãæ¤ÇÊ£¿ô²ó»È¤ï¤ì¤Æ¤¤¤Þ¤¹" +#: iconv/iconvconfig.c:1204 +msgid "cannot generate output file" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤òÀ¸À®¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:1336 +#: locale/programs/charmap-dir.c:59 #, c-format -msgid "%s: `%s' must be a character" -msgstr "%s: `%s'¤Ïñ°ì¤Î¥­¥ã¥é¥¯¥¿¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" +msgid "cannot read character map directory `%s'" +msgstr "¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê`%s'¤òÆɤ߹þ¤á¤Þ¤»¤ó" -#: locale/programs/ld-address.c:248 locale/programs/ld-address.c:276 -#: locale/programs/ld-address.c:309 locale/programs/ld-address.c:321 +#: locale/programs/charmap.c:135 #, c-format -msgid "%s: `%s' value does not match `%s' value" -msgstr "%s: `%s'ÃͤÏ`%s'¤ÎÃͤ˥ޥåÁ¤·¤Þ¤»¤ó" +msgid "character map file `%s' not found" +msgstr "¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¥Õ¥¡¥¤¥ë `%s' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: locale/programs/ld-monetary.c:837 locale/programs/ld-numeric.c:318 +#: locale/programs/charmap.c:193 #, c-format -msgid "%s: `-1' must be last entry in `%s' field" -msgstr "%s: `-1'¤Ï`%s'¥Õ¥£¡¼¥ë¥É¤Î¡¢ºÇ¸å¤Î¹àÌܤǤʤ±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" +msgid "default character map file `%s' not found" +msgstr "ɸ½à¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¥Õ¥¡¥¤¥ë`%s'¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:447 locale/programs/ld-collate.c:473 +#: locale/programs/charmap.c:255 #, c-format -msgid "%s: `forward' and `backward' are mutually excluding each other" -msgstr "%s: `forward' ¤È `backward' ¤ÏÇÓ¾Ū¤Ç¤¹" +msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n" +msgstr "¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥× `%s' ¤Ï ASCII ¸ß´¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó, ¥í¥±¡¼¥ë¤Ï ISO C ¤Ë½¾¤Ã¤Æ¤¤¤Þ¤»¤ó\n" -#: locale/programs/ld-collate.c:1528 +#: locale/programs/charmap.c:332 #, c-format -msgid "%s: `position' must be used for a specific level in all sections or none" -msgstr "%s: `position'¤ÏÆÃÄê¥ì¥Ù¥ë¤ËÂФ·¡¢Á´¥»¥¯¥·¥ç¥ó¤Ç»ÈÍѤ«Ì¤»ÈÍѤ«¤Î¤É¤Á¤é¤«¤Ç¤¹" +msgid "%s: must be greater than \n" +msgstr "%s: ¤Ï¤è¤êÂ礭¤¯¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" -#: locale/programs/ld-ctype.c:2637 locale/programs/ld-ctype.c:2777 +#: locale/programs/charmap.c:352 locale/programs/charmap.c:369 +#: locale/programs/repertoire.c:175 #, c-format -msgid "%s: `translit_start' section does not end with `translit_end'" -msgstr "%s: `translit_start' ¥»¥¯¥·¥ç¥ó¤¬ `translit_end' ¤Ç½ª¤Ã¤Æ¤¤¤Þ¤»¤ó" +msgid "syntax error in prolog: %s" +msgstr "prolog Ãæ¤Çʸˡ¥¨¥é¡¼¤Ç¤¹: %s" -#: 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: ¥·¡¼¥±¥ó¥¹Ãæ¤ÎºÇ½é¤Îʸ»ú¤Î¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹¤ÏºÇ¸å¤Îʸ»ú¤Î¤è¤ê¤âlower¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: locale/programs/charmap.c:353 +msgid "invalid definition" +msgstr "ÉÔÀµ¤ÊÄêµÁ¤Ç¤¹" -#: 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/charmap.c:370 locale/programs/locfile.c:126 +#: locale/programs/locfile.c:153 locale/programs/repertoire.c:176 +msgid "bad argument" +msgstr "ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹" -#: locale/programs/ld-collate.c:3663 +#: locale/programs/charmap.c:398 #, c-format -msgid "%s: cannot have `%s' as end of ellipsis range" -msgstr "%s: ¾Êάµ­¹æ¤ÎÈϰϤνª¤ï¤ê¤Ë`%s'¤¬¤¢¤ê¤Þ¤»¤ó" +msgid "duplicate definition of <%s>" +msgstr "<%s> ¤ÎÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-collate.c:3327 +#: locale/programs/charmap.c:405 #, c-format -msgid "%s: cannot reorder after %.*s: symbol not known" -msgstr "%s: %.*s¤Î¸å¤ÇºÆʤÓÂؤ¨¤¬¤Ç¤­¤Þ¤»¤ó: ̤ÃΤΥ·¥ó¥Ü¥ë¤Ç¤¹" +msgid "value for <%s> must be 1 or greater" +msgstr "<%s> ¤ÎÃͤÏ1°Ê¾å¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: 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 +#: locale/programs/charmap.c:417 #, c-format -msgid "%s: character `%s' in charmap not representable with one byte" -msgstr "%s: ¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×Ãæ¤Îʸ»ú`%s'¤Ï1¥Ð¥¤¥È¤Çɽ¸½¤Ç¤­¤Þ¤»¤ó" - -#: 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'¤Ï1¥Ð¥¤¥È¤Çɽ¸½¤Ç¤­¤Þ¤»¤ó" +msgid "value of <%s> must be greater or equal than the value of <%s>" +msgstr "<%s> ¤ÎÃÍ¤Ï <%s> ¤ÎÃͰʾå¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" -#: locale/programs/ld-ctype.c:2907 +#: locale/programs/charmap.c:440 locale/programs/repertoire.c:184 #, c-format -msgid "%s: character `%s' not defined in charmap while needed as default value" -msgstr "%s: ¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×Ãæ¤Çʸ»ú`%s'¤¬Ì¤ÄêµÁ¤Ç¤¹¤¬¥Ç¥Õ¥©¥ë¥ÈÃͤȤ·¤ÆɬÍפǤ¹" +msgid "argument to <%s> must be a single character" +msgstr "°ú¿ô <%s> ¤Ï¥·¥ó¥°¥ë¥­¥ã¥é¥¯¥¿¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" -#: 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'¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¤¬¡¢¥Ç¥Õ¥©¥ë¥ÈÃͤȤ·¤ÆɬÍפǤ¹" +#: locale/programs/charmap.c:466 +msgid "character sets with locking states are not supported" +msgstr "¥í¥Ã¥¯¾õÂÖ¤ò»ý¤Ä¥­¥ã¥é¥¯¥¿½¸¹ç¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: timezone/zic.c:1933 +#: locale/programs/charmap.c:493 locale/programs/charmap.c:547 +#: locale/programs/charmap.c:579 locale/programs/charmap.c:673 +#: locale/programs/charmap.c:728 locale/programs/charmap.c:769 +#: locale/programs/charmap.c:810 #, c-format -msgid "%s: command was '%s', result was %d\n" -msgstr "%s: ¥³¥Þ¥ó¥É¤Ï'%s', ·ë²Ì¤Ï %d¤Ç¤·¤¿\n" +msgid "syntax error in %s definition: %s" +msgstr "%s¤ÎÄêµÁÃæ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹: %s" -#: 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/charmap.c:494 locale/programs/charmap.c:674 +#: locale/programs/charmap.c:770 locale/programs/repertoire.c:231 +msgid "no symbolic name given" +msgstr "¥·¥ó¥Ü¥ë̾¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-time.c:258 -#, c-format -msgid "%s: direction flag in string %Zd in `era' field is not a single character" -msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÆâ¤Îʸ»úÎó %Zd ¤ÎÊý¸þ¥Õ¥é¥°¤¬Ã±°ìʸ»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: locale/programs/charmap.c:548 +msgid "invalid encoding given" +msgstr "ÉÔÀµ¤Ê¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤¬Í¿¤¨¤é¤ì¤Þ¤·¤¿" -#: locale/programs/ld-ctype.c:2729 -#, c-format -msgid "%s: duplicate `default_missing' definition" -msgstr "%s: `default_missing'ÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" +#: locale/programs/charmap.c:557 +msgid "too few bytes in character encoding" +msgstr "ʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°Ãæ¤Ç¤Î¥Ð¥¤¥È¿ô¤¬¾¯¤Ê¤¹¤®¤Þ¤¹" -#: locale/programs/ld-identification.c:431 -#, c-format -msgid "%s: duplicate category version definition" -msgstr "%s: ¥«¥Æ¥´¥ê¥Ð¡¼¥¸¥ç¥ó¤ÎÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" +#: locale/programs/charmap.c:559 +msgid "too many bytes in character encoding" +msgstr "ʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°Ãæ¤Ç¤Î¥Ð¥¤¥È¿ô¤¬Â¿¤¹¤®¤Þ¤¹" -#: locale/programs/ld-collate.c:2730 -#, c-format -msgid "%s: duplicate declaration of section `%s'" -msgstr "%s: ¥»¥¯¥·¥ç¥ó`%s'¤Îµ­½Ò¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" +#: locale/programs/charmap.c:581 locale/programs/charmap.c:729 +#: locale/programs/charmap.c:812 locale/programs/repertoire.c:297 +msgid "no symbolic name given for end of range" +msgstr "Îΰè¤ÎºÇ¸å¤Ë¥·¥ó¥Ü¥ë̾¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:2694 +#: locale/programs/charmap.c:605 locale/programs/locfile.h:96 +#: locale/programs/repertoire.c:314 #, c-format -msgid "%s: duplicate definition of `%s'" -msgstr "%s: `%s'¤ÎÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" +msgid "`%1$s' definition does not end with `END %1$s'" +msgstr "ÄêµÁ`%1$s' ¤¬ `END %1$s' ¤Ç½ª¤Ã¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:3712 -#, c-format -msgid "%s: empty category description not allowed" -msgstr "%s: ¶õ¤Î¥«¥Æ¥´¥êµ­½Ò¤Ïµö¤µ¤ì¤Æ¤Þ¤»¤ó" +#: locale/programs/charmap.c:638 +msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" +msgstr "WIDTH ÄêµÁ¤Ï CHARMAP ÄêµÁ¤Ë½¾¤¦¤³¤È¤Î¤ßµö¤µ¤ì¤Þ¤¹" -#: locale/programs/ld-collate.c:755 +#: locale/programs/charmap.c:646 locale/programs/charmap.c:709 #, c-format -msgid "%s: empty weight string not allowed" -msgstr "%s: ¶õ¤Î½Å¤ßʸ»úÎó¤Ïµö¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +msgid "value for %s must be an integer" +msgstr "%s¤ÎÃͤÏÀ°¿ô¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: locale/programs/charmap.c:836 +#: locale/programs/charmap.c:837 #, c-format msgid "%s: error in state machine" msgstr "%s: ¾õÂÖµ¡³£Ãæ¤Ç¥¨¥é¡¼" -#: 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 +#: locale/programs/charmap.c:845 locale/programs/ld-address.c:605 +#: locale/programs/ld-collate.c:2635 locale/programs/ld-collate.c:3793 +#: locale/programs/ld-ctype.c:2216 locale/programs/ld-ctype.c:2977 +#: locale/programs/ld-identification.c:469 +#: locale/programs/ld-measurement.c:255 locale/programs/ld-messages.c:349 +#: locale/programs/ld-monetary.c:952 locale/programs/ld-name.c:324 +#: locale/programs/ld-numeric.c:392 locale/programs/ld-paper.c:258 +#: locale/programs/ld-telephone.c:330 locale/programs/ld-time.c:1217 +#: locale/programs/locfile.h:103 locale/programs/repertoire.c:325 #, c-format -msgid "%s: field `%s' declared more than once" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤¬Ê£¿ô²óÀë¸À¤µ¤ì¤Æ¤¤¤Þ¤¹" +msgid "%s: premature end of file" +msgstr "%s ¥Õ¥¡¥¤¥ë½ªÃ¼¤¬Á᤹¤®¤Þ¤¹" -#: 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 +#: locale/programs/charmap.c:864 locale/programs/charmap.c:875 #, c-format -msgid "%s: field `%s' does not contain exactly ten entries" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤Ï¤­¤Ã¤«¤ê10¹àÌÜʬ´Þ¤ó¤Ç¤¤¤Þ¤»¤ó" +msgid "unknown character `%s'" +msgstr "ÉÔÌÀ¤Êʸ»ú`%s'" -#: locale/programs/ld-address.c:154 locale/programs/ld-address.c:205 -#: locale/programs/ld-address.c:230 locale/programs/ld-address.c:259 -#: locale/programs/ld-name.c:115 locale/programs/ld-telephone.c:117 +#: locale/programs/charmap.c:883 #, c-format -msgid "%s: field `%s' must not be empty" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤Ï¶õ¤Ç¤Ï¤¤¤±¤Þ¤»¤ó" +msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d" +msgstr "¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹¤Î³«»Ï¤«¤é½ªÎ»¤Þ¤Ç¤Î¥Ð¥¤¥È¿ô¤È¡¢ÈϰϤνª¤ï¤ê¤È¤¬°ìÃפ·¤Þ¤»¤ó: %d vs %d" -#: locale/programs/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'¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: locale/programs/charmap.c:987 locale/programs/ld-collate.c:2915 +#: locale/programs/repertoire.c:420 +msgid "invalid names for character range" +msgstr "¥­¥ã¥é¥¯¥¿ÈϰϤȤ·¤ÆÉÔÀµ¤Ê̾Á°" -#: locale/programs/ld-messages.c:115 locale/programs/ld-messages.c:148 -#, c-format -msgid "%s: field `%s' undefined" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤Ï̤ÄêµÁ¤Ç¤¹" +#: locale/programs/charmap.c:999 locale/programs/repertoire.c:432 +msgid "hexadecimal range format should use only capital characters" +msgstr "16¿Ê¿ô¤ÎÈÏ°Ï¥Õ¥©¡¼¥Þ¥Ã¥È¤Ï±ÑÂçʸ»ú¤Ç¤Î¤ß»ÈÍѤ¹¤Ù¤­¤Ç¤¹" -#: locale/programs/ld-time.c:279 +#: locale/programs/charmap.c:1017 #, c-format -msgid "%s: garbage at end of offset value in string %Zd in `era' field" -msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÃæ¤Îʸ»úÎó %Zd Æâ¤Î¥ª¥Õ¥»¥Ã¥ÈÃͤκǸå¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹" +msgid "<%s> and <%s> are illegal names for range" +msgstr "<%s> ¤È <%s> ¤ÏÈϰϤȤ·¤ÆÉÔÀµ¤Ê̾Á°¤Ç¤¹" -#: 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/charmap.c:1023 +msgid "upper limit in range is not higher then lower limit" +msgstr "ÈÏ°ÏÆâ¤Î¾å¸Â¤Ï²¼¸Â¤è¤êÂ礭¤¯¤¢¤ê¤Þ¤»¤ó" + +#: locale/programs/charmap.c:1081 +msgid "resulting bytes for range not representable." +msgstr "ÈÏ°ÏÆâ¤Î·ë²Ì¥Ð¥¤¥È¤Ïɽ¸½²Äǽ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó." -#: locale/programs/ld-time.c:416 +#: locale/programs/ld-address.c:134 locale/programs/ld-collate.c:1519 +#: locale/programs/ld-ctype.c:416 locale/programs/ld-identification.c:134 +#: locale/programs/ld-measurement.c:95 locale/programs/ld-messages.c:98 +#: locale/programs/ld-monetary.c:194 locale/programs/ld-name.c:95 +#: locale/programs/ld-numeric.c:99 locale/programs/ld-paper.c:92 +#: locale/programs/ld-telephone.c:95 locale/programs/ld-time.c:160 #, c-format -msgid "%s: garbage at end of stopping date in string %Zd in `era' field" -msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÃæ¤Îʸ»úÎó %Zd Æâ¤Î½ªÎ»ÆüÉդκǸå¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹" +msgid "No definition for %s category found" +msgstr "%s ¥«¥Æ¥´¥ê¤ËÂФ¹¤ëÄêµÁ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: posix/getopt.c:788 +#: locale/programs/ld-address.c:145 locale/programs/ld-address.c:183 +#: locale/programs/ld-address.c:201 locale/programs/ld-address.c:228 +#: locale/programs/ld-address.c:290 locale/programs/ld-address.c:309 +#: locale/programs/ld-address.c:322 locale/programs/ld-identification.c:147 +#: locale/programs/ld-measurement.c:106 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:106 +#: locale/programs/ld-name.c:143 locale/programs/ld-numeric.c:113 +#: locale/programs/ld-numeric.c:127 locale/programs/ld-paper.c:103 +#: locale/programs/ld-paper.c:112 locale/programs/ld-telephone.c:106 +#: locale/programs/ld-telephone.c:163 locale/programs/ld-time.c:176 +#: locale/programs/ld-time.c:197 #, c-format -msgid "%s: illegal option -- %c\n" -msgstr "%s: ÉÔÀµ¤Ê¥ª¥×¥·¥ç¥ó¤Ç¤¹ -- %c\n" +msgid "%s: field `%s' not defined" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: 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 +#: locale/programs/ld-address.c:157 locale/programs/ld-address.c:209 +#: locale/programs/ld-address.c:235 locale/programs/ld-address.c:265 +#: locale/programs/ld-name.c:118 locale/programs/ld-telephone.c:118 #, c-format -msgid "%s: incomplete `END' line" -msgstr "%s: ÉÔ´°Á´¤Ê`END'¹Ô¤Ç¤¹" +msgid "%s: field `%s' must not be empty" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤Ï¶õ¤Ç¤Ï¤¤¤±¤Þ¤»¤ó" -#: locale/programs/ld-address.c:166 +#: locale/programs/ld-address.c:169 #, c-format msgid "%s: invalid escape `%%%c' sequence in field `%s'" msgstr "%s: ÉÔÀµ¤Ê¥¨¥¹¥±¡¼¥×¥·¡¼¥±¥ó¥¹`%%%c'¤¬¥Õ¥£¡¼¥ë¥É`%s'Ãæ¤Ë¤¢¤ê¤Þ¤¹" -#: locale/programs/ld-name.c:127 locale/programs/ld-telephone.c:126 -#: locale/programs/ld-telephone.c:150 +#: locale/programs/ld-address.c:220 #, c-format -msgid "%s: invalid escape sequence in field `%s'" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'Ãæ¤ÎÉÔÀµ¤Ê¥¨¥¹¥±¡¼¥×¥·¡¼¥±¥ó¥¹¤Ç¤¹" +msgid "%s: terminology language code `%s' not defined" +msgstr "%s: terminology¸À¸ì¥³¡¼¥É`%s'¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-time.c:271 +#: locale/programs/ld-address.c:247 locale/programs/ld-address.c:276 #, c-format -msgid "%s: invalid number for offset in string %Zd in `era' field" -msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÆâ¤Îʸ»úÎó %Zd Æâ¤Î¥ª¥Õ¥»¥Ã¥È¤ËÂФ¹¤ëÈֹ椬ÉÔÀµ¤Ç¤¹" +msgid "%s: language abbreviation `%s' not defined" +msgstr "%s: ¸À¸ì̾¾Êά·Á `%s'¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:3162 +#: locale/programs/ld-address.c:254 locale/programs/ld-address.c:282 +#: locale/programs/ld-address.c:316 locale/programs/ld-address.c:328 #, c-format -msgid "%s: invalid number of sorting rules" -msgstr "%s: ʤÓÂؤ¨µ¬Â§¤ÎÈֹ椬ÉÔÀµ¤Ç¤¹" +msgid "%s: `%s' value does not match `%s' value" +msgstr "%s: `%s'ÃͤÏ`%s'¤ÎÃͤ˥ޥåÁ¤·¤Þ¤»¤ó" -#: posix/getopt.c:791 +#: locale/programs/ld-address.c:301 #, c-format -msgid "%s: invalid option -- %c\n" -msgstr "%s: ¥ª¥×¥·¥ç¥ó¤¬°ã¤¤¤Þ¤¹ -- %c\n" +msgid "%s: numeric country code `%d' not valid" +msgstr "%s: ¹ñ¥³¡¼¥ÉÈÖ¹æ`%d'¤ÏÉÔÀµ¤Ç¤¹" -#: locale/programs/ld-time.c:330 +#: locale/programs/ld-address.c:497 locale/programs/ld-address.c:534 +#: locale/programs/ld-address.c:572 locale/programs/ld-ctype.c:2592 +#: locale/programs/ld-identification.c:365 +#: locale/programs/ld-measurement.c:222 locale/programs/ld-messages.c:302 +#: locale/programs/ld-monetary.c:694 locale/programs/ld-monetary.c:729 +#: locale/programs/ld-monetary.c:770 locale/programs/ld-name.c:281 +#: locale/programs/ld-numeric.c:264 locale/programs/ld-paper.c:225 +#: locale/programs/ld-telephone.c:289 locale/programs/ld-time.c:1106 +#: locale/programs/ld-time.c:1148 #, c-format -msgid "%s: invalid starting date in string %Zd in `era' field" -msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÃæ¤Ë¤¢¤ëʸ»úÎó %Zd Æâ¤Î³«»ÏÆüÉÕ¤¬ÉÔÀµ¤Ç¤¹" +msgid "%s: field `%s' declared more than once" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤¬Ê£¿ô²óÀë¸À¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-time.c:407 +#: locale/programs/ld-address.c:501 locale/programs/ld-address.c:539 +#: locale/programs/ld-identification.c:369 locale/programs/ld-messages.c:312 +#: locale/programs/ld-monetary.c:698 locale/programs/ld-monetary.c:733 +#: locale/programs/ld-name.c:285 locale/programs/ld-numeric.c:268 +#: locale/programs/ld-telephone.c:293 locale/programs/ld-time.c:1000 +#: locale/programs/ld-time.c:1069 locale/programs/ld-time.c:1111 #, c-format -msgid "%s: invalid stopping date in string %Zd in `era' field" -msgstr "%s: `era'¥Õ¥£¡¼¥ë¥É¤Ë¤¢¤ëʸ»úÎó %Zd Æâ¤Î½ªÎ»ÆüÉÕ¤¬ÉÔÀµ¤Ç¤¹" +msgid "%s: unknown character in field `%s'" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'Ãæ¤Ë̤ÃΤÎʸ»ú¤¬¤¢¤ê¤Þ¤¹" -#: locale/programs/ld-measurement.c:112 +#: locale/programs/ld-address.c:586 locale/programs/ld-collate.c:3775 +#: locale/programs/ld-ctype.c:2957 locale/programs/ld-identification.c:450 +#: locale/programs/ld-measurement.c:236 locale/programs/ld-messages.c:331 +#: locale/programs/ld-monetary.c:934 locale/programs/ld-name.c:306 +#: locale/programs/ld-numeric.c:374 locale/programs/ld-paper.c:240 +#: locale/programs/ld-telephone.c:312 locale/programs/ld-time.c:1199 #, c-format -msgid "%s: invalid value for field `%s'" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ¹¤ëÉÔÀµ¤ÊÃͤǤ¹" +msgid "%s: incomplete `END' line" +msgstr "%s: ÉÔ´°Á´¤Ê`END'¹Ô¤Ç¤¹" -#: locale/programs/ld-address.c:242 locale/programs/ld-address.c:270 +#: locale/programs/ld-address.c:589 locale/programs/ld-collate.c:2638 +#: locale/programs/ld-collate.c:3777 locale/programs/ld-ctype.c:2219 +#: locale/programs/ld-ctype.c:2960 locale/programs/ld-identification.c:453 +#: locale/programs/ld-measurement.c:239 locale/programs/ld-messages.c:333 +#: locale/programs/ld-monetary.c:936 locale/programs/ld-name.c:308 +#: locale/programs/ld-numeric.c:376 locale/programs/ld-paper.c:242 +#: locale/programs/ld-telephone.c:314 locale/programs/ld-time.c:1201 #, c-format -msgid "%s: language abbreviation `%s' not defined" -msgstr "%s: ¸À¸ì̾¾Êά·Á `%s'¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +msgid "%1$s: definition does not end with `END %1$s'" +msgstr "%1$s: ÄêµÁ¤¬ `END %1$s' ¤Ç½ª¤Ã¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:3242 locale/programs/ld-collate.c:3365 -#: locale/programs/ld-collate.c:3716 +#: locale/programs/ld-address.c:596 locale/programs/ld-collate.c:520 +#: locale/programs/ld-collate.c:572 locale/programs/ld-collate.c:869 +#: locale/programs/ld-collate.c:882 locale/programs/ld-collate.c:2625 +#: locale/programs/ld-collate.c:3784 locale/programs/ld-ctype.c:1947 +#: locale/programs/ld-ctype.c:2206 locale/programs/ld-ctype.c:2782 +#: locale/programs/ld-ctype.c:2968 locale/programs/ld-identification.c:460 +#: locale/programs/ld-measurement.c:246 locale/programs/ld-messages.c:340 +#: locale/programs/ld-monetary.c:943 locale/programs/ld-name.c:315 +#: locale/programs/ld-numeric.c:383 locale/programs/ld-paper.c:249 +#: locale/programs/ld-telephone.c:321 locale/programs/ld-time.c:1208 #, c-format -msgid "%s: missing `order_end' keyword" -msgstr "%s: `order_end'¥­¡¼¥ï¡¼¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +msgid "%s: syntax error" +msgstr "%s: ʸˡ¥¨¥é¡¼" -#: locale/programs/ld-collate.c:3379 locale/programs/ld-collate.c:3728 +#: locale/programs/ld-collate.c:395 #, c-format -msgid "%s: missing `reorder-end' keyword" -msgstr "%s: `reorder-end'¥­¡¼¥ï¡¼¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +msgid "`%.*s' already defined in charmap" +msgstr "`%.*s'¤Ï´û¤Ë charmap Ãæ¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-collate.c:3731 +#: locale/programs/ld-collate.c:404 #, c-format -msgid "%s: missing `reorder-sections-end' keyword" -msgstr "%s: `reorder-sections-end'¥­¡¼¥ï¡¼¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +msgid "`%.*s' already defined in repertoire" +msgstr "`%.*s' ¤Ï´û¤Ë¥ì¥Ñ¡¼¥È¥êÃæ¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-time.c:456 +#: locale/programs/ld-collate.c:411 #, c-format -msgid "%s: missing era format in string %Zd in `era' field" -msgstr "%s: `era'¥Õ¥£¡¼¥ë¥É¤Ë¤¢¤ëʸ»úÎó %Zd Æâ¤Îera¥Õ¥©¡¼¥Þ¥Ã¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +msgid "`%.*s' already defined as collating symbol" +msgstr "`%.*s' ¤Ï´û¤Ë¾È¹ç¥·¥ó¥Ü¥ë¤È¤·¤ÆÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-time.c:444 +#: locale/programs/ld-collate.c:418 #, c-format -msgid "%s: missing era name in string %Zd in `era' field" -msgstr "%s: `era'¥Õ¥£¡¼¥ë¥É¤Ë¤¢¤ëʸ»úÎó %Zd Æâ¤Îera̾¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +msgid "`%.*s' already defined as collating element" +msgstr "`%.*s' ¤Ï´û¤Ë¾È¹çÍ×ÁǤȤ·¤ÆÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-collate.c:3138 +#: locale/programs/ld-collate.c:449 locale/programs/ld-collate.c:475 #, c-format -msgid "%s: multiple order definitions for section `%s'" -msgstr "%s: ¥»¥¯¥·¥ç¥ó`%s'¤ËÂФ¹¤ëʤÓÂؤ¨ÄêµÁ¤¬Ê£¿ô¤¢¤ê¤Þ¤¹" +msgid "%s: `forward' and `backward' are mutually excluding each other" +msgstr "%s: `forward' ¤È `backward' ¤ÏÇÓ¾Ū¤Ç¤¹" -#: locale/programs/ld-collate.c:3188 +#: locale/programs/ld-collate.c:459 locale/programs/ld-collate.c:485 +#: locale/programs/ld-collate.c:501 #, c-format -msgid "%s: multiple order definitions for unnamed section" -msgstr "%s: ̾Á°¤Î¤Ê¤¤¥»¥¯¥·¥ç¥ó¤ËÂФ¹¤ëʤÓÂؤ¨ÄêµÁ¤¬Ê£¿ô¤¢¤ê¤Þ¤¹" +msgid "%s: `%s' mentioned more than once in definition of weight %d" +msgstr "%s: `%s'¤Ï½Å¤ßÄêµÁ %d Ãæ¤ÇÊ£¿ô²ó»È¤ï¤ì¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-messages.c:137 locale/programs/ld-messages.c:170 +#: locale/programs/ld-collate.c:557 #, c-format -msgid "%s: no correct regular expression for field `%s': %s" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ¹¤ëÀµµ¬É½¸½¤ÏÀµ¤·¤¯¤¢¤ê¤Þ¤»¤ó: %s" +msgid "%s: too many rules; first entry only had %d" +msgstr "%s: µ¬Â§¤¬Â¿¤¹¤®¤Þ¤¹; ºÇ½é¤Î¥¨¥ó¥È¥ê¤Ï %d ¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-identification.c:169 +#: locale/programs/ld-collate.c:593 #, c-format -msgid "%s: no identification for category `%s'" -msgstr "%s: ¥«¥Æ¥´¥ê`%s'¤ËÂФ¹¤ëidentification¤¬¤¢¤ê¤Þ¤»¤ó" +msgid "%s: not enough sorting rules" +msgstr "%s: ʤÓÂؤ¨µ¬Â§¤¬ÉÔ½½Ê¬¤Ç¤¹" -#: locale/programs/ld-ctype.c:2755 +#: locale/programs/ld-collate.c:759 #, c-format -msgid "%s: no representable `default_missing' definition found" -msgstr "%s: ɽ¸½²Äǽ¤Ê`default_missing'ÄêµÁ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +msgid "%s: empty weight string not allowed" +msgstr "%s: ¶õ¤Î½Å¤ßʸ»úÎó¤Ïµö¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:591 +#: locale/programs/ld-collate.c:854 #, c-format -msgid "%s: not enough sorting rules" -msgstr "%s: ʤÓÂؤ¨µ¬Â§¤¬ÉÔ½½Ê¬¤Ç¤¹" +msgid "%s: weights must use the same ellipsis symbol as the name" +msgstr "%s: ½Å¤ß¤Ï¤½¤Î̾¾Î¤È¤·¤ÆƱ¤¸¾Êά¥·¥ó¥Ü¥ë¤ò»ÈÍѤ·¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: locale/programs/ld-address.c:295 +#: locale/programs/ld-collate.c:910 #, c-format -msgid "%s: numeric country code `%d' not valid" -msgstr "%s: ¹ñ¥³¡¼¥ÉÈÖ¹æ`%d'¤ÏÉÔÀµ¤Ç¤¹" +msgid "%s: too many values" +msgstr "%s: °ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹" -#: posix/getopt.c:711 +#: locale/programs/ld-collate.c:1023 locale/programs/ld-collate.c:1194 #, c-format -msgid "%s: option `%c%s' doesn't allow an argument\n" -msgstr "%s: ¥ª¥×¥·¥ç¥ó`%c%s'¤Ï°ú¿ô¤ò¤È¤ê¤Þ¤»¤ó\n" +msgid "order for `%.*s' already defined at %s:%Zu" +msgstr "`%.*s'¤ËÂФ¹¤ë¥ª¡¼¥À¡¼¤Ï %s:%Zu ¤Ç´û¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: posix/getopt.c:681 +#: locale/programs/ld-collate.c:1073 #, c-format -msgid "%s: option `%s' is ambiguous\n" -msgstr "%s: ¥ª¥×¥·¥ç¥ó`%s'¤ÏÛ£Ëæ¤Ç¤¹\n" +msgid "%s: the start and the end symbol of a range must stand for characters" +msgstr "%s: ¤¢¤ëÈϰϤγ«»Ï¡¦½ªÎ»¥·¥ó¥Ü¥ë¤Ï¥­¥ã¥é¥¯¥¿¤Ë´ð¤Å¤«¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: posix/getopt.c:729 posix/getopt.c:902 +#: locale/programs/ld-collate.c:1100 #, c-format -msgid "%s: option `%s' requires an argument\n" -msgstr "%s: ¥ª¥×¥·¥ç¥ó`%s'¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹\n" +msgid "%s: byte sequences of first and last character must have the same length" +msgstr "%s: ºÇ½é¤ÈºÇ¸å¤Îʸ»ú¤Î¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹¤ÏƱ°ìĹ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: posix/getopt.c:706 +#: locale/programs/ld-collate.c:1142 #, c-format -msgid "%s: option `--%s' doesn't allow an argument\n" -msgstr "%s: ¥ª¥×¥·¥ç¥ó`--%s'¤Ï°ú¿ô¤ò¤È¤ê¤Þ¤»¤ó\n" +msgid "%s: byte sequence of first character of sequence is not lower than that of the last character" +msgstr "%s: ¥·¡¼¥±¥ó¥¹Ãæ¤ÎºÇ½é¤Îʸ»ú¤Î¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹¤ÏºÇ¸å¤Îʸ»ú¤Î¤è¤ê¤âlower¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: posix/getopt.c:886 +#: locale/programs/ld-collate.c:1263 #, c-format -msgid "%s: option `-W %s' doesn't allow an argument\n" -msgstr "%s: ¥ª¥×¥·¥ç¥ó`-W %s'¤Ï°ú¿ô¤ò¤È¤ê¤Þ¤»¤ó\n" +msgid "%s: symbolic range ellipsis must not directly follow `order_start'" +msgstr "%s: ¥·¥ó¥Ü¥ë¤ÎÈϰϤξÊά¤Ï`order_start'¤Î¤¹¤°¸å¤ËÃÖ¤¤¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" -#: posix/getopt.c:868 +#: locale/programs/ld-collate.c:1267 #, c-format -msgid "%s: option `-W %s' is ambiguous\n" -msgstr "%s: ¥ª¥×¥·¥ç¥ó `-W %s' ¤¬Û£Ëæ¤Ç¤¹\n" +msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'" +msgstr "%s: ¥·¥ó¥Ü¥ëÈϰϾÊάµ­¹æ¤Ï`order_end'¤Î¤¹¤°¸å¤Ë³¤¤¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" -#: posix/getopt.c:821 posix/getopt.c:951 +#: locale/programs/ld-collate.c:1287 locale/programs/ld-ctype.c:1467 #, c-format -msgid "%s: option requires an argument -- %c\n" -msgstr "%s: ¥ª¥×¥·¥ç¥ó¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹ -- %c\n" +msgid "`%s' and `%.*s' are no valid names for symbolic range" +msgstr "`%s' ¤È `%.*s' ¤Ï¥·¥ó¥Ü¥ë¤ÎÈϰϤȤ·¤ÆÉÔÀµ¤Ê̾Á°¤Ç¤¹" -#: locale/programs/ld-collate.c:1327 locale/programs/ld-collate.c:3675 +#: locale/programs/ld-collate.c:1333 locale/programs/ld-collate.c:3712 #, c-format msgid "%s: order for `%.*s' already defined at %s:%Zu" msgstr "%s: `%.*s'¤ËÂФ¹¤ëʤÙÂؤ¨¤Ï¤¹¤Ç¤Ë %s:%Zu ¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-collate.c:3316 +#: locale/programs/ld-collate.c:1342 #, c-format -msgid "%s: order for collating element %.*s not yet defined" -msgstr "%s: ¾È¹çÍ×ÁÇ %.*s ¤ËÂФ¹¤ëʤÙÂؤ¨¤¬¤Þ¤ÀÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +msgid "%s: `%s' must be a character" +msgstr "%s: `%s'¤Ïñ°ì¤Î¥­¥ã¥é¥¯¥¿¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:3300 +#: locale/programs/ld-collate.c:1535 #, c-format -msgid "%s: order for collating symbol %.*s not yet defined" -msgstr "%s: ¾È¹ç¥·¥ó¥Ü¥ë %.*s ¤ËÂФ¹¤ëʤÙÂؤ¨¤¬¤Þ¤ÀÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +msgid "%s: `position' must be used for a specific level in all sections or none" +msgstr "%s: `position'¤ÏÆÃÄê¥ì¥Ù¥ë¤ËÂФ·¡¢Á´¥»¥¯¥·¥ç¥ó¤Ç»ÈÍѤ«Ì¤»ÈÍѤ«¤Î¤É¤Á¤é¤«¤Ç¤¹" -#: sunrpc/rpc_main.c:289 +#: locale/programs/ld-collate.c:1560 #, c-format -msgid "%s: output would overwrite %s\n" -msgstr "%s: ½ÐÎÏ¤Ï %s ¤ò¾å½ñ¤­¤·¤Æ¤·¤Þ¤¦¤«¤â¤·¤ì¤Þ¤»¤ó\n" +msgid "symbol `%s' not defined" +msgstr "¥·¥ó¥Ü¥ë`%s'¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: timezone/zic.c:879 timezone/zic.c:1293 timezone/zic.c:1318 +#: locale/programs/ld-collate.c:1636 locale/programs/ld-collate.c:1742 #, c-format -msgid "%s: panic: Invalid l_value %d\n" -msgstr "%s: ¥Ñ¥Ë¥Ã¥¯: ÉÔÅö¤Ê l_value(%d)¤Ç¤¹\n" +msgid "symbol `%s' has the same encoding as" +msgstr "¥·¥ó¥Ü¥ë `%s' ¤Ï°Ê²¼¤ÈƱ¤¸¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹" -#: 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 +#: locale/programs/ld-collate.c:1640 locale/programs/ld-collate.c:1746 #, c-format -msgid "%s: premature end of file" -msgstr "%s ¥Õ¥¡¥¤¥ë½ªÃ¼¤¬Á᤹¤®¤Þ¤¹" +msgid "symbol `%s'" +msgstr "¥·¥ó¥Ü¥ë `%s'" -#: 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-collate.c:1788 +msgid "no definition of `UNDEFINED'" +msgstr "`UNDEFINED'¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-time.c:358 +#: locale/programs/ld-collate.c:1817 +msgid "too many errors; giving up" +msgstr "¥¨¥é¡¼¤¬Â¿¤¹¤®¤Þ¤¹; ½èÍý¤ò¤¢¤­¤é¤á¤Þ¤¹" + +#: locale/programs/ld-collate.c:2720 #, c-format -msgid "%s: starting date is invalid in string %Zd in `era' field" -msgstr "%s: `era'¥Õ¥£¡¼¥ë¥É¤Ë¤¢¤ëʸ»úÎó %Zd Ãæ¤Î³«»ÏÆü¤ÏÉÔÀµ¤Ç¤¹" +msgid "%s: duplicate definition of `%s'" +msgstr "%s: `%s'¤ÎÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-time.c:435 +#: locale/programs/ld-collate.c:2756 #, c-format -msgid "%s: stopping date is invalid in string %Zd in `era' field" -msgstr "%s: `era'¥Õ¥£¡¼¥ë¥É¤Ë¤¢¤ëʸ»úÎó %Zd Ãæ¤Î½ªÎ»Ç¯¤ÏÉÔÀµ¤Ç¤¹" +msgid "%s: duplicate declaration of section `%s'" +msgstr "%s: ¥»¥¯¥·¥ç¥ó`%s'¤Îµ­½Ò¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-collate.c:1261 +#: locale/programs/ld-collate.c:2895 #, c-format -msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'" -msgstr "%s: ¥·¥ó¥Ü¥ëÈϰϾÊάµ­¹æ¤Ï`order_end'¤Î¤¹¤°¸å¤Ë³¤¤¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" +msgid "%s: unknown character in collating symbol name" +msgstr "%s: ¾È¹ç¥·¥ó¥Ü¥ë̾Ãæ¤Ë̤ÃΤÎʸ»ú¤¬¤¢¤ê¤Þ¤¹" -#: locale/programs/ld-collate.c:1257 +#: locale/programs/ld-collate.c:3027 #, c-format -msgid "%s: symbolic range ellipsis must not directly follow `order_start'" -msgstr "%s: ¥·¥ó¥Ü¥ë¤ÎÈϰϤξÊά¤Ï`order_start'¤Î¤¹¤°¸å¤ËÃÖ¤¤¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" +msgid "%s: unknown character in equivalent definition name" +msgstr "%s: Åù²Á¤ÊÄêµÁ̾Ãæ¤Ë̤ÃΤÎʸ»ú¤¬¤¢¤ê¤Þ¤¹" -#: 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: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 +#: locale/programs/ld-collate.c:3040 #, c-format -msgid "%s: syntax error" -msgstr "%s: ʸˡ¥¨¥é¡¼" +msgid "%s: unknown character in equivalent definition value" +msgstr "%s: Åù²Á¤ÊÄêµÁÃÍÃæ¤Ë̤ÃΤÎʸ»ú¤¬¤¢¤ê¤Þ¤¹" -#: locale/programs/ld-ctype.c:2180 +#: locale/programs/ld-collate.c:3050 #, c-format -msgid "%s: syntax error in definition of new character class" -msgstr "%s: ¿·¤·¤¤¥­¥ã¥é¥¯¥¿¥¯¥é¥¹¤ÎÄêµÁÃæ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹" +msgid "%s: unknown symbol `%s' in equivalent definition" +msgstr "%s: Åù²Á¤ÊÄêµÁÃæ¤Ç̤ÃΤΥ·¥ó¥Ü¥ë`%s'¤¬¤¢¤ê¤Þ¤·¤¿" -#: locale/programs/ld-ctype.c:2195 -#, c-format -msgid "%s: syntax error in definition of new character map" -msgstr "%s: ¿·¤·¤¤¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¤ÎÄêµÁÃæ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹" +#: locale/programs/ld-collate.c:3059 +msgid "error while adding equivalent collating symbol" +msgstr "Åù²Á¤Ê¾È¹ç¥·¥ó¥Ü¥ëÄɲÃÃæ¤Ç¥¨¥é¡¼" -#: locale/programs/ld-ctype.c:3737 +#: locale/programs/ld-collate.c:3089 #, c-format -msgid "%s: table for class \"%s\": %lu bytes\n" -msgstr "%s: ¥¯¥é¥¹ \"%s\" ¤ËÂФ¹¤ë¥Æ¡¼¥Ö¥ë: %lu ¥Ð¥¤¥È\n" +msgid "duplicate definition of script `%s'" +msgstr "¥¹¥¯¥ê¥×¥È `%s' ¤ÎÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-ctype.c:3805 +#: locale/programs/ld-collate.c:3137 #, c-format -msgid "%s: table for map \"%s\": %lu bytes\n" -msgstr "%s: ¥Þ¥Ã¥× \"%s\" ¤ËÂФ¹¤ë¥Æ¡¼¥Ö¥ë: %lu ¥Ð¥¤¥È\n" +msgid "%s: unknown section name `%s'" +msgstr "%s: ̤ÃΤΥ»¥¯¥·¥ç¥ó̾`%s'¤Ç¤¹" -#: locale/programs/ld-ctype.c:3937 +#: locale/programs/ld-collate.c:3165 #, c-format -msgid "%s: table for width: %lu bytes\n" -msgstr "%s: width ¤ËÂФ¹¤ë¥Æ¡¼¥Ö¥ë: %lu ¥Ð¥¤¥È\n" +msgid "%s: multiple order definitions for section `%s'" +msgstr "%s: ¥»¥¯¥·¥ç¥ó`%s'¤ËÂФ¹¤ëʤÓÂؤ¨ÄêµÁ¤¬Ê£¿ô¤¢¤ê¤Þ¤¹" -#: locale/programs/ld-address.c:216 +#: locale/programs/ld-collate.c:3190 #, c-format -msgid "%s: terminology language code `%s' not defined" -msgstr "%s: terminology¸À¸ì¥³¡¼¥É`%s'¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +msgid "%s: invalid number of sorting rules" +msgstr "%s: ʤÓÂؤ¨µ¬Â§¤ÎÈֹ椬ÉÔÀµ¤Ç¤¹" -#: locale/programs/ld-collate.c:1067 +#: locale/programs/ld-collate.c:3217 #, c-format -msgid "%s: the start and the end symbol of a range must stand for characters" -msgstr "%s: ¤¢¤ëÈϰϤγ«»Ï¡¦½ªÎ»¥·¥ó¥Ü¥ë¤Ï¥­¥ã¥é¥¯¥¿¤Ë´ð¤Å¤«¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" +msgid "%s: multiple order definitions for unnamed section" +msgstr "%s: ̾Á°¤Î¤Ê¤¤¥»¥¯¥·¥ç¥ó¤ËÂФ¹¤ëʤÓÂؤ¨ÄêµÁ¤¬Ê£¿ô¤¢¤ê¤Þ¤¹" -#: locale/programs/ld-time.c:485 +#: locale/programs/ld-collate.c:3271 locale/programs/ld-collate.c:3394 +#: locale/programs/ld-collate.c:3753 #, c-format -msgid "%s: third operand for value of field `%s' must not be larger than %d" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ÎÃͤËÂФ¹¤ë£³ÈÖÌܤΥª¥Ú¥é¥ó¥É¤Ï %d ¤è¤ê¤âÂ礭¤¯¤¢¤Ã¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó" +msgid "%s: missing `order_end' keyword" +msgstr "%s: `order_end'¥­¡¼¥ï¡¼¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: locale/programs/ld-time.c:983 +#: locale/programs/ld-collate.c:3329 #, c-format -msgid "%s: too few values for field `%s'" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ·¤Æ¾¯¤Ê¤¹¤®¤ëÃͤǤ¹" +msgid "%s: order for collating symbol %.*s not yet defined" +msgstr "%s: ¾È¹ç¥·¥ó¥Ü¥ë %.*s ¤ËÂФ¹¤ëʤÙÂؤ¨¤¬¤Þ¤ÀÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:555 +#: locale/programs/ld-collate.c:3345 #, c-format -msgid "%s: too many rules; first entry only had %d" -msgstr "%s: µ¬Â§¤¬Â¿¤¹¤®¤Þ¤¹; ºÇ½é¤Î¥¨¥ó¥È¥ê¤Ï %d ¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹" +msgid "%s: order for collating element %.*s not yet defined" +msgstr "%s: ¾È¹çÍ×ÁÇ %.*s ¤ËÂФ¹¤ëʤÙÂؤ¨¤¬¤Þ¤ÀÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:906 +#: locale/programs/ld-collate.c:3356 #, c-format -msgid "%s: too many values" -msgstr "%s: °ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹" +msgid "%s: cannot reorder after %.*s: symbol not known" +msgstr "%s: %.*s¤Î¸å¤ÇºÆʤÓÂؤ¨¤¬¤Ç¤­¤Þ¤»¤ó: ̤ÃΤΥ·¥ó¥Ü¥ë¤Ç¤¹" -#: locale/programs/ld-time.c:1030 +#: locale/programs/ld-collate.c:3408 locale/programs/ld-collate.c:3765 #, c-format -msgid "%s: too many values for field `%s'" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ·¤Æ¿¤¹¤®¤ëÃͤǤ¹" +msgid "%s: missing `reorder-end' keyword" +msgstr "%s: `reorder-end'¥­¡¼¥ï¡¼¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: locale/programs/ld-ctype.c:3641 +#: locale/programs/ld-collate.c:3442 locale/programs/ld-collate.c:3637 #, c-format -msgid "%s: transliteration data from locale `%s' not available" -msgstr "%s: ¥í¥±¡¼¥ë`%s'¤Ç¤Îtransliteration¥Ç¡¼¥¿¤ÏÍøÍѲÄǽ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +msgid "%s: section `%.*s' not known" +msgstr "%s: ¥»¥¯¥·¥ç¥ó`%.*s'¤Ï̤ÃΤǤ¹" -#: sunrpc/rpc_main.c:296 +#: locale/programs/ld-collate.c:3507 #, c-format -msgid "%s: unable to open %s: %m\n" -msgstr "%s: %s ¤ò³«¤±¤Þ¤»¤ó: %m\n" +msgid "%s: bad symbol <%.*s>" +msgstr "%s: ´Ö°ã¤Ã¤¿¥·¥ó¥Ü¥ë <%.*s>" -#: locale/programs/ld-collate.c:2868 +#: locale/programs/ld-collate.c:3700 #, c-format -msgid "%s: unknown character in collating symbol name" -msgstr "%s: ¾È¹ç¥·¥ó¥Ü¥ë̾Ãæ¤Ë̤ÃΤÎʸ»ú¤¬¤¢¤ê¤Þ¤¹" +msgid "%s: cannot have `%s' as end of ellipsis range" +msgstr "%s: ¾Êάµ­¹æ¤ÎÈϰϤνª¤ï¤ê¤Ë`%s'¤¬¤¢¤ê¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:3000 +#: locale/programs/ld-collate.c:3749 #, c-format -msgid "%s: unknown character in equivalent definition name" -msgstr "%s: Åù²Á¤ÊÄêµÁ̾Ãæ¤Ë̤ÃΤÎʸ»ú¤¬¤¢¤ê¤Þ¤¹" +msgid "%s: empty category description not allowed" +msgstr "%s: ¶õ¤Î¥«¥Æ¥´¥êµ­½Ò¤Ïµö¤µ¤ì¤Æ¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:3013 +#: locale/programs/ld-collate.c:3768 #, c-format -msgid "%s: unknown character in equivalent definition value" -msgstr "%s: Åù²Á¤ÊÄêµÁÃÍÃæ¤Ë̤ÃΤÎʸ»ú¤¬¤¢¤ê¤Þ¤¹" +msgid "%s: missing `reorder-sections-end' keyword" +msgstr "%s: `reorder-sections-end'¥­¡¼¥ï¡¼¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: 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-ctype.c:435 +msgid "No character set name specified in charmap" +msgstr "¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×Ãæ¤Çʸ»ú½¸¹ç̾¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:3110 +#: locale/programs/ld-ctype.c:464 #, c-format -msgid "%s: unknown section name `%s'" -msgstr "%s: ̤ÃΤΥ»¥¯¥·¥ç¥ó̾`%s'¤Ç¤¹" +msgid "character L'\\u%0*x' in class `%s' must be in class `%s'" +msgstr "ʸ»ú L'\\u%0*x' (¥¯¥é¥¹`%s'Æâ) ¤Ï¥¯¥é¥¹`%s'¤Ë¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:3023 +#: locale/programs/ld-ctype.c:479 #, c-format -msgid "%s: unknown symbol `%s' in equivalent definition" -msgstr "%s: Åù²Á¤ÊÄêµÁÃæ¤Ç̤ÃΤΥ·¥ó¥Ü¥ë`%s'¤¬¤¢¤ê¤Þ¤·¤¿" +msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'" +msgstr "ʸ»ú L'\\u%0*x' (¥¯¥é¥¹`%s'Æâ) ¤Ï¥¯¥é¥¹`%s'¤Ë¤¢¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" -#: posix/getopt.c:762 +#: locale/programs/ld-ctype.c:493 locale/programs/ld-ctype.c:551 #, c-format -msgid "%s: unrecognized option `%c%s'\n" -msgstr "%s: ǧ¼±¤Ç¤­¤Ê¤¤¥ª¥×¥·¥ç¥ó`%c%s'¤Ç¤¹\n" +msgid "internal error in %s, line %u" +msgstr "%sÃæ(%u¹Ô)¤Ç¡¢ÆâÉô¥¨¥é¡¼¤¬µ¯¤³¤ê¤Þ¤·¤¿" -#: posix/getopt.c:758 +#: locale/programs/ld-ctype.c:522 #, c-format -msgid "%s: unrecognized option `--%s'\n" -msgstr "%s: ǧ¼±¤Ç¤­¤Ê¤¤¥ª¥×¥·¥ç¥ó`--%s'¤Ç¤¹\n" +msgid "character '%s' in class `%s' must be in class `%s'" +msgstr "¥¯¥é¥¹`%2$s'¤Îʸ»ú`%1$s'¤Ï¥¯¥é¥¹`%3$s'¤Ë¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" -#: timezone/zic.c:449 +#: locale/programs/ld-ctype.c:538 #, c-format -msgid "" -"%s: usage is %s [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n" -"\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" -msgstr "" -"%s: »ÈÍÑË¡ %s [ -s ] [ -v ] [ -l ¥í¡¼¥«¥ë»þ¹ï ] [ -p posixrules ] \\\n" -"\t[ -d ¥Ç¥£¥ì¥¯¥È¥ê ] [ -L ±¼Éà ] [ -y yearistype ] [ ¥Õ¥¡¥¤¥ë̾ ... ]\n" +msgid "character '%s' in class `%s' must not be in class `%s'" +msgstr "¥¯¥é¥¹`%2$s'¤Îʸ»ú`%1$s'¤Ï¥¯¥é¥¹`%3$s'¤Ë¤¢¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" -#: timezone/zdump.c:175 +#: locale/programs/ld-ctype.c:568 locale/programs/ld-ctype.c:606 #, c-format -msgid "%s: usage is %s [ -v ] [ -c cutoff ] zonename ...\n" -msgstr "%s: »ÈÍÑË¡ %s [ -v ] [ -c ¥«¥Ã¥È¥ª¥Õ ] ¥¾¡¼¥ó̾ ¡Å¡Å\n" +msgid " character not in class `%s'" +msgstr " ʸ»ú¤Ï¥¯¥é¥¹ `%s' ¤Ë¤¢¤ê¤Þ¤»¤ó" -#: locale/programs/ld-monetary.c:740 locale/programs/ld-numeric.c:274 +#: locale/programs/ld-ctype.c:580 locale/programs/ld-ctype.c:617 #, c-format -msgid "%s: value for field `%s' must be a single character" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ÎÃͤϥ·¥ó¥°¥ë¥­¥ã¥é¥¯¥¿¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" +msgid " character must not be in class `%s'" +msgstr " ʸ»ú¤Ï¥¯¥é¥¹ `%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-ctype.c:595 +msgid "character not defined in character map" +msgstr "ʸ»ú ¤¬¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: 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" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ¹¤ëÃͤ϶õ¤Îʸ»úÎó¤Ç¤Ï¤¤¤±¤Þ¤»¤ó" +#: locale/programs/ld-ctype.c:709 +msgid "`digit' category has not entries in groups of ten" +msgstr "`digit' ¥«¥Æ¥´¥ê¤Ï¥°¥ë¡¼¥×Ãæ¤Ë10¸Ä¤Î¥¨¥ó¥È¥ê¤ò»ý¤Ã¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-monetary.c:250 locale/programs/ld-numeric.c:119 -#, c-format -msgid "%s: value for field `%s' must not be the empty string" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ¹¤ëÃͤ϶õ¤Îʸ»úÎó¤Ç¤Ï¤¤¤±¤Þ¤»¤ó" +#: locale/programs/ld-ctype.c:758 +msgid "no input digits defined and none of the standard names in the charmap" +msgstr "ÆþÎϷ夬ÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¡¢¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×Ãæ¤Ëɸ½à̾¤¬¤¢¤ê¤Þ¤»¤ó" -#: locale/programs/ld-monetary.c:232 -#, c-format -msgid "%s: value of field `int_curr_symbol' does not correspond to a valid name in ISO 4217" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`int_curr_symbol'¤ÎÃͤÏISO 4217Ãæ¤Ë½¾¤Ã¤¿Å¬ÀÚ¤Ê̾Á°¤ËÂбþ¤·¤Æ¤¤¤Þ¤»¤ó" +#: locale/programs/ld-ctype.c:823 +msgid "not all characters used in `outdigit' are available in the charmap" +msgstr "`outdigit'¤Ç»ÈÍÑÃæ¤Îʸ»ú¤Î°ìÉô¤Ï¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¤ÇÍøÍѲÄǽ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: locale/programs/ld-monetary.c:224 +#: locale/programs/ld-ctype.c:840 +msgid "not all characters used in `outdigit' are available in the repertoire" +msgstr "`outdigit'¤Ç»ÈÍÑÃæ¤Îʸ»ú¤Î°ìÉô¤Ï¥ì¥Ñ¡¼¥È¥ê¥Þ¥Ã¥×¤ÇÍøÍѲÄǽ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: locale/programs/ld-ctype.c:1235 #, c-format -msgid "%s: value of field `int_curr_symbol' has wrong length" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`int_curr_symbol'¤ÎÃͤÎŤµ¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" +msgid "character class `%s' already defined" +msgstr "¥­¥ã¥é¥¯¥¿¥¯¥é¥¹`%s'¤Ï¤¹¤Ç¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-monetary.c:859 locale/programs/ld-numeric.c:339 +#: locale/programs/ld-ctype.c:1241 #, c-format -msgid "%s: values for field `%s' must be smaller than 127" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ¹¤ëÃͤÏ127°Ê²¼¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" +msgid "implementation limit: no more than %Zd character classes allowed" +msgstr "¼ÂÁõ¾å¤ÎÀ©¸Â: %Zd °Ê¾å¤Î¥­¥ã¥é¥¯¥¿¥¯¥é¥¹¤Ïµö¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-time.c:509 +#: locale/programs/ld-ctype.c:1267 #, c-format -msgid "%s: values for field `%s' must not be larger than %d" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ÎÃÍ¤Ï %d °Ê¾å¤Ç¤¢¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" +msgid "character map `%s' already defined" +msgstr "¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×`%s'¤Ï¤¹¤Ç¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: locale/programs/ld-time.c:493 locale/programs/ld-time.c:501 +#: locale/programs/ld-ctype.c:1273 #, c-format -msgid "%s: values of field `%s' must not be larger than %d" -msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ÎÃÍ¤Ï %d °Ê¾å¤Ç¤¢¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" +msgid "implementation limit: no more than %d character maps allowed" +msgstr "¼ÂÁõ¾å¤ÎÀ©¸Â: %d °Ê¾å¤Î¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¤Ïµö¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:850 +#: locale/programs/ld-ctype.c:1538 locale/programs/ld-ctype.c:1663 +#: locale/programs/ld-ctype.c:1769 locale/programs/ld-ctype.c:2455 +#: locale/programs/ld-ctype.c:3443 #, c-format -msgid "%s: weights must use the same ellipsis symbol as the name" -msgstr "%s: ½Å¤ß¤Ï¤½¤Î̾¾Î¤È¤·¤ÆƱ¤¸¾Êά¥·¥ó¥Ü¥ë¤ò»ÈÍѤ·¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" +msgid "%s: field `%s' does not contain exactly ten entries" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤Ï¤­¤Ã¤«¤ê10¹àÌÜʬ´Þ¤ó¤Ç¤¤¤Þ¤»¤ó" -#: sunrpc/rpc_main.c:308 +#: locale/programs/ld-ctype.c:1566 locale/programs/ld-ctype.c:2137 #, c-format -msgid "%s: while writing output %s: %m" -msgstr "%s: ½ÐÎÏ %s ¤ò½ñ¤­¹þ¤ßÃæ: %m" +msgid "to-value of range is smaller than from-value " +msgstr "ÈÏ°ÏÆâ¤Îto¤ÎÃÍ ¤Ïfrom¤ÎÃÍ ¤è¤ê¤â¾®¤µ¤¹¤®¤Þ¤¹" -#: argp/argp-parse.c:170 -msgid "(PROGRAM ERROR) No version known!?" -msgstr "(¥×¥í¥°¥é¥à¥¨¥é¡¼) ̤ÃΤΥС¼¥¸¥ç¥ó!?" +#: locale/programs/ld-ctype.c:1693 +msgid "start and end character sequence of range must have the same length" +msgstr "ÈÏ°ÏÆâ¤Î³«»Ï½ªÎ»¥­¥ã¥é¥¯¥¿¥·¡¼¥±¥ó¥¹¤ÏƱ°ìĹ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: argp/argp-parse.c:787 -msgid "(PROGRAM ERROR) Option should have been recognized!?" -msgstr "(¥×¥í¥°¥é¥à¥¨¥é¡¼) ¥ª¥×¥·¥ç¥ó¤Ïǧ¼±¤µ¤ì¤Æ¤¤¤ë¤Ù¤­¤Ç¤¹!?" +#: locale/programs/ld-ctype.c:1700 +msgid "to-value character sequence is smaller than from-value sequence" +msgstr "toÃͤÎʸ»ú¥·¡¼¥±¥ó¥¹¤ÏfromÃͤÎʸ»ú¥·¡¼¥±¥ó¥¹¤è¤ê¤â¾®¤µ¤¹¤®¤Þ¤¹" -#: nis/nis_print.c:133 -msgid "(Unknown object)\n" -msgstr "(ÉÔÌÀ¤Ê¥ª¥Ö¥¸¥§¥¯¥È¤Ç¤¹)\n" +#: locale/programs/ld-ctype.c:2057 locale/programs/ld-ctype.c:2108 +msgid "premature end of `translit_ignore' definition" +msgstr "`translit_ignore'ÄêµÁ¤Î½ªÃ¼¤¬Á᤹¤®¤Þ¤¹" -#: sunrpc/clnt_perr.c:132 -#, c-format -msgid "(unknown authentication error - %d)" -msgstr "(ÉÔÌÀ¤Êǧ¾Ú¥¨¥é¡¼ - %d)" +#: locale/programs/ld-ctype.c:2063 locale/programs/ld-ctype.c:2114 +#: locale/programs/ld-ctype.c:2156 +msgid "syntax error" +msgstr "ʸˡ¥¨¥é¡¼" -#: sunrpc/rpcinfo.c:613 -msgid "(unknown)" -msgstr "(ÉÔÌÀ)" +#: locale/programs/ld-ctype.c:2287 +#, c-format +msgid "%s: syntax error in definition of new character class" +msgstr "%s: ¿·¤·¤¤¥­¥ã¥é¥¯¥¿¥¯¥é¥¹¤ÎÄêµÁÃæ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹" -#: elf/sprof.c:570 +#: locale/programs/ld-ctype.c:2302 #, c-format -msgid "*** The file `%s' is stripped: no detailed analysis possible\n" -msgstr "*** ¥Õ¥¡¥¤¥ë `%s' ¤Ï strip ¤µ¤ì¤Æ¤¤¤Þ¤¹: ¾ÜºÙ¤Ê²òÀϤ¬½ÐÍè¤Þ¤»¤ó\n" +msgid "%s: syntax error in definition of new character map" +msgstr "%s: ¿·¤·¤¤¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¤ÎÄêµÁÃæ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹" -#: catgets/gencat.c:282 -msgid "*standard input*" -msgstr "*ɸ½àÆþÎÏ*" +#: locale/programs/ld-ctype.c:2477 +msgid "ellipsis range must be marked by two operands of same type" +msgstr "¾Êά¤ÎÈϰϤÏƱ¤¸·¿¤Î2¤Ä¤Î¥ª¥Ú¥é¥ó¥É¤Ë¤è¤Ã¤Æ¥Þ¡¼¥¯¤Å¤±¤µ¤ì¤Æ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: elf/cache.c:105 -#, c-format -msgid ", OS ABI: %s %d.%d.%d" -msgstr ", OS ABI: %s %d.%d.%d" +#: locale/programs/ld-ctype.c:2486 +msgid "with symbolic name range values the absolute ellipsis `...' must not be used" +msgstr "¥·¥ó¥Ü¥ë̾¤ÎÃͤÎÈϰϤȤ·¤ÆÀäÂоÊά `...' ¤Ï»ÈÍѤ·¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" -#: catgets/gencat.c:125 -msgid "" -"-o OUTPUT-FILE [INPUT-FILE]...\n" -"[OUTPUT-FILE [INPUT-FILE]...]" -msgstr "" -"-o ½ÐÎÏ¥Õ¥¡¥¤¥ë [ÆþÎÏ¥Õ¥¡¥¤¥ë]...\n" -"[½ÐÎÏ¥Õ¥¡¥¤¥ë [ÆþÎÏ¥Õ¥¡¥¤¥ë]...]" +#: locale/programs/ld-ctype.c:2501 +msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" +msgstr "UCS ¤ÎÃͤÎÈϰϤȤ·¤Æ16¿Ê¥·¥ó¥Ü¥ë¾Êά `..' ¤ò»ÈÍѤ·¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: stdio-common/../sysdeps/gnu/errlist.c:797 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:115 -msgid ".lib section in a.out corrupted" -msgstr "a.out Ãæ¤Î .lib ¥»¥¯¥·¥ç¥ó¤¬²õ¤ì¤Æ¤¤¤Þ¤¹" +#: locale/programs/ld-ctype.c:2515 +msgid "with character code range values one must use the absolute ellipsis `...'" +msgstr "ʸ»ú¥³¡¼¥É¤ÎÃͤÎÈϰϤȤ·¤ÆÀäÂоÊά `...' ¤ò»ÈÍѤ·¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: sunrpc/clnt_perr.c:118 sunrpc/clnt_perr.c:139 +#: locale/programs/ld-ctype.c:2666 #, c-format -msgid "; low version = %lu, high version = %lu" -msgstr "; low ¥Ð¡¼¥¸¥ç¥ó = %lu, high ¥Ð¡¼¥¸¥ç¥ó = %lu" +msgid "duplicated definition for mapping `%s'" +msgstr "½ÅÊ£¤·¤¿¥Þ¥Ã¥Ô¥ó¥° `%s' ¤ÎÄêµÁ" -#: sunrpc/clnt_perr.c:125 -msgid "; why = " -msgstr "; Íýͳ = " +#: locale/programs/ld-ctype.c:2744 locale/programs/ld-ctype.c:2888 +#, c-format +msgid "%s: `translit_start' section does not end with `translit_end'" +msgstr "%s: `translit_start' ¥»¥¯¥·¥ç¥ó¤¬ `translit_end' ¤Ç½ª¤Ã¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/charmap.c:1004 +#: locale/programs/ld-ctype.c:2839 #, c-format -msgid "<%s> and <%s> are illegal names for range" -msgstr "<%s> ¤È <%s> ¤ÏÈϰϤȤ·¤ÆÉÔÀµ¤Ê̾Á°¤Ç¤¹" +msgid "%s: duplicate `default_missing' definition" +msgstr "%s: `default_missing'ÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" + +#: locale/programs/ld-ctype.c:2844 +msgid "previous definition was here" +msgstr "Á°¤ÎÄêµÁ¤¬¤³¤³¤Ë¤¢¤ê¤Þ¤·¤¿" -#: locale/programs/repertoire.c:448 +#: locale/programs/ld-ctype.c:2866 #, c-format -msgid "<%s> and <%s> are invalid names for range" -msgstr "<%s> ¤È <%s> ¤ÏÈϰϤȤ·¤ÆÉÔÀµ¤Ê̾Á°¤Ç¤¹" +msgid "%s: no representable `default_missing' definition found" +msgstr "%s: ɽ¸½²Äǽ¤Ê`default_missing'ÄêµÁ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: locale/programs/ld-ctype.c:573 locale/programs/ld-ctype.c:608 +#: locale/programs/ld-ctype.c:3019 #, c-format -msgid " character must not be in class `%s'" -msgstr " ʸ»ú¤Ï¥¯¥é¥¹ `%s' ¤Ë¤¢¤Ã¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó" +msgid "%s: character `%s' not defined in charmap while needed as default value" +msgstr "%s: ¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×Ãæ¤Çʸ»ú`%s'¤¬Ì¤ÄêµÁ¤Ç¤¹¤¬¥Ç¥Õ¥©¥ë¥ÈÃͤȤ·¤ÆɬÍפǤ¹" -#: locale/programs/ld-ctype.c:561 locale/programs/ld-ctype.c:597 +#: locale/programs/ld-ctype.c:3024 locale/programs/ld-ctype.c:3108 +#: locale/programs/ld-ctype.c:3128 locale/programs/ld-ctype.c:3149 +#: locale/programs/ld-ctype.c:3170 locale/programs/ld-ctype.c:3191 +#: locale/programs/ld-ctype.c:3212 locale/programs/ld-ctype.c:3252 +#: locale/programs/ld-ctype.c:3273 locale/programs/ld-ctype.c:3340 #, c-format -msgid " character not in class `%s'" -msgstr " ʸ»ú¤Ï¥¯¥é¥¹ `%s' ¤Ë¤¢¤ê¤Þ¤»¤ó" +msgid "%s: character `%s' in charmap not representable with one byte" +msgstr "%s: ¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×Ãæ¤Îʸ»ú`%s'¤Ï1¥Ð¥¤¥È¤Çɽ¸½¤Ç¤­¤Þ¤»¤ó" -#. TRANS The experienced user will know what is wrong. -#. TRANS @c This error code is a joke. Its perror text is part of the joke. -#. TRANS @c Don't change it. -#: stdio-common/../sysdeps/gnu/errlist.c:622 -msgid "?" -msgstr "?" +#: locale/programs/ld-ctype.c:3103 locale/programs/ld-ctype.c:3123 +#: locale/programs/ld-ctype.c:3165 locale/programs/ld-ctype.c:3186 +#: locale/programs/ld-ctype.c:3207 locale/programs/ld-ctype.c:3247 +#: locale/programs/ld-ctype.c:3268 locale/programs/ld-ctype.c:3335 +#: locale/programs/ld-ctype.c:3377 locale/programs/ld-ctype.c:3402 +#, c-format +msgid "%s: character `%s' not defined while needed as default value" +msgstr "%s: ¥­¥ã¥é¥¯¥¿`%s'¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¤¬¡¢¥Ç¥Õ¥©¥ë¥ÈÃͤȤ·¤ÆɬÍפǤ¹" -#: sysdeps/generic/siglist.h:34 -msgid "Aborted" -msgstr "¥¢¥Ü¡¼¥È¤·¤Þ¤·¤¿" +#: locale/programs/ld-ctype.c:3144 +#, c-format +msgid "character `%s' not defined while needed as default value" +msgstr "¥Ç¥Õ¥©¥ë¥ÈÃͤȤ·¤ÆɬÍפʥ­¥ã¥é¥¯¥¿`%s'¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: nis/nis_print.c:324 -msgid "Access Rights : " -msgstr "¥¢¥¯¥»¥¹¸¢¸Â : " +#: locale/programs/ld-ctype.c:3384 locale/programs/ld-ctype.c:3409 +#, c-format +msgid "%s: character `%s' needed as default value not representable with one byte" +msgstr "%s: ¥Ç¥Õ¥©¥ë¥ÈÃͤȤ·¤ÆɬÍפʥ­¥ã¥é¥¯¥¿`%s'¤Ï1¥Ð¥¤¥È¤Çɽ¸½¤Ç¤­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/gnu/errlist.c:793 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:114 -msgid "Accessing a corrupted shared library" -msgstr "²õ¤ì¤¿¶¦Í­¥é¥¤¥Ö¥é¥ê¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¤¤Þ¤¹" +#: locale/programs/ld-ctype.c:3464 +msgid "no output digits defined and none of the standard names in the charmap" +msgstr "½ÐÎϷ夬ÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¡¢¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×Ãæ¤Ëɸ½à̾¤¬¤¢¤ê¤Þ¤»¤ó" -#. TRANS The requested socket address is already in use. @xref{Socket Addresses}. -#: stdio-common/../sysdeps/gnu/errlist.c:367 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:155 -msgid "Address already in use" -msgstr "¥¢¥É¥ì¥¹¤Ï´û¤Ë»ÈÍÑÃæ¤Ç¤¹" +#: locale/programs/ld-ctype.c:3755 +#, c-format +msgid "%s: transliteration data from locale `%s' not available" +msgstr "%s: ¥í¥±¡¼¥ë`%s'¤Ç¤Îtransliteration¥Ç¡¼¥¿¤ÏÍøÍѲÄǽ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: posix/../sysdeps/posix/gai_strerror.c:31 -msgid "Address family for hostname not supported" -msgstr "hostname¤Î¥¢¥É¥ì¥¹¥Õ¥¡¥ß¥ê¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: locale/programs/ld-ctype.c:3851 +#, c-format +msgid "%s: table for class \"%s\": %lu bytes\n" +msgstr "%s: ¥¯¥é¥¹ \"%s\" ¤ËÂФ¹¤ë¥Æ¡¼¥Ö¥ë: %lu ¥Ð¥¤¥È\n" -#. TRANS The address family specified for a socket is not supported; it is -#. TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}. -#: stdio-common/../sysdeps/gnu/errlist.c:362 -msgid "Address family not supported by protocol" -msgstr "¥¢¥É¥ì¥¹¥Õ¥¡¥ß¥ê¤Ï¥×¥í¥È¥³¥ë¤Ë¤è¤Ã¤Æ¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: locale/programs/ld-ctype.c:3920 +#, c-format +msgid "%s: table for map \"%s\": %lu bytes\n" +msgstr "%s: ¥Þ¥Ã¥× \"%s\" ¤ËÂФ¹¤ë¥Æ¡¼¥Ö¥ë: %lu ¥Ð¥¤¥È\n" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:154 -msgid "Address family not supported by protocol family" -msgstr "¥¢¥É¥ì¥¹¥Õ¥¡¥ß¥ê¤Ï¥×¥í¥È¥³¥ë¥Õ¥¡¥ß¥ê¤Ë¤è¤Ã¤Æ¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: locale/programs/ld-ctype.c:4053 +#, c-format +msgid "%s: table for width: %lu bytes\n" +msgstr "%s: width ¤ËÂФ¹¤ë¥Æ¡¼¥Ö¥ë: %lu ¥Ð¥¤¥È\n" -#: stdio-common/../sysdeps/gnu/errlist.c:761 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:98 -msgid "Advertise error" -msgstr "Advertise¥¨¥é¡¼" +#: locale/programs/ld-identification.c:171 +#, c-format +msgid "%s: no identification for category `%s'" +msgstr "%s: ¥«¥Æ¥´¥ê`%s'¤ËÂФ¹¤ëidentification¤¬¤¢¤ê¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/siglist.c:40 sysdeps/generic/siglist.h:40 -msgid "Alarm clock" -msgstr "¥¢¥é¡¼¥à¥¯¥í¥Ã¥¯" +#: locale/programs/ld-identification.c:436 +#, c-format +msgid "%s: duplicate category version definition" +msgstr "%s: ¥«¥Æ¥´¥ê¥Ð¡¼¥¸¥ç¥ó¤ÎÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" -#: posix/../sysdeps/posix/gai_strerror.c:45 -msgid "All requests done" -msgstr "Á´¤Æ¤ÎÍ×µá¤Ï´°Î»¤·¤Þ¤·¤¿" +#: locale/programs/ld-measurement.c:114 +#, c-format +msgid "%s: invalid value for field `%s'" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ¹¤ëÉÔÀµ¤ÊÃͤǤ¹" -#: malloc/memusagestat.c:57 -msgid "Also draw graph for total memory consumption" -msgstr "¥È¡¼¥¿¥ë¥á¥â¥ê¤Î¾ÃÈñ¤ËÂФ¹¤ë¥°¥é¥Õ¤âÉÁ¤­¤Þ¤¹" +#: locale/programs/ld-messages.c:115 locale/programs/ld-messages.c:149 +#, c-format +msgid "%s: field `%s' undefined" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤Ï̤ÄêµÁ¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:83 -msgid "Anode table overflow" -msgstr "¥¢¥Î¡¼¥É¥Æ¡¼¥Ö¥ë¥ª¡¼¥Ð¡¼¥Õ¥í¡¼" +#: locale/programs/ld-messages.c:122 locale/programs/ld-messages.c:156 +#, c-format +msgid "%s: value for field `%s' must not be an empty string" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ¹¤ëÃͤ϶õ¤Îʸ»úÎó¤Ç¤Ï¤¤¤±¤Þ¤»¤ó" -#: intl/tst-gettext2.c:38 -msgid "Another string for testing." -msgstr "¥Æ¥¹¥È¤Î¤¿¤á¤Î¾¤Îʸ»úÎó." +#: locale/programs/ld-messages.c:138 locale/programs/ld-messages.c:172 +#, c-format +msgid "%s: no correct regular expression for field `%s': %s" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ¹¤ëÀµµ¬É½¸½¤ÏÀµ¤·¤¯¤¢¤ê¤Þ¤»¤ó: %s" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:37 -msgid "Arg list too long" -msgstr "°ú¿ô¥ê¥¹¥È¤¬Ä¹¤¹¤®¤Þ¤¹" +#: locale/programs/ld-monetary.c:224 +#, c-format +msgid "%s: value of field `int_curr_symbol' has wrong length" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`int_curr_symbol'¤ÎÃͤÎŤµ¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" -#. TRANS Argument list too long; used when the arguments passed to a new program -#. TRANS being executed with one of the @code{exec} functions (@pxref{Executing a -#. TRANS File}) occupy too much memory space. This condition never arises in the -#. TRANS GNU system. -#: stdio-common/../sysdeps/gnu/errlist.c:70 -msgid "Argument list too long" -msgstr "°ú¿ô¥ê¥¹¥È¤¬Ä¹¤¹¤®¤Þ¤¹" +#: locale/programs/ld-monetary.c:232 +#, c-format +msgid "%s: value of field `int_curr_symbol' does not correspond to a valid name in ISO 4217" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`int_curr_symbol'¤ÎÃͤÏISO 4217Ãæ¤Ë½¾¤Ã¤¿Å¬ÀÚ¤Ê̾Á°¤ËÂбþ¤·¤Æ¤¤¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:63 -msgid "Argument out of domain" -msgstr "°ú¿ô¥ê¥¹¥È¤¬Ä¹¤¹¤®¤Þ¤¹" +#: locale/programs/ld-monetary.c:250 locale/programs/ld-numeric.c:119 +#, c-format +msgid "%s: value for field `%s' must not be the empty string" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ¹¤ëÃͤ϶õ¤Îʸ»úÎó¤Ç¤Ï¤¤¤±¤Þ¤»¤ó" -#: nis/nis_error.c:66 -msgid "Attempt to remove a non-empty table" -msgstr "¶õ¤Ç¤Ê¤¤¥Æ¡¼¥Ö¥ë¤òºï½ü¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹" +#: locale/programs/ld-monetary.c:278 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 ¤ÎÈϰϤˤʤ±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:116 -msgid "Attempting to link in more shared libraries than system limit" -msgstr "¥·¥¹¥Æ¥à¤ÎÀ©¸Â°Ê¾å¤Î¶¦Í­¥é¥¤¥Ö¥é¥ê¤Ø¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹" +#: locale/programs/ld-monetary.c:740 locale/programs/ld-numeric.c:275 +#, c-format +msgid "%s: value for field `%s' must be a single character" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ÎÃͤϥ·¥ó¥°¥ë¥­¥ã¥é¥¯¥¿¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" -#: stdio-common/../sysdeps/gnu/errlist.c:801 -msgid "Attempting to link in too many shared libraries" -msgstr "¤¢¤Þ¤ê¤Ë¿²á¤®¤ë¶¦Í­¥é¥¤¥Ö¥é¥ê¤Ø¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹" +#: locale/programs/ld-monetary.c:837 locale/programs/ld-numeric.c:319 +#, c-format +msgid "%s: `-1' must be last entry in `%s' field" +msgstr "%s: `-1'¤Ï`%s'¥Õ¥£¡¼¥ë¥É¤Î¡¢ºÇ¸å¤Î¹àÌܤǤʤ±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" -#: sunrpc/clnt_perr.c:338 -msgid "Authentication OK" -msgstr "ǧ¾Ú OK" +#: locale/programs/ld-monetary.c:859 locale/programs/ld-numeric.c:340 +#, c-format +msgid "%s: values for field `%s' must be smaller than 127" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ¹¤ëÃͤÏ127°Ê²¼¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" -#. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:562 -msgid "Authentication error" -msgstr "ǧ¾Ú¥¨¥é¡¼¤Ç¤¹" +#: locale/programs/ld-monetary.c:902 +msgid "conversion rate value cannot be zero" +msgstr "ÊÑ´¹¥ì¡¼¥ÈÃͤϥ¼¥í¤Ë¤Ï¤Ç¤­¤Þ¤»¤ó" -#: nis/nis_print.c:109 -msgid "BOGUS OBJECT\n" -msgstr "BOGUS OBJECT\n" +#: locale/programs/ld-name.c:130 locale/programs/ld-telephone.c:127 +#: locale/programs/ld-telephone.c:150 +#, c-format +msgid "%s: invalid escape sequence in field `%s'" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'Ãæ¤ÎÉÔÀµ¤Ê¥¨¥¹¥±¡¼¥×¥·¡¼¥±¥ó¥¹¤Ç¤¹" -#. TRANS Bad address; an invalid pointer was detected. -#. TRANS In the GNU system, this error never happens; you get a signal instead. -#: stdio-common/../sysdeps/gnu/errlist.c:115 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:44 -msgid "Bad address" -msgstr "ÉÔÀµ¤Ê¥¢¥É¥ì¥¹¤Ç¤¹" +#: locale/programs/ld-time.c:248 +#, c-format +msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'" +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÃæ¤Îʸ»úÎó %Zd Æâ¤ÎÊý¸þ¥Õ¥é¥°¤¬'+'¤Ç¤â'-'¤Ç¤â¤¢¤ê¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:80 -msgid "Bad exchange descriptor" -msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ëµ­½Ò»Ò¤Ç¤¹" +#: locale/programs/ld-time.c:259 +#, c-format +msgid "%s: direction flag in string %Zd in `era' field is not a single character" +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÆâ¤Îʸ»úÎó %Zd ¤ÎÊý¸þ¥Õ¥é¥°¤¬Ã±°ìʸ»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#. TRANS Bad file descriptor; for example, I/O on a descriptor that has been -#. TRANS closed or reading from a descriptor open only for writing (or vice -#. TRANS versa). -#: stdio-common/../sysdeps/gnu/errlist.c:83 -msgid "Bad file descriptor" -msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ëµ­½Ò»Ò¤Ç¤¹" +#: locale/programs/ld-time.c:272 +#, c-format +msgid "%s: invalid number for offset in string %Zd in `era' field" +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÆâ¤Îʸ»úÎó %Zd Æâ¤Î¥ª¥Õ¥»¥Ã¥È¤ËÂФ¹¤ëÈֹ椬ÉÔÀµ¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:39 -msgid "Bad file number" -msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ëÈÖ¹æ¤Ç¤¹" +#: locale/programs/ld-time.c:280 +#, c-format +msgid "%s: garbage at end of offset value in string %Zd in `era' field" +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÃæ¤Îʸ»úÎó %Zd Æâ¤Î¥ª¥Õ¥»¥Ã¥ÈÃͤκǸå¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹" -#: stdio-common/../sysdeps/gnu/errlist.c:749 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:87 -msgid "Bad font file format" -msgstr "ÉÔÀµ¤Ê¥Õ¥©¥ó¥È¥Õ¥¡¥¤¥ë·Á¼°¤Ç¤¹" +#: locale/programs/ld-time.c:331 +#, c-format +msgid "%s: invalid starting date in string %Zd in `era' field" +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÃæ¤Ë¤¢¤ëʸ»úÎó %Zd Æâ¤Î³«»ÏÆüÉÕ¤¬ÉÔÀµ¤Ç¤¹" -#: stdio-common/../sysdeps/gnu/errlist.c:641 -msgid "Bad message" -msgstr "ÉÔÀµ¤Ê¥á¥Ã¥»¡¼¥¸¤Ç¤¹" +#: locale/programs/ld-time.c:340 +#, c-format +msgid "%s: garbage at end of starting date in string %Zd in `era' field " +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÃæ¤Îʸ»úÎó %Zd Æâ¤Î³«»ÏÆüÉդκǸå¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:84 -msgid "Bad request code" -msgstr "ÉÔÀµ¤ÊÍ׵ᥳ¡¼¥É¤Ç¤¹" +#: locale/programs/ld-time.c:359 +#, c-format +msgid "%s: starting date is invalid in string %Zd in `era' field" +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥É¤Ë¤¢¤ëʸ»úÎó %Zd Ãæ¤Î³«»ÏÆü¤ÏÉÔÀµ¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:81 -msgid "Bad request descriptor" -msgstr "ÉÔÀµ¤ÊÍ׵ᵭ½Ò»Ò¤Ç¤¹" +#: locale/programs/ld-time.c:408 +#, c-format +msgid "%s: invalid stopping date in string %Zd in `era' field" +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥É¤Ë¤¢¤ëʸ»úÎó %Zd Æâ¤Î½ªÎ»ÆüÉÕ¤¬ÉÔÀµ¤Ç¤¹" -#: stdio-common/../sysdeps/unix/siglist.c:38 sysdeps/generic/siglist.h:63 -msgid "Bad system call" -msgstr "ÉÔÀµ¤Ê¥·¥¹¥Æ¥à¥³¡¼¥ë¤Ç¤¹" +#: locale/programs/ld-time.c:417 +#, c-format +msgid "%s: garbage at end of stopping date in string %Zd in `era' field" +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥ÉÃæ¤Îʸ»úÎó %Zd Æâ¤Î½ªÎ»ÆüÉդκǸå¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹" -#: posix/../sysdeps/posix/gai_strerror.c:33 -msgid "Bad value for ai_flags" -msgstr "ai_flags ¤ÎÃͤ¬ÉÔÀµ¤Ç¤¹" +#: locale/programs/ld-time.c:436 +#, c-format +msgid "%s: stopping date is invalid in string %Zd in `era' field" +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥É¤Ë¤¢¤ëʸ»úÎó %Zd Ãæ¤Î½ªÎ»Ç¯¤ÏÉÔÀµ¤Ç¤¹" -#: locale/programs/localedef.c:104 -msgid "Be strictly POSIX conform" -msgstr "¸·Ì©¤ËPOSIXµ¬³Ê¤Ë½¾¤¦" +#: locale/programs/ld-time.c:445 +#, c-format +msgid "%s: missing era name in string %Zd in `era' field" +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥É¤Ë¤¢¤ëʸ»úÎó %Zd Æâ¤Îera̾¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: nis/nis_print.c:305 -msgid "Binary data\n" -msgstr "¥Ð¥¤¥Ê¥ê¥Ç¡¼¥¿\n" +#: locale/programs/ld-time.c:457 +#, c-format +msgid "%s: missing era format in string %Zd in `era' field" +msgstr "%s: `era'¥Õ¥£¡¼¥ë¥É¤Ë¤¢¤ëʸ»úÎó %Zd Æâ¤Îera¥Õ¥©¡¼¥Þ¥Ã¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#. TRANS A file that isn't a block special file was given in a situation that -#. TRANS requires one. For example, trying to mount an ordinary file as a file -#. TRANS system in Unix gives this error. -#: stdio-common/../sysdeps/gnu/errlist.c:122 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:45 -msgid "Block device required" -msgstr "¥Ö¥í¥Ã¥¯¥Ç¥Ð¥¤¥¹¤¬É¬ÍפǤ¹" +#: locale/programs/ld-time.c:486 +#, c-format +msgid "%s: third operand for value of field `%s' must not be larger than %d" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ÎÃͤËÂФ¹¤ë£³ÈÖÌܤΥª¥Ú¥é¥ó¥É¤Ï %d ¤è¤ê¤âÂ礭¤¯¤¢¤Ã¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó" -#: sunrpc/pmap_rmt.c:348 -msgid "Broadcast poll problem" -msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥ÈÄ´ºº¤ÇÌäÂê" +#: locale/programs/ld-time.c:494 locale/programs/ld-time.c:502 +#, c-format +msgid "%s: values of field `%s' must not be larger than %d" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ÎÃÍ¤Ï %d °Ê¾å¤Ç¤¢¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" -#. TRANS Broken pipe; there is no process reading from the other end of a pipe. -#. TRANS Every library function that returns this error code also generates a -#. TRANS @code{SIGPIPE} signal; this signal terminates the program if not handled -#. TRANS or blocked. Thus, your program will never actually see @code{EPIPE} -#. TRANS unless it has handled or blocked @code{SIGPIPE}. -#: stdio-common/../sysdeps/gnu/errlist.c:235 -#: stdio-common/../sysdeps/unix/siglist.c:39 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:62 -#: sysdeps/generic/siglist.h:39 -msgid "Broken pipe" -msgstr "¥Ñ¥¤¥×¤¬ÀÚÃǤµ¤ì¤Þ¤·¤¿" +#: locale/programs/ld-time.c:510 +#, c-format +msgid "%s: values for field `%s' must not be larger than %d" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ÎÃÍ¤Ï %d °Ê¾å¤Ç¤¢¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/siglist.c:36 sysdeps/generic/siglist.h:37 -msgid "Bus error" -msgstr "¥Ð¥¹¥¨¥é¡¼" +#: locale/programs/ld-time.c:984 +#, c-format +msgid "%s: too few values for field `%s'" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ·¤Æ¾¯¤Ê¤¹¤®¤ëÃͤǤ¹" -#: stdio-common/../sysdeps/unix/siglist.c:50 sysdeps/generic/siglist.h:50 -msgid "CPU time limit exceeded" -msgstr "CPU»þ´ÖÀ©¸Â¤òĶ²á¤·¤Þ¤·¤¿" +#: locale/programs/ld-time.c:1029 +msgid "extra trailing semicolon" +msgstr ";·×¤Ê¥»¥ß¥³¥í¥ó¤¬»Ä¤Ã¤Æ¤¤¤Þ¤¹" -#: nis/nis_error.c:33 -msgid "Cache expired" -msgstr "¥­¥ã¥Ã¥·¥å¤¬ÇË´þ¤µ¤ì¤Þ¤·¤¿" +#: locale/programs/ld-time.c:1032 +#, c-format +msgid "%s: too many values for field `%s'" +msgstr "%s: ¥Õ¥£¡¼¥ë¥É`%s'¤ËÂФ·¤Æ¿¤¹¤®¤ëÃͤǤ¹" -#: stdio-common/../sysdeps/gnu/errlist.c:789 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:113 -msgid "Can not access a needed shared library" -msgstr "ɬÍפʶ¦Í­¥é¥¤¥Ö¥é¥ê¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/linereader.c:275 +msgid "garbage at end of number" +msgstr "¿ô»ú¤Î½ª¤ï¤ê¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:117 -msgid "Can not exec a shared library directly" -msgstr "¶¦Í­¥é¥¤¥Ö¥é¥ê¤ÏľÀܼ¹ԤǤ­¤Þ¤»¤ó" +#: locale/programs/linereader.c:387 +msgid "garbage at end of character code specification" +msgstr "¥­¥ã¥é¥¯¥¿¥³¡¼¥É»ØÄê¤Î½ª¤ï¤ê¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹" -#: nis/ypclnt.c:794 -msgid "Can't bind to server which serves this domain" -msgstr "¤³¤Î¥É¥á¥¤¥ó¤ò°·¤¦¥µ¡¼¥Ð¤Ø¥Ð¥¤¥ó¥É¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/linereader.c:473 +msgid "unterminated symbolic name" +msgstr "¥·¥ó¥Ü¥ë̾¤¬½ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó" -#: elf/ldconfig.c:1008 -msgid "Can't chdir to /" -msgstr "/ ¤Ëchdir¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/linereader.c:537 catgets/gencat.c:1195 +msgid "invalid escape sequence" +msgstr "ÉÔÅö¤ÊÊݸ»þ¹ï¤Ç¤¹" -#: nis/ypclnt.c:806 -msgid "Can't communicate with portmapper" -msgstr "¥Ý¡¼¥È¥Þ¥Ã¥Ñ¡¼¤ÈÄÌ¿®¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/linereader.c:600 +msgid "illegal escape sequence at end of string" +msgstr "ʸ»úÎó¤Î½ª¤ï¤ê¤ËÉÔÀµ¤Ê¥¨¥¹¥±¡¼¥×¥·¡¼¥±¥ó¥¹¤¬¤¢¤ê¤Þ¤·¤¿" -#: nis/ypclnt.c:808 -msgid "Can't communicate with ypbind" -msgstr "ypbind¤ÈÄÌ¿®¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/linereader.c:604 locale/programs/linereader.c:832 +msgid "unterminated string" +msgstr "ʸ»úÎ󤬽ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó" -#: nis/ypclnt.c:810 -msgid "Can't communicate with ypserv" -msgstr "ypserv¤ÈÄÌ¿®¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/linereader.c:646 +msgid "non-symbolic character value should not be used" +msgstr "Èó¥·¥ó¥Ü¥ë¥­¥ã¥é¥¯¥¿ÃͤϻÈÍѤ¹¤Ù¤­¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: elf/cache.c:394 +#: locale/programs/linereader.c:793 #, c-format -msgid "Can't create temporary cache file %s" -msgstr "¥Æ¥ó¥Ý¥é¥ê¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë %s ¤¬ºîÀ®¤Ç¤­¤Þ¤»¤ó" +msgid "symbol `%.*s' not in charmap" +msgstr "ÉÔÌÀ¤Ê¥·¥ó¥Ü¥ë`%.*s'¤¬¤¢¤ê¤Þ¤·¤¿: ¤³¤Î¹Ô¤Ï̵»ë¤·¤Þ¤¹" -#: elf/ldconfig.c:512 +#: locale/programs/linereader.c:814 #, c-format -msgid "Can't find %s" -msgstr "%s ¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" +msgid "symbol `%.*s' not in repertoire map" +msgstr "¥·¥ó¥Ü¥ë `%.*s' ¤¬¥ì¥Ñ¡¼¥È¥ê¥Þ¥Ã¥×Ãæ¤Ë¤¢¤ê¤Þ¤»¤ó" -#: elf/ldconfig.c:449 -#, c-format -msgid "Can't link %s to %s" -msgstr "%s ¤«¤é %s ¤Ø¥ê¥ó¥¯¤òÄ¥¤ì¤Þ¤»¤ó" +#: locale/programs/linereader.h:162 +msgid "trailing garbage at end of line" +msgstr "¹ÔËö¤Ë¥´¥ß¤¬»Ä¤Ã¤Æ¤¤¤Þ¤¹" -#: elf/ldconfig.c:528 -#, c-format -msgid "Can't lstat %s" -msgstr "lstat %s ¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/locale.c:75 +msgid "System information:" +msgstr "¥·¥¹¥Æ¥à¾ðÊó:" -#: elf/cache.c:131 elf/ldconfig.c:1029 -#, c-format -msgid "Can't open cache file %s\n" -msgstr "¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë %s ¤ò³«¤±¤Þ¤»¤ó\n" +#: locale/programs/locale.c:77 +msgid "Write names of available locales" +msgstr "ÍøÍѲÄǽ¤Ê¥í¥±¡¼¥ë̾¤Î½ÐÎÏ" -#: elf/ldconfig.c:1050 -#, c-format -msgid "Can't open cache file directory %s\n" -msgstr "¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò³«¤±¤Þ¤»¤ó\n" +#: locale/programs/locale.c:79 +msgid "Write names of available charmaps" +msgstr "ÍøÍѲÄǽ¤Ê¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×̾¤Î½ÐÎÏ" -#: elf/ldconfig.c:924 -#, c-format -msgid "Can't open configuration file %s" -msgstr "ÀßÄê¥Õ¥¡¥¤¥ë %s ¤ò³«¤±¤Þ¤»¤ó" +#: locale/programs/locale.c:80 +msgid "Modify output format:" +msgstr "½ÐÎÏ·Á¼°¤Î¹¹¿·:" -#: elf/ldconfig.c:634 -#, c-format -msgid "Can't open directory %s" -msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò³«¤±¤Þ¤»¤ó" +#: locale/programs/locale.c:81 +msgid "Write names of selected categories" +msgstr "ÁªÂò¤·¤¿¥«¥Æ¥´¥ê̾¤Î½ÐÎÏ" -#: elf/cache.c:387 -#, c-format -msgid "Can't remove old temporary cache file %s" -msgstr "¸Å¤¤¥Æ¥ó¥Ý¥é¥ê¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë %s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/locale.c:82 +msgid "Write names of selected keywords" +msgstr "ÁªÂò¤·¤¿¥­¡¼¥ï¡¼¥É̾¤Î½ÐÎÏ" -#: elf/ldconfig.c:344 -#, c-format -msgid "Can't stat %s" -msgstr "stat %s ¤¬¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/locale.c:83 +msgid "Print more information" +msgstr "¾ÜºÙ¾ðÊó¤Îɽ¼¨" -#: elf/ldconfig.c:414 -#, c-format -msgid "Can't stat %s\n" -msgstr "stat %s ¤¬¤Ç¤­¤Þ¤»¤ó\n" +#: locale/programs/locale.c:88 +msgid "Get locale-specific information." +msgstr "¥í¥±¡¼¥ë¸ÇÍ­¾ðÊó¤òÆÀ¤ë." -#: elf/ldconfig.c:443 -#, c-format -msgid "Can't unlink %s" -msgstr "%s ¤ò¥¢¥ó¥ê¥ó¥¯¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/locale.c:91 +msgid "" +"NAME\n" +"[-a|-m]" +msgstr "" +"̾Á°\n" +"[-a|-m]" -#. TRANS No memory available. The system cannot allocate more virtual memory -#. TRANS because its capacity is full. -#: stdio-common/../sysdeps/gnu/errlist.c:104 -msgid "Cannot allocate memory" -msgstr "¥á¥â¥ê¤ò³ÎÊݤǤ­¤Þ¤»¤ó" +#: locale/programs/locale.c:512 +msgid "while preparing output" +msgstr "Á°½èÍý½ÐÎÏÃæ" -#. TRANS The requested socket address is not available; for example, you tried -#. TRANS to give a socket a name that doesn't match the local host name. -#. TRANS @xref{Socket Addresses}. -#: stdio-common/../sysdeps/gnu/errlist.c:374 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:156 -msgid "Cannot assign requested address" -msgstr "Í׵ᥢ¥É¥ì¥¹¤Ë³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó" +#: locale/programs/localedef.c:121 +msgid "Input Files:" +msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë:" -#: sunrpc/pmap_rmt.c:265 -msgid "Cannot create socket for broadcast rpc" -msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥ÈRPC¤Î¤¿¤á¤Î¥½¥±¥Ã¥È¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/localedef.c:123 +msgid "Symbolic character names defined in FILE" +msgstr "¥·¥ó¥Ü¥ë¥­¥ã¥é¥¯¥¿Ì¾¤Ï FILE Ãæ¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: stdio-common/../sysdeps/gnu/errlist.c:805 -msgid "Cannot exec a shared library directly" -msgstr "¶¦Í­¥é¥¤¥Ö¥é¥ê¤ÏľÀܼ¹ԤǤ­¤Þ¤»¤ó" +#: locale/programs/localedef.c:124 +msgid "Source definitions are found in FILE" +msgstr "¥Õ¥¡¥¤¥ëÃæ¤Ë¥½¡¼¥¹ÄêµÁ¤¬¤¢¤ê¤Þ¤·¤¿" -#: elf/readlib.c:99 -#, c-format -msgid "Cannot fstat file %s.\n" -msgstr "¥Õ¥¡¥¤¥ë %s ¤ò fstat ¤Ç¤­¤Þ¤»¤ó.\n" +#: locale/programs/localedef.c:126 +msgid "FILE contains mapping from symbolic names to UCS4 values" +msgstr "¥Õ¥¡¥¤¥ë¤Ï¥·¥ó¥Ü¥ë̾¤«¤éUCS4ÃͤؤΥޥåԥ󥰤ò´Þ¤ó¤Ç¤¤¤Þ¤¹" -#: sunrpc/rpc_main.c:1417 -msgid "Cannot have more than one file generation flag!\n" -msgstr "¥Õ¥¡¥¤¥ëÀ¸À®¥Õ¥é¥°¤ÏÊ£¿ô»ØÄê¤Ç¤­¤Þ¤»¤ó!\n" +#: locale/programs/localedef.c:130 +msgid "Create output even if warning messages were issued" +msgstr "·Ù¹ð¥á¥Ã¥»¡¼¥¸¤¬¤¢¤Ã¤Æ¤â½ÐÎϤòºîÀ®" -#: elf/ldconfig.c:689 elf/ldconfig.c:732 -#, c-format -msgid "Cannot lstat %s" -msgstr "lstat %s ¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/localedef.c:131 +msgid "Create old-style tables" +msgstr "¸Å¤¤·Á¼°¤Î¥Æ¡¼¥Ö¥ë¤òºîÀ®" -#: elf/readlib.c:118 -#, c-format -msgid "Cannot mmap file %s.\n" -msgstr "¥Õ¥¡¥¤¥ë %s ¤òmmap¤Ç¤­¤Þ¤»¤ó.\n" +#: locale/programs/localedef.c:132 +msgid "Optional output file prefix" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ë¥×¥ì¥Õ¥£¥Ã¥¯¥¹¤òÉղ乤ë" -#: sunrpc/pmap_rmt.c:361 -msgid "Cannot receive reply to broadcast" -msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥È¤Ø¤Î±þÅú¤ò¼õ¤±¼è¤é¤ì¤Þ¤»¤ó" +#: locale/programs/localedef.c:133 +msgid "Be strictly POSIX conform" +msgstr "¸·Ì©¤ËPOSIXµ¬³Ê¤Ë½¾¤¦" -#: sunrpc/pmap_clnt.c:136 -msgid "Cannot register service" -msgstr "¥µ¡¼¥Ó¥¹¤òÅÐÏ¿¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/localedef.c:135 +msgid "Suppress warnings and information messages" +msgstr "·Ù¹ð¤È¾ðÊó¥á¥Ã¥»¡¼¥¸¤ÎÍÞÀ©" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:173 -msgid "Cannot send after socket shutdown" -msgstr "¥½¥±¥Ã¥È¤òÊĤ¸¤¿¸å¤Ë¥Ñ¥±¥Ã¥È¤ÏÁ÷¿®¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/localedef.c:136 +msgid "Print more messages" +msgstr "¾ÜºÙ¤Ê¥á¥Ã¥»¡¼¥¸¤Îɽ¼¨" -#. TRANS The socket has already been shut down. -#: stdio-common/../sysdeps/gnu/errlist.c:435 -msgid "Cannot send after transport endpoint shutdown" -msgstr "žÁ÷Àè¤òÊĤ¸¤¿¸å¤ËÁ÷¿®¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/localedef.c:137 +msgid "Archive control:" +msgstr "¥¢¡¼¥«¥¤¥ÖÀ©¸æ" -#: sunrpc/pmap_rmt.c:323 -msgid "Cannot send broadcast packet" -msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥È¥Ñ¥±¥Ã¥È¤òÁ÷¿®¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/localedef.c:139 +msgid "Don't add new data to archive" +msgstr "¥¢¡¼¥«¥¤¥Ö¤Ë¿·¤·¤¤¥Ç¡¼¥¿¤òÄɲ䷤ʤ¤" -#: sunrpc/pmap_rmt.c:272 -msgid "Cannot set socket option SO_BROADCAST" -msgstr "¥½¥±¥Ã¥È¥ª¥×¥·¥ç¥ó SO_BROADCAST ¤òÀßÄê¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/localedef.c:141 +msgid "Add locales named by parameters to archive" +msgstr "¥Ñ¥é¥á¡¼¥¿¤Ç»ØÄꤵ¤ì¤¿Ì¾Á°¤ò»ý¤Ä¥í¥±¡¼¥ë¤ò¥¢¡¼¥«¥¤¥Ö¤ËÄɲÃ" -#: sunrpc/rpc_main.c:1195 -msgid "Cannot specify more than one input file!\n" -msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë¤òÊ£¿ô»ØÄê¤Ç¤­¤Þ¤»¤ó!\n" +#: locale/programs/localedef.c:142 +msgid "Replace existing archive content" +msgstr "¥¢¡¼¥«¥¤¥Ö¤Î¸½Â¸¤¹¤ëÃæ¿È¤òÃÖ´¹" -#: elf/ldconfig.c:701 -#, c-format -msgid "Cannot stat %s" -msgstr "stat %s ¤¬¤Ç¤­¤Þ¤»¤ó" +#: locale/programs/localedef.c:144 +msgid "Remove locales named by parameters from archive" +msgstr "¥Ñ¥é¥á¡¼¥¿¤Ç»ØÄꤵ¤ì¤¿Ì¾Á°¤ò»ý¤Ä¥í¥±¡¼¥ë¤ò¥¢¡¼¥«¥¤¥Ö¤«¤éºï½ü" -#: sunrpc/rpc_main.c:1374 -msgid "Cannot use netid flag with inetd flag!\n" -msgstr "inetd ¥Õ¥é¥°¤È¤È¤â¤Ë netid ¥Õ¥é¥°¤Ï»È¤¨¤Þ¤»¤ó!\n" +#: locale/programs/localedef.c:145 +msgid "List content of archive" +msgstr "¥¢¡¼¥«¥¤¥ÖÃæ¤Î¥ê¥¹¥È¤òɽ¼¨" -#: sunrpc/rpc_main.c:1386 -msgid "Cannot use netid flag without TIRPC!\n" -msgstr "TIRPC ¤Ê¤·¤Ë netid ¥Õ¥é¥°¤Ï»È¤¨¤Þ¤»¤ó!\n" +#: locale/programs/localedef.c:147 +msgid "locale.alias file to consult when making archive" +msgstr "¥¢¡¼¥«¥¤¥ÖºîÀ®Ãæ¤Ë»ÈÍѤ¹¤ëlocale.alias¥Õ¥¡¥¤¥ë" -#: sunrpc/rpc_main.c:1393 -msgid "Cannot use table flags with newstyle!\n" -msgstr "¿··Á¼°¤ò¤â¤Ä¥Æ¡¼¥Ö¥ë¥Õ¥é¥°¤Ï»È¤¨¤Þ¤»¤ó!\n" +#: locale/programs/localedef.c:152 +msgid "Compile locale specification" +msgstr "¥í¥±¡¼¥ë»ÅÍͤò¥³¥ó¥Ñ¥¤¥ë¤¹¤ë" -#: elf/ldconfig.c:126 -msgid "Change to and use ROOT as root directory" -msgstr "¥ë¡¼¥È¥Ç¥£¥ì¥¯¥È¥ê¤È¤·¤ÆROOT¤ò»ÈÍѤ·¡¢¤½¤³¤ØÊѹ¹¤·¤Þ¤¹" +#: locale/programs/localedef.c:155 +msgid "" +"NAME\n" +"[--add-to-archive|--delete-from-archive] FILE...\n" +"--list-archive [FILE]" +msgstr "" +"NAME\n" +"[--add-to-archive|--delete-from-archive] ¥Õ¥¡¥¤¥ë...\n" +"--list-archive [¥Õ¥¡¥¤¥ë]" + +#: locale/programs/localedef.c:233 +msgid "cannot create directory for output files" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ëÍѥǥ£¥ì¥¯¥È¥ê¤¬ºîÀ®¤Ç¤­¤Þ¤»¤ó" + +#: locale/programs/localedef.c:244 +msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" +msgstr "Ã×̿Ū¥¨¥é¡¼: ¥·¥¹¥Æ¥à¤Ï`_POSIX2_LOCALEDEF'¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: elf/cache.c:426 +#: locale/programs/localedef.c:258 locale/programs/localedef.c:274 +#: locale/programs/localedef.c:599 locale/programs/localedef.c:619 #, c-format -msgid "Changing access rights of %s to %#o failed" -msgstr "%s ¤Î¥¢¥¯¥»¥¹¸¢¸Â¤ò %#o ¤ØÊѹ¹¤¹¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +msgid "cannot open locale definition file `%s'" +msgstr "¥í¥±¡¼¥ëÄêµÁ¥Õ¥¡¥¤¥ë`%s'¤ò³«¤±¤Þ¤»¤ó" -#: 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 "¥Á¥ã¥ó¥Í¥ëÈֹ椬Èϰϳ°¤Ç¤¹" +#: locale/programs/localedef.c:286 +#, c-format +msgid "cannot write output files to `%s'" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë`%s'¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó" -#: nis/nis_print.c:268 +#: locale/programs/localedef.c:367 #, c-format -msgid "Character Separator : %c\n" -msgstr "ʸ»ú¥»¥Ñ¥ì¡¼¥¿ : %c\n" +msgid "" +"System's directory for character maps : %s\n" +" repertoire maps: %s\n" +" locale path : %s\n" +"%s" +msgstr "" +"¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¤¬¤¢¤ë ¥·¥¹¥Æ¥à¥Ç¥£¥ì¥¯¥È¥ê: %s\n" +"¥ì¥Ñ¡¼¥È¥ê¡¼¥Þ¥Ã¥×¤¬¤¢¤ë¥·¥¹¥Æ¥à¥Ç¥£¥ì¥¯¥È¥ê: %s\n" +"¥í¥±¡¼¥ë¥Ñ¥¹¤ËÂФ¹¤ë ¥·¥¹¥Æ¥à¥Ç¥£¥ì¥¯¥È¥ê: %s\n" +"%s" -#: stdio-common/../sysdeps/unix/siglist.c:46 sysdeps/generic/siglist.h:46 -msgid "Child exited" -msgstr "»Ò¥×¥í¥»¥¹¤¬½ªÎ»¤·¤Þ¤·¤¿" +#: locale/programs/localedef.c:567 +msgid "circular dependencies between locale definitions" +msgstr "¥í¥±¡¼¥ëÄêµÁÃæ¤Ç°Í¸´Ø·¸¤Î¥ë¡¼¥×¤¬¤¢¤ê¤Þ¤¹" -#: sunrpc/clnt_perr.c:357 -msgid "Client credential too weak" -msgstr "¥¯¥é¥¤¥¢¥ó¥È¤Î¿®Ç¤¤¬¼å¤¹¤®¤Þ¤¹" +#: locale/programs/localedef.c:573 +#, c-format +msgid "cannot add already read locale `%s' a second time" +msgstr "ÆɹþºÑ¤ß¤Î¥í¥±¡¼¥ë`%s'¤Ï2²ó¤âÄɲäǤ­¤Þ¤»¤ó" -#: nis/nis_print.c:270 -msgid "Columns :\n" -msgstr "¥«¥é¥à :\n" +#: locale/programs/locarchive.c:89 locale/programs/locarchive.c:259 +msgid "cannot create temporary file" +msgstr "¥Æ¥ó¥Ý¥é¥ê¥Õ¥¡¥¤¥ë¤¬ºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/gnu/errlist.c:769 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:100 -msgid "Communication error on send" -msgstr "Á÷¿®Ãæ¤ÎÄÌ¿®¥¨¥é¡¼" +#: locale/programs/locarchive.c:118 locale/programs/locarchive.c:305 +msgid "cannot initialize archive file" +msgstr "¥¢¡¼¥«¥¤¥Ö¥Õ¥¡¥¤¥ë¤ò½é´ü²½¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/localedef.c:112 -msgid "Compile locale specification" -msgstr "¥í¥±¡¼¥ë»ÅÍͤò¥³¥ó¥Ñ¥¤¥ë¤¹¤ë" +#: locale/programs/locarchive.c:125 locale/programs/locarchive.c:312 +msgid "cannot resize archive file" +msgstr "¥¢¡¼¥«¥¤¥Ö¥Õ¥¡¥¤¥ë¤Î¥µ¥¤¥ºÊѹ¹¤¬¤Ç¤­¤Þ¤»¤ó" -#. TRANS Go home and have a glass of warm, dairy-fresh milk. -#: stdio-common/../sysdeps/gnu/errlist.c:632 -msgid "Computer bought the farm" -msgstr "¥³¥ó¥Ô¥å¡¼¥¿¤¬¡ÖÀï»à¡×¤·¤Þ¤·¤¿" +#: locale/programs/locarchive.c:134 locale/programs/locarchive.c:321 +#: locale/programs/locarchive.c:511 +msgid "cannot map archive header" +msgstr "¥¢¡¼¥«¥¤¥Ö¥Ø¥Ã¥À¤ò¥Þ¥Ã¥×¤Ç¤­¤Þ¤»¤ó" -#: elf/ldconfig.c:136 -msgid "Configure Dynamic Linker Run Time Bindings." -msgstr "¥À¥¤¥Ê¥ß¥Ã¥¯¥ê¥ó¥«¤Î¥é¥ó¥¿¥¤¥à¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÀßÄꤷ¤Þ¤¹." +#: locale/programs/locarchive.c:156 +msgid "failed to create new locale archive" +msgstr "¿·¤·¤¤¥í¥±¡¼¥ë¥¢¡¼¥«¥¤¥Ö¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#. TRANS A remote host refused to allow the network connection (typically because -#. TRANS it is not running the requested service). -#: stdio-common/../sysdeps/gnu/errlist.c:452 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:176 -msgid "Connection refused" -msgstr "Àܳ¤òµñÈݤµ¤ì¤Þ¤·¤¿" +#: locale/programs/locarchive.c:168 +msgid "cannot change mode of new locale archive" +msgstr "¿·¤·¤¤¥í¥±¡¼¥ë¥¢¡¼¥«¥¤¥Ö¥Õ¥¡¥¤¥ë¤Î¥â¡¼¥É¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" -#. TRANS A network connection was closed for reasons outside the control of the -#. TRANS local host, such as by the remote machine rebooting or an unrecoverable -#. TRANS protocol violation. -#: stdio-common/../sysdeps/gnu/errlist.c:402 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:161 -msgid "Connection reset by peer" -msgstr "Àܳ¤¬Â¾¤«¤é¥ê¥»¥Ã¥È¤µ¤ì¤Þ¤·¤¿" +#: locale/programs/locarchive.c:253 +msgid "cannot map locale archive file" +msgstr "¥í¥±¡¼¥ë¥¢¡¼¥«¥¤¥Ö¥Õ¥¡¥¤¥ë¤ò¥Þ¥Ã¥×¤Ç¤­¤Þ¤»¤ó" -#. TRANS A socket operation with a specified timeout received no response during -#. TRANS the timeout period. -#: stdio-common/../sysdeps/gnu/errlist.c:446 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:175 -msgid "Connection timed out" -msgstr "Àܳ¥¿¥¤¥à¥¢¥¦¥È¤Ç¤¹" +#: locale/programs/locarchive.c:329 +msgid "cannot lock new archive" +msgstr "¿·¤·¤¤¥¢¡¼¥«¥¤¥Ö¤Î¥Õ¥¡¥¤¥ë¥í¥Ã¥¯¤ò¼èÆÀ¤Ç¤­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/siglist.c:45 sysdeps/generic/siglist.h:45 -msgid "Continued" -msgstr "·Ñ³" +#: locale/programs/locarchive.c:380 +msgid "cannot extend locale archive file" +msgstr "¥í¥±¡¼¥ë¥¢¡¼¥«¥¤¥Ö¥Õ¥¡¥¤¥ë¤ò³ÈÄ¥¤Ç¤­¤Þ¤»¤ó" -#: iconv/iconv_prog.c:73 -msgid "Convert encoding of given files from one encoding to another." -msgstr "Í¿¤¨¤é¤ì¤¿¥Õ¥¡¥¤¥ë¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤òÊÑ´¹¤¹¤ë." +#: locale/programs/locarchive.c:389 +msgid "cannot change mode of resized locale archive" +msgstr "¥µ¥¤¥º¤òÊѹ¹¤·¤¿¥í¥±¡¼¥ë¥¢¡¼¥«¥¤¥Ö¤Î¥Õ¥¡¥¤¥ë¥â¡¼¥É¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" + +#: locale/programs/locarchive.c:397 +msgid "cannot rename new archive" +msgstr "¿·¤·¤¤¥í¥±¡¼¥ë¥¢¡¼¥«¥¤¥Ö¤Î¥Õ¥¡¥¤¥ë̾¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" -#: 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:904 +#: locale/programs/locarchive.c:450 #, c-format -msgid "" -"Copyright (C) %s Free Software Foundation, Inc.\n" -"This is free software; see the source for copying conditions. There is NO\n" -"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -msgstr "" -"Copyright (C) %s Free Software Foundation, Inc.\n" -"This is free software; see the source for copying conditions. There is NO\n" -"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"¤³¤ì¤Ï¥Õ¥ê¡¼¥½¥Õ¥È¥¦¥§¥¢¤Ç¤¹¡£ÍøÍѵöÂú¤Ë¤Ä¤¤¤Æ¤Ï¥½¡¼¥¹¤ò¤´Í÷¤¯¤À¤µ¤¤¡£\n" -"¾¦¶ÈÀ­¤äÆÃÄê¤ÎÌÜŪ¤Ø¤ÎŬ¹çÀ­¤ÎÇ¡²¿¤Ë´Ø¤ï¤é¤º¡¢ÌµÊݾڤǤ¹¡£ \n" +msgid "cannot open locale archive \"%s\"" +msgstr "¥í¥±¡¼¥ë¥¢¡¼¥«¥¤¥Ö \"%s\" ¤ò³«¤±¤Þ¤»¤ó" -#: nscd/nscd_conf.c:166 +#: locale/programs/locarchive.c:455 #, c-format -msgid "Could not create log file \"%s\"" -msgstr "¥í¥°¥Õ¥¡¥¤¥ë\"%s\"¤òºîÀ®¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿" +msgid "cannot stat locale archive \"%s\"" +msgstr "¥í¥±¡¼¥ë¥¢¡¼¥«¥¤¥Ö \"%s\" ¤ò stat ¤Ç¤­¤Þ¤»¤ó" -#: catgets/gencat.c:112 -msgid "Create C header file NAME containing symbol definitions" -msgstr "¥·¥ó¥Ü¥ëÄêµÁ¤ò´Þ¤ó¤À C ¥Ø¥Ã¥À¥Õ¥¡¥¤¥ë NAME ¤òºîÀ®" +#: locale/programs/locarchive.c:474 +#, c-format +msgid "cannot lock locale archive \"%s\"" +msgstr "¥í¥±¡¼¥ë¥¢¡¼¥«¥¤¥Ö \"%s\" ¤ò¥í¥Ã¥¯¤Ç¤­¤Þ¤»¤ó" -#: iconv/iconvconfig.c:110 -msgid "Create fastloading iconv module configuration file." -msgstr "¹â®Æɹþ¤ßÍÑ iconv ¥â¥¸¥å¡¼¥ëÀßÄê¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹." +#: locale/programs/locarchive.c:497 +msgid "cannot read archive header" +msgstr "¥¢¡¼¥«¥¤¥Ö¥Ø¥Ã¥À¤¬Æɤá¤Þ¤»¤ó" -#: locale/programs/localedef.c:102 -msgid "Create old-style tables" -msgstr "¸Å¤¤·Á¼°¤Î¥Æ¡¼¥Ö¥ë¤òºîÀ®" +#: locale/programs/locarchive.c:557 +#, c-format +msgid "locale '%s' already exists" +msgstr "¥í¥±¡¼¥ë '%s' ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Þ¤¹" -#: locale/programs/localedef.c:101 -msgid "Create output even if warning messages were issued" -msgstr "·Ù¹ð¥á¥Ã¥»¡¼¥¸¤¬¤¢¤Ã¤Æ¤â½ÐÎϤòºîÀ®" +#: locale/programs/locarchive.c:788 locale/programs/locarchive.c:803 +#: locale/programs/locarchive.c:815 locale/programs/locarchive.c:827 +#: locale/programs/locfile.c:343 +msgid "cannot add to locale archive" +msgstr "¥í¥±¡¼¥ë¥¢¡¼¥«¥¤¥Ö¤ËÄɲäǤ­¤Þ¤»¤ó" -#: nis/nis_print.c:329 +#: locale/programs/locarchive.c:982 #, c-format -msgid "Creation Time : %s" -msgstr "ºîÀ®Æü»þ : %s" +msgid "locale alias file `%s' not found" +msgstr "¥í¥±¡¼¥ë¥¨¥¤¥ê¥¢¥¹¥Õ¥¡¥¤¥ë `%s' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:48 -msgid "Cross-device link" -msgstr "¥¯¥í¥¹¥Ç¥Ð¥¤¥¹¥ê¥ó¥¯" +#: locale/programs/locarchive.c:1126 +#, c-format +msgid "Adding %s\n" +msgstr "%s ¤òÄɲÃÃæ\n" -#: malloc/memusagestat.c:67 -msgid "DATAFILE [OUTFILE]" -msgstr "¥Ç¡¼¥¿¥Õ¥¡¥¤¥ë [½ÐÎÏ¥Õ¥¡¥¤¥ë]" +#: locale/programs/locarchive.c:1132 +#, c-format +msgid "stat of \"%s\" failed: %s: ignored" +msgstr "\"%s\" ¤Î stat ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s ¤ò̵»ë¤·¤Þ¤¹" -#: nis/nss_nisplus/nisplus-publickey.c:96 -#: nis/nss_nisplus/nisplus-publickey.c:172 +#: locale/programs/locarchive.c:1138 #, c-format -msgid "DES entry for netname %s not unique\n" -msgstr "¥Í¥Ã¥È̾ %s ¤Î DES ¥¨¥ó¥È¥ê¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹\n" +msgid "\"%s\" is no directory; ignored" +msgstr "\"%s\" ¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó; ̵»ë¤·¤Þ¤¹" -#: nis/nis_print.c:115 -msgid "DIRECTORY\n" -msgstr "¥Ç¥£¥ì¥¯¥È¥ê\n" +#: locale/programs/locarchive.c:1145 +#, c-format +msgid "cannot open directory \"%s\": %s: ignored" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê \"%s\" ¤¬³«¤±¤Þ¤»¤ó: %s ¤ò̵»ë¤·¤Þ¤¹" -#: elf/dl-deps.c:101 elf/dl-open.c:188 -msgid "DST not allowed in SUID/SGID programs" -msgstr "DST¤ÏSUID/SGID¥×¥í¥°¥é¥àÃæ¤Ç¤Ïµö¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: locale/programs/locarchive.c:1217 +#, c-format +msgid "incomplete set of locale files in \"%s\"" +msgstr "¥í¥±¡¼¥ë¥Õ¥¡¥¤¥ë \"%s\" Ãæ¤Î¥í¥±¡¼¥ë½¸¹ç¤¬ÉÔ´°Á´¤Ç¤¹" -#: elf/dl-error.c:71 -msgid "DYNAMIC LINKER BUG!!!" -msgstr "¥À¥¤¥Ê¥ß¥Ã¥¯¥ê¥ó¥«¤Î¥Ð¥°!!!" +#: locale/programs/locarchive.c:1281 +#, c-format +msgid "cannot read all files in \"%s\": ignored" +msgstr "\"%s\" Ãæ¤ÎÁ´¥Õ¥¡¥¤¥ë¤òÆɤá¤Þ¤»¤ó: ̵»ë¤·¤Þ¤¹" -#: nis/nis_error.c:52 -msgid "Database for table does not exist" -msgstr "¥Æ¡¼¥Ö¥ë¤Î¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬Â¸ºß¤·¤Þ¤»¤ó" +#: locale/programs/locarchive.c:1351 +#, c-format +msgid "locale \"%s\" not in archive" +msgstr "¥í¥±¡¼¥ë \"%s\" ¤Ï¥¢¡¼¥«¥¤¥ÖÃæ¤Ë¤¢¤ê¤Þ¤»¤ó" -#: nis/ypclnt.c:820 -msgid "Database is busy" -msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¥Ó¥¸¡¼¾õÂ֤Ǥ¹" +#: locale/programs/locfile.c:132 +#, c-format +msgid "argument to `%s' must be a single character" +msgstr "°ú¿ô `%s' ¤Ï¥·¥ó¥°¥ë¥­¥ã¥é¥¯¥¿¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:75 -msgid "Deadlock situation detected/avoided" -msgstr "¥Ç¥Ã¥É¥í¥Ã¥¯¾õÂÖ¤ò¸¡ÃÎ/²óÈò¤·¤Þ¤·¤¿" +#: locale/programs/locfile.c:251 +msgid "syntax error: not inside a locale definition section" +msgstr "ʸˡ¥¨¥é¡¼: ¥í¥±¡¼¥ëÄêµÁ¥»¥¯¥·¥ç¥óÆâÉô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: nis/nis_print.c:229 -msgid "Default Access rights :\n" -msgstr "¥Ç¥Õ¥©¥ë¥È¥¢¥¯¥»¥¹¸¢¸Â :\n" +#: locale/programs/locfile.c:625 +#, c-format +msgid "cannot open output file `%s' for category `%s'" +msgstr "¥«¥Æ¥´¥ê`%2$s'ÍѤνÐÎÏ¥Õ¥¡¥¤¥ë`%1$s'¤ò³«¤±¤Þ¤»¤ó" -#. TRANS No default destination address was set for the socket. You get this -#. TRANS error when you try to transmit data over a connectionless socket, -#. TRANS without first specifying a destination for the data with @code{connect}. -#: stdio-common/../sysdeps/gnu/errlist.c:430 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:126 -msgid "Destination address required" -msgstr "Á÷¿®À襢¥É¥ì¥¹¤¬É¬ÍפǤ¹" +#: locale/programs/locfile.c:649 +#, c-format +msgid "failure while writing data for category `%s'" +msgstr "¥«¥Æ¥´¥ê`%s'¤Î¥Ç¡¼¥¿¤ò½ñ¤­¹þ¤ßÃæ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:46 -msgid "Device busy" -msgstr "¥Ç¥Ð¥¤¥¹¤¬¥Ó¥¸¡¼¾õÂ֤Ǥ¹" +#: locale/programs/locfile.c:745 +#, c-format +msgid "cannot create output file `%s' for category `%s'" +msgstr "¥«¥Æ¥´¥ê`%2$s'ÍѤνÐÎÏ¥Õ¥¡¥¤¥ë`%1$s'¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/gnu/errlist.c:669 -msgid "Device not a stream" -msgstr "¥Ç¥Ð¥¤¥¹¤Ï¥¹¥È¥ê¡¼¥à·¿¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: locale/programs/locfile.h:59 +msgid "expect string argument for `copy'" +msgstr "`copy'¤Ë¤Ïʸ»úÎó°ú¿ô¤¬´üÂÔ¤µ¤ì¤Þ¤¹" -#. TRANS Resource busy; a system resource that can't be shared is already in use. -#. TRANS For example, if you try to delete a file that is the root of a currently -#. TRANS mounted filesystem, you get this error. -#: stdio-common/../sysdeps/gnu/errlist.c:129 -msgid "Device or resource busy" -msgstr "¥Ç¥Ð¥¤¥¹¤â¤·¤¯¤Ï¥ê¥½¡¼¥¹¤¬¥Ó¥¸¡¼¾õÂ֤Ǥ¹" +#: locale/programs/locfile.h:63 +msgid "locale name should consist only of portable characters" +msgstr "¥í¥±¡¼¥ë̾¤Ï¥Ý¡¼¥¿¥Ö¥ëʸ»ú¤À¤±¤Ç¹½À®¤¹¤Ù¤­¤Ç¤¹" -#: nis/nis_print.c:183 +#: locale/programs/locfile.h:82 +msgid "no other keyword shall be specified when `copy' is used" +msgstr "`copy' ¤ò»ÈÍѤ·¤¿¤È¤­¤Ë¾¤Î¤¤¤«¤Ê¤ë¥­¡¼¥ï¡¼¥É¤â»ØÄꤵ¤ì¤Þ¤»¤ó¤Ç¤·¤¿" + +#: locale/programs/repertoire.c:230 locale/programs/repertoire.c:271 +#: locale/programs/repertoire.c:296 #, c-format -msgid "Diffie-Hellmann (%d bits)\n" -msgstr "Diffie-Hellmann (%d ¥Ó¥Ã¥È)\n" +msgid "syntax error in repertoire map definition: %s" +msgstr "¥ì¥Ñ¡¼¥È¥ê¥Þ¥Ã¥×¤ÎÄêµÁÃæ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹: %s" -#: nis/nis_print.c:321 +#: locale/programs/repertoire.c:272 +msgid "no or value given" +msgstr " ¤Þ¤¿¤Ï Ãͤ¬Í¿¤¨¤é¤ì¤Þ¤»¤ó¤Ç¤·¤¿" + +#: locale/programs/repertoire.c:332 +msgid "cannot safe new repertoire map" +msgstr "¿·¤·¤¤¥ì¥Ñ¡¼¥È¥ê¥Þ¥Ã¥×¤Ï°ÂÁ´¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: locale/programs/repertoire.c:343 #, c-format -msgid "Directory : %s\n" -msgstr "¥Ç¥£¥ì¥¯¥È¥ê : %s\n" +msgid "repertoire map file `%s' not found" +msgstr "¥ì¥Ñ¡¼¥È¥ê¥Þ¥Ã¥×¥Õ¥¡¥¤¥ë`%s'¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#. TRANS Directory not empty, where an empty directory was expected. Typically, -#. TRANS this error occurs when you are trying to delete a directory. -#: stdio-common/../sysdeps/gnu/errlist.c:481 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:123 -msgid "Directory not empty" -msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Ï¶õ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: locale/programs/repertoire.c:450 +#, c-format +msgid "<%s> and <%s> are invalid names for range" +msgstr "<%s> ¤È <%s> ¤ÏÈϰϤȤ·¤ÆÉÔÀµ¤Ê̾Á°¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:79 -msgid "Disc quota exceeded" -msgstr "¥Ç¥£¥¹¥¯»ÈÍÑÎÌÀ©¸Â(¥¯¥©¡¼¥¿)¤òĶ²á¤·¤Þ¤·¤¿" +#: locale/programs/repertoire.c:457 +msgid "upper limit in range is not smaller then lower limit" +msgstr "ÈÏ°ÏÆâ¤Î¾å¸Â¤Ï²¼¸Â¤è¤ê¾®¤µ¤¯¤¢¤ê¤Þ¤»¤ó" -#. TRANS The user's disk quota was exceeded. -#: stdio-common/../sysdeps/gnu/errlist.c:499 -msgid "Disk quota exceeded" -msgstr "¥Ç¥£¥¹¥¯»ÈÍÑÎÌÀ©¸Â¤òĶ²á¤·¤Þ¤·¤¿" +#: locale/programs/xmalloc.c:70 malloc/obstack.c:505 malloc/obstack.c:508 +#: posix/getconf.c:1002 +msgid "memory exhausted" +msgstr "¥á¥â¥ê¤ò»È¤¤²Ì¤¿¤·¤Þ¤·¤¿" -#: nscd/nscd.c:86 -msgid "Do not fork and display messages on the current tty" -msgstr "¥Õ¥©¡¼¥¯¤·¤Ê¤¤¤Ç¸½ºß¤Îtty¤Ë¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤¹¤ë" +#: assert/assert-perr.c:57 +#, c-format +msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n" +msgstr "%s%s%s:%u: %s%sͽ´ü¤·¤Ê¤¤¥¨¥é¡¼: %s.\n" -#: catgets/gencat.c:114 -msgid "Do not use existing catalog, force new output file" -msgstr "´û¸¤Î¥«¥¿¥í¥°¤ò»ÈÍѤ»¤º¡¢¶¯À©Åª¤Ë¿·¤·¤¤½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ë¤·¤Þ¤¹" +#: assert/assert.c:56 +#, c-format +msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" +msgstr "%s%s%s:%u: %s%sAssertion `%s' ¤¬¼ºÇÔ¤·¤Þ¤·¤¿.\n" -#: nis/ypclnt.c:866 -msgid "Domain not bound" -msgstr "¥É¥á¥¤¥ó¤Ï¥Ð¥¤¥ó¥É¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: intl/tst-codeset.c:40 intl/tst-codeset.c:50 +msgid "cheese" +msgstr "cheese" -#: elf/ldconfig.c:124 -msgid "Don't build cache" -msgstr "¥­¥ã¥Ã¥·¥å¤Î¹½ÃÛ¤ò¹Ô¤ï¤Ê¤¤" +#: intl/tst-gettext2.c:37 +msgid "First string for testing." +msgstr "¥Æ¥¹¥È¤Î¤¿¤á¤ÎºÇ½é¤Îʸ»úÎó." -#: elf/ldconfig.c:125 -msgid "Don't generate links" -msgstr "¥ê¥ó¥¯¤òÀ¸À®¤·¤Ê¤¤" +#: intl/tst-gettext2.c:38 +msgid "Another string for testing." +msgstr "¥Æ¥¹¥È¤Î¤¿¤á¤Î¾¤Îʸ»úÎó." -#: debug/pcprofiledump.c:56 -msgid "Dump information generated by PC profiling." -msgstr "PC¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¤Ë¤è¤Ã¤ÆÀ¸À®¤µ¤ì¤ë¾ðÊó¤ò¥À¥ó¥×." +#: catgets/gencat.c:111 catgets/gencat.c:115 nscd/nscd.c:84 +msgid "NAME" +msgstr "̾Á°" -#: elf/dl-load.c:1293 -msgid "ELF file ABI version invalid" -msgstr "ELF¥Õ¥¡¥¤¥ë¤ÎABI¥Ð¡¼¥¸¥ç¥ó¤¬ÉÔÀµ¤Ç¤¹." +#: catgets/gencat.c:112 +msgid "Create C header file NAME containing symbol definitions" +msgstr "¥·¥ó¥Ü¥ëÄêµÁ¤ò´Þ¤ó¤À C ¥Ø¥Ã¥À¥Õ¥¡¥¤¥ë NAME ¤òºîÀ®" -#: elf/dl-load.c:1290 -msgid "ELF file OS ABI invalid" -msgstr "ELF¥Õ¥¡¥¤¥ë¤ÎOS ABI¤¬ÉÔÀµ¤Ç¤¹." +#: catgets/gencat.c:114 +msgid "Do not use existing catalog, force new output file" +msgstr "´û¸¤Î¥«¥¿¥í¥°¤ò»ÈÍѤ»¤º¡¢¶¯À©Åª¤Ë¿·¤·¤¤½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ë¤·¤Þ¤¹" -#: elf/dl-load.c:1299 -msgid "ELF file version does not match current one" -msgstr "ELF¥Õ¥¡¥¤¥ë¤Î¥Ð¡¼¥¸¥ç¥óÈֹ椬¸½ºß¤Î¥Õ¥¡¥¤¥ë¤Ë°ìÃפ·¤Æ¤¤¤Þ¤»¤ó" +#: catgets/gencat.c:115 +msgid "Write output to file NAME" +msgstr "¥Õ¥¡¥¤¥ë NAME ¤Ø½ÐÎϤò½ñ¤­¹þ¤à" -#: elf/dl-load.c:1286 -msgid "ELF file version ident does not match current one" -msgstr "ELF¥Õ¥¡¥¤¥ë¤Î¥Ð¡¼¥¸¥ç¥ó¼±Ê̻Ҥϸ½ºß¤Î¥Õ¥¡¥¤¥ë¤Ë°ìÃפ·¤Æ¤¤¤Þ¤»¤ó" +#: catgets/gencat.c:120 +msgid "" +"Generate message catalog. If INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n" +"is -, output is written to standard output.\n" +msgstr "" +"¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤òÀ¸À®¤·¤Þ¤¹. ¤â¤·ÆþÎÏ¥Õ¥¡¥¤¥ë¤Ë - ¤ò»ØÄꤷ¤¿¾ì¹ç¡¢ÆþÎϤÏɸ½àÆþÎϤ«¤éÆɤ߹þ¤Þ¤ì¤Þ¤¹¡£¤â¤·½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ë - ¤ò\n" +"»ØÄꤷ¤¿¾ì¹ç¡¢½ÐÎϤÏɸ½à½ÐÎϤؽñ¤­¹þ¤Þ¤ì¤Þ¤¹.\n" -#: elf/dl-load.c:1305 -msgid "ELF file's phentsize not the expected size" -msgstr "ELF¥Õ¥¡¥¤¥ë¤Îphentsize¤Ï´üÂÔ¤µ¤ì¤ë¥µ¥¤¥º¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: catgets/gencat.c:125 +msgid "" +"-o OUTPUT-FILE [INPUT-FILE]...\n" +"[OUTPUT-FILE [INPUT-FILE]...]" +msgstr "" +"-o ½ÐÎÏ¥Õ¥¡¥¤¥ë [ÆþÎÏ¥Õ¥¡¥¤¥ë]...\n" +"[½ÐÎÏ¥Õ¥¡¥¤¥ë [ÆþÎÏ¥Õ¥¡¥¤¥ë]...]" -#: elf/dl-load.c:884 -msgid "ELF load command address/offset not properly aligned" -msgstr "ELF¥í¡¼¥É¥³¥Þ¥ó¥É¤Î¥¢¥É¥ì¥¹/¥ª¥Õ¥»¥Ã¥È¤ÏŬÀڤ˥¢¥é¥¤¥ó¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: catgets/gencat.c:282 +msgid "*standard input*" +msgstr "*ɸ½àÆþÎÏ*" -#: elf/dl-load.c:881 -msgid "ELF load command alignment not page-aligned" -msgstr "ELF¥í¡¼¥É¥³¥Þ¥ó¥É¤Î¥¢¥é¥¤¥ó¥á¥ó¥È¤Ï¥Ú¡¼¥¸¥¢¥é¥¤¥ó¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: catgets/gencat.c:417 catgets/gencat.c:494 +msgid "illegal set number" +msgstr "ÉÔÀµ¤ÊÀßÄêÃͤǤ¹" -#: stdio-common/../sysdeps/unix/siglist.c:33 sysdeps/generic/siglist.h:60 -msgid "EMT trap" -msgstr "EMT ¥È¥é¥Ã¥×" +#: catgets/gencat.c:444 +msgid "duplicate set definition" +msgstr "ÀßÄê¤ÎÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" -#: nis/nis_print.c:124 -msgid "ENTRY\n" -msgstr "¥¨¥ó¥È¥ê\n" +#: catgets/gencat.c:446 catgets/gencat.c:623 catgets/gencat.c:677 +msgid "this is the first definition" +msgstr "¤³¤ì¤¬ºÇ½é¤ÎÄêµÁ¤Ç¤¹" -#: nis/nis_print.c:303 -msgid "Encrypted data\n" -msgstr "°Å¹æ²½¥Ç¡¼¥¿\n" +#: catgets/gencat.c:522 +#, c-format +msgid "unknown set `%s'" +msgstr "ÉÔÌÀ¤Ê¥»¥Ã¥È`%s'¤Ç¤¹" -#: nis/nis_error.c:53 -msgid "Entry/table type mismatch" -msgstr "¥¨¥ó¥È¥ê¤È¥Æ¡¼¥Ö¥ë¤Î·¿¤¬°ìÃפ·¤Þ¤»¤ó" +#: catgets/gencat.c:563 +msgid "invalid quote character" +msgstr "ÉÔÀµ¤Ê¥¯¥©¡¼¥È¥­¥ã¥é¥¯¥¿¤Ç¤¹" -#: nss/getent.c:127 nss/getent.c:292 +#: catgets/gencat.c:576 #, c-format -msgid "Enumeration not supported on %s\n" -msgstr "¿ôÃÍ¤Ï %s ¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" +msgid "unknown directive `%s': line ignored" +msgstr "ÉÔÌÀ¤Ê»Ø¼¨`%s'¤¬¤¢¤ê¤Þ¤·¤¿: ¤³¤Î¹Ô¤Ï̵»ë¤·¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:30 -msgid "Error 0" -msgstr "¥¨¥é¡¼ 0" +#: catgets/gencat.c:621 +msgid "duplicated message number" +msgstr "½ÅÊ£¤·¤¿¥á¥Ã¥»¡¼¥¸ÈÖ¹æ" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:130 -msgid "Error 100" -msgstr "¥¨¥é¡¼ 100" +#: catgets/gencat.c:674 +msgid "duplicated message identifier" +msgstr "½ÅÊ£¤·¤¿¥á¥Ã¥»¡¼¥¸¼±ÊÌ»Ò" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:131 -msgid "Error 101" -msgstr "¥¨¥é¡¼ 101" +#: catgets/gencat.c:731 +msgid "invalid character: message ignored" +msgstr "̵¸ú¤Ê¥­¥ã¥é¥¯¥¿: ¥á¥Ã¥»¡¼¥¸¤ò̵»ë¤·¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:132 -msgid "Error 102" -msgstr "¥¨¥é¡¼ 102" +#: catgets/gencat.c:774 +msgid "invalid line" +msgstr "ÉÔÅö¤Ê¹Ô¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:133 -msgid "Error 103" -msgstr "¥¨¥é¡¼ 103" +#: catgets/gencat.c:828 +msgid "malformed line ignored" +msgstr "ÉÔÅö¤Ê¹Ô¤ò̵»ë¤·¤Þ¤·¤¿" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:134 -msgid "Error 104" -msgstr "¥¨¥é¡¼ 104" +#: catgets/gencat.c:992 catgets/gencat.c:1033 +#, c-format +msgid "cannot open output file `%s'" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë`%s'¤ò³«¤±¤Þ¤»¤ó" + +#: catgets/gencat.c:1217 +msgid "unterminated message" +msgstr "¥á¥Ã¥»¡¼¥¸¤¬½ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó" + +#: catgets/gencat.c:1241 +msgid "while opening old catalog file" +msgstr "¸Å¤¤¥«¥¿¥í¥°¥Õ¥¡¥¤¥ë¥ª¡¼¥×¥óÃæ" + +#: catgets/gencat.c:1332 +msgid "conversion modules not available" +msgstr "ÊÑ´¹¥â¥¸¥å¡¼¥ë¤¬ÍøÍѤǤ­¤Þ¤»¤ó" + +#: catgets/gencat.c:1358 +msgid "cannot determine escape character" +msgstr "¥¨¥¹¥±¡¼¥×¥­¥ã¥é¥¯¥¿¤ò·èÄê¤Ç¤­¤Þ¤»¤ó" + +#: 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" + +#: stdio-common/../sysdeps/gnu/errlist.c:12 posix/regcomp.c:133 +#: nis/nis_error.c:29 nis/ypclnt.c:787 nis/ypclnt.c:861 +msgid "Success" +msgstr "À®¸ù¤Ç¤¹" + +#. TRANS Operation not permitted; only the owner of the file (or other resource) +#. TRANS or processes with special privileges can perform the operation. +#: stdio-common/../sysdeps/gnu/errlist.c:17 +msgid "Operation not permitted" +msgstr "µö²Ä¤µ¤ì¤Æ¤¤¤Ê¤¤Áàºî¤Ç¤¹" + +#. TRANS No such file or directory. This is a ``file doesn't exist'' error +#. TRANS for ordinary files that are referenced in contexts where they are +#. TRANS expected to already exist. +#: stdio-common/../sysdeps/gnu/errlist.c:28 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:32 +msgid "No such file or directory" +msgstr "¤½¤Î¤è¤¦¤Ê¥Õ¥¡¥¤¥ë¤ä¥Ç¥£¥ì¥¯¥È¥ê¤Ï¤¢¤ê¤Þ¤»¤ó" + +#. TRANS No process matches the specified process ID. +#: stdio-common/../sysdeps/gnu/errlist.c:37 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:33 +msgid "No such process" +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. +#. TRANS +#. TRANS You can choose to have functions resume after a signal that is handled, +#. TRANS rather than failing with @code{EINTR}; see @ref{Interrupted +#. TRANS Primitives}. +#: stdio-common/../sysdeps/gnu/errlist.c:52 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:34 +msgid "Interrupted system call" +msgstr "¥·¥¹¥Æ¥à¥³¡¼¥ë³ä¤ê¹þ¤ß" + +#. TRANS Input/output error; usually used for physical read or write errors. +#: stdio-common/../sysdeps/gnu/errlist.c:61 +msgid "Input/output error" +msgstr "ÆþÎÏ/½ÐÎÏ¥¨¥é¡¼¤Ç¤¹" + +#. TRANS No such device or address. The system tried to use the device +#. TRANS represented by a file you specified, and it couldn't find the device. +#. TRANS This can mean that the device file was installed incorrectly, or that +#. TRANS the physical device is missing or not correctly attached to the +#. TRANS computer. +#: stdio-common/../sysdeps/gnu/errlist.c:74 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:36 +msgid "No such device or address" +msgstr "¤½¤Î¤è¤¦¤Ê¥Ç¥Ð¥¤¥¹¤ä¥¢¥É¥ì¥¹¤Ï¤¢¤ê¤Þ¤»¤ó" + +#. TRANS Argument list too long; used when the arguments passed to a new program +#. TRANS being executed with one of the @code{exec} functions (@pxref{Executing a +#. TRANS File}) occupy too much memory space. This condition never arises in the +#. TRANS GNU system. +#: stdio-common/../sysdeps/gnu/errlist.c:86 +msgid "Argument list too long" +msgstr "°ú¿ô¥ê¥¹¥È¤¬Ä¹¤¹¤®¤Þ¤¹" + +#. TRANS Invalid executable file format. This condition is detected by the +#. TRANS @code{exec} functions; see @ref{Executing a File}. +#: stdio-common/../sysdeps/gnu/errlist.c:96 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:38 +msgid "Exec format error" +msgstr "¼Â¹Ô·Á¼°¥¨¥é¡¼" + +#. TRANS Bad file descriptor; for example, I/O on a descriptor that has been +#. TRANS closed or reading from a descriptor open only for writing (or vice +#. TRANS versa). +#: stdio-common/../sysdeps/gnu/errlist.c:107 +msgid "Bad file descriptor" +msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ëµ­½Ò»Ò¤Ç¤¹" + +#. TRANS There are no child processes. This error happens on operations that are +#. TRANS supposed to manipulate child processes, when there aren't any processes +#. TRANS to manipulate. +#: stdio-common/../sysdeps/gnu/errlist.c:118 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:40 +msgid "No child processes" +msgstr "»Ò¥×¥í¥»¥¹¤¬¤¢¤ê¤Þ¤»¤ó" + +#. TRANS Deadlock avoided; allocating a system resource would have resulted in a +#. TRANS deadlock situation. The system does not guarantee that it will notice +#. TRANS all such situations. This error means you got lucky and the system +#. TRANS noticed; it might just hang. @xref{File Locks}, for an example. +#: stdio-common/../sysdeps/gnu/errlist.c:130 +msgid "Resource deadlock avoided" +msgstr "¥ê¥½¡¼¥¹¤Î¥Ç¥Ã¥É¥í¥Ã¥¯²óÈò" + +#. TRANS No memory available. The system cannot allocate more virtual memory +#. TRANS because its capacity is full. +#: stdio-common/../sysdeps/gnu/errlist.c:140 +msgid "Cannot allocate memory" +msgstr "¥á¥â¥ê¤ò³ÎÊݤǤ­¤Þ¤»¤ó" + +#. TRANS Permission denied; the file permissions do not allow the attempted operation. +#: stdio-common/../sysdeps/gnu/errlist.c:149 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:43 +#: nis/nis_error.c:39 nis/ypclnt.c:817 +msgid "Permission denied" +msgstr "µö²Ä¤¬¤¢¤ê¤Þ¤»¤ó" + +#. TRANS Bad address; an invalid pointer was detected. +#. TRANS In the GNU system, this error never happens; you get a signal instead. +#: stdio-common/../sysdeps/gnu/errlist.c:159 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:44 +msgid "Bad address" +msgstr "ÉÔÀµ¤Ê¥¢¥É¥ì¥¹¤Ç¤¹" + +#. TRANS A file that isn't a block special file was given in a situation that +#. TRANS requires one. For example, trying to mount an ordinary file as a file +#. TRANS system in Unix gives this error. +#: stdio-common/../sysdeps/gnu/errlist.c:170 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:45 +msgid "Block device required" +msgstr "¥Ö¥í¥Ã¥¯¥Ç¥Ð¥¤¥¹¤¬É¬ÍפǤ¹" + +#. TRANS Resource busy; a system resource that can't be shared is already in use. +#. TRANS For example, if you try to delete a file that is the root of a currently +#. TRANS mounted filesystem, you get this error. +#: stdio-common/../sysdeps/gnu/errlist.c:181 +msgid "Device or resource busy" +msgstr "¥Ç¥Ð¥¤¥¹¤â¤·¤¯¤Ï¥ê¥½¡¼¥¹¤¬¥Ó¥¸¡¼¾õÂ֤Ǥ¹" + +#. TRANS File exists; an existing file was specified in a context where it only +#. TRANS makes sense to specify a new file. +#: stdio-common/../sysdeps/gnu/errlist.c:191 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:47 +msgid "File exists" +msgstr "¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹" + +#. TRANS An attempt to make an improper link across file systems was detected. +#. TRANS This happens not only when you use @code{link} (@pxref{Hard Links}) but +#. TRANS also when you rename a file with @code{rename} (@pxref{Renaming Files}). +#: stdio-common/../sysdeps/gnu/errlist.c:202 +msgid "Invalid cross-device link" +msgstr "̵¸ú¤Ê¥¯¥í¥¹¥Ç¥Ð¥¤¥¹¥ê¥ó¥¯¤Ç¤¹" + +#. TRANS The wrong type of device was given to a function that expects a +#. TRANS particular sort of device. +#: stdio-common/../sysdeps/gnu/errlist.c:212 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:49 +msgid "No such device" +msgstr "¤½¤Î¤è¤¦¤Ê¥Ç¥Ð¥¤¥¹¤Ï¤¢¤ê¤Þ¤»¤ó" + +#. TRANS A file that isn't a directory was specified when a directory is required. +#: stdio-common/../sysdeps/gnu/errlist.c:221 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:50 +msgid "Not a directory" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#. TRANS File is a directory; you cannot open a directory for writing, +#. TRANS or create or remove hard links to it. +#: stdio-common/../sysdeps/gnu/errlist.c:231 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:51 +msgid "Is a directory" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¹" + +#. TRANS Invalid argument. This is used to indicate various kinds of problems +#. TRANS with passing the wrong argument to a library function. +#: stdio-common/../sysdeps/gnu/errlist.c:241 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:52 +msgid "Invalid argument" +msgstr "̵¸ú¤Ê°ú¿ô¤Ç¤¹" + +#. TRANS The current process has too many files open and can't open any more. +#. TRANS Duplicate descriptors do count toward this limit. +#. TRANS +#. TRANS In BSD and GNU, the number of open files is controlled by a resource +#. TRANS limit that can usually be increased. If you get this error, you might +#. TRANS want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited; +#. TRANS @pxref{Limits on Resources}. +#: stdio-common/../sysdeps/gnu/errlist.c:256 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:54 +msgid "Too many open files" +msgstr "¥Õ¥¡¥¤¥ë¤ò³«¤­¤¹¤®¤Ç¤¹" + +#. TRANS There are too many distinct file openings in the entire system. Note +#. TRANS that any number of linked channels count as just one file opening; see +#. TRANS @ref{Linked Channels}. This error never occurs in the GNU system. +#: stdio-common/../sysdeps/gnu/errlist.c:267 +msgid "Too many open files in system" +msgstr "¥·¥¹¥Æ¥àÃæ¤Î¥Õ¥¡¥¤¥ë¤ò³«¤­¤¹¤®¤Ç¤¹" + +#. TRANS Inappropriate I/O control operation, such as trying to set terminal +#. TRANS modes on an ordinary file. +#: stdio-common/../sysdeps/gnu/errlist.c:277 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:55 +msgid "Inappropriate ioctl for device" +msgstr "¥Ç¥Ð¥¤¥¹¤ËÂФ¹¤ëÉÔŬÀÚ¤Êioctl¤Ç¤¹" + +#. TRANS An attempt to execute a file that is currently open for writing, or +#. TRANS write to a file that is currently being executed. Often using a +#. TRANS debugger to run a program is considered having it open for writing and +#. TRANS will cause this error. (The name stands for ``text file busy''.) This +#. TRANS is not an error in the GNU system; the text is copied as necessary. +#: stdio-common/../sysdeps/gnu/errlist.c:290 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:56 +msgid "Text file busy" +msgstr "¥Æ¥­¥¹¥È¥Õ¥¡¥¤¥ë¤¬¥Ó¥¸¡¼¾õÂ֤Ǥ¹" + +#. TRANS File too big; the size of a file would be larger than allowed by the system. +#: stdio-common/../sysdeps/gnu/errlist.c:299 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:57 +msgid "File too large" +msgstr "¥Õ¥¡¥¤¥ë¤¬Â礭¤¹¤®¤Þ¤¹" + +#. TRANS No space left on device; write operation on a file failed because the +#. TRANS disk is full. +#: stdio-common/../sysdeps/gnu/errlist.c:309 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:58 +msgid "No space left on device" +msgstr "¥Ç¥Ð¥¤¥¹¤Ë¶õ¤­Îΰ褬¤¢¤ê¤Þ¤»¤ó" + +#. TRANS Invalid seek operation (such as on a pipe). +#: stdio-common/../sysdeps/gnu/errlist.c:318 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:59 +msgid "Illegal seek" +msgstr "ÉÔÀµ¤Ê¥·¡¼¥¯¤Ç¤¹" + +#. TRANS An attempt was made to modify something on a read-only file system. +#: stdio-common/../sysdeps/gnu/errlist.c:327 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:60 +msgid "Read-only file system" +msgstr "Æɤ߹þ¤ßÀìÍÑ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Ç¤¹" + +#. TRANS Too many links; the link count of a single file would become too large. +#. TRANS @code{rename} can cause this error if the file being renamed already has +#. TRANS as many links as it can take (@pxref{Renaming Files}). +#: stdio-common/../sysdeps/gnu/errlist.c:338 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:61 +msgid "Too many links" +msgstr "¥ê¥ó¥¯¤¬Â¿¤¹¤®¤Þ¤¹" + +#. TRANS Domain error; used by mathematical functions when an argument value does +#. TRANS not fall into the domain over which the function is defined. +#: stdio-common/../sysdeps/gnu/errlist.c:361 +msgid "Numerical argument out of domain" +msgstr "¿ôÃͤΰú¿ô¤Ï¥É¥á¥¤¥ó³°¤Ç¤¹" + +#. TRANS Range error; used by mathematical functions when the result value is +#. TRANS not representable because of overflow or underflow. +#: stdio-common/../sysdeps/gnu/errlist.c:371 +msgid "Numerical result out of range" +msgstr "·×»»·ë²Ì¤ÏÈϰϳ°¤ÎÃͤǤ¹" + +#. TRANS Resource temporarily unavailable; the call might work if you try again +#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN}; +#. TRANS they are always the same in the GNU C library. +#. TRANS +#. TRANS This error can happen in a few different situations: +#. TRANS +#. TRANS @itemize @bullet +#. TRANS @item +#. TRANS An operation that would block was attempted on an object that has +#. TRANS non-blocking mode selected. Trying the same operation again will block +#. TRANS until some external condition makes it possible to read, write, or +#. TRANS connect (whatever the operation). You can use @code{select} to find out +#. TRANS when the operation will be possible; @pxref{Waiting for I/O}. +#. TRANS +#. TRANS @strong{Portability Note:} In many older Unix systems, this condition +#. TRANS was indicated by @code{EWOULDBLOCK}, which was a distinct error code +#. TRANS different from @code{EAGAIN}. To make your program portable, you should +#. TRANS check for both codes and treat them the same. +#. TRANS +#. TRANS @item +#. TRANS A temporary resource shortage made an operation impossible. @code{fork} +#. TRANS can return this error. It indicates that the shortage is expected to +#. TRANS pass, so your program can try the call again later and it may succeed. +#. TRANS It is probably a good idea to delay for a few seconds before trying it +#. TRANS again, to allow time for other processes to release scarce resources. +#. TRANS Such shortages are usually fairly serious and affect the whole system, +#. TRANS so usually an interactive program should report the error to the user +#. TRANS and return to its command loop. +#. TRANS @end itemize +#: stdio-common/../sysdeps/gnu/errlist.c:408 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:41 +msgid "Resource temporarily unavailable" +msgstr "¥ê¥½¡¼¥¹¤¬°ì»þŪ¤ËÍøÍѤǤ­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:135 -msgid "Error 105" -msgstr "¥¨¥é¡¼ 105" +#. TRANS In the GNU C library, this is another name for @code{EAGAIN} (above). +#. TRANS The values are always the same, on every operating system. +#. TRANS +#. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a +#. TRANS separate error code. +#: stdio-common/../sysdeps/gnu/errlist.c:421 +msgid "Operation would block" +msgstr "¥Ö¥í¥Ã¥¯¤µ¤ì¤¦¤ëÁàºî¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:136 -msgid "Error 106" -msgstr "¥¨¥é¡¼ 106" +#. TRANS An operation that cannot complete immediately was initiated on an object +#. TRANS that has non-blocking mode selected. Some functions that must always +#. TRANS block (such as @code{connect}; @pxref{Connecting}) never return +#. TRANS @code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that +#. TRANS the operation has begun and will take some time. Attempts to manipulate +#. TRANS the object before the call completes return @code{EALREADY}. You can +#. TRANS use the @code{select} function to find out when the pending operation +#. TRANS has completed; @pxref{Waiting for I/O}. +#: stdio-common/../sysdeps/gnu/errlist.c:437 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:180 +msgid "Operation now in progress" +msgstr "¸½ºß½èÍýÃæ¤ÎÁàºî¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:137 -msgid "Error 107" -msgstr "¥¨¥é¡¼ 107" +#. TRANS An operation is already in progress on an object that has non-blocking +#. TRANS mode selected. +#: stdio-common/../sysdeps/gnu/errlist.c:447 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:179 +msgid "Operation already in progress" +msgstr "Áàºî¤Ï¤¹¤Ç¤Ë½èÍýÃæ¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:138 -msgid "Error 108" -msgstr "¥¨¥é¡¼ 108" +#. TRANS A file that isn't a socket was specified when a socket is required. +#: stdio-common/../sysdeps/gnu/errlist.c:456 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:125 +msgid "Socket operation on non-socket" +msgstr "¥½¥±¥Ã¥È¤Ç¤Ê¤¤¤â¤Î¤Ë¥½¥±¥Ã¥ÈÁàºî¤ò¤·¤Æ¤¤¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:139 -msgid "Error 109" -msgstr "¥¨¥é¡¼ 109" +#. TRANS The size of a message sent on a socket was larger than the supported +#. TRANS maximum size. +#: stdio-common/../sysdeps/gnu/errlist.c:466 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:127 +msgid "Message too long" +msgstr "¥á¥Ã¥»¡¼¥¸¤¬Ä¹¤¹¤®¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:140 -msgid "Error 110" -msgstr "¥¨¥é¡¼ 110" +#. TRANS The socket type does not support the requested communications protocol. +#: stdio-common/../sysdeps/gnu/errlist.c:475 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:128 +msgid "Protocol wrong type for socket" +msgstr "¥½¥±¥Ã¥È¤ËÂФ·´Ö°ã¤Ã¤¿¥×¥í¥È¥³¥ë¤Î·Á¼°¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:141 -msgid "Error 111" -msgstr "¥¨¥é¡¼ 111" +#. TRANS You specified a socket option that doesn't make sense for the +#. TRANS particular protocol being used by the socket. @xref{Socket Options}. +#: stdio-common/../sysdeps/gnu/errlist.c:485 +msgid "Protocol not available" +msgstr "¥×¥í¥È¥³¥ë¤ÏÍøÍѤǤ­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:142 -msgid "Error 112" -msgstr "¥¨¥é¡¼ 112" +#. TRANS The socket domain does not support the requested communications protocol +#. TRANS (perhaps because the requested protocol is completely invalid). +#. TRANS @xref{Creating a Socket}. +#: stdio-common/../sysdeps/gnu/errlist.c:496 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:150 +msgid "Protocol not supported" +msgstr "¥×¥í¥È¥³¥ë¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:143 -msgid "Error 113" -msgstr "¥¨¥é¡¼ 113" +#. TRANS The socket type is not supported. +#: stdio-common/../sysdeps/gnu/errlist.c:505 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:151 +msgid "Socket type not supported" +msgstr "¥½¥±¥Ã¥È·Á¼°¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:144 -msgid "Error 114" -msgstr "¥¨¥é¡¼ 114" +#. TRANS The operation you requested is not supported. Some socket functions +#. TRANS don't make sense for all types of sockets, and others may not be +#. TRANS implemented for all communications protocols. In the GNU system, this +#. TRANS error can happen for many calls when the object does not support the +#. TRANS particular operation; it is a generic indication that the server knows +#. TRANS nothing to do for that call. +#: stdio-common/../sysdeps/gnu/errlist.c:519 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:78 +msgid "Operation not supported" +msgstr "¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤Áàºî¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:145 -msgid "Error 115" -msgstr "¥¨¥é¡¼ 115" +#. TRANS The socket communications protocol family you requested is not supported. +#: stdio-common/../sysdeps/gnu/errlist.c:528 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:153 +msgid "Protocol family not supported" +msgstr "¥×¥í¥È¥³¥ë¥Õ¥¡¥ß¥ê¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:146 -msgid "Error 116" -msgstr "¥¨¥é¡¼ 116" +#. TRANS The address family specified for a socket is not supported; it is +#. TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}. +#: stdio-common/../sysdeps/gnu/errlist.c:538 +msgid "Address family not supported by protocol" +msgstr "¥¢¥É¥ì¥¹¥Õ¥¡¥ß¥ê¤Ï¥×¥í¥È¥³¥ë¤Ë¤è¤Ã¤Æ¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:147 -msgid "Error 117" -msgstr "¥¨¥é¡¼ 117" +#. TRANS The requested socket address is already in use. @xref{Socket Addresses}. +#: stdio-common/../sysdeps/gnu/errlist.c:547 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:155 +msgid "Address already in use" +msgstr "¥¢¥É¥ì¥¹¤Ï´û¤Ë»ÈÍÑÃæ¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:148 -msgid "Error 118" -msgstr "¥¨¥é¡¼ 118" +#. TRANS The requested socket address is not available; for example, you tried +#. TRANS to give a socket a name that doesn't match the local host name. +#. TRANS @xref{Socket Addresses}. +#: stdio-common/../sysdeps/gnu/errlist.c:558 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:156 +msgid "Cannot assign requested address" +msgstr "Í׵ᥢ¥É¥ì¥¹¤Ë³ä¤êÅö¤Æ¤é¤ì¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:149 -msgid "Error 119" -msgstr "¥¨¥é¡¼ 119" +#. TRANS A socket operation failed because the network was down. +#: stdio-common/../sysdeps/gnu/errlist.c:567 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:157 +msgid "Network is down" +msgstr "¥Í¥Ã¥È¥ï¡¼¥¯¤¬Íî¤Á¤Æ¤¤¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:166 -msgid "Error 136" -msgstr "¥¨¥é¡¼ 136" +#. TRANS A socket operation failed because the subnet containing the remote host +#. TRANS was unreachable. +#: stdio-common/../sysdeps/gnu/errlist.c:577 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:158 +msgid "Network is unreachable" +msgstr "¥Í¥Ã¥È¥ï¡¼¥¯¤ËÆϤ­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:172 -msgid "Error 142" -msgstr "¥¨¥é¡¼ 142" +#. TRANS A network connection was reset because the remote host crashed. +#: stdio-common/../sysdeps/gnu/errlist.c:586 +msgid "Network dropped connection on reset" +msgstr "¥ê¥»¥Ã¥ÈÃæ¥Í¥Ã¥È¥ï¡¼¥¯¤ÎÀܳ¤¬ÀÚ¤ì¤Þ¤·¤¿" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:88 -msgid "Error 58" -msgstr "¥¨¥é¡¼ 58" +#. TRANS A network connection was aborted locally. +#: stdio-common/../sysdeps/gnu/errlist.c:595 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:160 +msgid "Software caused connection abort" +msgstr "¥½¥Õ¥È¥¦¥§¥¢¤¬Àܳ¤òÃæÃǤ·¤Þ¤·¤¿" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:89 -msgid "Error 59" -msgstr "¥¨¥é¡¼ 59" +#. TRANS A network connection was closed for reasons outside the control of the +#. TRANS local host, such as by the remote machine rebooting or an unrecoverable +#. TRANS protocol violation. +#: stdio-common/../sysdeps/gnu/errlist.c:606 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:161 +msgid "Connection reset by peer" +msgstr "Àܳ¤¬Â¾¤«¤é¥ê¥»¥Ã¥È¤µ¤ì¤Þ¤·¤¿" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:102 -msgid "Error 72" -msgstr "¥¨¥é¡¼ 72" +#. TRANS The kernel's buffers for I/O operations are all in use. In GNU, this +#. TRANS error is always synonymous with @code{ENOMEM}; you may get one or the +#. TRANS other from network operations. +#: stdio-common/../sysdeps/gnu/errlist.c:617 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:162 +msgid "No buffer space available" +msgstr "ÍøÍѲÄǽ¤Ê¶õ¤­¥Ð¥Ã¥Õ¥¡¤¬¤¢¤ê¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:103 -msgid "Error 73" -msgstr "¥¨¥é¡¼ 73" +#. TRANS You tried to connect a socket that is already connected. +#. TRANS @xref{Connecting}. +#: stdio-common/../sysdeps/gnu/errlist.c:627 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:163 +msgid "Transport endpoint is already connected" +msgstr "žÁ÷À褬´û¤ËÀܳ¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:105 -msgid "Error 75" -msgstr "¥¨¥é¡¼ 75" +#. TRANS The socket is not connected to anything. You get this error when you +#. TRANS try to transmit data over a socket, without first specifying a +#. TRANS destination for the data. For a connectionless socket (for datagram +#. TRANS protocols, such as UDP), you get @code{EDESTADDRREQ} instead. +#: stdio-common/../sysdeps/gnu/errlist.c:639 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:164 +msgid "Transport endpoint is not connected" +msgstr "žÁ÷À褬Àܳ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#. TRANS No default destination address was set for the socket. You get this +#. TRANS error when you try to transmit data over a connectionless socket, +#. TRANS without first specifying a destination for the data with @code{connect}. +#: stdio-common/../sysdeps/gnu/errlist.c:650 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:126 +msgid "Destination address required" +msgstr "Á÷¿®À襢¥É¥ì¥¹¤¬É¬ÍפǤ¹" + +#. TRANS The socket has already been shut down. +#: stdio-common/../sysdeps/gnu/errlist.c:659 +msgid "Cannot send after transport endpoint shutdown" +msgstr "žÁ÷Àè¤òÊĤ¸¤¿¸å¤ËÁ÷¿®¤Ç¤­¤Þ¤»¤ó" + +#. TRANS ??? +#: stdio-common/../sysdeps/gnu/errlist.c:668 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:174 +msgid "Too many references: cannot splice" +msgstr "»²¾È¤¬Â¿¤¹¤®¤Þ¤¹: ÁȤ߷Ѥ®¤Ç¤­¤Þ¤»¤ó" + +#. TRANS A socket operation with a specified timeout received no response during +#. TRANS the timeout period. +#: stdio-common/../sysdeps/gnu/errlist.c:678 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:175 +msgid "Connection timed out" +msgstr "Àܳ¥¿¥¤¥à¥¢¥¦¥È¤Ç¤¹" + +#. TRANS A remote host refused to allow the network connection (typically because +#. TRANS it is not running the requested service). +#: stdio-common/../sysdeps/gnu/errlist.c:688 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:176 +msgid "Connection refused" +msgstr "Àܳ¤òµñÈݤµ¤ì¤Þ¤·¤¿" + +#. TRANS Too many levels of symbolic links were encountered in looking up a file name. +#. TRANS This often indicates a cycle of symbolic links. +#: stdio-common/../sysdeps/gnu/errlist.c:698 +msgid "Too many levels of symbolic links" +msgstr "¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î³¬Áؤ¬Â¿¤¹¤®¤Þ¤¹" + +#. TRANS Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for +#. TRANS Files}) or host name too long (in @code{gethostname} or +#. TRANS @code{sethostname}; @pxref{Host Identification}). +#: stdio-common/../sysdeps/gnu/errlist.c:709 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:108 +msgid "File name too long" +msgstr "¥Õ¥¡¥¤¥ë̾¤¬Ä¹¤¹¤®¤Þ¤¹" + +#. TRANS The remote host for a requested network connection is down. +#: stdio-common/../sysdeps/gnu/errlist.c:718 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:177 +msgid "Host is down" +msgstr "¥Û¥¹¥È¤¬Íî¤Á¤Æ¤¤¤Þ¤¹" + +#. TRANS The remote host for a requested network connection is not reachable. +#: stdio-common/../sysdeps/gnu/errlist.c:727 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:178 +msgid "No route to host" +msgstr "¥Û¥¹¥È¤Ø¤Î·ÐÏ©¤¬¤¢¤ê¤Þ¤»¤ó" + +#. TRANS Directory not empty, where an empty directory was expected. Typically, +#. TRANS this error occurs when you are trying to delete a directory. +#: stdio-common/../sysdeps/gnu/errlist.c:737 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:123 +msgid "Directory not empty" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Ï¶õ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#. TRANS This means that the per-user limit on new process would be exceeded by +#. TRANS an attempted @code{fork}. @xref{Limits on Resources}, for details on +#. TRANS the @code{RLIMIT_NPROC} limit. +#: stdio-common/../sysdeps/gnu/errlist.c:748 +msgid "Too many processes" +msgstr "¥×¥í¥»¥¹¤¬Â¿¤¹¤®¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:106 -msgid "Error 76" -msgstr "¥¨¥é¡¼ 76" +#. TRANS The file quota system is confused because there are too many users. +#. TRANS @c This can probably happen in a GNU system when using NFS. +#: stdio-common/../sysdeps/gnu/errlist.c:758 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:124 +msgid "Too many users" +msgstr "¥æ¡¼¥¶¤¬Â¿¤¹¤®¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:121 -msgid "Error 91" -msgstr "¥¨¥é¡¼ 91" +#. TRANS The user's disk quota was exceeded. +#: stdio-common/../sysdeps/gnu/errlist.c:767 +msgid "Disk quota exceeded" +msgstr "¥Ç¥£¥¹¥¯»ÈÍÑÎÌÀ©¸Â¤òĶ²á¤·¤Þ¤·¤¿" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:122 -msgid "Error 92" -msgstr "¥¨¥é¡¼ 92" +#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS +#. TRANS system which is due to file system rearrangements on the server host. +#. TRANS Repairing this condition usually requires unmounting and remounting +#. TRANS the NFS file system on the local host. +#: stdio-common/../sysdeps/gnu/errlist.c:779 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:181 +msgid "Stale NFS file handle" +msgstr "¼Â¸úÀ­¤Î¤Ê¤¤NFS¥Õ¥¡¥¤¥ë¥Ï¥ó¥É¥ë¤Ç¤¹" -#: nis/nis_error.c:57 -msgid "Error in RPC subsystem" -msgstr "RPC¥µ¥Ö¥·¥¹¥Æ¥àÆ⥨¥é¡¼" +#. TRANS An attempt was made to NFS-mount a remote file system with a file name that +#. TRANS already specifies an NFS-mounted file. +#. TRANS (This is an error on some operating systems, but we expect it to work +#. TRANS properly on the GNU system, making this error code impossible.) +#: stdio-common/../sysdeps/gnu/errlist.c:791 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:96 +msgid "Object is remote" +msgstr "¥ª¥Ö¥¸¥§¥¯¥È¤Ï¥ê¥â¡¼¥È¤Ë¤¢¤ê¤Þ¤¹" -#: nis/nis_error.c:67 -msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" -msgstr "NIS+ ¥³¡¼¥ë¥É¥¹¥¿¡¼¥È¥Õ¥¡¥¤¥ë¤Ø¤Î¥¢¥¯¥»¥¹¤Ç¥¨¥é¡¼. NIS+ ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹¤«?" +#. TRANS ??? +#: stdio-common/../sysdeps/gnu/errlist.c:800 +msgid "RPC struct is bad" +msgstr "RPC¹½Â¤¤¬ÉÔÀµ¤Ç¤¹" -#: string/../sysdeps/mach/_strerror.c:58 -#: sysdeps/mach/hurd/mips/dl-machine.c:68 -msgid "Error in unknown error system: " -msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼¥·¥¹¥Æ¥à¤Ç¤Î¥¨¥é¡¼:" +#. TRANS ??? +#: stdio-common/../sysdeps/gnu/errlist.c:809 +msgid "RPC version wrong" +msgstr "RPC¥Ð¡¼¥¸¥ç¥ó¤¬°ã¤¤¤Þ¤¹" -#: nis/nis_error.c:60 -msgid "Error while talking to callback proc" -msgstr "¥³¡¼¥ë¥Ð¥Ã¥¯¥×¥í¥·¡¼¥¸¥ã¤ÈÄÌ¿®Ãæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿" +#. TRANS ??? +#: stdio-common/../sysdeps/gnu/errlist.c:818 +msgid "RPC program not available" +msgstr "RPC¥×¥í¥°¥é¥à¤ÏÍøÍѤǤ­¤Þ¤»¤ó" -#: timezone/zdump.c:268 -msgid "Error writing standard output" -msgstr "¥¨¥é¡¼¤òɸ½à½ÐÎϤ˽ñ¤­½Ð¤·Ãæ" +#. TRANS ??? +#: stdio-common/../sysdeps/gnu/errlist.c:827 +msgid "RPC program version wrong" +msgstr "RPC¥×¥í¥°¥é¥à¥Ð¡¼¥¸¥ç¥ó¤¬°ã¤¤¤Þ¤¹" -#: inet/ruserpass.c:184 -msgid "Error: .netrc file is readable by others." -msgstr "¥¨¥é¡¼: ¥Õ¥¡¥¤¥ë.netrc¤¬Â¾¼Ô¤Ë¤è¤Ã¤ÆÆɤ߹þ¤ßµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤¹" +#. TRANS ??? +#: stdio-common/../sysdeps/gnu/errlist.c:836 +msgid "RPC bad procedure for program" +msgstr "¥×¥í¥°¥é¥à¤ËÂФ·¤ÆÉÔÀµ¤ÊRPC¤Î¼ê³¤­¤Ç¤¹" -#: stdio-common/../sysdeps/gnu/errlist.c:729 -msgid "Exchange full" -msgstr "Exchange full" +#. TRANS No locks available. This is used by the file locking facilities; see +#. TRANS @ref{File Locks}. This error is never generated by the GNU system, but +#. TRANS it can result from an operation to an NFS server running another +#. TRANS operating system. +#: stdio-common/../sysdeps/gnu/errlist.c:848 +msgid "No locks available" +msgstr "¥í¥Ã¥¯¤¬ÍøÍѤǤ­¤Þ¤»¤ó" -#. TRANS Invalid executable file format. This condition is detected by the -#. TRANS @code{exec} functions; see @ref{Executing a File}. -#: stdio-common/../sysdeps/gnu/errlist.c:76 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:38 -msgid "Exec format error" -msgstr "¼Â¹Ô·Á¼°¥¨¥é¡¼" +#. TRANS Inappropriate file type or format. The file was the wrong type for the +#. TRANS operation, or a data file had the wrong format. +#. TRANS +#. TRANS On some systems @code{chmod} returns this error if you try to set the +#. TRANS sticky bit on a non-directory file; @pxref{Setting Permissions}. +#: stdio-common/../sysdeps/gnu/errlist.c:861 +msgid "Inappropriate file type or format" +msgstr "ÉÔŬÀڤʥե¡¥¤¥ë·Á¼°¤«¥Õ¥©¡¼¥Þ¥Ã¥È¤Ç¤¹" -#: locale/programs/localedef.c:190 -msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" -msgstr "Ã×̿Ū¥¨¥é¡¼: ¥·¥¹¥Æ¥à¤Ï`_POSIX2_LOCALEDEF'¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#. TRANS ??? +#: stdio-common/../sysdeps/gnu/errlist.c:870 +msgid "Authentication error" +msgstr "ǧ¾Ú¥¨¥é¡¼¤Ç¤¹" -#: locale/programs/localedef.c:97 -msgid "FILE contains mapping from symbolic names to UCS4 values" -msgstr "¥Õ¥¡¥¤¥ë¤Ï¥·¥ó¥Ü¥ë̾¤«¤éUCS4ÃͤؤΥޥåԥ󥰤ò´Þ¤ó¤Ç¤¤¤Þ¤¹" +#. TRANS ??? +#: stdio-common/../sysdeps/gnu/errlist.c:879 +msgid "Need authenticator" +msgstr "ǧ¾Ú¼Ô(authenticator)¤¬É¬ÍפǤ¹" -#: sunrpc/clnt_perr.c:365 -msgid "Failed (unspecified error)" -msgstr "¼ºÇÔ¤·¤Þ¤·¤¿(¸¶°øÉÔÆÃÄê¤Î¥¨¥é¡¼)" +#. TRANS Function not implemented. This indicates that the function called is +#. TRANS not implemented at all, either in the C library itself or in the +#. TRANS operating system. When you get this error, you can be sure that this +#. TRANS particular function will always fail with @code{ENOSYS} unless you +#. TRANS install a new version of the C library or the operating system. +#: stdio-common/../sysdeps/gnu/errlist.c:892 +msgid "Function not implemented" +msgstr "´Ø¿ô¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: nscd/nscd.c:400 -#, c-format -msgid "Failed to look up user '%s' to run server as" -msgstr "¥µ¡¼¥Ð¡¼¤ò¼Â¹Ô¤µ¤»¤ë¤¿¤á¤Î¥æ¡¼¥¶'%s'¤Î¸¡º÷¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#. TRANS Not supported. A function returns this error when certain parameter +#. TRANS values are valid, but the functionality they request is not available. +#. TRANS This can mean that the function does not implement a particular command +#. TRANS or option value or flag bit at all. For functions that operate on some +#. TRANS object given in a parameter, such as a file descriptor or a port, it +#. TRANS might instead mean that only @emph{that specific object} (file +#. TRANS descriptor, port, etc.) is unable to support the other parameters given; +#. TRANS different file descriptors might support different ranges of parameter +#. TRANS values. +#. TRANS +#. TRANS If the entire function is not available at all in the implementation, +#. TRANS it returns @code{ENOSYS} instead. +#: stdio-common/../sysdeps/gnu/errlist.c:912 +msgid "Not supported" +msgstr "¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: elf/readlib.c:109 -#, c-format -msgid "File %s is too small, not checked." -msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¾®¤µ¤¹¤®¤Þ¤¹, ¥Á¥§¥Ã¥¯¤µ¤ì¤Æ¤¤¤Þ¤»¤ó." +#. TRANS While decoding a multibyte character the function came along an invalid +#. TRANS or an incomplete sequence of bytes or the given wide character is invalid. +#: stdio-common/../sysdeps/gnu/errlist.c:922 +msgid "Invalid or incomplete multibyte or wide character" +msgstr "̵¸ú¤Þ¤¿¤ÏÉÔ´°Á´¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¤Þ¤¿¤Ï¥ï¥¤¥Éʸ»ú¤Ç¤¹" -#: stdio-common/../sysdeps/gnu/errlist.c:781 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:111 -msgid "File descriptor in bad state" -msgstr "¥Õ¥¡¥¤¥ëµ­½Ò»Ò¤¬ÉÔÀµ¤Î¾õÂ֤ˤ¢¤ê¤Þ¤¹" +#. TRANS In the GNU system, servers supporting the @code{term} protocol return +#. TRANS this error for certain operations when the caller is not in the +#. TRANS foreground process group of the terminal. Users do not usually see this +#. TRANS error because functions such as @code{read} and @code{write} translate +#. TRANS it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control}, +#. TRANS for information on process groups and these signals. +#: stdio-common/../sysdeps/gnu/errlist.c:936 +msgid "Inappropriate operation for background process" +msgstr "¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¥×¥í¥»¥¹¤ËÂФ¹¤ëÉÔŬÀÚ¤ÊÁàºî¤Ç¤¹" -#. TRANS File exists; an existing file was specified in a context where it only -#. TRANS makes sense to specify a new file. -#: stdio-common/../sysdeps/gnu/errlist.c:135 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:47 -msgid "File exists" -msgstr "¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹" +#. TRANS In the GNU system, opening a file returns this error when the file is +#. TRANS translated by a program and the translator program dies while starting +#. TRANS up, before it has connected to the file. +#: stdio-common/../sysdeps/gnu/errlist.c:947 +msgid "Translator died" +msgstr "ËÝÌõÍÑ¥×¥í¥°¥é¥à¤¬»à¤ó¤Ç¤¤¤Þ¤¹" -#: elf/cache.c:147 elf/cache.c:157 -msgid "File is not a cache file.\n" -msgstr "¥Õ¥¡¥¤¥ë¤Ï¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.\n" +#. TRANS The experienced user will know what is wrong. +#. TRANS @c This error code is a joke. Its perror text is part of the joke. +#. TRANS @c Don't change it. +#: stdio-common/../sysdeps/gnu/errlist.c:958 +msgid "?" +msgstr "?" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:86 -msgid "File locking deadlock" -msgstr "¥Õ¥¡¥¤¥ë¥í¥Ã¥¯¤Î¥Ç¥Ã¥É¥í¥Ã¥¯¤Ç¤¹" +#. TRANS You did @strong{what}? +#: stdio-common/../sysdeps/gnu/errlist.c:967 +msgid "You really blew it this time" +msgstr "You really blew it this time" -#: stdio-common/../sysdeps/gnu/errlist.c:745 -msgid "File locking deadlock error" -msgstr "¥Õ¥¡¥¤¥ë¥í¥Ã¥¯¤Î¥Ç¥Ã¥É¥í¥Ã¥¯¥¨¥é¡¼¤Ç¤¹" +#. TRANS Go home and have a glass of warm, dairy-fresh milk. +#: stdio-common/../sysdeps/gnu/errlist.c:976 +msgid "Computer bought the farm" +msgstr "¥³¥ó¥Ô¥å¡¼¥¿¤¬¡ÖÀï»à¡×¤·¤Þ¤·¤¿" -#. TRANS Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for -#. TRANS Files}) or host name too long (in @code{gethostname} or -#. TRANS @code{sethostname}; @pxref{Host Identification}). -#: stdio-common/../sysdeps/gnu/errlist.c:465 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:108 -msgid "File name too long" -msgstr "¥Õ¥¡¥¤¥ë̾¤¬Ä¹¤¹¤®¤Þ¤¹" +#. TRANS This error code has no purpose. +#: stdio-common/../sysdeps/gnu/errlist.c:985 +msgid "Gratuitous error" +msgstr "ÉÔɬÍפʥ¨¥é¡¼" -#: stdio-common/../sysdeps/unix/siglist.c:51 sysdeps/generic/siglist.h:51 -msgid "File size limit exceeded" -msgstr "¥Õ¥¡¥¤¥ë¥µ¥¤¥ºÀ©¸Â¤òĶ²á¤·¤Þ¤·¤¿" +#: stdio-common/../sysdeps/gnu/errlist.c:993 +msgid "Bad message" +msgstr "ÉÔÀµ¤Ê¥á¥Ã¥»¡¼¥¸¤Ç¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:53 -msgid "File table overflow" -msgstr "¥Õ¥¡¥¤¥ë¥Æ¡¼¥Ö¥ë¥ª¡¼¥Ð¡¼¥Õ¥í¡¼" +#: stdio-common/../sysdeps/gnu/errlist.c:1001 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:66 +msgid "Identifier removed" +msgstr "¼±Ê̻Ҥò½üµî¤·¤Þ¤·¤¿" -#. TRANS File too big; the size of a file would be larger than allowed by the system. -#: stdio-common/../sysdeps/gnu/errlist.c:203 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:57 -msgid "File too large" -msgstr "¥Õ¥¡¥¤¥ë¤¬Â礭¤¹¤®¤Þ¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1009 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:104 +msgid "Multihop attempted" +msgstr "¿½Å¥Û¥Ã¥×¤¬´ë¤Æ¤é¤ì¤Þ¤·¤¿" -#: intl/tst-gettext2.c:37 -msgid "First string for testing." -msgstr "¥Æ¥¹¥È¤Î¤¿¤á¤ÎºÇ½é¤Îʸ»úÎó." +#: stdio-common/../sysdeps/gnu/errlist.c:1017 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:91 +msgid "No data available" +msgstr "ÍøÍѲÄǽ¤Ê¥Ç¡¼¥¿¤¬¤¢¤ê¤Þ¤»¤ó" -#: nis/nis_error.c:38 -msgid "First/next chain broken" -msgstr "ºÇ½é/¼¡¤Î¥Á¥§¥¤¥ó¤¬²õ¤ì¤Æ¤¤¤Þ¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1025 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:97 +msgid "Link has been severed" +msgstr "¥ê¥ó¥¯¤¬ÀÚ¤ì¤Æ¤¤¤Þ¤¹" -#: stdio-common/../sysdeps/unix/siglist.c:34 sysdeps/generic/siglist.h:35 -msgid "Floating point exception" -msgstr "ÉâÆ°¾®¿ôÅÀ±é»»Îã³°¤Ç¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1033 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:65 +msgid "No message of desired type" +msgstr "Í׵ᤷ¤¿·Á¼°¤Î¥á¥Ã¥»¡¼¥¸¤Ï¤¢¤ê¤Þ¤»¤ó" -#: elf/ldconfig.c:131 -msgid "Format to use: new, old or compat (default)" -msgstr "»ÈÍÑ¥Õ¥©¡¼¥Þ¥Ã¥È: ¿·, µì, ¸ß´¹ (¥Ç¥Õ¥©¥ë¥È)" +#: stdio-common/../sysdeps/gnu/errlist.c:1041 +msgid "Out of streams resources" +msgstr "¥¹¥È¥ê¡¼¥à¥ê¥½¡¼¥¹³°¤Ç¤¹" -#: nis/nis_error.c:68 -msgid "Full resync required for directory" -msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ËÂФ¹¤ë´°Á´ºÆsync¤¬Í׵ᤵ¤ì¤Þ¤·¤¿" +#: stdio-common/../sysdeps/gnu/errlist.c:1049 +msgid "Device not a stream" +msgstr "¥Ç¥Ð¥¤¥¹¤Ï¥¹¥È¥ê¡¼¥à·¿¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#. TRANS Function not implemented. This indicates that the function called is -#. TRANS not implemented at all, either in the C library itself or in the -#. TRANS operating system. When you get this error, you can be sure that this -#. TRANS particular function will always fail with @code{ENOSYS} unless you -#. TRANS install a new version of the C library or the operating system. -#: stdio-common/../sysdeps/gnu/errlist.c:576 -msgid "Function not implemented" -msgstr "´Ø¿ô¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: stdio-common/../sysdeps/gnu/errlist.c:1057 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:109 +msgid "Value too large for defined data type" +msgstr "ÄêµÁ¤µ¤ì¤¿¥Ç¡¼¥¿·¿¤ËÂФ·¤ÆÃͤ¬Â礭¤¹¤®¤Þ¤¹" -#: nis/nis_print.c:118 -msgid "GROUP\n" -msgstr "¥°¥ë¡¼¥×\n" +#: stdio-common/../sysdeps/gnu/errlist.c:1065 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:101 +msgid "Protocol error" +msgstr "¥×¥í¥È¥³¥ë¥¨¥é¡¼" -#: argp/argp-help.c:230 -#, c-format -msgid "Garbage in ARGP_HELP_FMT: %s" -msgstr "ARGP_HELP_FMT Ãæ¤Ë¤´¤ß¤¬¤¢¤ê¤Þ¤¹: %s" +#: stdio-common/../sysdeps/gnu/errlist.c:1073 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:92 +msgid "Timer expired" +msgstr "¥¿¥¤¥Þ¤¬ÇË´þ¤µ¤ì¤Þ¤·¤¿" -#: malloc/memusagestat.c:64 -msgid "Generate graphic from memory profiling data" -msgstr "¥á¥â¥ê¥×¥í¥Õ¥¡¥¤¥ë¥Ç¡¼¥¿¤«¤é²èÁü¤òÀ¸À®" +#. TRANS Operation canceled; an asynchronous operation was canceled before it +#. TRANS completed. @xref{Asynchronous I/O}. When you call @code{aio_cancel}, +#. TRANS the normal result is for the operations affected to complete with this +#. TRANS error; @pxref{Cancel AIO Operations}. +#: stdio-common/../sysdeps/gnu/errlist.c:1085 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:77 +msgid "Operation canceled" +msgstr "Áàºî¤ÏÃæÃǤµ¤ì¤Þ¤·¤¿" -#: catgets/gencat.c:120 -msgid "" -"Generate message catalog.\\vIf INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n" -"is -, output is written to standard output.\n" -msgstr "" -"¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤òÀ¸À®¤·¤Þ¤¹.\\v¤â¤·ÆþÎÏ¥Õ¥¡¥¤¥ë¤Ë - ¤ò»ØÄꤷ¤¿¾ì¹ç¡¢ÆþÎϤÏɸ½àÆþÎϤ«¤éÆɤ߹þ¤Þ¤ì¤Þ¤¹¡£¤â¤·½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ë - \n" -"¤ò»ØÄꤷ¤¿¾ì¹ç¡¢½ÐÎϤÏɸ½à½ÐÎϤؽñ¤­¹þ¤Þ¤ì¤Þ¤¹.\n" +#: stdio-common/../sysdeps/gnu/errlist.c:1093 +msgid "Interrupted system call should be restarted" +msgstr "³ä¤ê¹þ¤Þ¤ì¤¿¥·¥¹¥Æ¥à¥³¡¼¥ë¤ÏºÆ¥¹¥¿¡¼¥È¤µ¤»¤ë¤Ù¤­¤Ç¤¹" -#: malloc/memusagestat.c:55 -msgid "Generate output linear to time (default is linear to number of function calls)" -msgstr "»þ¹ï½ç¤Ë½ÐÎϤòÀ¸À® (¥Ç¥Õ¥©¥ë¥È¤Ï´Ø¿ô¸Æ¤Ó½Ð¤·¤ÎÃͽç)" +#: stdio-common/../sysdeps/gnu/errlist.c:1101 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:67 +msgid "Channel number out of range" +msgstr "¥Á¥ã¥ó¥Í¥ëÈֹ椬Èϰϳ°¤Ç¤¹" -#: elf/ldconfig.c:123 -msgid "Generate verbose messages" -msgstr "¾ÜºÙ¤Ê¥á¥Ã¥»¡¼¥¸¤Îɽ¼¨" +#: stdio-common/../sysdeps/gnu/errlist.c:1109 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:68 +msgid "Level 2 not synchronized" +msgstr "¥ì¥Ù¥ë2¤ÏƱ´ü¤·¤Æ¤¤¤Þ¤»¤ó" -#: nis/nis_error.c:37 -msgid "Generic system error" -msgstr "°ìÈÌŪ¤Ê¥·¥¹¥Æ¥à¥¨¥é¡¼" +#: stdio-common/../sysdeps/gnu/errlist.c:1117 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:69 +msgid "Level 3 halted" +msgstr "¥ì¥Ù¥ë3Ää»ß" -#: locale/programs/locale.c:86 -msgid "Get locale-specific information." -msgstr "¥í¥±¡¼¥ë¸ÇÍ­¾ðÊó¤òÆÀ¤ë." +#: stdio-common/../sysdeps/gnu/errlist.c:1125 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:70 +msgid "Level 3 reset" +msgstr "¥ì¥Ù¥ë3¤Ï¥ê¥»¥Ã¥È¤·¤Þ¤·¤¿" -#: argp/argp-parse.c:94 -msgid "Give a short usage message" -msgstr "û¤¤»ÈÍÑÊýË¡¤Îɽ¼¨" +#: stdio-common/../sysdeps/gnu/errlist.c:1133 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:71 +msgid "Link number out of range" +msgstr "¥ê¥ó¥¯¿ô¤¬Èϰϳ°¤Ç¤¹" -#: argp/argp-parse.c:93 -msgid "Give this help list" -msgstr "¤³¤Î¥Ø¥ë¥×¤Îɽ¼¨" +#: stdio-common/../sysdeps/gnu/errlist.c:1141 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:72 +msgid "Protocol driver not attached" +msgstr "¥×¥í¥È¥³¥ë¥É¥é¥¤¥Ð¤¬¥¢¥¿¥Ã¥Á¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#. TRANS This error code has no purpose. -#: stdio-common/../sysdeps/gnu/errlist.c:637 -msgid "Gratuitous error" -msgstr "ÉÔɬÍפʥ¨¥é¡¼" +#: stdio-common/../sysdeps/gnu/errlist.c:1149 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:73 +msgid "No CSI structure available" +msgstr "CSI ¹½Â¤¤¬ÍøÍѤǤ­¤Þ¤»¤ó" -#: nis/nis_print.c:323 -#, c-format -msgid "Group : %s\n" -msgstr "¥°¥ë¡¼¥× : %s\n" +#: stdio-common/../sysdeps/gnu/errlist.c:1157 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:74 +msgid "Level 2 halted" +msgstr "¥ì¥Ù¥ë2Ää»ß" -#: nis/nis_print.c:252 -msgid "Group Flags :" -msgstr "¥°¥ë¡¼¥×¥Õ¥é¥°:" +#: stdio-common/../sysdeps/gnu/errlist.c:1165 +msgid "Invalid exchange" +msgstr "̵¸ú¤Ê¸ò´¹¤Ç¤¹" -#: nis/nis_print_group_entry.c:115 -#, c-format -msgid "Group entry for \"%s.%s\" group:\n" -msgstr "¥°¥ë¡¼¥×¥¨¥ó¥È¥ê \"%s.%s\" ¥°¥ë¡¼¥×:\n" +#: stdio-common/../sysdeps/gnu/errlist.c:1173 +msgid "Invalid request descriptor" +msgstr "̵¸ú¤Ê¥ê¥¯¥¨¥¹¥Èµ­½Ò»Ò¤Ç¤¹" -#: argp/argp-parse.c:97 -msgid "Hang for SECS seconds (default 3600)" -msgstr "SECS ÉÃ¤Ç¥Ï¥ó¥° (¥Ç¥Õ¥©¥ë¥È 3600)" +#: stdio-common/../sysdeps/gnu/errlist.c:1181 +msgid "Exchange full" +msgstr "Exchange full" -#: stdio-common/../sysdeps/unix/siglist.c:27 sysdeps/generic/siglist.h:29 -msgid "Hangup" -msgstr "¥Ï¥ó¥°¥¢¥Ã¥×" +#: stdio-common/../sysdeps/gnu/errlist.c:1189 +msgid "No anode" +msgstr "¥¢¥Î¡¼¥É¤¬¤¢¤ê¤Þ¤»¤ó" -#: nscd/grpcache.c:253 -#, c-format -msgid "Haven't found \"%d\" in group cache!" -msgstr "¥°¥ë¡¼¥×¥­¥ã¥Ã¥·¥åÃæ¤Ë \"%d\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó!" +#: stdio-common/../sysdeps/gnu/errlist.c:1197 +msgid "Invalid request code" +msgstr "̵¸ú¤Ê¥ê¥¯¥¨¥¹¥È¥³¡¼¥É¤Ç¤¹" -#: nscd/pwdcache.c:249 -#, c-format -msgid "Haven't found \"%d\" in password cache!" -msgstr "¥Ñ¥¹¥ï¡¼¥É¥­¥ã¥Ã¥·¥å¤Ë \"%d\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó!" +#: stdio-common/../sysdeps/gnu/errlist.c:1205 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:85 +msgid "Invalid slot" +msgstr "̵¸ú¤Ê¥¹¥í¥Ã¥È¤Ç¤¹" -#: nscd/grpcache.c:214 -#, c-format -msgid "Haven't found \"%s\" in group cache!" -msgstr "¥°¥ë¡¼¥×¥­¥ã¥Ã¥·¥å¤Ë \"%s\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó!" +#: stdio-common/../sysdeps/gnu/errlist.c:1213 +msgid "File locking deadlock error" +msgstr "¥Õ¥¡¥¤¥ë¥í¥Ã¥¯¤Î¥Ç¥Ã¥É¥í¥Ã¥¯¥¨¥é¡¼¤Ç¤¹" -#: nscd/hstcache.c:299 nscd/hstcache.c:341 nscd/hstcache.c:386 -#: nscd/hstcache.c:430 -#, c-format -msgid "Haven't found \"%s\" in hosts cache!" -msgstr "¥Û¥¹¥È¥­¥ã¥Ã¥·¥å¤Ë \"%s\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó!" +#: stdio-common/../sysdeps/gnu/errlist.c:1221 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:87 +msgid "Bad font file format" +msgstr "ÉÔÀµ¤Ê¥Õ¥©¥ó¥È¥Õ¥¡¥¤¥ë·Á¼°¤Ç¤¹" -#: nscd/pwdcache.c:210 -#, c-format -msgid "Haven't found \"%s\" in password cache!" -msgstr "¥Ñ¥¹¥ï¡¼¥É¥­¥ã¥Ã¥·¥å¤Ë \"%s\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó!" +#: stdio-common/../sysdeps/gnu/errlist.c:1229 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:94 +msgid "Machine is not on the network" +msgstr "¥Þ¥·¥ó¤Ï¥Í¥Ã¥È¥ï¡¼¥¯¤Ë¤Ä¤Ê¤¬¤Ã¤Æ¤¤¤Þ¤»¤ó" -#. TRANS The remote host for a requested network connection is down. -#: stdio-common/../sysdeps/gnu/errlist.c:470 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:177 -msgid "Host is down" -msgstr "¥Û¥¹¥È¤¬Íî¤Á¤Æ¤¤¤Þ¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1237 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:95 +msgid "Package not installed" +msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: resolv/herror.c:69 -msgid "Host name lookup failure" -msgstr "¥Û¥¹¥È̾¤Î¸¡º÷¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: stdio-common/../sysdeps/gnu/errlist.c:1245 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:98 +msgid "Advertise error" +msgstr "Advertise¥¨¥é¡¼" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:35 -msgid "I/O error" -msgstr "I/O¥¨¥é¡¼" +#: stdio-common/../sysdeps/gnu/errlist.c:1253 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:99 +msgid "Srmount error" +msgstr "Srmount ¥¨¥é¡¼" -#: stdio-common/../sysdeps/unix/siglist.c:49 sysdeps/generic/siglist.h:49 -msgid "I/O possible" -msgstr "I/O²Äǽ¤Ç¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1261 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:100 +msgid "Communication error on send" +msgstr "Á÷¿®Ãæ¤ÎÄÌ¿®¥¨¥é¡¼" -#: stdio-common/../sysdeps/unix/siglist.c:32 -msgid "IOT trap" -msgstr "IOT¥È¥é¥Ã¥×" +#: stdio-common/../sysdeps/gnu/errlist.c:1269 +msgid "RFS specific error" +msgstr "RFSÆÃÄꥨ¥é¡¼" -#: stdio-common/../sysdeps/gnu/errlist.c:645 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:66 -msgid "Identifier removed" -msgstr "¼±Ê̻Ҥò½üµî¤·¤Þ¤·¤¿" +#: stdio-common/../sysdeps/gnu/errlist.c:1277 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:110 +msgid "Name not unique on network" +msgstr "̾Á°¤¬¥Í¥Ã¥È¥ï¡¼¥¯¾å¤Ç½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" -#: elf/ldconfig.c:535 -#, c-format -msgid "Ignored file %s since it is not a regular file." -msgstr "Àµµ¬¤Î¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤¿¤á¥Õ¥¡¥¤¥ë %s ¤ò̵»ë¤·¤Þ¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1285 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:111 +msgid "File descriptor in bad state" +msgstr "¥Õ¥¡¥¤¥ëµ­½Ò»Ò¤¬ÉÔÀµ¤Î¾õÂ֤ˤ¢¤ê¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:118 -msgid "Illegal byte sequence" -msgstr "ÉÔÀµ¤Ê¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹¤Ç¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1293 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:112 +msgid "Remote address changed" +msgstr "±ó³Ö¥¢¥É¥ì¥¹¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿" -#: stdio-common/../sysdeps/unix/siglist.c:30 sysdeps/generic/siglist.h:32 -msgid "Illegal instruction" -msgstr "ÉÔÀµ¤ÊÌ¿Îá¤Ç¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1301 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:113 +msgid "Can not access a needed shared library" +msgstr "ɬÍפʶ¦Í­¥é¥¤¥Ö¥é¥ê¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤»¤ó" -#: nis/nis_error.c:62 -msgid "Illegal object type for operation" -msgstr "Áàºî¤ËÂФ¹¤ëÉÔÀµ¤Ê¥ª¥Ö¥¸¥§¥¯¥È¥¿¥¤¥×¤Ç¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1309 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:114 +msgid "Accessing a corrupted shared library" +msgstr "²õ¤ì¤¿¶¦Í­¥é¥¤¥Ö¥é¥ê¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¤¤Þ¤¹" -#. TRANS Invalid seek operation (such as on a pipe). -#: stdio-common/../sysdeps/gnu/errlist.c:214 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:59 -msgid "Illegal seek" -msgstr "ÉÔÀµ¤Ê¥·¡¼¥¯¤Ç¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1317 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:115 +msgid ".lib section in a.out corrupted" +msgstr "a.out Ãæ¤Î .lib ¥»¥¯¥·¥ç¥ó¤¬²õ¤ì¤Æ¤¤¤Þ¤¹" -#. TRANS Inappropriate file type or format. The file was the wrong type for the -#. TRANS operation, or a data file had the wrong format. -#. TRANS -#. TRANS On some systems @code{chmod} returns this error if you try to set the -#. TRANS sticky bit on a non-directory file; @pxref{Setting Permissions}. -#: stdio-common/../sysdeps/gnu/errlist.c:557 -msgid "Inappropriate file type or format" -msgstr "ÉÔŬÀڤʥե¡¥¤¥ë·Á¼°¤«¥Õ¥©¡¼¥Þ¥Ã¥È¤Ç¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1325 +msgid "Attempting to link in too many shared libraries" +msgstr "¤¢¤Þ¤ê¤Ë¿²á¤®¤ë¶¦Í­¥é¥¤¥Ö¥é¥ê¤Ø¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹" -#. TRANS Inappropriate I/O control operation, such as trying to set terminal -#. TRANS modes on an ordinary file. -#: stdio-common/../sysdeps/gnu/errlist.c:189 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:55 -msgid "Inappropriate ioctl for device" -msgstr "¥Ç¥Ð¥¤¥¹¤ËÂФ¹¤ëÉÔŬÀÚ¤Êioctl¤Ç¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1333 +msgid "Cannot exec a shared library directly" +msgstr "¶¦Í­¥é¥¤¥Ö¥é¥ê¤ÏľÀܼ¹ԤǤ­¤Þ¤»¤ó" -#. TRANS In the GNU system, servers supporting the @code{term} protocol return -#. TRANS this error for certain operations when the caller is not in the -#. TRANS foreground process group of the terminal. Users do not usually see this -#. TRANS error because functions such as @code{read} and @code{write} translate -#. TRANS it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control}, -#. TRANS for information on process groups and these signals. -#: stdio-common/../sysdeps/gnu/errlist.c:608 -msgid "Inappropriate operation for background process" -msgstr "¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¥×¥í¥»¥¹¤ËÂФ¹¤ëÉÔŬÀÚ¤ÊÁàºî¤Ç¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1341 +msgid "Streams pipe error" +msgstr "¥¹¥È¥ê¡¼¥à¥Ñ¥¤¥×¥¨¥é¡¼" -#: sysdeps/generic/siglist.h:69 -msgid "Information request" -msgstr "¾ðÊóÍ×µá" +#: stdio-common/../sysdeps/gnu/errlist.c:1349 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:165 +msgid "Structure needs cleaning" +msgstr "¹½Â¤ÂΤòÆâÍƾõ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹" -#: iconv/iconv_prog.c:62 -msgid "Information:" -msgstr "¾ðÊó:" +#: stdio-common/../sysdeps/gnu/errlist.c:1357 +msgid "Not a XENIX named type file" +msgstr "XENIX ¤Î̾Á°ÉÕ¤­¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: locale/programs/localedef.c:92 -msgid "Input Files:" -msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë:" +#: stdio-common/../sysdeps/gnu/errlist.c:1365 +msgid "No XENIX semaphores available" +msgstr "XENIX ¥»¥Þ¥Õ¥©¤¬ÍøÍѤǤ­¤Þ¤»¤ó" -#: elf/ldconfig.c:754 elf/readlib.c:93 -#, c-format -msgid "Input file %s not found.\n" -msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë %s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó.\n" +#: stdio-common/../sysdeps/gnu/errlist.c:1373 +msgid "Is a named type file" +msgstr "̾Á°ÉÕ¤­¥Õ¥¡¥¤¥ë¤Ç¤¹" -#: iconv/iconv_prog.c:59 -msgid "Input/Output format specification:" -msgstr "ÆþÎÏ/½ÐÎÏ¥Õ¥©¡¼¥Þ¥Ã¥È¤Î»ÅÍÍ:" +#: stdio-common/../sysdeps/gnu/errlist.c:1381 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:170 +msgid "Remote I/O error" +msgstr "±ó³ÖI/O¥¨¥é¡¼¤Ç¤¹" -#. TRANS Input/output error; usually used for physical read or write errors. -#: stdio-common/../sysdeps/gnu/errlist.c:53 -msgid "Input/output error" -msgstr "ÆþÎÏ/½ÐÎÏ¥¨¥é¡¼¤Ç¤¹" +#: stdio-common/../sysdeps/gnu/errlist.c:1389 +msgid "No medium found" +msgstr "¥á¥Ç¥£¥¢¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: nis/ypclnt.c:800 -msgid "Internal NIS error" -msgstr "NISÆâÉô¥¨¥é¡¼" +#: stdio-common/../sysdeps/gnu/errlist.c:1397 +msgid "Wrong medium type" +msgstr "ÉÔÀµ¤Ê¥á¥Ç¥£¥¢·Á¼°¤Ç¤¹" -#: nis/ypclnt.c:864 -msgid "Internal ypbind error" -msgstr "ypbindÆâÉô¥¨¥é¡¼" +#: stdio-common/../sysdeps/unix/siglist.c:26 +msgid "Signal 0" +msgstr "¥·¥°¥Ê¥ë 0" -#: stdio-common/../sysdeps/unix/siglist.c:28 sysdeps/generic/siglist.h:30 -msgid "Interrupt" -msgstr "³ä¤ê¹þ¤ß" +#: stdio-common/../sysdeps/unix/siglist.c:32 +msgid "IOT trap" +msgstr "IOT¥È¥é¥Ã¥×" -#: posix/../sysdeps/posix/gai_strerror.c:46 -msgid "Interrupted by a signal" -msgstr "¥·¥°¥Ê¥ë¤Ë¤è¤ë³ä¤ê¹þ¤ß" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:30 +msgid "Error 0" +msgstr "¥¨¥é¡¼ 0" -#. 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. -#. TRANS -#. TRANS You can choose to have functions resume after a signal that is handled, -#. TRANS rather than failing with @code{EINTR}; see @ref{Interrupted -#. TRANS Primitives}. -#: stdio-common/../sysdeps/gnu/errlist.c:48 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:34 -msgid "Interrupted system call" -msgstr "¥·¥¹¥Æ¥à¥³¡¼¥ë³ä¤ê¹þ¤ß" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:31 +#: nis/nis_error.c:40 +msgid "Not owner" +msgstr "½êÍ­¼Ô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: stdio-common/../sysdeps/gnu/errlist.c:685 -msgid "Interrupted system call should be restarted" -msgstr "³ä¤ê¹þ¤Þ¤ì¤¿¥·¥¹¥Æ¥à¥³¡¼¥ë¤ÏºÆ¥¹¥¿¡¼¥È¤µ¤»¤ë¤Ù¤­¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:35 +msgid "I/O error" +msgstr "I/O¥¨¥é¡¼" -#. TRANS Invalid argument. This is used to indicate various kinds of problems -#. TRANS with passing the wrong argument to a library function. -#: stdio-common/../sysdeps/gnu/errlist.c:165 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:52 -msgid "Invalid argument" -msgstr "̵¸ú¤Ê°ú¿ô¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:37 +msgid "Arg list too long" +msgstr "°ú¿ô¥ê¥¹¥È¤¬Ä¹¤¹¤®¤Þ¤¹" -#: posix/regex.c:1380 -msgid "Invalid back reference" -msgstr "̵¸ú¤Ê¸åÊý»²¾È¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:39 +msgid "Bad file number" +msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ëÈÖ¹æ¤Ç¤¹" -#: posix/regex.c:1374 -msgid "Invalid character class name" -msgstr "̵¸ú¤Ê¥­¥ã¥é¥¯¥¿¥¯¥é¥¹Ì¾¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:42 +msgid "Not enough space" +msgstr "½½Ê¬¤ÊÎΰ褬¤¢¤ê¤Þ¤»¤ó" -#: sunrpc/clnt_perr.c:341 -msgid "Invalid client credential" -msgstr "̵¸ú¤Ê¥¯¥é¥¤¥¢¥ó¥È¤Î¿®Ç¤¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:46 +msgid "Device busy" +msgstr "¥Ç¥Ð¥¤¥¹¤¬¥Ó¥¸¡¼¾õÂ֤Ǥ¹" -#: sunrpc/clnt_perr.c:349 -msgid "Invalid client verifier" -msgstr "̵¸ú¤Ê¥¯¥é¥¤¥¢¥ó¥È³Îǧ¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:48 +msgid "Cross-device link" +msgstr "¥¯¥í¥¹¥Ç¥Ð¥¤¥¹¥ê¥ó¥¯" -#: posix/regex.c:1371 -msgid "Invalid collation character" -msgstr "̵¸ú¤Ê¾È¹çʸ»ú¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:53 +msgid "File table overflow" +msgstr "¥Õ¥¡¥¤¥ë¥Æ¡¼¥Ö¥ë¥ª¡¼¥Ð¡¼¥Õ¥í¡¼" -#: posix/regex.c:1392 -msgid "Invalid content of \\{\\}" -msgstr "̵¸ú¤Ê \\{\\} ¤ÎÆâÍƤǤ¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:63 +msgid "Argument out of domain" +msgstr "°ú¿ô¥ê¥¹¥È¤¬Ä¹¤¹¤®¤Þ¤¹" -#. TRANS An attempt to make an improper link across file systems was detected. -#. TRANS This happens not only when you use @code{link} (@pxref{Hard Links}) but -#. TRANS also when you rename a file with @code{rename} (@pxref{Renaming Files}). -#: stdio-common/../sysdeps/gnu/errlist.c:142 -msgid "Invalid cross-device link" -msgstr "̵¸ú¤Ê¥¯¥í¥¹¥Ç¥Ð¥¤¥¹¥ê¥ó¥¯¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:64 +msgid "Result too large" +msgstr "·ë²Ì¤¬Â礭¤¹¤®¤Þ¤¹" -#: stdio-common/../sysdeps/gnu/errlist.c:721 -msgid "Invalid exchange" -msgstr "̵¸ú¤Ê¸ò´¹¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:75 +msgid "Deadlock situation detected/avoided" +msgstr "¥Ç¥Ã¥É¥í¥Ã¥¯¾õÂÖ¤ò¸¡ÃÎ/²óÈò¤·¤Þ¤·¤¿" -#: nis/nis_error.c:45 -msgid "Invalid object for operation" -msgstr "Áàºî¤ËÂФ¹¤ë̵¸ú¤Ê¥ª¥Ö¥¸¥§¥¯¥È¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:76 +msgid "No record locks available" +msgstr "¥ì¥³¡¼¥É¥í¥Ã¥¯¤¬ÍøÍѤǤ­¤Þ¤»¤ó" -#. TRANS While decoding a multibyte character the function came along an invalid -#. TRANS or an incomplete sequence of bytes or the given wide character is invalid. -#: stdio-common/../sysdeps/gnu/errlist.c:598 -msgid "Invalid or incomplete multibyte or wide character" -msgstr "̵¸ú¤Þ¤¿¤ÏÉÔ´°Á´¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¤Þ¤¿¤Ï¥ï¥¤¥Éʸ»ú¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:79 +msgid "Disc quota exceeded" +msgstr "¥Ç¥£¥¹¥¯»ÈÍÑÎÌÀ©¸Â(¥¯¥©¡¼¥¿)¤òĶ²á¤·¤Þ¤·¤¿" -#: posix/regex.c:1401 -msgid "Invalid preceding regular expression" -msgstr "̵¸ú¤ÊÁ°½Ò¤ÎÀµµ¬É½¸½¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:80 +msgid "Bad exchange descriptor" +msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ëµ­½Ò»Ò¤Ç¤¹" -#: posix/regex.c:1395 -msgid "Invalid range end" -msgstr "̵¸ú¤Ê½ªÃ¼ÈϰϤǤ¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:81 +msgid "Bad request descriptor" +msgstr "ÉÔÀµ¤ÊÍ׵ᵭ½Ò»Ò¤Ç¤¹" -#: posix/regex.c:1368 -msgid "Invalid regular expression" -msgstr "̵¸ú¤ÊÀµµ¬É½¸½¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:82 +msgid "Message tables full" +msgstr "¥á¥Ã¥»¡¼¥¸¥Æ¡¼¥Ö¥ë¤¬°ìÇդǤ¹" -#: stdio-common/../sysdeps/gnu/errlist.c:737 -msgid "Invalid request code" -msgstr "̵¸ú¤Ê¥ê¥¯¥¨¥¹¥È¥³¡¼¥É¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:83 +msgid "Anode table overflow" +msgstr "¥¢¥Î¡¼¥É¥Æ¡¼¥Ö¥ë¥ª¡¼¥Ð¡¼¥Õ¥í¡¼" -#: stdio-common/../sysdeps/gnu/errlist.c:725 -msgid "Invalid request descriptor" -msgstr "̵¸ú¤Ê¥ê¥¯¥¨¥¹¥Èµ­½Ò»Ò¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:84 +msgid "Bad request code" +msgstr "ÉÔÀµ¤ÊÍ׵ᥳ¡¼¥É¤Ç¤¹" -#: sunrpc/clnt_perr.c:361 -msgid "Invalid server verifier" -msgstr "̵¸ú¤Ê¥µ¡¼¥Ð¡¼Ç§¾Ú¼Ô¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:86 +msgid "File locking deadlock" +msgstr "¥Õ¥¡¥¤¥ë¥í¥Ã¥¯¤Î¥Ç¥Ã¥É¥í¥Ã¥¯¤Ç¤¹" -#: stdio-common/../sysdeps/gnu/errlist.c:741 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:85 -msgid "Invalid slot" -msgstr "̵¸ú¤Ê¥¹¥í¥Ã¥È¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:88 +msgid "Error 58" +msgstr "¥¨¥é¡¼ 58" -#: nscd/nscd.c:91 -msgid "Invalidate the specified cache" -msgstr "»ØÄꥭ¥ã¥Ã¥·¥å¤Ï̵¸ú¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:89 +msgid "Error 59" +msgstr "¥¨¥é¡¼ 59" -#. TRANS File is a directory; you cannot open a directory for writing, -#. TRANS or create or remove hard links to it. -#: stdio-common/../sysdeps/gnu/errlist.c:159 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:51 -msgid "Is a directory" -msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:90 +msgid "Not a stream device" +msgstr "¥¹¥È¥ê¡¼¥à¥Ç¥Ð¥¤¥¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:169 -msgid "Is a name file" -msgstr "̾Á°¥Õ¥¡¥¤¥ë¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:93 +msgid "Out of stream resources" +msgstr "¥¹¥È¥ê¡¼¥à¥ê¥½¡¼¥¹³°¤Ç¤¹" -#: stdio-common/../sysdeps/gnu/errlist.c:825 -msgid "Is a named type file" -msgstr "̾Á°ÉÕ¤­¥Õ¥¡¥¤¥ë¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:102 +msgid "Error 72" +msgstr "¥¨¥é¡¼ 72" -#: nis/nis_print.c:191 -msgid "Kerberos.\n" -msgstr "Kerberos.\n" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:103 +msgid "Error 73" +msgstr "¥¨¥é¡¼ 73" -#: stdio-common/../sysdeps/unix/siglist.c:35 sysdeps/generic/siglist.h:36 -msgid "Killed" -msgstr "¶¯À©½ªÎ»" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:105 +msgid "Error 75" +msgstr "¥¨¥é¡¼ 75" -#: nis/nis_print.c:127 -msgid "LINK\n" -msgstr "LINK\n" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:106 +msgid "Error 76" +msgstr "¥¨¥é¡¼ 76" -#: nis/nis_local_names.c:126 -#, c-format -msgid "LOCAL entry for UID %d in directory %s not unique\n" -msgstr "¥Ç¥£¥ì¥¯¥È¥ê %2$s ¤Î UID %1$d ¤ËÂФ¹¤ë¥í¡¼¥«¥ë¥¨¥ó¥È¥ê¤¬¥æ¥Ë¡¼¥¯¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:107 +msgid "Not a data message" +msgstr "¥Ç¡¼¥¿¥á¥Ã¥»¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: stdio-common/../sysdeps/gnu/errlist.c:717 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:74 -msgid "Level 2 halted" -msgstr "¥ì¥Ù¥ë2Ää»ß" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:116 +msgid "Attempting to link in more shared libraries than system limit" +msgstr "¥·¥¹¥Æ¥à¤ÎÀ©¸Â°Ê¾å¤Î¶¦Í­¥é¥¤¥Ö¥é¥ê¤Ø¥ê¥ó¥¯¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹" -#: stdio-common/../sysdeps/gnu/errlist.c:693 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:68 -msgid "Level 2 not synchronized" -msgstr "¥ì¥Ù¥ë2¤ÏƱ´ü¤·¤Æ¤¤¤Þ¤»¤ó" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:117 +msgid "Can not exec a shared library directly" +msgstr "¶¦Í­¥é¥¤¥Ö¥é¥ê¤ÏľÀܼ¹ԤǤ­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/gnu/errlist.c:697 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:69 -msgid "Level 3 halted" -msgstr "¥ì¥Ù¥ë3Ää»ß" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:118 +msgid "Illegal byte sequence" +msgstr "ÉÔÀµ¤Ê¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹¤Ç¤¹" -#: stdio-common/../sysdeps/gnu/errlist.c:701 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:70 -msgid "Level 3 reset" -msgstr "¥ì¥Ù¥ë3¤Ï¥ê¥»¥Ã¥È¤·¤Þ¤·¤¿" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:119 +msgid "Operation not applicable" +msgstr "Áàºî¤ÏŬÍѤǤ­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/gnu/errlist.c:657 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:97 -msgid "Link has been severed" -msgstr "¥ê¥ó¥¯¤¬ÀÚ¤ì¤Æ¤¤¤Þ¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:120 +msgid "Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS" +msgstr "¥Ñ¥¹Ì¾¤ò¸¡ººÃæ¤ËÄ̲ᤷ¤¿¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î¿ô¤¬MAXSYNLINKS¤ò±Û¤¨¤Þ¤·¤¿" -#: stdio-common/../sysdeps/gnu/errlist.c:705 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:71 -msgid "Link number out of range" -msgstr "¥ê¥ó¥¯¿ô¤¬Èϰϳ°¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:121 +msgid "Error 91" +msgstr "¥¨¥é¡¼ 91" -#: nis/nis_error.c:54 -msgid "Link points to illegal name" -msgstr "¥ê¥ó¥¯¤¬ÉÔÀµ¤Ê̾Á°¤ò»Ø¤·¤Æ¤¤¤Þ¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:122 +msgid "Error 92" +msgstr "¥¨¥é¡¼ 92" -#: nis/nis_print.c:286 -msgid "Linked Object Type : " -msgstr "¥ê¥ó¥¯¤µ¤ì¤¿¥ª¥Ö¥¸¥§¥¯¥È·¿ : " +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:129 +msgid "Option not supported by protocol" +msgstr "¥ª¥×¥·¥ç¥ó¤Ï¥×¥í¥È¥³¥ë¤Ë¤è¤Ã¤Æ¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: nis/nis_print.c:288 -#, c-format -msgid "Linked to : %s\n" -msgstr "¥ê¥ó¥¯Àè : %s\n" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:130 +msgid "Error 100" +msgstr "¥¨¥é¡¼ 100" -#: nis/ypclnt.c:812 -msgid "Local domain name not set" -msgstr "¥í¡¼¥«¥ë¥É¥á¥¤¥ó̾¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:131 +msgid "Error 101" +msgstr "¥¨¥é¡¼ 101" -#: nis/ypclnt.c:802 -msgid "Local resource allocation failure" -msgstr "¥í¡¼¥«¥ë¥ê¥½¡¼¥¹³ÎÊݤμºÇÔ¤·¤Þ¤·¤¿" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:132 +msgid "Error 102" +msgstr "¥¨¥é¡¼ 102" -#: stdio-common/../sysdeps/gnu/errlist.c:753 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:94 -msgid "Machine is not on the network" -msgstr "¥Þ¥·¥ó¤Ï¥Í¥Ã¥È¥ï¡¼¥¯¤Ë¤Ä¤Ê¤¬¤Ã¤Æ¤¤¤Þ¤»¤ó" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:133 +msgid "Error 103" +msgstr "¥¨¥é¡¼ 103" -#: nis/nis_error.c:46 -msgid "Malformed name, or illegal name" -msgstr "ÉÔÅö, ¤Þ¤¿¤ÏÉÔÀµ¤Ê̾Á°¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:134 +msgid "Error 104" +msgstr "¥¨¥é¡¼ 104" -#: argp/argp-help.c:1185 -msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." -msgstr "¥í¥ó¥°¥ª¥×¥·¥ç¥ó¤Çɬ¿Ü¤Þ¤¿¤ÏǤ°Õ¤Î°ú¿ô¤Ï¡¢¤½¤ì¤ËÂбþ¤¹¤ë¥·¥ç¡¼¥È¥ª¥×¥·¥ç¥ó¤Ç¤âɬ¿Ü¤Þ¤¿¤ÏǤ°Õ¤Ç¤¹." +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:135 +msgid "Error 105" +msgstr "¥¨¥é¡¼ 105" -#: elf/ldconfig.c:130 -msgid "Manually link individual libraries." -msgstr "¸Ä¡¹¤Î¥é¥¤¥Ö¥é¥ê¤Ë¼êÆ°¤Ç¥ê¥ó¥¯¤·¤Æ¤¯¤À¤µ¤¤." +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:136 +msgid "Error 106" +msgstr "¥¨¥é¡¼ 106" -#: nis/nis_print.c:172 -msgid "Master Server :\n" -msgstr "¥Þ¥¹¥¿¡¼¥µ¡¼¥Ð:\n" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:137 +msgid "Error 107" +msgstr "¥¨¥é¡¼ 107" -#: nis/nis_error.c:76 -msgid "Master server busy, full dump rescheduled." -msgstr "¥Þ¥¹¥¿¡¼¥µ¡¼¥Ð¤¬¥Ó¥¸¡¼¤Ç¤¹, ¥Õ¥ë¥À¥ó¥×¤ÏºÆ¥¹¥±¥¸¥å¡¼¥ë¤·¤Þ¤·¤¿." +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:138 +msgid "Error 108" +msgstr "¥¨¥é¡¼ 108" -#: posix/../sysdeps/posix/gai_strerror.c:36 -msgid "Memory allocation failure" -msgstr "¥á¥â¥ê³ÎÊݤ˼ºÇÔ¤·¤Þ¤·¤¿" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:139 +msgid "Error 109" +msgstr "¥¨¥é¡¼ 109" -#: posix/regex.c:1398 -msgid "Memory exhausted" -msgstr "¥á¥â¥ê¤ò»È¤¤¿Ô¤·¤Þ¤·¤¿" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:140 +msgid "Error 110" +msgstr "¥¨¥é¡¼ 110" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:82 -msgid "Message tables full" -msgstr "¥á¥Ã¥»¡¼¥¸¥Æ¡¼¥Ö¥ë¤¬°ìÇդǤ¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:141 +msgid "Error 111" +msgstr "¥¨¥é¡¼ 111" -#. TRANS The size of a message sent on a socket was larger than the supported -#. TRANS maximum size. -#: stdio-common/../sysdeps/gnu/errlist.c:318 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:127 -msgid "Message too long" -msgstr "¥á¥Ã¥»¡¼¥¸¤¬Ä¹¤¹¤®¤Þ¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:142 +msgid "Error 112" +msgstr "¥¨¥é¡¼ 112" -#: nis/nis_error.c:58 -msgid "Missing or malformed attribute" -msgstr "°À­¤¬¸«Åö¤¿¤é¤Ê¤¤¤«ÉÔÅö¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:143 +msgid "Error 113" +msgstr "¥¨¥é¡¼ 113" -#: nis/nis_print.c:331 -#, c-format -msgid "Mod. Time : %s" -msgstr "¹¹¿·»þ¹ï : %s" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:144 +msgid "Error 114" +msgstr "¥¨¥é¡¼ 114" -#: nis/nis_error.c:51 -msgid "Modification failed" -msgstr "¹¹¿·¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:145 +msgid "Error 115" +msgstr "¥¨¥é¡¼ 115" -#: nis/nis_error.c:64 -msgid "Modify operation failed" -msgstr "¹¹¿·Áàºî¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:146 +msgid "Error 116" +msgstr "¥¨¥é¡¼ 116" -#: locale/programs/locale.c:78 -msgid "Modify output format:" -msgstr "½ÐÎÏ·Á¼°¤Î¹¹¿·:" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:147 +msgid "Error 117" +msgstr "¥¨¥é¡¼ 117" -#: stdio-common/../sysdeps/gnu/errlist.c:649 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:104 -msgid "Multihop attempted" -msgstr "¿½Å¥Û¥Ã¥×¤¬´ë¤Æ¤é¤ì¤Þ¤·¤¿" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:148 +msgid "Error 118" +msgstr "¥¨¥é¡¼ 118" -#: nscd/nscd_conf.c:182 -msgid "Must specify user name for server-user option" -msgstr "¥µ¡¼¥Ð¥æ¡¼¥¶¥ª¥×¥·¥ç¥ó¤ËÂФ·¤Æ¥æ¡¼¥¶Ì¾¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:149 +msgid "Error 119" +msgstr "¥¨¥é¡¼ 119" -#: catgets/gencat.c:111 catgets/gencat.c:115 locale/programs/localedef.c:115 -#: nscd/nscd.c:83 -msgid "NAME" -msgstr "̾Á°" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:152 +msgid "Operation not supported on transport endpoint" +msgstr "Áàºî¤ÏžÁ÷Àè¤Ç¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/locale.c:89 -msgid "" -"NAME\n" -"[-a|-m]" -msgstr "" -"̾Á°\n" -"[-a|-m]" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:154 +msgid "Address family not supported by protocol family" +msgstr "¥¢¥É¥ì¥¹¥Õ¥¡¥ß¥ê¤Ï¥×¥í¥È¥³¥ë¥Õ¥¡¥ß¥ê¤Ë¤è¤Ã¤Æ¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: nis/ypclnt.c:816 -msgid "NIS client/server version mismatch - can't supply service" -msgstr "NIS¥¯¥é¥¤¥¢¥ó¥È¤È¥µ¡¼¥Ð¤Î¥Ð¡¼¥¸¥ç¥ó¤¬°ìÃפ·¤Þ¤»¤ó - ¥µ¡¼¥Ó¥¹¤òÄ󶡤Ǥ­¤Þ¤»¤ó" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:159 +msgid "Network dropped connection because of reset" +msgstr "¥ê¥»¥Ã¥È¤µ¤ì¤¿¤¿¤á¥Í¥Ã¥È¥ï¡¼¥¯Àܳ¤¬ÀÚ¤ì¤Þ¤·¤¿" -#: nis/ypclnt.c:814 -msgid "NIS map database is bad" -msgstr "NIS¥Þ¥Ã¥×¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬ÉÔÀµ¤Ç¤¹" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:166 +msgid "Error 136" +msgstr "¥¨¥é¡¼ 136" -#: nis/nis_error.c:69 -msgid "NIS+ operation failed" -msgstr "NIS+ ¤ÎÁàºî¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:167 +msgid "Not a name file" +msgstr "̾Á°¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: nis/nis_error.c:34 -msgid "NIS+ servers unreachable" -msgstr "NIS+ ¥µ¡¼¥Ð¤ËÆϤ­¤Þ¤»¤ó" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:168 +msgid "Not available" +msgstr "ÍøÍѽÐÍè¤Þ¤»¤ó" -#: nis/nis_error.c:70 -msgid "NIS+ service is unavailable or not installed" -msgstr "NIS+ ¥µ¡¼¥Ó¥¹¤¬ÍøÍÑÉÔǽ¤«¡¢¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:169 +msgid "Is a name file" +msgstr "̾Á°¥Õ¥¡¥¤¥ë¤Ç¤¹" -#: nis/nis_print.c:112 -msgid "NO OBJECT\n" -msgstr "¥ª¥Ö¥¸¥§¥¯¥È¤¬¤¢¤ê¤Þ¤»¤ó\n" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:171 +msgid "Reserved for future use" +msgstr "¾­Íè¤Î¤¿¤á¤ËͽÌóºÑ¤ß" -#: nscd/nscd.c:87 -msgid "NUMBER" -msgstr "ÈÖ¹æ" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:172 +msgid "Error 142" +msgstr "¥¨¥é¡¼ 142" -#: nis/nis_print.c:166 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:173 +msgid "Cannot send after socket shutdown" +msgstr "¥½¥±¥Ã¥È¤òÊĤ¸¤¿¸å¤Ë¥Ñ¥±¥Ã¥È¤ÏÁ÷¿®¤Ç¤­¤Þ¤»¤ó" + +#: stdio-common/psignal.c:63 #, c-format -msgid "Name : `%s'\n" -msgstr "̾Á° : `%s'\n" +msgid "%s%sUnknown signal %d\n" +msgstr "%s%s̤ÃΤΥ·¥°¥Ê¥ë %d ¤Ç¤¹\n" -#: nscd/nscd.c:97 -msgid "Name Service Cache Daemon." -msgstr "¥Í¡¼¥à¥µ¡¼¥Ó¥¹¥­¥ã¥Ã¥·¥å¥Ç¡¼¥â¥ó." +#: malloc/mcheck.c:346 +msgid "memory is consistent, library is buggy\n" +msgstr "¥á¥â¥ê¤Ï°ì´ÓÀ­¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹¤¬¡¢¥é¥¤¥Ö¥é¥ê¤¬¥Ð¥®¡¼¤Ç¤¹\n" -#: nis/nis_error.c:41 -msgid "Name not served by this server" -msgstr "̾Á°¤Ï¤³¤Î¥µ¡¼¥Ð¡¼¤Ç´ÉÍý¤µ¤ì¤Æ¤Þ¤»¤ó" +#: malloc/mcheck.c:349 +msgid "memory clobbered before allocated block\n" +msgstr "¥Ö¥í¥Ã¥¯³ÎÊÝÁ°¤Ë¥á¥â¥ê¤òÍøÍѤ·¤Þ¤·¤¿\n" -#: stdio-common/../sysdeps/gnu/errlist.c:777 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:110 -msgid "Name not unique on network" -msgstr "̾Á°¤¬¥Í¥Ã¥È¥ï¡¼¥¯¾å¤Ç½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" +#: malloc/mcheck.c:352 +msgid "memory clobbered past end of allocated block\n" +msgstr "¥Ö¥í¥Ã¥¯³ÎÊݤκǸå¤è¤ê°Ê¸å¤Ë¥á¥â¥ê¤òÍøÍѤ·¤Þ¤·¤¿\n" -#: posix/../sysdeps/posix/gai_strerror.c:38 -msgid "Name or service not known" -msgstr "̾Á°¤Þ¤¿¤Ï¥µ¡¼¥Ó¥¹¤¬ÉÔÌÀ¤Ç¤¹" +#: malloc/mcheck.c:355 +msgid "block freed twice\n" +msgstr "¥Ö¥í¥Ã¥¯¤Î²òÊü¤¬2ÅÙ¹Ô¤ï¤ì¤Þ¤·¤¿\n" + +#: malloc/mcheck.c:358 +msgid "bogus mcheck_status, library is buggy\n" +msgstr "mcheck_status ¤¬¤¢¤¤¤Þ¤¤¤Ç¤¹¡£¥é¥¤¥Ö¥é¥ê¤Î¥Ð¥°¤Ç¤¹¡£\n" #: malloc/memusagestat.c:53 msgid "Name output file" msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤Î̾Á°" -#: nis/nis_error.c:50 -msgid "Name/entry isn't unique" -msgstr "̾Á°/¥¨¥ó¥È¥ê¤¬¥æ¥Ë¡¼¥¯¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: malloc/memusagestat.c:54 +msgid "Title string used in output graphic" +msgstr "¥¿¥¤¥È¥ëʸ»úÎó¤Ï½ÐÎÏ¥°¥é¥Õ¥£¥Ã¥¯Ãæ¤Ç»ÈÍѤµ¤ì¤Æ¤¤¤Þ¤¹" -#: nis/nis_error.c:59 -msgid "Named object is not searchable" -msgstr "̾Á°ÉÕ¤­¥ª¥Ö¥¸¥§¥¯¥È¤¬¸¡º÷²Äǽ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: malloc/memusagestat.c:55 +msgid "Generate output linear to time (default is linear to number of function calls)" +msgstr "»þ¹ï½ç¤Ë½ÐÎϤòÀ¸À® (¥Ç¥Õ¥©¥ë¥È¤Ï´Ø¿ô¸Æ¤Ó½Ð¤·¤ÎÃͽç)" -#. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:567 -msgid "Need authenticator" -msgstr "ǧ¾Ú¼Ô(authenticator)¤¬É¬ÍפǤ¹" +#: malloc/memusagestat.c:57 +msgid "Also draw graph for total memory consumption" +msgstr "¥È¡¼¥¿¥ë¥á¥â¥ê¤Î¾ÃÈñ¤ËÂФ¹¤ë¥°¥é¥Õ¤âÉÁ¤­¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:159 -msgid "Network dropped connection because of reset" -msgstr "¥ê¥»¥Ã¥È¤µ¤ì¤¿¤¿¤á¥Í¥Ã¥È¥ï¡¼¥¯Àܳ¤¬ÀÚ¤ì¤Þ¤·¤¿" +#: malloc/memusagestat.c:58 +msgid "make output graphic VALUE pixel wide" +msgstr "½ÐÎÏ¥°¥é¥Õ¥£¥Ã¥¯ÃͤΥԥ¯¥»¥ë¤ò¹­¤¯¤·¤Þ¤¹" -#. TRANS A network connection was reset because the remote host crashed. -#: stdio-common/../sysdeps/gnu/errlist.c:390 -msgid "Network dropped connection on reset" -msgstr "¥ê¥»¥Ã¥ÈÃæ¥Í¥Ã¥È¥ï¡¼¥¯¤ÎÀܳ¤¬ÀÚ¤ì¤Þ¤·¤¿" +#: malloc/memusagestat.c:59 +msgid "make output graphic VALUE pixel high" +msgstr "½ÐÎÏ¥°¥é¥Õ¥£¥Ã¥¯ÃͤΥԥ¯¥»¥ë¤ò¹â¤¯¤·¤Þ¤¹" -#. TRANS A socket operation failed because the network was down. -#: stdio-common/../sysdeps/gnu/errlist.c:379 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:157 -msgid "Network is down" -msgstr "¥Í¥Ã¥È¥ï¡¼¥¯¤¬Íî¤Á¤Æ¤¤¤Þ¤¹" +#: malloc/memusagestat.c:64 +msgid "Generate graphic from memory profiling data" +msgstr "¥á¥â¥ê¥×¥í¥Õ¥¡¥¤¥ë¥Ç¡¼¥¿¤«¤é²èÁü¤òÀ¸À®" -#. TRANS A socket operation failed because the subnet containing the remote host -#. TRANS was unreachable. -#: stdio-common/../sysdeps/gnu/errlist.c:385 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:158 -msgid "Network is unreachable" -msgstr "¥Í¥Ã¥È¥ï¡¼¥¯¤ËÆϤ­¤Þ¤»¤ó" +#: malloc/memusagestat.c:67 +msgid "DATAFILE [OUTFILE]" +msgstr "¥Ç¡¼¥¿¥Õ¥¡¥¤¥ë [½ÐÎÏ¥Õ¥¡¥¤¥ë]" -#: stdio-common/../sysdeps/gnu/errlist.c:713 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:73 -msgid "No CSI structure available" -msgstr "CSI ¹½Â¤¤¬ÍøÍѤǤ­¤Þ¤»¤ó" +#: string/strerror.c:43 posix/../sysdeps/posix/gai_strerror.c:57 +msgid "Unknown error" +msgstr "̤ÃΤΥ¨¥é¡¼" -#: stdio-common/../sysdeps/gnu/errlist.c:821 -msgid "No XENIX semaphores available" -msgstr "XENIX ¥»¥Þ¥Õ¥©¤¬ÍøÍѤǤ­¤Þ¤»¤ó" +#: string/strsignal.c:69 +#, c-format +msgid "Real-time signal %d" +msgstr "¥ê¥¢¥ë¥¿¥¤¥à¥·¥°¥Ê¥ë %d ¤Ç¤¹" -#: posix/../sysdeps/posix/gai_strerror.c:37 -msgid "No address associated with hostname" -msgstr "¥Û¥¹¥È̾¤ËÂбþ¤¹¤ë¥¢¥É¥ì¥¹¤¬¤¢¤ê¤Þ¤»¤ó" +#: string/strsignal.c:73 +#, c-format +msgid "Unknown signal %d" +msgstr "̤ÃΤΥ·¥°¥Ê¥ë(%d)" -#: resolv/herror.c:71 -msgid "No address associated with name" -msgstr "̾Á°¤ËÂбþ¤¹¤ë¥¢¥É¥ì¥¹¤¬¤¢¤ê¤Þ¤»¤ó" +#: timezone/zdump.c:175 +#, c-format +msgid "%s: usage is %s [ -v ] [ -c cutoff ] zonename ...\n" +msgstr "%s: »ÈÍÑË¡ %s [ -v ] [ -c ¥«¥Ã¥È¥ª¥Õ ] ¥¾¡¼¥ó̾ ¡Å¡Å\n" -#: stdio-common/../sysdeps/gnu/errlist.c:733 -msgid "No anode" -msgstr "¥¢¥Î¡¼¥É¤¬¤¢¤ê¤Þ¤»¤ó" +#: timezone/zdump.c:268 +msgid "Error writing standard output" +msgstr "¥¨¥é¡¼¤òɸ½à½ÐÎϤ˽ñ¤­½Ð¤·Ãæ" -#. TRANS The kernel's buffers for I/O operations are all in use. In GNU, this -#. TRANS error is always synonymous with @code{ENOMEM}; you may get one or the -#. TRANS other from network operations. -#: stdio-common/../sysdeps/gnu/errlist.c:409 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:162 -msgid "No buffer space available" -msgstr "ÍøÍѲÄǽ¤Ê¶õ¤­¥Ð¥Ã¥Õ¥¡¤¬¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:365 +#, c-format +msgid "%s: Memory exhausted: %s\n" +msgstr "%s: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó: %s\n" -#: locale/programs/ld-ctype.c:433 -msgid "No character set name specified in charmap" -msgstr "¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×Ãæ¤Çʸ»ú½¸¹ç̾¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: timezone/zic.c:390 misc/error.c:127 misc/error.c:155 +msgid "Unknown system error" +msgstr "̤ÃΤΥ·¥¹¥Æ¥à¥¨¥é¡¼" -#. TRANS There are no child processes. This error happens on operations that are -#. TRANS supposed to manipulate child processes, when there aren't any processes -#. TRANS to manipulate. -#: stdio-common/../sysdeps/gnu/errlist.c:90 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:40 -msgid "No child processes" -msgstr "»Ò¥×¥í¥»¥¹¤¬¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:424 +#, c-format +msgid "\"%s\", line %d: %s" +msgstr "\"%s\", %d¹Ô: %s" -#: stdio-common/../sysdeps/gnu/errlist.c:653 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:91 -msgid "No data available" -msgstr "ÍøÍѲÄǽ¤Ê¥Ç¡¼¥¿¤¬¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:427 +#, c-format +msgid " (rule from \"%s\", line %d)" +msgstr " (\"%s\"¤«¤é¤Îµ¬Â§, %d¹Ô)" + +#: timezone/zic.c:439 +msgid "warning: " +msgstr "·Ù¹ð: " + +#: timezone/zic.c:449 +#, c-format +msgid "" +"%s: usage is %s [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n" +"\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" +msgstr "" +"%s: »ÈÍÑË¡ %s [ -s ] [ -v ] [ -l ¥í¡¼¥«¥ë»þ¹ï ] [ -p posixrules ] \\\n" +"\t[ -d ¥Ç¥£¥ì¥¯¥È¥ê ] [ -L ±¼Éà ] [ -y yearistype ] [ ¥Õ¥¡¥¤¥ë̾ ... ]\n" -#: 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 -#: locale/programs/ld-telephone.c:94 locale/programs/ld-time.c:160 +#: timezone/zic.c:491 #, c-format -msgid "No definition for %s category found" -msgstr "%s ¥«¥Æ¥´¥ê¤ËÂФ¹¤ëÄêµÁ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +msgid "%s: More than one -d option specified\n" +msgstr "%s: -d ¥ª¥×¥·¥ç¥ó¤¬Ê£¿ô»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹\n" -#: nis/nis_error.c:74 -msgid "No file space on server" -msgstr "¥µ¡¼¥Ð¤Ë¥Õ¥¡¥¤¥ë¤ÎÎΰ褬¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:501 +#, c-format +msgid "%s: More than one -l option specified\n" +msgstr "%s: -l ¥ª¥×¥·¥ç¥ó¤¬Ê£¿ô»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹\n" -#: elf/ldconfig.c:543 +#: timezone/zic.c:511 #, c-format -msgid "No link created since soname could not be found for %s" -msgstr "%s ¤ËÂФ¹¤ë soname ¤¬¸«¤Ä¤«¤é¤Ê¤¤¤¿¤á¥ê¥ó¥¯¤¬ºîÀ®¤µ¤ì¤Þ¤»¤ó" +msgid "%s: More than one -p option specified\n" +msgstr "%s: -p ¥ª¥×¥·¥ç¥ó¤¬Ê£¿ô»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹\n" -#. TRANS No locks available. This is used by the file locking facilities; see -#. TRANS @ref{File Locks}. This error is never generated by the GNU system, but -#. TRANS it can result from an operation to an NFS server running another -#. TRANS operating system. -#: stdio-common/../sysdeps/gnu/errlist.c:548 -msgid "No locks available" -msgstr "¥í¥Ã¥¯¤¬ÍøÍѤǤ­¤Þ¤»¤ó" +#: timezone/zic.c:521 +#, c-format +msgid "%s: More than one -y option specified\n" +msgstr "%s: -y ¥ª¥×¥·¥ç¥ó¤¬Ê£¿ô»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹\n" -#: posix/regex.c:1365 -msgid "No match" -msgstr "°ìÃפ·¤Þ¤»¤ó" +#: timezone/zic.c:531 +#, c-format +msgid "%s: More than one -L option specified\n" +msgstr "%s: -L ¥ª¥×¥·¥ç¥ó¤¬Ê£¿ô»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹\n" -#: stdio-common/../sysdeps/gnu/errlist.c:833 -msgid "No medium found" -msgstr "¥á¥Ç¥£¥¢¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +#: timezone/zic.c:638 +#, c-format +msgid "%s: Can't unlink %s: %s\n" +msgstr "%s: %s¤ò¥¢¥ó¥ê¥ó¥¯¤Ç¤­¤Þ¤»¤ó: %s\n" -#: stdio-common/../sysdeps/gnu/errlist.c:661 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:65 -msgid "No message of desired type" -msgstr "Í׵ᤷ¤¿·Á¼°¤Î¥á¥Ã¥»¡¼¥¸¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:645 +msgid "hard link failed, symbolic link used" +msgstr "¥Ï¡¼¥É¥ê¥ó¥¯¤Ë¼ºÇÔ¤·¤¿¤¿¤á¡¢¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤ò»È¤¤¤Þ¤¹" -#: nis/ypclnt.c:804 -msgid "No more records in map database" -msgstr "¥Þ¥Ã¥×¥Ç¡¼¥¿¥Ù¡¼¥¹¤Ë¤³¤ì°Ê¾åµ­Ï¿¤¬¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:653 +#, c-format +msgid "%s: Can't link from %s to %s: %s\n" +msgstr "%s: %s¤«¤é%s¤Ø¥ê¥ó¥¯¤òÄ¥¤ì¤Þ¤»¤ó: %s\n" -#: posix/regex.c:7919 -msgid "No previous regular expression" -msgstr "°ÊÁ°¤ËÀµµ¬É½¸½¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: timezone/zic.c:751 timezone/zic.c:753 +msgid "same rule name in multiple files" +msgstr "Ê£¿ô¥Õ¥¡¥¤¥ë¤ËƱ¤¸¥ë¡¼¥ë̾¤¬¤¢¤ê¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:76 -msgid "No record locks available" -msgstr "¥ì¥³¡¼¥É¥í¥Ã¥¯¤¬ÍøÍѤǤ­¤Þ¤»¤ó" +#: timezone/zic.c:794 +msgid "unruly zone" +msgstr "unruly zone" -#: sunrpc/rpcinfo.c:570 -msgid "No remote programs registered.\n" -msgstr "±ó³Ö¥×¥í¥°¥é¥à¤¬ÅÐÏ¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó.\n" +#: timezone/zic.c:801 +#, c-format +msgid "%s in ruleless zone" +msgstr "%s in ruleless zone" -#. TRANS The remote host for a requested network connection is not reachable. -#: stdio-common/../sysdeps/gnu/errlist.c:475 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:178 -msgid "No route to host" -msgstr "¥Û¥¹¥È¤Ø¤Î·ÐÏ©¤¬¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:822 +msgid "standard input" +msgstr "ɸ½àÆþÎÏ" -#. TRANS No space left on device; write operation on a file failed because the -#. TRANS disk is full. -#: stdio-common/../sysdeps/gnu/errlist.c:209 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:58 -msgid "No space left on device" -msgstr "¥Ç¥Ð¥¤¥¹¤Ë¶õ¤­Îΰ褬¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:827 +#, c-format +msgid "%s: Can't open %s: %s\n" +msgstr "%s: %s¤ò³«¤±¤Þ¤»¤ó: %s\n" -#. TRANS The wrong type of device was given to a function that expects a -#. TRANS particular sort of device. -#: stdio-common/../sysdeps/gnu/errlist.c:148 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:49 -msgid "No such device" -msgstr "¤½¤Î¤è¤¦¤Ê¥Ç¥Ð¥¤¥¹¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:838 +msgid "line too long" +msgstr "¹Ô¤¬Ä¹¤¹¤®¤Þ¤¹" -#. TRANS No such device or address. The system tried to use the device -#. TRANS represented by a file you specified, and it couldn't find the device. -#. TRANS This can mean that the device file was installed incorrectly, or that -#. TRANS the physical device is missing or not correctly attached to the -#. TRANS computer. -#: stdio-common/../sysdeps/gnu/errlist.c:62 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:36 -msgid "No such device or address" -msgstr "¤½¤Î¤è¤¦¤Ê¥Ç¥Ð¥¤¥¹¤ä¥¢¥É¥ì¥¹¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:858 +msgid "input line of unknown type" +msgstr "ÉÔÌÀ¤Ê·Á¼°¤ÎÆþÎϥ饤¥ó¹Ô¤Ç¤¹" -#. TRANS No such file or directory. This is a ``file doesn't exist'' error -#. TRANS for ordinary files that are referenced in contexts where they are -#. TRANS expected to already exist. -#: stdio-common/../sysdeps/gnu/errlist.c:32 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:32 -msgid "No such file or directory" -msgstr "¤½¤Î¤è¤¦¤Ê¥Õ¥¡¥¤¥ë¤ä¥Ç¥£¥ì¥¯¥È¥ê¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:874 +#, c-format +msgid "%s: Leap line in non leap seconds file %s\n" +msgstr "%s: ±¼ÉÃ¥Õ¥¡¥¤¥ë¤Ç¤Ê¤¤¥Õ¥¡¥¤¥ë %s ¤Ë Leap ¹Ô¤¬¤¢¤ê¤Þ¤¹\n" -#: nis/ypclnt.c:798 -msgid "No such key in map" -msgstr "¥Þ¥Ã¥×¤Ë¤½¤Î¤è¤¦¤Ê¥­¡¼¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:881 timezone/zic.c:1295 timezone/zic.c:1320 +#, c-format +msgid "%s: panic: Invalid l_value %d\n" +msgstr "%s: ¥Ñ¥Ë¥Ã¥¯: ÉÔÅö¤Ê l_value(%d)¤Ç¤¹\n" -#: nis/ypclnt.c:796 -msgid "No such map in server's domain" -msgstr "¥µ¡¼¥Ð¥É¥á¥¤¥ó¤Ë¤½¤Î¤è¤¦¤Ê¥Þ¥Ã¥×¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:889 +#, c-format +msgid "%s: Error reading %s\n" +msgstr "%s: %s¤ÎÆɤ߹þ¤ß¥¨¥é¡¼\n" -#. TRANS No process matches the specified process ID. -#: stdio-common/../sysdeps/gnu/errlist.c:37 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:33 -msgid "No such process" -msgstr "¤½¤Î¤è¤¦¤Ê¥×¥í¥»¥¹¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:896 +#, c-format +msgid "%s: Error closing %s: %s\n" +msgstr "%s: %s¤ò¥¯¥í¡¼¥ºÃæ¤Ë¥¨¥é¡¼: %s\n" -#: nis/nis_error.c:61 -msgid "Non NIS+ namespace encountered" -msgstr "NIS+ ̾Á°¶õ´Ö¤ËÁø¶ø¤·¤Æ¤¤¤Þ¤»¤ó" +#: timezone/zic.c:901 +msgid "expected continuation line not found" +msgstr "·Ñ³¹Ô¤¬´üÂÔ¤µ¤ì¤Þ¤·¤¿¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: posix/../sysdeps/posix/gai_strerror.c:34 -msgid "Non-recoverable failure in name resolution" -msgstr "̾Á°¤Î²ò·è»þ¤Ë²óÉüÉÔ²Äǽ¤Ê¼ºÇÔ" +#: timezone/zic.c:957 +msgid "wrong number of fields on Rule line" +msgstr "Rule¹Ô¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" -#: nis/nis_print.c:180 -msgid "None.\n" -msgstr "½ªÎ».\n" +#: timezone/zic.c:961 +msgid "nameless rule" +msgstr "̾Á°¤¬¤Ê¤¤¥ë¡¼¥ë¤Ç¤¹" -#: stdio-common/../sysdeps/gnu/errlist.c:817 -msgid "Not a XENIX named type file" -msgstr "XENIX ¤Î̾Á°ÉÕ¤­¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:966 +msgid "invalid saved time" +msgstr "ÉÔÀµ¤ÊÊݸ»þ¹ï" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:107 -msgid "Not a data message" -msgstr "¥Ç¡¼¥¿¥á¥Ã¥»¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:985 +msgid "wrong number of fields on Zone line" +msgstr "Zone¹Ô¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" -#. TRANS A file that isn't a directory was specified when a directory is required. -#: stdio-common/../sysdeps/gnu/errlist.c:153 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:50 -msgid "Not a directory" -msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:991 +#, c-format +msgid "\"Zone %s\" line and -l option are mutually exclusive" +msgstr "\"Zone %s\"¹Ô¤È -l ¥ª¥×¥·¥ç¥ó¤ÏƱ»þ»ØÄê¤Ç¤­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:167 -msgid "Not a name file" -msgstr "̾Á°¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:999 +#, c-format +msgid "\"Zone %s\" line and -p option are mutually exclusive" +msgstr "\"Zone %s\"¹Ô¤È -p ¥ª¥×¥·¥ç¥ó¤ÏƱ»þ»ØÄê¤Ç¤­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:90 -msgid "Not a stream device" -msgstr "¥¹¥È¥ê¡¼¥à¥Ç¥Ð¥¤¥¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:1011 +#, c-format +msgid "duplicate zone name %s (file \"%s\", line %d)" +msgstr "¥¾¡¼¥ó̾ %s ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹(¥Õ¥¡¥¤¥ë\"%s\", %d ¹Ô)" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:168 -msgid "Not available" -msgstr "ÍøÍѽÐÍè¤Þ¤»¤ó" +#: timezone/zic.c:1027 +msgid "wrong number of fields on Zone continuation line" +msgstr "Zone continuation¹Ô¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:42 -msgid "Not enough space" -msgstr "½½Ê¬¤ÊÎΰ褬¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:1067 +msgid "invalid UTC offset" +msgstr "ÉÔÅö¤ÊUTC¥ª¥Õ¥»¥Ã¥È" -#: nis/nis_error.c:31 -msgid "Not found" -msgstr "¸«¤Ä¤«¤ê¤Þ¤»¤ó" +#: timezone/zic.c:1070 +msgid "invalid abbreviation format" +msgstr "ÉÔÅö¤Ê¾Êά·Á" -#: nis/nis_error.c:49 -msgid "Not found, no such name" -msgstr "¤½¤Î¤è¤¦¤Ê̾Á°¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó" +#: timezone/zic.c:1096 +msgid "Zone continuation line end time is not after end time of previous line" +msgstr "¥¾¡¼¥óϢ³¹Ô end time ¤ÏÁ°¤Î¹Ô¤Î end time ¤è¤ê¤â¸å¤Ç¤¢¤Ã¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó" -#: nis/nis_error.c:44 -msgid "Not master server for this domain" -msgstr "¤³¤Î¥É¥á¥¤¥ó¤Î¥Þ¥¹¥¿¡¼¥µ¡¼¥Ð¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:1123 +msgid "wrong number of fields on Leap line" +msgstr "Leap¹Ô¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" -#: nis/nis_error.c:40 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:31 -msgid "Not owner" -msgstr "½êÍ­¼Ô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:1132 +msgid "invalid leaping year" +msgstr "ÉÔÅö¤Ê¤¦¤ë¤¦Ç¯¤Ç¤¹" -#. TRANS Not supported. A function returns this error when certain parameter -#. TRANS values are valid, but the functionality they request is not available. -#. TRANS This can mean that the function does not implement a particular command -#. TRANS or option value or flag bit at all. For functions that operate on some -#. TRANS object given in a parameter, such as a file descriptor or a port, it -#. TRANS might instead mean that only @emph{that specific object} (file -#. TRANS descriptor, port, etc.) is unable to support the other parameters given; -#. TRANS different file descriptors might support different ranges of parameter -#. TRANS values. -#. TRANS -#. TRANS If the entire function is not available at all in the implementation, -#. TRANS it returns @code{ENOSYS} instead. -#: stdio-common/../sysdeps/gnu/errlist.c:592 -msgid "Not supported" -msgstr "¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: timezone/zic.c:1147 timezone/zic.c:1250 +msgid "invalid month name" +msgstr "ÉÔÅö¤Ê·î̾¤Ç¤¹" -#: nis/nis_print.c:267 -#, c-format -msgid "Number of Columns : %d\n" -msgstr "¥«¥é¥à¿ô : %d\n" +#: timezone/zic.c:1160 timezone/zic.c:1372 timezone/zic.c:1386 +msgid "invalid day of month" +msgstr "ÉÔÅö¤Ê1¥ö·îÃæ¤ÎÆü¤Ë¤Á¤Ç¤¹" -#: nis/nis_print.c:366 -#, c-format -msgid "Number of objects : %u\n" -msgstr "¥ª¥Ö¥¸¥§¥¯¥È¿ô : %u\n" +#: timezone/zic.c:1165 +msgid "time before zero" +msgstr "¥¼¥íÁ°¤Î»þ¹ï" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:120 -msgid "Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS" -msgstr "¥Ñ¥¹Ì¾¤ò¸¡ººÃæ¤ËÄ̲ᤷ¤¿¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î¿ô¤¬MAXSYNLINKS¤ò±Û¤¨¤Þ¤·¤¿" +#: timezone/zic.c:1173 timezone/zic.c:2049 timezone/zic.c:2068 +msgid "time overflow" +msgstr "»þ´Ö¥ª¡¼¥Ð¡¼¥Õ¥í¡¼" -#. TRANS Domain error; used by mathematical functions when an argument value does -#. TRANS not fall into the domain over which the function is defined. -#: stdio-common/../sysdeps/gnu/errlist.c:241 -msgid "Numerical argument out of domain" -msgstr "¿ôÃͤΰú¿ô¤Ï¥É¥á¥¤¥ó³°¤Ç¤¹" +#: timezone/zic.c:1176 timezone/zic.c:1279 +msgid "invalid time of day" +msgstr "1ÆüÊÕ¤ê¤Î»þ´Ö¤¬ÉÔÀµ" -#. TRANS Range error; used by mathematical functions when the result value is -#. TRANS not representable because of overflow or underflow. -#: stdio-common/../sysdeps/gnu/errlist.c:247 -msgid "Numerical result out of range" -msgstr "·×»»·ë²Ì¤ÏÈϰϳ°¤ÎÃͤǤ¹" +#: timezone/zic.c:1195 +msgid "illegal CORRECTION field on Leap line" +msgstr "Leap ¹Ô¤ËÉÔÀµ¤Ê CORRECTION ¥Õ¥£¡¼¥ë¥É¤¬¤¢¤ê¤Þ¤¹" -#: nis/nis_print.c:370 -#, c-format -msgid "Object #%d:\n" -msgstr "¥ª¥Ö¥¸¥§¥¯¥È #%d:\n" +#: timezone/zic.c:1199 +msgid "illegal Rolling/Stationary field on Leap line" +msgstr "Leap ¹Ô¤ËÉÔÀµ¤Ê Rolling/Stationary ¥Õ¥£¡¼¥ë¥É¤¬¤¢¤ê¤Þ¤¹" -#: nis/nis_print.c:320 -#, c-format -msgid "Object Name : %s\n" -msgstr "¥ª¥Ö¥¸¥§¥¯¥È̾: %s\n" +#: timezone/zic.c:1214 +msgid "wrong number of fields on Link line" +msgstr "Link¹Ô¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" -#: nis/nis_print.c:332 -msgid "Object Type : " -msgstr "¥ª¥Ö¥¸¥§¥¯¥È·¿: " +#: timezone/zic.c:1218 +msgid "blank FROM field on Link line" +msgstr "Link ¹Ô¤Î FROM ¥Õ¥£¡¼¥ë¥É¤¬¶õÍó¤Ç¤¹" -#. TRANS An attempt was made to NFS-mount a remote file system with a file name that -#. TRANS already specifies an NFS-mounted file. -#. TRANS (This is an error on some operating systems, but we expect it to work -#. TRANS properly on the GNU system, making this error code impossible.) -#: stdio-common/../sysdeps/gnu/errlist.c:515 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:96 -msgid "Object is remote" -msgstr "¥ª¥Ö¥¸¥§¥¯¥È¤Ï¥ê¥â¡¼¥È¤Ë¤¢¤ê¤Þ¤¹" +#: timezone/zic.c:1222 +msgid "blank TO field on Link line" +msgstr "Link ¹Ô¤Î TO ¥Õ¥£¡¼¥ë¥É¤¬¶õÍó¤Ç¤¹" -#: nis/nis_error.c:43 -msgid "Object with same name exists" -msgstr "Ʊ¤¸Ì¾Á°¤ò»ý¤Ä¥ª¥Ö¥¸¥§¥¯¥È¤¬Â¸ºß¤·¤Þ¤¹" +#: timezone/zic.c:1299 +msgid "invalid starting year" +msgstr "ÉÔÅö¤Ê³«»Ïǯ" -#: timezone/zic.c:2028 -msgid "Odd number of quotation marks" -msgstr "¥¯¥©¡¼¥È¤¹¤ë¥Þ¡¼¥¯¤¬´ñ¿ô¸Äʬ¤·¤«¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:1303 timezone/zic.c:1328 +msgid "starting year too low to be represented" +msgstr "³«»Ïǯ¤ÎÃͤ¬¾®¤µ¤¹¤®¤ë¤¿¤áɽ¸½¤Ç¤­¤Þ¤»¤ó" -#: elf/ldconfig.c:129 -msgid "Only process directories specified on the command line. Don't build cache." -msgstr "¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê¤Î¤ß½èÍý¤·¤Þ¤¹. ¥­¥ã¥Ã¥·¥å¤ò¹½ÃÛ¤·¤Þ¤»¤ó." +#: timezone/zic.c:1305 timezone/zic.c:1330 +msgid "starting year too high to be represented" +msgstr "³«»Ïǯ¤ÎÃͤ¬Â礭¤¹¤®¤ë¤¿¤áɽ¸½¤Ç¤­¤Þ¤»¤ó" -#: nscd/nscd.c:200 nscd/nscd.c:220 nscd/nscd.c:226 -msgid "Only root is allowed to use this option!" -msgstr "¤³¤Î¥ª¥×¥·¥ç¥ó¤Ïroot¤Ç¤·¤«»È¤¨¤Þ¤»¤ó!" +#: timezone/zic.c:1324 +msgid "invalid ending year" +msgstr "ÉÔÅö¤Ê½ªÎ»Ç¯" -#. TRANS An operation is already in progress on an object that has non-blocking -#. TRANS mode selected. -#: stdio-common/../sysdeps/gnu/errlist.c:307 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:179 -msgid "Operation already in progress" -msgstr "Áàºî¤Ï¤¹¤Ç¤Ë½èÍýÃæ¤Ç¤¹" +#: timezone/zic.c:1333 +msgid "starting year greater than ending year" +msgstr "³«»Ïǯ¤¬½ªÎ»Ç¯¤è¤êÂ礭¤¯¤Ê¤Ã¤Æ¤¤¤Þ¤¹" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:77 -msgid "Operation canceled" -msgstr "Áàºî¤ÏÃæÃǤµ¤ì¤Þ¤·¤¿" +#: timezone/zic.c:1340 +msgid "typed single year" +msgstr "typed single year" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:119 -msgid "Operation not applicable" -msgstr "Áàºî¤ÏŬÍѤǤ­¤Þ¤»¤ó" +#: timezone/zic.c:1377 +msgid "invalid weekday name" +msgstr "¤ª¤«¤·¤ÊÍËÆü̾" -#. TRANS Operation not permitted; only the owner of the file (or other resource) -#. TRANS or processes with special privileges can perform the operation. -#: stdio-common/../sysdeps/gnu/errlist.c:25 -msgid "Operation not permitted" -msgstr "µö²Ä¤µ¤ì¤Æ¤¤¤Ê¤¤Áàºî¤Ç¤¹" +#: timezone/zic.c:1492 +#, c-format +msgid "%s: Can't remove %s: %s\n" +msgstr "%s: %s¤òºï½ü¤Ç¤­¤Þ¤»¤ó: %s\n" -#. TRANS The operation you requested is not supported. Some socket functions -#. TRANS don't make sense for all types of sockets, and others may not be -#. TRANS implemented for all communications protocols. In the GNU system, this -#. TRANS error can happen for many calls when the object does not support the -#. TRANS particular operation; it is a generic indication that the server knows -#. TRANS nothing to do for that call. -#: stdio-common/../sysdeps/gnu/errlist.c:351 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:78 -msgid "Operation not supported" -msgstr "¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤Áàºî¤Ç¤¹" +#: timezone/zic.c:1502 +#, c-format +msgid "%s: Can't create %s: %s\n" +msgstr "%s: %s¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:152 -msgid "Operation not supported on transport endpoint" -msgstr "Áàºî¤ÏžÁ÷Àè¤Ç¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" +#: timezone/zic.c:1568 +#, c-format +msgid "%s: Error writing %s\n" +msgstr "%s: %s¤Î½ñ¤­¹þ¤ß¥¨¥é¡¼¤Ç¤¹\n" -#. TRANS An operation that cannot complete immediately was initiated on an object -#. TRANS that has non-blocking mode selected. Some functions that must always -#. TRANS block (such as @code{connect}; @pxref{Connecting}) never return -#. TRANS @code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that -#. TRANS the operation has begun and will take some time. Attempts to manipulate -#. TRANS the object before the call completes return @code{EALREADY}. You can -#. TRANS use the @code{select} function to find out when the pending operation -#. TRANS has completed; @pxref{Waiting for I/O}. -#: stdio-common/../sysdeps/gnu/errlist.c:301 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:180 -msgid "Operation now in progress" -msgstr "¸½ºß½èÍýÃæ¤ÎÁàºî¤Ç¤¹" +#: timezone/zic.c:1758 +msgid "can't determine time zone abbreviation to use just after until time" +msgstr "¤Á¤ç¤¦¤É¤½¤Î»þ¹ï¤ò»ÈÍѤ¹¤ë¥¿¥¤¥à¥¾¡¼¥ó¤Î¾Êά·Á¤ò·èÄê¤Ç¤­¤Þ¤»¤ó" -#. TRANS In the GNU C library, this is another name for @code{EAGAIN} (above). -#. TRANS The values are always the same, on every operating system. -#. TRANS -#. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a -#. TRANS separate error code. -#: stdio-common/../sysdeps/gnu/errlist.c:289 -msgid "Operation would block" -msgstr "¥Ö¥í¥Ã¥¯¤µ¤ì¤¦¤ëÁàºî¤Ç¤¹" +#: timezone/zic.c:1801 +msgid "too many transitions?!" +msgstr "Á«°ÜÀ褬¿¤¹¤®¤Þ¤¹?!" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:129 -msgid "Option not supported by protocol" -msgstr "¥ª¥×¥·¥ç¥ó¤Ï¥×¥í¥È¥³¥ë¤Ë¤è¤Ã¤Æ¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: timezone/zic.c:1820 +msgid "internal error - addtype called with bad isdst" +msgstr "ÆâÉô¥¨¥é¡¼ - ´Ö°ã¤Ã¤¿ isdst ¤È¤È¤â¤Ë addtype ¤¬¸Æ¤Ð¤ì¤Þ¤·¤¿" -#: locale/programs/localedef.c:103 -msgid "Optional output file prefix" -msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ë¥×¥ì¥Õ¥£¥Ã¥¯¥¹¤òÉղä·¤Þ¤¹" +#: timezone/zic.c:1824 +msgid "internal error - addtype called with bad ttisstd" +msgstr "ÆâÉô¥¨¥é¡¼ - ´Ö°ã¤Ã¤¿ ttisstd ¤È¤È¤â¤Ë addtype ¤¬¸Æ¤Ð¤ì¤Þ¤·¤¿" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:93 -msgid "Out of stream resources" -msgstr "¥¹¥È¥ê¡¼¥à¥ê¥½¡¼¥¹³°¤Ç¤¹" +#: timezone/zic.c:1828 +msgid "internal error - addtype called with bad ttisgmt" +msgstr "ÆâÉô¥¨¥é¡¼ - ´Ö°ã¤Ã¤¿ ttisgmt ¤È¤È¤â¤Ë addtype ¤¬¸Æ¤Ð¤ì¤Þ¤·¤¿" -#: stdio-common/../sysdeps/gnu/errlist.c:665 -msgid "Out of streams resources" -msgstr "¥¹¥È¥ê¡¼¥à¥ê¥½¡¼¥¹³°¤Ç¤¹" +#: timezone/zic.c:1847 +msgid "too many local time types" +msgstr "¥í¡¼¥«¥ë»þ´Ö·Á¼°¤¬Â¿¤¹¤®¤Þ¤¹" -#: iconv/iconv_prog.c:64 locale/programs/localedef.c:99 -msgid "Output control:" -msgstr "½ÐÎÏÀ©¸æ:" +#: timezone/zic.c:1875 +msgid "too many leap seconds" +msgstr "¤¦¤ë¤¦Éä¬Â礭¤¹¤®¤Þ¤¹" -#: elf/sprof.c:72 -msgid "Output selection:" -msgstr "½ÐÎÏÁªÂò:" +#: timezone/zic.c:1881 +msgid "repeated leap second moment" +msgstr "½Û´Ä±¼ÉäνִÖ" -#: nis/nis_print.c:322 +#: timezone/zic.c:1933 +msgid "Wild result from command execution" +msgstr "¥³¥Þ¥ó¥É¼Â¹Ô¤«¤é¤ÎÁƤ¤·ë²Ì" + +#: timezone/zic.c:1934 #, c-format -msgid "Owner : %s\n" -msgstr "½êÍ­¼Ô : %s\n" +msgid "%s: command was '%s', result was %d\n" +msgstr "%s: ¥³¥Þ¥ó¥É¤Ï'%s', ·ë²Ì¤Ï %d¤Ç¤·¤¿\n" -#: nis/nis_print.c:130 -msgid "PRIVATE\n" -msgstr "PRIVATE\n" +#: timezone/zic.c:2029 +msgid "Odd number of quotation marks" +msgstr "¥¯¥©¡¼¥È¤¹¤ë¥Þ¡¼¥¯¤¬´ñ¿ô¸Äʬ¤·¤«¤¢¤ê¤Þ¤»¤ó" -#: stdio-common/../sysdeps/gnu/errlist.c:757 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:95 -msgid "Package not installed" -msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: timezone/zic.c:2115 +msgid "use of 2/29 in non leap-year" +msgstr "±¼Ç¯¤Ç¤Ï¤Ê¤¤¤Î¤Ë2/29¤ò»È¤Ã¤Æ¤¤¤Þ¤¹" -#: nscd/nscd_conf.c:83 -#, c-format -msgid "Parse error: %s" -msgstr "¥Ñ¡¼¥µ¥¨¥é¡¼: %s" +#: timezone/zic.c:2149 +msgid "no day in month matches rule" +msgstr "·î¤ÎÃæ¤ÎÆü¤Ë¤Á¤Ï¥ë¡¼¥ë¤Ë¥Þ¥Ã¥Á¤·¤Æ¤¤¤Þ¤»¤ó" -#: nis/nis_error.c:55 -msgid "Partial success" -msgstr "ÉôʬŪ¤ËÀ®¸ù" +#: timezone/zic.c:2172 +msgid "too many, or too long, time zone abbreviations" +msgstr "¥¿¥¤¥à¥¾¡¼¥ó¤Î¾Êά̾¤¬Â¿¤¹¤®¤ë¤«Ä¹¤¹¤®¤Þ¤¹" -#: nis/nis_error.c:63 -msgid "Passed object is not the same object on server" -msgstr "¥Ñ¥¹¤µ¤ì¤¿¥ª¥Ö¥¸¥§¥¯¥È¤Ï¥µ¡¼¥Ð¾å¤Î¤½¤ì¤ÈƱ°ì¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: timezone/zic.c:2213 +#, c-format +msgid "%s: Can't create directory %s: %s\n" +msgstr "%s: ¥Ç¥£¥ì¥¯¥È¥ê%s¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n" -#: elf/ldconfig.c:282 +#: timezone/zic.c:2235 #, c-format -msgid "Path `%s' given more than once" -msgstr "1²ó°Ê¾åÍ¿¤¨¤é¤ì¤¿¥Ñ¥¹`%s'" +msgid "%s: %d did not sign extend correctly\n" +msgstr "%s: %d ¤ÏÀµ¤·¤¯µ­¹æ¤ò³ÈÄ¥¤·¤Þ¤»¤ó¤Ç¤·¤¿\n" -#. TRANS Permission denied; the file permissions do not allow the attempted operation. -#: 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" -msgstr "µö²Ä¤¬¤¢¤ê¤Þ¤»¤ó" +#: posix/../sysdeps/generic/wordexp.c:1801 +msgid "parameter null or not set" +msgstr "¥Ñ¥é¥á¡¼¥¿¤¬NULL¤«¥»¥Ã¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: sysdeps/generic/siglist.h:71 -msgid "Power failure" -msgstr "ÅŸ»¸Î¾ã" +#: posix/../sysdeps/posix/gai_strerror.c:31 +msgid "Address family for hostname not supported" +msgstr "hostname¤Î¥¢¥É¥ì¥¹¥Õ¥¡¥ß¥ê¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: posix/regex.c:1404 -msgid "Premature end of regular expression" -msgstr "Àµµ¬É½¸½¤Î½ªÃ¼¤¬Á᤹¤®¤Þ¤¹" +#: posix/../sysdeps/posix/gai_strerror.c:32 +msgid "Temporary failure in name resolution" +msgstr "̾Á°²ò·è»þ¤Î°ì»þŪ¤Ê¼ºÇÔ" -#: elf/ldconfig.c:122 -msgid "Print cache" -msgstr "¥­¥ã¥Ã¥·¥å¤Îɽ¼¨" +#: posix/../sysdeps/posix/gai_strerror.c:33 +msgid "Bad value for ai_flags" +msgstr "ai_flags ¤ÎÃͤ¬ÉÔÀµ¤Ç¤¹" -#: nscd/nscd.c:89 -msgid "Print current configuration statistic" -msgstr "¸½ºß¤Î¥³¥ó¥Õ¥£¥®¥å¥ì¡¼¥·¥ç¥ó¤ÎÅý·×¤òɽ¼¨¤¹¤ë" +#: posix/../sysdeps/posix/gai_strerror.c:34 +msgid "Non-recoverable failure in name resolution" +msgstr "̾Á°¤Î²ò·è»þ¤Ë²óÉüÉÔ²Äǽ¤Ê¼ºÇÔ" -#: locale/programs/locale.c:81 -msgid "Print more information" -msgstr "¾ÜºÙ¾ðÊó¤Îɽ¼¨" +#: posix/../sysdeps/posix/gai_strerror.c:35 +msgid "ai_family not supported" +msgstr "ai_family ¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/localedef.c:107 -msgid "Print more messages" -msgstr "¾ÜºÙ¤Ê¥á¥Ã¥»¡¼¥¸¤Îɽ¼¨" +#: posix/../sysdeps/posix/gai_strerror.c:36 +msgid "Memory allocation failure" +msgstr "¥á¥â¥ê³ÎÊݤ˼ºÇÔ¤·¤Þ¤·¤¿" -#: argp/argp-parse.c:154 -msgid "Print program version" -msgstr "¥×¥í¥°¥é¥à¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤¹¤ë" +#: posix/../sysdeps/posix/gai_strerror.c:37 +msgid "No address associated with hostname" +msgstr "¥Û¥¹¥È̾¤ËÂбþ¤¹¤ë¥¢¥É¥ì¥¹¤¬¤¢¤ê¤Þ¤»¤ó" -#: nis/nis_error.c:30 -msgid "Probable success" -msgstr "¤ª¤½¤é¤¯À®¸ù" +#: posix/../sysdeps/posix/gai_strerror.c:38 +msgid "Name or service not known" +msgstr "̾Á°¤Þ¤¿¤Ï¥µ¡¼¥Ó¥¹¤¬ÉÔÌÀ¤Ç¤¹" -#: nis/nis_error.c:32 -msgid "Probably not found" -msgstr "¤ª¤½¤é¤¯¸«¤Ä¤«¤ê¤Þ¤»¤ó" +#: posix/../sysdeps/posix/gai_strerror.c:39 +msgid "Servname not supported for ai_socktype" +msgstr "¥µ¡¼¥Ð̾¤Ï ai_socktype ¤ËÂФ·¤Æ¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" + +#: posix/../sysdeps/posix/gai_strerror.c:40 +msgid "ai_socktype not supported" +msgstr "ai_socktype ¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" + +#: posix/../sysdeps/posix/gai_strerror.c:41 +msgid "System error" +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 "¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¥¿¥¤¥Þ¤¬ÇË´þ¤µ¤ì¤Þ¤·¤¿" +#: posix/../sysdeps/posix/gai_strerror.c:43 +msgid "Request canceled" +msgstr "Í×µá¤ÏÃæÃǤµ¤ì¤Þ¤·¤¿" -#: stdio-common/../sysdeps/gnu/errlist.c:709 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:72 -msgid "Protocol driver not attached" -msgstr "¥×¥í¥È¥³¥ë¥É¥é¥¤¥Ð¤¬¥¢¥¿¥Ã¥Á¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: posix/../sysdeps/posix/gai_strerror.c:44 +msgid "Request not canceled" +msgstr "Í×µá¤ÏÃæÃǤµ¤ì¤Þ¤»¤ó¤Ç¤·¤¿" -#: stdio-common/../sysdeps/gnu/errlist.c:677 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:101 -msgid "Protocol error" -msgstr "¥×¥í¥È¥³¥ë¥¨¥é¡¼" +#: posix/../sysdeps/posix/gai_strerror.c:45 +msgid "All requests done" +msgstr "Á´¤Æ¤ÎÍ×µá¤Ï´°Î»¤·¤Þ¤·¤¿" + +#: posix/../sysdeps/posix/gai_strerror.c:46 +msgid "Interrupted by a signal" +msgstr "¥·¥°¥Ê¥ë¤Ë¤è¤ë³ä¤ê¹þ¤ß" + +#: posix/getconf.c:889 +#, c-format +msgid "Usage: %s [-v specification] variable_name [pathname]\n" +msgstr "»ÈÍÑË¡: %s [-v »ÅÍÍ] ÊÑ¿ô̾ [¥Ñ¥¹Ì¾]\n" + +#: posix/getconf.c:947 +#, c-format +msgid "unknown specification \"%s\"" +msgstr "̤ÃΤλÅÍÍ \"%s\" ¤Ç¤¹" -#. TRANS The socket communications protocol family you requested is not supported. -#: stdio-common/../sysdeps/gnu/errlist.c:356 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:153 -msgid "Protocol family not supported" -msgstr "¥×¥í¥È¥³¥ë¥Õ¥¡¥ß¥ê¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" +#: posix/getconf.c:974 posix/getconf.c:990 +msgid "undefined" +msgstr "̤ÄêµÁ" -#. TRANS You specified a socket option that doesn't make sense for the -#. TRANS particular protocol being used by the socket. @xref{Socket Options}. -#: stdio-common/../sysdeps/gnu/errlist.c:329 -msgid "Protocol not available" -msgstr "¥×¥í¥È¥³¥ë¤ÏÍøÍѤǤ­¤Þ¤»¤ó" +#: posix/getconf.c:1012 +#, c-format +msgid "Unrecognized variable `%s'" +msgstr "ÊÑ¿ô`%s'¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" -#. TRANS The socket domain does not support the requested communications protocol -#. TRANS (perhaps because the requested protocol is completely invalid). -#. TRANS @xref{Creating a Socket}. -#: stdio-common/../sysdeps/gnu/errlist.c:336 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:150 -msgid "Protocol not supported" -msgstr "¥×¥í¥È¥³¥ë¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: posix/getopt.c:692 posix/getopt.c:704 +#, c-format +msgid "%s: option `%s' is ambiguous\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó`%s'¤ÏÛ£Ëæ¤Ç¤¹\n" -#. TRANS The socket type does not support the requested communications protocol. -#: stdio-common/../sysdeps/gnu/errlist.c:323 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:128 -msgid "Protocol wrong type for socket" -msgstr "¥½¥±¥Ã¥È¤ËÂФ·´Ö°ã¤Ã¤¿¥×¥í¥È¥³¥ë¤Î·Á¼°¤Ç¤¹" +#: posix/getopt.c:737 posix/getopt.c:741 +#, c-format +msgid "%s: option `--%s' doesn't allow an argument\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó`--%s'¤Ï°ú¿ô¤ò¤È¤ê¤Þ¤»¤ó\n" -#: nis/nis_error.c:65 -msgid "Query illegal for named table" -msgstr "named table ¤ËÂФ·¤ÆÉÔÀµ¤Ê¥¯¥¨¥ê¤Ç¤¹" +#: posix/getopt.c:750 posix/getopt.c:755 +#, c-format +msgid "%s: option `%c%s' doesn't allow an argument\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó`%c%s'¤Ï°ú¿ô¤ò¤È¤ê¤Þ¤»¤ó\n" -#: stdio-common/../sysdeps/unix/siglist.c:29 sysdeps/generic/siglist.h:31 -msgid "Quit" -msgstr "½ªÎ»" +#: posix/getopt.c:791 posix/getopt.c:804 posix/getopt.c:1093 +#: posix/getopt.c:1106 +#, c-format +msgid "%s: option `%s' requires an argument\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó`%s'¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹\n" -#: stdio-common/../sysdeps/gnu/errlist.c:773 -msgid "RFS specific error" -msgstr "RFSÆÃÄꥨ¥é¡¼" +#: posix/getopt.c:842 posix/getopt.c:845 +#, c-format +msgid "%s: unrecognized option `--%s'\n" +msgstr "%s: ǧ¼±¤Ç¤­¤Ê¤¤¥ª¥×¥·¥ç¥ó`--%s'¤Ç¤¹\n" -#. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:540 -msgid "RPC bad procedure for program" -msgstr "¥×¥í¥°¥é¥à¤ËÂФ·¤ÆÉÔÀµ¤ÊRPC¤Î¼ê³¤­¤Ç¤¹" +#: posix/getopt.c:853 posix/getopt.c:856 +#, c-format +msgid "%s: unrecognized option `%c%s'\n" +msgstr "%s: ǧ¼±¤Ç¤­¤Ê¤¤¥ª¥×¥·¥ç¥ó`%c%s'¤Ç¤¹\n" -#: nis/ypclnt.c:792 -msgid "RPC failure on NIS operation" -msgstr "NISÁàºî¤Ë¤ª¤±¤ëRPC¤Î¼ºÇԤǤ¹" +#: posix/getopt.c:903 posix/getopt.c:906 +#, c-format +msgid "%s: illegal option -- %c\n" +msgstr "%s: ÉÔÀµ¤Ê¥ª¥×¥·¥ç¥ó¤Ç¤¹ -- %c\n" -#. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:530 -msgid "RPC program not available" -msgstr "RPC¥×¥í¥°¥é¥à¤ÏÍøÍѤǤ­¤Þ¤»¤ó" +#: posix/getopt.c:912 posix/getopt.c:915 +#, c-format +msgid "%s: invalid option -- %c\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó¤¬°ã¤¤¤Þ¤¹ -- %c\n" -#. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:535 -msgid "RPC program version wrong" -msgstr "RPC¥×¥í¥°¥é¥à¥Ð¡¼¥¸¥ç¥ó¤¬°ã¤¤¤Þ¤¹" +#: posix/getopt.c:962 posix/getopt.c:973 posix/getopt.c:1159 +#: posix/getopt.c:1172 +#, c-format +msgid "%s: option requires an argument -- %c\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹ -- %c\n" -#. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:520 -msgid "RPC struct is bad" -msgstr "RPC¹½Â¤¤¬ÉÔÀµ¤Ç¤¹" +#: posix/getopt.c:1025 posix/getopt.c:1036 +#, c-format +msgid "%s: option `-W %s' is ambiguous\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó `-W %s' ¤¬Û£Ëæ¤Ç¤¹\n" -#. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:525 -msgid "RPC version wrong" -msgstr "RPC¥Ð¡¼¥¸¥ç¥ó¤¬°ã¤¤¤Þ¤¹" +#: posix/getopt.c:1060 posix/getopt.c:1072 +#, c-format +msgid "%s: option `-W %s' doesn't allow an argument\n" +msgstr "%s: ¥ª¥×¥·¥ç¥ó`-W %s'¤Ï°ú¿ô¤ò¤È¤ê¤Þ¤»¤ó\n" -#: sunrpc/clnt_perr.c:278 -msgid "RPC: (unknown error code)" -msgstr "RPC: (̤ÃΤΥ¨¥é¡¼¥³¡¼¥É)" +#: posix/regcomp.c:136 +msgid "No match" +msgstr "°ìÃפ·¤Þ¤»¤ó" -#: sunrpc/clnt_perr.c:197 -msgid "RPC: Authentication error" -msgstr "RPC: ǧ¾Ú¥¨¥é¡¼" +#: posix/regcomp.c:139 +msgid "Invalid regular expression" +msgstr "̵¸ú¤ÊÀµµ¬É½¸½¤Ç¤¹" -#: sunrpc/clnt_perr.c:177 -msgid "RPC: Can't decode result" -msgstr "RPC: ¥Ç¥³¡¼¥É¤Ç¤­¤Þ¤»¤ó" +#: posix/regcomp.c:142 +msgid "Invalid collation character" +msgstr "̵¸ú¤Ê¾È¹çʸ»ú¤Ç¤¹" -#: sunrpc/clnt_perr.c:173 -msgid "RPC: Can't encode arguments" -msgstr "RPC: °ú¿ô¤ò¥¨¥ó¥³¡¼¥É¤Ç¤­¤Þ¤»¤ó" +#: posix/regcomp.c:145 +msgid "Invalid character class name" +msgstr "̵¸ú¤Ê¥­¥ã¥é¥¯¥¿¥¯¥é¥¹Ì¾¤Ç¤¹" -#: sunrpc/clnt_perr.c:237 -msgid "RPC: Failed (unspecified error)" -msgstr "RPC: ¼ºÇÔ¤·¤Þ¤·¤¿ (¸¶°øÉÔÆÃÄê¤Î¥¨¥é¡¼)" +#: posix/regcomp.c:148 +msgid "Trailing backslash" +msgstr "¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤¬»Ä¤Ã¤Æ¤¤¤Þ¤¹" -#: sunrpc/clnt_perr.c:193 -msgid "RPC: Incompatible versions of RPC" -msgstr "RPC: RPC¤Î¥Ð¡¼¥¸¥ç¥ó¤¬Èó¸ß´¹¤Ç¤¹" +#: posix/regcomp.c:151 +msgid "Invalid back reference" +msgstr "̵¸ú¤Ê¸åÊý»²¾È¤Ç¤¹" -#: sunrpc/clnt_perr.c:229 -msgid "RPC: Port mapper failure" -msgstr "RPC: ¥Ý¡¼¥È¥Þ¥Ã¥Ñ¡¼¤Î¼ºÇԤǤ¹" +#: posix/regcomp.c:154 +msgid "Unmatched [ or [^" +msgstr "[ ¤â¤·¤¯¤Ï [^ ¤¬°ìÃפ·¤Þ¤»¤ó" -#: sunrpc/clnt_perr.c:209 -msgid "RPC: Procedure unavailable" -msgstr "RPC: ¼ê³¤­¤¬ÍøÍѤǤ­¤Þ¤»¤ó" +#: posix/regcomp.c:157 +msgid "Unmatched ( or \\(" +msgstr "( ¤â¤·¤¯¤Ï \\( ¤¬°ìÃפ·¤Þ¤»¤ó" -#: sunrpc/clnt_perr.c:233 -msgid "RPC: Program not registered" -msgstr "RPC: ¥×¥í¥°¥é¥à¤¬ÅÐÏ¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: posix/regcomp.c:160 +msgid "Unmatched \\{" +msgstr "\\{ ¤¬°ìÃפ·¤Þ¤»¤ó" -#: sunrpc/clnt_perr.c:201 -msgid "RPC: Program unavailable" -msgstr "RPC: ¥×¥í¥°¥é¥à¤ÏÍøÍѤǤ­¤Þ¤»¤ó" +#: posix/regcomp.c:163 +msgid "Invalid content of \\{\\}" +msgstr "̵¸ú¤Ê \\{\\} ¤ÎÆâÍƤǤ¹" -#: sunrpc/clnt_perr.c:205 -msgid "RPC: Program/version mismatch" -msgstr "RPC: ¥×¥í¥°¥é¥à¤È¥Ð¡¼¥¸¥ç¥ó¤¬°ìÃפ·¤Þ¤»¤ó" +#: posix/regcomp.c:166 +msgid "Invalid range end" +msgstr "̵¸ú¤Ê½ªÃ¼ÈϰϤǤ¹" -#: sunrpc/clnt_perr.c:217 -msgid "RPC: Remote system error" -msgstr "RPC: ±ó³Ö¥·¥¹¥Æ¥à¥¨¥é¡¼" +#: posix/regcomp.c:169 +msgid "Memory exhausted" +msgstr "¥á¥â¥ê¤ò»È¤¤¿Ô¤·¤Þ¤·¤¿" -#: sunrpc/clnt_perr.c:213 -msgid "RPC: Server can't decode arguments" -msgstr "RPC: ¥µ¡¼¥Ð¤¬°ú¿ô¤ò¥Ç¥³¡¼¥É¤Ç¤­¤Þ¤»¤ó" +#: posix/regcomp.c:172 +msgid "Invalid preceding regular expression" +msgstr "̵¸ú¤ÊÁ°½Ò¤ÎÀµµ¬É½¸½¤Ç¤¹" -#: sunrpc/clnt_perr.c:170 -msgid "RPC: Success" -msgstr "RPC: À®¸ù¤Ç¤¹" +#: posix/regcomp.c:175 +msgid "Premature end of regular expression" +msgstr "Àµµ¬É½¸½¤Î½ªÃ¼¤¬Á᤹¤®¤Þ¤¹" -#: sunrpc/clnt_perr.c:189 -msgid "RPC: Timed out" -msgstr "RPC: ¥¿¥¤¥à¥¢¥¦¥È¤·¤Þ¤·¤¿" +#: posix/regcomp.c:178 +msgid "Regular expression too big" +msgstr "Àµµ¬É½¸½¤¬Ä¹¤¹¤®¤Þ¤¹" -#: sunrpc/clnt_perr.c:185 -msgid "RPC: Unable to receive" -msgstr "RPC: ¼õ¤±¼è¤ì¤Þ¤»¤ó" +#: posix/regcomp.c:181 +msgid "Unmatched ) or \\)" +msgstr ") ¤â¤·¤¯¤Ï \\) ¤¬°ìÃפ·¤Þ¤»¤ó" -#: sunrpc/clnt_perr.c:181 -msgid "RPC: Unable to send" -msgstr "RPC: Á÷¿®¤Ç¤­¤Þ¤»¤ó" +#: posix/regcomp.c:615 +msgid "No previous regular expression" +msgstr "°ÊÁ°¤ËÀµµ¬É½¸½¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: sunrpc/clnt_perr.c:221 -msgid "RPC: Unknown host" -msgstr "RPC: ÉÔÌÀ¤Ê¥Û¥¹¥È¤Ç¤¹" +#: argp/argp-help.c:213 +#, c-format +msgid "%.*s: ARGP_HELP_FMT parameter requires a value" +msgstr "%.*s: ARGP_HELP_FMT ¥Ñ¥é¥á¡¼¥¿¤Ë¤ÏÃͤ¬É¬ÍפǤ¹" -#: sunrpc/clnt_perr.c:225 -msgid "RPC: Unknown protocol" -msgstr "RPC: ÉÔÌÀ¤Ê¥×¥í¥È¥³¥ë¤Ç¤¹" +#: argp/argp-help.c:222 +#, c-format +msgid "%.*s: Unknown ARGP_HELP_FMT parameter" +msgstr "%.*s: ÉÔÌÀ¤Ê ARGP_HELP_FMT ¥Ñ¥é¥á¡¼¥¿" -#: nis/nis_print.c:188 +#: argp/argp-help.c:234 #, c-format -msgid "RSA (%d bits)\n" -msgstr "RSA (%d ¥Ó¥Ã¥È)\n" +msgid "Garbage in ARGP_HELP_FMT: %s" +msgstr "ARGP_HELP_FMT Ãæ¤Ë¤´¤ß¤¬¤¢¤ê¤Þ¤¹: %s" -#: elf/dl-sym.c:72 elf/dl-sym.c:134 -msgid "RTLD_NEXT used in code not dynamically loaded" -msgstr "¥³¡¼¥ÉÃæ¤Ç»È¤ï¤ì¤Æ¤¤¤ëRTLD_NEXT¤òưŪ¤ËÆɤ߹þ¤á¤Þ¤»¤ó" +#: argp/argp-help.c:1189 +msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." +msgstr "¥í¥ó¥°¥ª¥×¥·¥ç¥ó¤Çɬ¿Ü¤Þ¤¿¤ÏǤ°Õ¤Î°ú¿ô¤Ï¡¢¤½¤ì¤ËÂбþ¤¹¤ë¥·¥ç¡¼¥È¥ª¥×¥·¥ç¥ó¤Ç¤âɬ¿Ü¤Þ¤¿¤ÏǤ°Õ¤Ç¤¹." -#: elf/sprof.c:84 -msgid "Read and display shared object profiling data" -msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¥Ç¡¼¥¿¤òÆɤ߹þ¤ßɽ¼¨¤¹¤ë" +#: argp/argp-help.c:1572 +msgid "Usage:" +msgstr "»ÈÍÑË¡:" -#: nscd/nscd.c:84 -msgid "Read configuration data from NAME" -msgstr "NAME ¤«¤éÀßÄê¾ðÊó¤òÆɤ߹þ¤à" +#: argp/argp-help.c:1576 +msgid " or: " +msgstr " Ëô¤Ï: " -#. TRANS An attempt was made to modify something on a read-only file system. -#: stdio-common/../sysdeps/gnu/errlist.c:219 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:60 -msgid "Read-only file system" -msgstr "Æɤ߹þ¤ßÀìÍÑ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Ç¤¹" +#: argp/argp-help.c:1588 +msgid " [OPTION...]" +msgstr " [¥ª¥×¥·¥ç¥ó...]" -#: string/strsignal.c:67 +#: argp/argp-help.c:1615 #, c-format -msgid "Real-time signal %d" -msgstr "¥ê¥¢¥ë¥¿¥¤¥à¥·¥°¥Ê¥ë %d ¤Ç¤¹" +msgid "Try `%s --help' or `%s --usage' for more information.\n" +msgstr "¾ÜºÙ¤Ï`%s --help'¤Þ¤¿¤Ï`%s --usage'¤ò¼Â¹Ô¤·¤Æ²¼¤µ¤¤.\n" -#: posix/regex.c:1407 -msgid "Regular expression too big" -msgstr "Àµµ¬É½¸½¤¬Ä¹¤¹¤®¤Þ¤¹" +#: argp/argp-help.c:1643 +#, c-format +msgid "Report bugs to %s.\n" +msgstr "¥Ð¥°¤òȯ¸«¤·¤¿¤é %s °¸¤ËÊó¹ð¤·¤Æ²¼¤µ¤¤.\n" -#: stdio-common/../sysdeps/gnu/errlist.c:829 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:170 -msgid "Remote I/O error" -msgstr "±ó³ÖI/O¥¨¥é¡¼¤Ç¤¹" +#: argp/argp-parse.c:100 +msgid "Give this help list" +msgstr "¤³¤Î¥Ø¥ë¥×¤Îɽ¼¨" -#: stdio-common/../sysdeps/gnu/errlist.c:785 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:112 -msgid "Remote address changed" -msgstr "±ó³Ö¥¢¥É¥ì¥¹¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿" +#: argp/argp-parse.c:101 +msgid "Give a short usage message" +msgstr "û¤¤»ÈÍÑÊýË¡¤Îɽ¼¨" -#: inet/ruserpass.c:185 -msgid "Remove password or make file unreadable by others." -msgstr "¥Ñ¥¹¥ï¡¼¥É¤¬ºï½ü, ¤Þ¤¿¤Ï¥Õ¥¡¥¤¥ë¤¬Âè»°¼Ô¤Ë¤è¤Ã¤ÆÆɤ߹þ¤ß¤Ç¤­¤Þ¤»¤ó" +#: argp/argp-parse.c:102 +msgid "Set the program name" +msgstr "¥×¥í¥°¥é¥à̾¤ò¥»¥Ã¥È¤¹¤ë" -#: elf/cache.c:431 -#, c-format -msgid "Renaming of %s to %s failed" -msgstr "%s ¤«¤é %s ¤Ø¤Î̾Á°Êѹ¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: argp/argp-parse.c:104 +msgid "Hang for SECS seconds (default 3600)" +msgstr "SECS ÉÃ¤Ç¥Ï¥ó¥° (¥Ç¥Õ¥©¥ë¥È 3600)" -#: elf/sprof.c:532 -#, c-format -msgid "Reopening shared object `%s' failed" -msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È`%s'¤ÎºÆ¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: argp/argp-parse.c:161 +msgid "Print program version" +msgstr "¥×¥í¥°¥é¥à¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤¹¤ë" -#: nis/nis_print.c:174 -msgid "Replicate :\n" -msgstr "Ê£À½ :\n" +#: argp/argp-parse.c:177 +msgid "(PROGRAM ERROR) No version known!?" +msgstr "(¥×¥í¥°¥é¥à¥¨¥é¡¼) ̤ÃΤΥС¼¥¸¥ç¥ó!?" -#: argp/argp-help.c:1639 +#: argp/argp-parse.c:653 #, c-format -msgid "Report bugs to %s.\n" -msgstr "¥Ð¥°¤òȯ¸«¤·¤¿¤é %s °¸¤ËÊó¹ð¤·¤Æ²¼¤µ¤¤.\n" +msgid "%s: Too many arguments\n" +msgstr "%s: °ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹\n" -#: 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 .\n" -msgstr "¥Ð¥°¤Ï¥¹¥¯¥ê¥×¥È`glibcbug'¤òÍѤ¤¤Æ¤Þ¤ÇÊó¹ð¤·¤Æ¤¯¤À¤µ¤¤.\n" +#: argp/argp-parse.c:794 +msgid "(PROGRAM ERROR) Option should have been recognized!?" +msgstr "(¥×¥í¥°¥é¥à¥¨¥é¡¼) ¥ª¥×¥·¥ç¥ó¤Ïǧ¼±¤µ¤ì¤Æ¤¤¤ë¤Ù¤­¤Ç¤¹!?" -#: nis/ypclnt.c:790 -msgid "Request arguments bad" -msgstr "Í×µá°ú¿ô¤¬ÉÔÀµ¤Ç¤¹" +#: resolv/herror.c:67 +msgid "Resolver Error 0 (no error)" +msgstr "¥ê¥¾¥ë¥Ð¥¨¥é¡¼ 0 (¥¨¥é¡¼¤Ï¤¢¤ê¤Þ¤»¤ó)" -#: posix/../sysdeps/posix/gai_strerror.c:43 -msgid "Request canceled" -msgstr "Í×µá¤ÏÃæÃǤµ¤ì¤Þ¤·¤¿" +#: resolv/herror.c:68 +msgid "Unknown host" +msgstr "ÉÔÌÀ¤Ê¥Û¥¹¥È" -#: posix/../sysdeps/posix/gai_strerror.c:44 -msgid "Request not canceled" -msgstr "Í×µá¤ÏÃæÃǤµ¤ì¤Þ¤»¤ó¤Ç¤·¤¿" +#: resolv/herror.c:69 +msgid "Host name lookup failure" +msgstr "¥Û¥¹¥È̾¤Î¸¡º÷¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:171 -msgid "Reserved for future use" -msgstr "¾­Íè¤Î¤¿¤á¤ËͽÌóºÑ¤ß" +#: resolv/herror.c:70 +msgid "Unknown server error" +msgstr "ÉÔÌÀ¤Ê¥µ¡¼¥Ð¥¨¥é¡¼" -#: resolv/herror.c:67 -msgid "Resolver Error 0 (no error)" -msgstr "¥ê¥¾¥ë¥Ð¥¨¥é¡¼ 0 (¥¨¥é¡¼¤Ï¤¢¤ê¤Þ¤»¤ó)" +#: resolv/herror.c:71 +msgid "No address associated with name" +msgstr "̾Á°¤ËÂбþ¤¹¤ë¥¢¥É¥ì¥¹¤¬¤¢¤ê¤Þ¤»¤ó" #: resolv/herror.c:107 msgid "Resolver internal error" msgstr "¥ê¥¾¥ë¥ÐÆâÉô¥¨¥é¡¼" -#. TRANS Deadlock avoided; allocating a system resource would have resulted in a -#. TRANS deadlock situation. The system does not guarantee that it will notice -#. TRANS all such situations. This error means you got lucky and the system -#. TRANS noticed; it might just hang. @xref{File Locks}, for an example. -#: stdio-common/../sysdeps/gnu/errlist.c:98 -msgid "Resource deadlock avoided" -msgstr "¥ê¥½¡¼¥¹¤Î¥Ç¥Ã¥É¥í¥Ã¥¯²óÈò" +#: resolv/herror.c:110 +msgid "Unknown resolver error" +msgstr "ÉÔÌÀ¤Ê¥ê¥¾¥ë¥Ð¥¨¥é¡¼" -#: stdio-common/../sysdeps/unix/siglist.c:55 sysdeps/generic/siglist.h:74 -msgid "Resource lost" -msgstr "¥ê¥½¡¼¥¹¤¬¼º¤ï¤ì¤Þ¤·¤¿" +#: resolv/res_hconf.c:147 +#, c-format +msgid "%s: line %d: expected service, found `%s'\n" +msgstr "%s: %d¹Ô: Í׵ᤷ¤¿¥µ¡¼¥Ó¥¹ `%s' ¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n" -#. TRANS Resource temporarily unavailable; the call might work if you try again -#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN}; -#. TRANS they are always the same in the GNU C library. -#. TRANS -#. TRANS This error can happen in a few different situations: -#. TRANS -#. TRANS @itemize @bullet -#. TRANS @item -#. TRANS An operation that would block was attempted on an object that has -#. TRANS non-blocking mode selected. Trying the same operation again will block -#. TRANS until some external condition makes it possible to read, write, or -#. TRANS connect (whatever the operation). You can use @code{select} to find out -#. TRANS when the operation will be possible; @pxref{Waiting for I/O}. -#. TRANS -#. TRANS @strong{Portability Note:} In many older Unix systems, this condition -#. TRANS was indicated by @code{EWOULDBLOCK}, which was a distinct error code -#. TRANS different from @code{EAGAIN}. To make your program portable, you should -#. TRANS check for both codes and treat them the same. -#. TRANS -#. TRANS @item -#. TRANS A temporary resource shortage made an operation impossible. @code{fork} -#. TRANS can return this error. It indicates that the shortage is expected to -#. TRANS pass, so your program can try the call again later and it may succeed. -#. TRANS It is probably a good idea to delay for a few seconds before trying it -#. TRANS again, to allow time for other processes to release scarce resources. -#. TRANS Such shortages are usually fairly serious and affect the whole system, -#. TRANS so usually an interactive program should report the error to the user -#. TRANS and return to its command loop. -#. TRANS @end itemize -#: stdio-common/../sysdeps/gnu/errlist.c:280 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:41 -msgid "Resource temporarily unavailable" -msgstr "¥ê¥½¡¼¥¹¤¬°ì»þŪ¤ËÍøÍѤǤ­¤Þ¤»¤ó" +#: resolv/res_hconf.c:165 +#, c-format +msgid "%s: line %d: cannot specify more than %d services" +msgstr "%s: %d¹Ô: %d ¥µ¡¼¥Ó¥¹°Ê¾å»ØÄê¤Ç¤­¤Þ¤»¤ó" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:64 -msgid "Result too large" -msgstr "·ë²Ì¤¬Â礭¤¹¤®¤Þ¤¹" +#: resolv/res_hconf.c:191 +#, c-format +msgid "%s: line %d: list delimiter not followed by keyword" +msgstr "%s: %d¹Ô: ¥ê¥¹¥È¥Ç¥ê¥ß¥¿¤Ï¥­¡¼¥ï¡¼¥É¤Ë¤·¤¿¤¬¤Ã¤Æ¤Þ¤»¤ó" -#: nis/nis_error.c:48 -msgid "Results sent to callback proc" -msgstr "¥³¡¼¥ë¥Ð¥Ã¥¯¥×¥í¥·¡¼¥¸¥ã¤Ë·ë²Ì¤òÁ÷¤ê¤Þ¤·¤¿" +#: resolv/res_hconf.c:231 +#, c-format +msgid "%s: line %d: cannot specify more than %d trim domains" +msgstr "%s: %d¹Ô: %d ºï½ü(trim)¥É¥á¥¤¥ó°Ê¾å»ØÄê¤Ç¤­¤Þ¤»¤ó" -#: elf/sprof.c:87 -msgid "SHOBJ [PROFDATA]" -msgstr "SHOBJ [PROFDATA]" +#: resolv/res_hconf.c:256 +#, c-format +msgid "%s: line %d: list delimiter not followed by domain" +msgstr "%s: %d¹Ô: ¥ê¥¹¥È¥Ç¥ê¥ß¥¿¤¬¥É¥á¥¤¥óÆâ¤Ë¤Ä¤¤¤Æ¤¤¤Þ¤»¤ó" -#: nis/nis_print.c:269 +#: resolv/res_hconf.c:319 #, c-format -msgid "Search Path : %s\n" -msgstr "¸¡º÷¥Ñ¥¹ : %s\n" +msgid "%s: line %d: expected `on' or `off', found `%s'\n" +msgstr "%s: %d¹Ô: ´üÂÔ¤µ¤ì¤¿ `on' ¤Þ¤¿¤Ï `off' ¤¬ `%s' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿\n" -#: stdio-common/../sysdeps/unix/siglist.c:37 sysdeps/generic/siglist.h:38 -msgid "Segmentation fault" -msgstr "¥»¥°¥á¥ó¥Æ¡¼¥·¥ç¥ó°ãÈ¿¤Ç¤¹" +#: resolv/res_hconf.c:366 +#, c-format +msgid "%s: line %d: bad command `%s'\n" +msgstr "%s: %d¹Ô: ´Ö°ã¤Ã¤¿¥³¥Þ¥ó¥É `%s'\n" -#: nis/nis_error.c:36 -msgid "Server busy, try again" -msgstr "¥µ¡¼¥Ð¤¬¥Ó¥¸¡¼¾õÂ֤Ǥ¹, ºÆ»î¹Ô¤·¤Æ¤¯¤À¤µ¤¤" +#: resolv/res_hconf.c:395 +#, c-format +msgid "%s: line %d: ignoring trailing garbage `%s'\n" +msgstr "%s: %d¹Ô: ¸å¤Ë»Ä¤Ã¤¿¥´¥ß `%s' ¤ò̵»ë¤·¤Þ¤¹\n" -#: nis/nis_error.c:42 -msgid "Server out of memory" -msgstr "¥µ¡¼¥Ð¤Î¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó" +#: nss/getent.c:51 +msgid "database [key ...]" +msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹ [¥­¡¼ ...]" -#: sunrpc/clnt_perr.c:345 -msgid "Server rejected credential" -msgstr "¥µ¡¼¥Ð¤¬¾ÚÌÀ¤òµñÈݤ·¤Þ¤·¤¿" +#: nss/getent.c:56 +msgid "Service configuration to be used" +msgstr "¤³¤Î¥µ¡¼¥Ó¥¹ÀßÄê¤ò»ÈÍѤ¹¤ë" -#: sunrpc/clnt_perr.c:353 -msgid "Server rejected verifier" -msgstr "¥µ¡¼¥Ð¤¬³Îǧ¤òµñÈݤ·¤Þ¤·¤¿" +#: nss/getent.c:136 nss/getent.c:308 +#, c-format +msgid "Enumeration not supported on %s\n" +msgstr "¿ôÃÍ¤Ï %s ¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" -#: posix/../sysdeps/posix/gai_strerror.c:39 -msgid "Servname not supported for ai_socktype" -msgstr "¥µ¡¼¥Ð̾¤Ï ai_socktype ¤ËÂФ·¤Æ¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" +#: nss/getent.c:732 +msgid "getent - get entries from administrative database." +msgstr "getent - ´ÉÍý¥Ç¡¼¥¿¥Ù¡¼¥¹¤«¤é¥¨¥ó¥È¥ê¤òÆÀ¤ë" -#: argp/argp-parse.c:95 -msgid "Set the program name" -msgstr "¥×¥í¥°¥é¥à̾¤ò¥»¥Ã¥È¤¹¤ë" +#: nss/getent.c:733 +msgid "Supported databases:" +msgstr "¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤ë¥Ç¡¼¥¿¥Ù¡¼¥¹:" -#: nscd/nscd.c:88 -msgid "Shut the server down" -msgstr "¥µ¡¼¥Ð¤ò½ªÎ»¤¹¤ë" +#: nss/getent.c:790 nscd/nscd.c:124 nscd/nscd_nischeck.c:64 +msgid "wrong number of arguments" +msgstr "°ú¿ô¤Î¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" -#: stdio-common/../sysdeps/unix/siglist.c:26 -msgid "Signal 0" -msgstr "¥·¥°¥Ê¥ë 0" +#: nss/getent.c:800 +#, c-format +msgid "Unknown database: %s\n" +msgstr "̤ÃΤΥǡ¼¥¿¥Ù¡¼¥¹: %s\n" -#. TRANS A file that isn't a socket was specified when a socket is required. -#: stdio-common/../sysdeps/gnu/errlist.c:312 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:125 -msgid "Socket operation on non-socket" -msgstr "¥½¥±¥Ã¥È¤Ç¤Ê¤¤¤â¤Î¤Ë¥½¥±¥Ã¥ÈÁàºî¤ò¤·¤Æ¤¤¤Þ¤¹" +#: debug/pcprofiledump.c:52 +msgid "Don't buffer output" +msgstr "½ÐÎϤò¥Ð¥Ã¥Õ¥¡¤·¤Þ¤»¤ó" -#. TRANS The socket type is not supported. -#: stdio-common/../sysdeps/gnu/errlist.c:341 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:151 -msgid "Socket type not supported" -msgstr "¥½¥±¥Ã¥È·Á¼°¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" +#: debug/pcprofiledump.c:57 +msgid "Dump information generated by PC profiling." +msgstr "PC¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¤Ë¤è¤Ã¤ÆÀ¸À®¤µ¤ì¤ë¾ðÊó¤ò¥À¥ó¥×." -#. TRANS A network connection was aborted locally. -#: stdio-common/../sysdeps/gnu/errlist.c:395 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:160 -msgid "Software caused connection abort" -msgstr "¥½¥Õ¥È¥¦¥§¥¢¤¬Àܳ¤òÃæÃǤ·¤Þ¤·¤¿" +#: debug/pcprofiledump.c:60 +msgid "[FILE]" +msgstr "[¥Õ¥¡¥¤¥ë]" -#: sunrpc/rpcinfo.c:658 -msgid "Sorry. You are not root\n" -msgstr "¼ºÎé. ¤¢¤Ê¤¿¤Ï root ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" +#: debug/pcprofiledump.c:100 +msgid "cannot open input file" +msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó" -#: locale/programs/localedef.c:95 -msgid "Source definitions are found in FILE" -msgstr "¥Õ¥¡¥¤¥ëÃæ¤Ë¥½¡¼¥¹ÄêµÁ¤¬¤¢¤ê¤Þ¤·¤¿" +#: debug/pcprofiledump.c:106 +msgid "cannot read header" +msgstr "¥Ø¥Ã¥À¤¬Æɤá¤Þ¤»¤ó" -#: stdio-common/../sysdeps/gnu/errlist.c:765 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:99 -msgid "Srmount error" -msgstr "Srmount ¥¨¥é¡¼" +#: debug/pcprofiledump.c:170 +msgid "invalid pointer size" +msgstr "ÉÔÀµ¤Ê¥Ý¥¤¥ó¥¿¥µ¥¤¥º" -#: sysdeps/generic/siglist.h:66 -msgid "Stack fault" -msgstr "¥¹¥¿¥Ã¥¯¼ºÇÔ" +#: inet/rcmd.c:163 inet/rcmd.c:166 +msgid "rcmd: Cannot allocate memory\n" +msgstr "rcmd: ¥á¥â¥ê¤ò³ÎÊݤǤ­¤Þ¤»¤ó\n" -#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS -#. TRANS system which is due to file system rearrangements on the server host. -#. TRANS Repairing this condition usually requires unmounting and remounting -#. TRANS the NFS file system on the local host. -#: stdio-common/../sysdeps/gnu/errlist.c:507 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:181 -msgid "Stale NFS file handle" -msgstr "¼Â¸úÀ­¤Î¤Ê¤¤NFS¥Õ¥¡¥¤¥ë¥Ï¥ó¥É¥ë¤Ç¤¹" +#: inet/rcmd.c:185 inet/rcmd.c:188 +msgid "rcmd: socket: All ports in use\n" +msgstr "rcmd: socket: Á´¥Ý¡¼¥È¤¬»ÈÍÑÃæ¤Ç¤¹\n" -#: nscd/nscd.c:87 -msgid "Start NUMBER threads" -msgstr "NUMBER¥¹¥ì¥Ã¥É¤Çµ¯Æ°¤¹¤ë" +#: inet/rcmd.c:222 +#, c-format +msgid "connect to address %s: " +msgstr "¥¢¥É¥ì¥¹ %s ¤ØÀܳ: " -#: nis/nis_print.c:365 +#: inet/rcmd.c:240 #, c-format -msgid "Status : %s\n" -msgstr "¥¹¥Æ¡¼¥¿¥¹ : %s\n" +msgid "Trying %s...\n" +msgstr "%s ¤ØÀܳÃæ...\n" -#: stdio-common/../sysdeps/unix/siglist.c:44 sysdeps/generic/siglist.h:44 -msgid "Stopped" -msgstr "Ää»ß¤·¤Þ¤·¤¿" +#: inet/rcmd.c:289 +#, c-format +msgid "rcmd: write (setting up stderr): %m\n" +msgstr "rcmd: write (stderr ¤òÀßÄêÃæ¤Ç¤¹): %m\n" -#: stdio-common/../sysdeps/unix/siglist.c:43 sysdeps/generic/siglist.h:43 -msgid "Stopped (signal)" -msgstr "Ää»ß¤·¤Þ¤·¤¿ (¥·¥°¥Ê¥ë)" +#: inet/rcmd.c:310 +#, c-format +msgid "rcmd: poll (setting up stderr): %m\n" +msgstr "rcmd: poll (stderr ¤òÀßÄêÃæ¤Ç¤¹): %m\n" -#: stdio-common/../sysdeps/unix/siglist.c:47 sysdeps/generic/siglist.h:47 -msgid "Stopped (tty input)" -msgstr "Ää»ß¤·¤Þ¤·¤¿ (üËöÆþÎÏ)" +#: inet/rcmd.c:313 +msgid "poll: protocol failure in circuit setup\n" +msgstr "poll: ²óÀþ¤Î¥»¥Ã¥È¥¢¥Ã¥×Ãæ¤Ç¥×¥í¥È¥³¥ë¤¬¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: stdio-common/../sysdeps/unix/siglist.c:48 sysdeps/generic/siglist.h:48 -msgid "Stopped (tty output)" -msgstr "Ää»ß¤·¤Þ¤·¤¿ (üËö½ÐÎÏ)" +#: inet/rcmd.c:358 +msgid "socket: protocol failure in circuit setup\n" +msgstr "socket: ²óÀþ¤Î¥»¥Ã¥È¥¢¥Ã¥×Ãæ¤Ç¥×¥í¥È¥³¥ë¤¬¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: stdio-common/../sysdeps/gnu/errlist.c:809 -msgid "Streams pipe error" -msgstr "¥¹¥È¥ê¡¼¥à¥Ñ¥¤¥×¥¨¥é¡¼" +#: inet/rcmd.c:387 +#, c-format +msgid "rcmd: %s: short read" +msgstr "rcmd: %s: û¤¤Æɹþ¤ß" -#: stdio-common/../sysdeps/gnu/errlist.c:813 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:165 -msgid "Structure needs cleaning" -msgstr "¹½Â¤ÂΤòÆâÍƾõ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹" +#: inet/rcmd.c:549 +msgid "lstat failed" +msgstr "lstat¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: 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 "À®¸ù¤Ç¤¹" +#: inet/rcmd.c:551 +msgid "not regular file" +msgstr "Ä̾ï¤Î¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: nss/getent.c:703 -msgid "Supported databases:" -msgstr "¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤ë¥Ç¡¼¥¿¥Ù¡¼¥¹:" +#: inet/rcmd.c:556 +msgid "cannot open" +msgstr "³«¤±¤Þ¤»¤ó" -#: locale/programs/localedef.c:106 -msgid "Suppress warnings and information messages" -msgstr "·Ù¹ð¤È¾ðÊó¥á¥Ã¥»¡¼¥¸¤ÎÍÞÀ©" +#: inet/rcmd.c:558 +msgid "fstat failed" +msgstr "fstat¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: locale/programs/localedef.c:94 -msgid "Symbolic character names defined in FILE" -msgstr "¥·¥ó¥Ü¥ë¥­¥ã¥é¥¯¥¿Ì¾¤Ï FILE Ãæ¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" +#: inet/rcmd.c:560 +msgid "bad owner" +msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô¤Ç¤¹" -#: posix/../sysdeps/posix/gai_strerror.c:41 -msgid "System error" -msgstr "¥·¥¹¥Æ¥à¥¨¥é¡¼" +#: inet/rcmd.c:562 +msgid "writeable by other than owner" +msgstr "½êÍ­¼Ô°Ê³°¤¬½ñ¤­¹þ¤ß¤¬²Äǽ¤Ç¤¹" -#: locale/programs/locale.c:73 -msgid "System information:" -msgstr "¥·¥¹¥Æ¥à¾ðÊó:" +#: inet/rcmd.c:564 +msgid "hard linked somewhere" +msgstr "¤É¤³¤«¤Ç¥Ï¡¼¥É¥ê¥ó¥¯¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: nis/ypclnt.c:868 -msgid "System resource allocation failure" -msgstr "¥·¥¹¥Æ¥à¥ê¥½¡¼¥¹¤Î³ÎÊݤ˼ºÇÔ" +#: inet/ruserpass.c:170 inet/ruserpass.c:193 +msgid "out of memory" +msgstr "¥á¥â¥êÉÔ­" + +#: inet/ruserpass.c:184 +msgid "Error: .netrc file is readable by others." +msgstr "¥¨¥é¡¼: ¥Õ¥¡¥¤¥ë.netrc¤¬Â¾¼Ô¤Ë¤è¤Ã¤ÆÆɤ߹þ¤ßµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤¹" + +#: inet/ruserpass.c:185 +msgid "Remove password or make file unreadable by others." +msgstr "¥Ñ¥¹¥ï¡¼¥É¤¬ºï½ü, ¤Þ¤¿¤Ï¥Õ¥¡¥¤¥ë¤¬Âè»°¼Ô¤Ë¤è¤Ã¤ÆÆɤ߹þ¤ß¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/localedef.c:292 +#: inet/ruserpass.c:277 #, c-format -msgid "" -"System's directory for character maps : %s\n" -" repertoire maps: %s\n" -" locale path : %s\n" -"%s" -msgstr "" -"¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¤¬¤¢¤ë ¥·¥¹¥Æ¥à¥Ç¥£¥ì¥¯¥È¥ê: %s\n" -"¥ì¥Ñ¡¼¥È¥ê¡¼¥Þ¥Ã¥×¤¬¤¢¤ë¥·¥¹¥Æ¥à¥Ç¥£¥ì¥¯¥È¥ê: %s\n" -"¥í¥±¡¼¥ë¥Ñ¥¹¤ËÂФ¹¤ë ¥·¥¹¥Æ¥à¥Ç¥£¥ì¥¯¥È¥ê: %s\n" -"%s" +msgid "Unknown .netrc keyword %s" +msgstr "̤ÃΤΠ.netrc ¥­¡¼¥ï¡¼¥É %s" -#: nscd/nscd.c:90 -msgid "TABLE" -msgstr "¥Æ¡¼¥Ö¥ë" +#: sunrpc/auth_unix.c:115 sunrpc/auth_unix.c:118 +msgid "authunix_create: out of memory\n" +msgstr "authunix_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: nis/nis_print.c:121 -msgid "TABLE\n" -msgstr "¥Æ¡¼¥Ö¥ë\n" +#: sunrpc/auth_unix.c:318 +msgid "auth_none.c - Fatal marshalling problem" +msgstr "auth_none.c - Ã×̿Ū¤ÊÀ°Îó¤ÎÌäÂê" -#: nscd/nscd.c:92 -msgid "TABLE,yes" -msgstr "¥Æ¡¼¥Ö¥ë,¤Ï¤¤" +#: sunrpc/clnt_perr.c:118 sunrpc/clnt_perr.c:139 +#, c-format +msgid "; low version = %lu, high version = %lu" +msgstr "; low ¥Ð¡¼¥¸¥ç¥ó = %lu, high ¥Ð¡¼¥¸¥ç¥ó = %lu" + +#: sunrpc/clnt_perr.c:125 +msgid "; why = " +msgstr "; Íýͳ = " -#: nis/nis_print.c:266 +#: sunrpc/clnt_perr.c:132 #, c-format -msgid "Table Type : %s\n" -msgstr "¥Æ¡¼¥Ö¥ë·¿ : %s\n" +msgid "(unknown authentication error - %d)" +msgstr "(ÉÔÌÀ¤Êǧ¾Ú¥¨¥é¡¼ - %d)" -#: posix/../sysdeps/posix/gai_strerror.c:32 -msgid "Temporary failure in name resolution" -msgstr "̾Á°²ò·è»þ¤Î°ì»þŪ¤Ê¼ºÇÔ" +#: sunrpc/clnt_perr.c:177 +msgid "RPC: Success" +msgstr "RPC: À®¸ù¤Ç¤¹" -#: stdio-common/../sysdeps/unix/siglist.c:41 sysdeps/generic/siglist.h:41 -msgid "Terminated" -msgstr "½ªÎ»¤·¤Þ¤·¤¿" +#: sunrpc/clnt_perr.c:180 +msgid "RPC: Can't encode arguments" +msgstr "RPC: °ú¿ô¤ò¥¨¥ó¥³¡¼¥É¤Ç¤­¤Þ¤»¤ó" -#. TRANS An attempt to execute a file that is currently open for writing, or -#. TRANS write to a file that is currently being executed. Often using a -#. TRANS debugger to run a program is considered having it open for writing and -#. TRANS will cause this error. (The name stands for ``text file busy''.) This -#. TRANS is not an error in the GNU system; the text is copied as necessary. -#: stdio-common/../sysdeps/gnu/errlist.c:198 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:56 -msgid "Text file busy" -msgstr "¥Æ¥­¥¹¥È¥Õ¥¡¥¤¥ë¤¬¥Ó¥¸¡¼¾õÂ֤Ǥ¹" +#: sunrpc/clnt_perr.c:184 +msgid "RPC: Can't decode result" +msgstr "RPC: ¥Ç¥³¡¼¥É¤Ç¤­¤Þ¤»¤ó" -#: 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" -"the FROM and TO command line parameters. One coded character set can be\n" -"listed with several different names (aliases).\n" -"\n" -" " -msgstr "" -"°Ê²¼¤Î¥ê¥¹¥È¤Ë¤Ï¡¢ÃΤé¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î¥­¥ã¥é¥¯¥¿¥³¡¼¥É¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹.\n" -"¤³¤ì¤Ï¡¢¤³¤ì¤é¤Î̾Á°¤Ï¥³¥Þ¥ó¥É¥é¥¤¥ó¥Ñ¥é¥á¡¼¥¿¤ÎFROM¤ÈTO¤Ç»È¤ï¤ì¤ëÁ´¤Æ¤Î\n" -"Áȹ礻¤ò°ÕÌ£¤·¤Æ¤¤¤ë¤ï¤±¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó. ¤¢¤ë¥­¥ã¥é¥¯¥¿¥»¥Ã¥È¤Ï¡¢\n" -"¤¤¤¯¤Ä¤«¤Î°Û¤Ê¤ë̾Á°(¥¨¥¤¥ê¥¢¥¹)¤È¶¦¤Ë¥ê¥¹¥È¤µ¤ì¤Þ¤¹.\n" -"\n" -" " +#: sunrpc/clnt_perr.c:188 +msgid "RPC: Unable to send" +msgstr "RPC: Á÷¿®¤Ç¤­¤Þ¤»¤ó" -#: sunrpc/rpc_main.c:1365 -msgid "This implementation doesn't support newstyle or MT-safe code!\n" -msgstr "¤³¤Î¼ÂÁõ¤Ï¿··Á¼°¤Þ¤¿¤ÏMT¥»¡¼¥Õ¤Ê¥³¡¼¥É¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó!\n" +#: sunrpc/clnt_perr.c:192 +msgid "RPC: Unable to receive" +msgstr "RPC: ¼õ¤±¼è¤ì¤Þ¤»¤ó" -#: nis/nis_print.c:227 -msgid "Time to live : " -msgstr "À¸Â¸»þ´Ö : " +#: sunrpc/clnt_perr.c:196 +msgid "RPC: Timed out" +msgstr "RPC: ¥¿¥¤¥à¥¢¥¦¥È¤·¤Þ¤·¤¿" -#: stdio-common/../sysdeps/gnu/errlist.c:681 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:92 -msgid "Timer expired" -msgstr "¥¿¥¤¥Þ¤¬ÇË´þ¤µ¤ì¤Þ¤·¤¿" +#: sunrpc/clnt_perr.c:200 +msgid "RPC: Incompatible versions of RPC" +msgstr "RPC: RPC¤Î¥Ð¡¼¥¸¥ç¥ó¤¬Èó¸ß´¹¤Ç¤¹" -#: malloc/memusagestat.c:54 -msgid "Title string used in output graphic" -msgstr "¥¿¥¤¥È¥ëʸ»úÎó¤Ï½ÐÎÏ¥°¥é¥Õ¥£¥Ã¥¯Ãæ¤Ç»ÈÍѤµ¤ì¤Æ¤¤¤Þ¤¹" +#: sunrpc/clnt_perr.c:204 +msgid "RPC: Authentication error" +msgstr "RPC: ǧ¾Ú¥¨¥é¡¼" -#: nis/nis_error.c:56 -msgid "Too many attributes" -msgstr "°À­¤¬Â¿¤¹¤®¤Þ¤¹" +#: sunrpc/clnt_perr.c:208 +msgid "RPC: Program unavailable" +msgstr "RPC: ¥×¥í¥°¥é¥à¤ÏÍøÍѤǤ­¤Þ¤»¤ó" -#. TRANS Too many levels of symbolic links were encountered in looking up a file name. -#. TRANS This often indicates a cycle of symbolic links. -#: stdio-common/../sysdeps/gnu/errlist.c:458 -msgid "Too many levels of symbolic links" -msgstr "¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Î³¬Áؤ¬Â¿¤¹¤®¤Þ¤¹" +#: sunrpc/clnt_perr.c:212 +msgid "RPC: Program/version mismatch" +msgstr "RPC: ¥×¥í¥°¥é¥à¤È¥Ð¡¼¥¸¥ç¥ó¤¬°ìÃפ·¤Þ¤»¤ó" -#. TRANS Too many links; the link count of a single file would become too large. -#. TRANS @code{rename} can cause this error if the file being renamed already has -#. TRANS as many links as it can take (@pxref{Renaming Files}). -#: stdio-common/../sysdeps/gnu/errlist.c:226 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:61 -msgid "Too many links" -msgstr "¥ê¥ó¥¯¤¬Â¿¤¹¤®¤Þ¤¹" +#: sunrpc/clnt_perr.c:216 +msgid "RPC: Procedure unavailable" +msgstr "RPC: ¼ê³¤­¤¬ÍøÍѤǤ­¤Þ¤»¤ó" -#. TRANS The current process has too many files open and can't open any more. -#. TRANS Duplicate descriptors do count toward this limit. -#. TRANS -#. TRANS In BSD and GNU, the number of open files is controlled by a resource -#. TRANS limit that can usually be increased. If you get this error, you might -#. TRANS want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited; -#. TRANS @pxref{Limits on Resources}. -#: stdio-common/../sysdeps/gnu/errlist.c:176 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:54 -msgid "Too many open files" -msgstr "¥Õ¥¡¥¤¥ë¤ò³«¤­¤¹¤®¤Ç¤¹" +#: sunrpc/clnt_perr.c:220 +msgid "RPC: Server can't decode arguments" +msgstr "RPC: ¥µ¡¼¥Ð¤¬°ú¿ô¤ò¥Ç¥³¡¼¥É¤Ç¤­¤Þ¤»¤ó" -#. TRANS There are too many distinct file openings in the entire system. Note -#. TRANS that any number of linked channels count as just one file opening; see -#. TRANS @ref{Linked Channels}. This error never occurs in the GNU system. -#: stdio-common/../sysdeps/gnu/errlist.c:183 -msgid "Too many open files in system" -msgstr "¥·¥¹¥Æ¥àÃæ¤Î¥Õ¥¡¥¤¥ë¤ò³«¤­¤¹¤®¤Ç¤¹" +#: sunrpc/clnt_perr.c:224 +msgid "RPC: Remote system error" +msgstr "RPC: ±ó³Ö¥·¥¹¥Æ¥à¥¨¥é¡¼" -#. TRANS This means that the per-user limit on new process would be exceeded by -#. TRANS an attempted @code{fork}. @xref{Limits on Resources}, for details on -#. TRANS the @code{RLIMIT_NPROC} limit. -#: stdio-common/../sysdeps/gnu/errlist.c:488 -msgid "Too many processes" -msgstr "¥×¥í¥»¥¹¤¬Â¿¤¹¤®¤Þ¤¹" +#: sunrpc/clnt_perr.c:228 +msgid "RPC: Unknown host" +msgstr "RPC: ÉÔÌÀ¤Ê¥Û¥¹¥È¤Ç¤¹" -#. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:440 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:174 -msgid "Too many references: cannot splice" -msgstr "»²¾È¤¬Â¿¤¹¤®¤Þ¤¹: ÁȤ߷Ѥ®¤Ç¤­¤Þ¤»¤ó" +#: sunrpc/clnt_perr.c:232 +msgid "RPC: Unknown protocol" +msgstr "RPC: ÉÔÌÀ¤Ê¥×¥í¥È¥³¥ë¤Ç¤¹" -#. TRANS The file quota system is confused because there are too many users. -#. TRANS @c This can probably happen in a GNU system when using NFS. -#: stdio-common/../sysdeps/gnu/errlist.c:494 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:124 -msgid "Too many users" -msgstr "¥æ¡¼¥¶¤¬Â¿¤¹¤®¤Þ¤¹" +#: sunrpc/clnt_perr.c:236 +msgid "RPC: Port mapper failure" +msgstr "RPC: ¥Ý¡¼¥È¥Þ¥Ã¥Ñ¡¼¤Î¼ºÇԤǤ¹" -#: stdio-common/../sysdeps/unix/siglist.c:31 sysdeps/generic/siglist.h:33 -msgid "Trace/breakpoint trap" -msgstr "¥È¥ì¡¼¥¹/¥Ö¥ì¥¤¥¯¥Ý¥¤¥ó¥È ¥È¥é¥Ã¥×" +#: sunrpc/clnt_perr.c:240 +msgid "RPC: Program not registered" +msgstr "RPC: ¥×¥í¥°¥é¥à¤¬ÅÐÏ¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: posix/regex.c:1377 -msgid "Trailing backslash" -msgstr "¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤¬»Ä¤Ã¤Æ¤¤¤Þ¤¹" +#: sunrpc/clnt_perr.c:244 +msgid "RPC: Failed (unspecified error)" +msgstr "RPC: ¼ºÇÔ¤·¤Þ¤·¤¿ (¸¶°øÉÔÆÃÄê¤Î¥¨¥é¡¼)" -#. TRANS In the GNU system, opening a file returns this error when the file is -#. TRANS translated by a program and the translator program dies while starting -#. TRANS up, before it has connected to the file. -#: stdio-common/../sysdeps/gnu/errlist.c:615 -msgid "Translator died" -msgstr "ËÝÌõÍÑ¥×¥í¥°¥é¥à¤¬»à¤ó¤Ç¤¤¤Þ¤¹" +#: sunrpc/clnt_perr.c:285 +msgid "RPC: (unknown error code)" +msgstr "RPC: (̤ÃΤΥ¨¥é¡¼¥³¡¼¥É)" -#. TRANS You tried to connect a socket that is already connected. -#. TRANS @xref{Connecting}. -#: stdio-common/../sysdeps/gnu/errlist.c:415 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:163 -msgid "Transport endpoint is already connected" -msgstr "žÁ÷À褬´û¤ËÀܳ¤µ¤ì¤Æ¤¤¤Þ¤¹" +#: sunrpc/clnt_perr.c:357 +msgid "Authentication OK" +msgstr "ǧ¾Ú OK" -#. TRANS The socket is not connected to anything. You get this error when you -#. TRANS try to transmit data over a socket, without first specifying a -#. TRANS destination for the data. For a connectionless socket (for datagram -#. TRANS protocols, such as UDP), you get @code{EDESTADDRREQ} instead. -#: stdio-common/../sysdeps/gnu/errlist.c:423 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:164 -msgid "Transport endpoint is not connected" -msgstr "žÁ÷À褬Àܳ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: sunrpc/clnt_perr.c:360 +msgid "Invalid client credential" +msgstr "̵¸ú¤Ê¥¯¥é¥¤¥¢¥ó¥È¤Î¿®Ç¤¤Ç¤¹" -#: argp/argp-help.c:1611 -#, c-format -msgid "Try `%s --help' or `%s --usage' for more information.\n" -msgstr "¾ÜºÙ¤Ï`%s --help'¤Þ¤¿¤Ï`%s --usage'¤ò¼Â¹Ô¤·¤Æ²¼¤µ¤¤.\n" +#: sunrpc/clnt_perr.c:364 +msgid "Server rejected credential" +msgstr "¥µ¡¼¥Ð¤¬¾ÚÌÀ¤òµñÈݤ·¤Þ¤·¤¿" -#: nis/nis_print.c:167 -#, c-format -msgid "Type : %s\n" -msgstr "·¿ : %s\n" +#: sunrpc/clnt_perr.c:368 +msgid "Invalid client verifier" +msgstr "̵¸ú¤Ê¥¯¥é¥¤¥¢¥ó¥È³Îǧ¤Ç¤¹" -#: nis/nis_print.c:51 -msgid "UNKNOWN" -msgstr "̤ÃÎ" +#: sunrpc/clnt_perr.c:372 +msgid "Server rejected verifier" +msgstr "¥µ¡¼¥Ð¤¬³Îǧ¤òµñÈݤ·¤Þ¤·¤¿" -#: nis/nis_error.c:73 -msgid "Unable to authenticate NIS+ client" -msgstr "NIS+ ¥¯¥é¥¤¥¢¥ó¥È¤òǧ¾Ú¤Ç¤­¤Þ¤»¤ó" +#: sunrpc/clnt_perr.c:376 +msgid "Client credential too weak" +msgstr "¥¯¥é¥¤¥¢¥ó¥È¤Î¿®Ç¤¤¬¼å¤¹¤®¤Þ¤¹" -#: nis/nis_error.c:72 -msgid "Unable to authenticate NIS+ server" -msgstr "NIS+ ¥µ¡¼¥Ð¤òǧ¾Ú¤Ç¤­¤Þ¤»¤ó" +#: sunrpc/clnt_perr.c:380 +msgid "Invalid server verifier" +msgstr "̵¸ú¤Ê¥µ¡¼¥Ð¡¼Ç§¾Ú¼Ô¤Ç¤¹" -#: nis/nis_error.c:47 -msgid "Unable to create callback" -msgstr "¥³¡¼¥ë¥Ð¥Ã¥¯¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" +#: sunrpc/clnt_perr.c:384 +msgid "Failed (unspecified error)" +msgstr "¼ºÇÔ¤·¤Þ¤·¤¿(¸¶°øÉÔÆÃÄê¤Î¥¨¥é¡¼)" -#: nis/nis_error.c:75 -msgid "Unable to create process on server" -msgstr "¥µ¡¼¥Ð¾å¤Ë¥×¥í¥»¥¹¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" +#: sunrpc/clnt_raw.c:117 +msgid "clnt_raw.c - Fatal header serialization error." +msgstr "clnt_raw.c - ¥Ø¥Ã¥À¤ÎľÎ󲽤ÇÃ×̿Ū¥¨¥é¡¼." -#: nis/nis_print.c:194 -#, c-format -msgid "Unknown (type = %d, bits = %d)\n" -msgstr "̤ÃÎ (·¿ = %d, ¥Ó¥Ã¥È = %d)\n" +#: sunrpc/clnt_tcp.c:134 sunrpc/clnt_tcp.c:137 +msgid "clnttcp_create: out of memory\n" +msgstr "clnttcp_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: inet/ruserpass.c:277 -#, c-format -msgid "Unknown .netrc keyword %s" -msgstr "̤ÃΤΠ.netrc ¥­¡¼¥ï¡¼¥É %s" +#: sunrpc/clnt_udp.c:141 sunrpc/clnt_udp.c:144 +msgid "clntudp_create: out of memory\n" +msgstr "clntudp_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: elf/../sysdeps/generic/readelflib.c:71 -#, c-format -msgid "Unknown ELFCLASS in file %s.\n" -msgstr "¥Õ¥¡¥¤¥ë %s Ãæ¤Ç̤ÃΤÎELFCLASS.\n" +#: sunrpc/clnt_unix.c:131 sunrpc/clnt_unix.c:134 +msgid "clntunix_create: out of memory\n" +msgstr "clntunix_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: nis/ypclnt.c:822 -msgid "Unknown NIS error code" -msgstr "̤ÃΤÎNIS¥¨¥é¡¼¥³¡¼¥É" +#: sunrpc/get_myaddr.c:78 +msgid "get_myaddress: ioctl (get interface configuration)" +msgstr "get_myaddress: ioctl (¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹¤ÎÀßÄê¤ò¼èÆÀ¤·¤Þ¤¹)" -#: elf/cache.c:101 -msgid "Unknown OS" -msgstr "̤ÃΤÎOS" +#: sunrpc/pm_getmaps.c:74 +msgid "pmap_getmaps rpc problem" +msgstr "pmap_getmaps rpc ¤¬ÌäÂê¤Ç¤¹" -#: nss/getent.c:771 -#, c-format -msgid "Unknown database: %s\n" -msgstr "̤ÃΤΥǡ¼¥¿¥Ù¡¼¥¹: %s\n" +#: sunrpc/pmap_clnt.c:72 +msgid "__get_myaddress: ioctl (get interface configuration)" +msgstr "__get_myaddress: ioctl (¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹¤ÎÀßÄê¤ò¼èÆÀ¤·¤Þ¤¹)" -#: posix/../sysdeps/posix/gai_strerror.c:57 -msgid "Unknown error" -msgstr "̤ÃΤΥ¨¥é¡¼" +#: sunrpc/pmap_clnt.c:137 +msgid "Cannot register service" +msgstr "¥µ¡¼¥Ó¥¹¤òÅÐÏ¿¤Ç¤­¤Þ¤»¤ó" -#: string/../sysdeps/generic/_strerror.c:48 -#: string/../sysdeps/mach/_strerror.c:88 -#: sysdeps/mach/hurd/mips/dl-machine.c:83 -msgid "Unknown error " -msgstr "̤ÃΤΥ¨¥é¡¼ " +#: sunrpc/pmap_rmt.c:190 +msgid "broadcast: ioctl (get interface configuration)" +msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥È: ioctl (¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹ÀßÄê¤ò¼èÆÀ)" -#: resolv/herror.c:68 -msgid "Unknown host" -msgstr "ÉÔÌÀ¤Ê¥Û¥¹¥È" +#: sunrpc/pmap_rmt.c:199 +msgid "broadcast: ioctl (get interface flags)" +msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥È: ioctl (¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹¥Õ¥é¥°¤ò¼èÆÀ)" -#: nis/nis_error.c:35 -msgid "Unknown object" -msgstr "ÉÔÌÀ¤Ê¥ª¥Ö¥¸¥§¥¯¥È" +#: sunrpc/pmap_rmt.c:269 +msgid "Cannot create socket for broadcast rpc" +msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥ÈRPC¤Î¤¿¤á¤Î¥½¥±¥Ã¥È¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: nscd/nscd_conf.c:187 -#, c-format -msgid "Unknown option: %s %s %s" -msgstr "ÉÔÌÀ¤Ê¥ª¥×¥·¥ç¥ó: %s %s %s" +#: sunrpc/pmap_rmt.c:276 +msgid "Cannot set socket option SO_BROADCAST" +msgstr "¥½¥±¥Ã¥È¥ª¥×¥·¥ç¥ó SO_BROADCAST ¤òÀßÄê¤Ç¤­¤Þ¤»¤ó" -#: resolv/herror.c:110 -msgid "Unknown resolver error" -msgstr "ÉÔÌÀ¤Ê¥ê¥¾¥ë¥Ð¥¨¥é¡¼" +#: sunrpc/pmap_rmt.c:328 +msgid "Cannot send broadcast packet" +msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥È¥Ñ¥±¥Ã¥È¤òÁ÷¿®¤Ç¤­¤Þ¤»¤ó" -#: resolv/herror.c:70 -msgid "Unknown server error" -msgstr "ÉÔÌÀ¤Ê¥µ¡¼¥Ð¥¨¥é¡¼" +#: sunrpc/pmap_rmt.c:353 +msgid "Broadcast poll problem" +msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥ÈÄ´ºº¤ÇÌäÂê" + +#: sunrpc/pmap_rmt.c:366 +msgid "Cannot receive reply to broadcast" +msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥È¤Ø¤Î±þÅú¤ò¼õ¤±¼è¤é¤ì¤Þ¤»¤ó" -#: string/strsignal.c:71 +#: sunrpc/rpc_main.c:288 #, c-format -msgid "Unknown signal %d" -msgstr "̤ÃΤΥ·¥°¥Ê¥ë(%d)" +msgid "%s: output would overwrite %s\n" +msgstr "%s: ½ÐÎÏ¤Ï %s ¤ò¾å½ñ¤­¤·¤Æ¤·¤Þ¤¦¤«¤â¤·¤ì¤Þ¤»¤ó\n" -#: misc/error.c:113 timezone/zic.c:390 -msgid "Unknown system error" -msgstr "̤ÃΤΥ·¥¹¥Æ¥à¥¨¥é¡¼" +#: sunrpc/rpc_main.c:295 +#, c-format +msgid "%s: unable to open %s: %m\n" +msgstr "%s: %s ¤ò³«¤±¤Þ¤»¤ó: %m\n" -#: nis/ypclnt.c:870 -msgid "Unknown ypbind error" -msgstr "ÉÔÌÀ¤Êypbind¥¨¥é¡¼" +#: sunrpc/rpc_main.c:307 +#, c-format +msgid "%s: while writing output %s: %m" +msgstr "%s: ½ÐÎÏ %s ¤ò½ñ¤­¹þ¤ßÃæ: %m" -#: posix/regex.c:1386 -msgid "Unmatched ( or \\(" -msgstr "( ¤â¤·¤¯¤Ï \\( ¤¬°ìÃפ·¤Þ¤»¤ó" +#: sunrpc/rpc_main.c:342 +#, c-format +msgid "cannot find C preprocessor: %s \n" +msgstr "C ¥×¥ê¥×¥í¥»¥Ã¥µ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s \n" -#: posix/regex.c:1410 -msgid "Unmatched ) or \\)" -msgstr ") ¤â¤·¤¯¤Ï \\) ¤¬°ìÃפ·¤Þ¤»¤ó" +#: sunrpc/rpc_main.c:350 +msgid "cannot find any C preprocessor (cpp)\n" +msgstr "¤É¤Î¤è¤¦¤Ê C ¥×¥ê¥×¥í¥»¥Ã¥µ¤â¸«¤Ä¤«¤ê¤Þ¤»¤ó (cpp)\n" -#: posix/regex.c:1383 -msgid "Unmatched [ or [^" -msgstr "[ ¤â¤·¤¯¤Ï [^ ¤¬°ìÃפ·¤Þ¤»¤ó" +#: sunrpc/rpc_main.c:419 +#, c-format +msgid "%s: C preprocessor failed with signal %d\n" +msgstr "%s: C ¥×¥ê¥×¥í¥»¥Ã¥µ¤Ï¥·¥°¥Ê¥ë %d ¤Ç¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: posix/regex.c:1389 -msgid "Unmatched \\{" -msgstr "\\{ ¤¬°ìÃפ·¤Þ¤»¤ó" +#: sunrpc/rpc_main.c:422 +#, c-format +msgid "%s: C preprocessor failed with exit code %d\n" +msgstr "%s: C ¥×¥ê¥×¥í¥»¥Ã¥µ¤Ï½ªÎ»¥³¡¼¥É %d ¤Ç¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: posix/getconf.c:1006 +#: sunrpc/rpc_main.c:462 #, c-format -msgid "Unrecognized variable `%s'" -msgstr "ÊÑ¿ô`%s'¤òǧ¼±¤Ç¤­¤Þ¤»¤ó" +msgid "illegal nettype :`%s'\n" +msgstr "ÉÔÀµ¤Ê nettype ¤Ç¤¹:`%s'\n" -#: stdio-common/../sysdeps/unix/siglist.c:42 sysdeps/generic/siglist.h:42 -msgid "Urgent I/O condition" -msgstr "¶ÛµÞ¤ÎI/O¾õ¶·¤Ç¤¹" +#: sunrpc/rpc_main.c:1104 +msgid "rpcgen: too many defines\n" +msgstr "rpcgen: ÄêµÁ¤¬Â¿¤¹¤®¤Þ¤¹\n" -#: argp/argp-help.c:1568 -msgid "Usage:" -msgstr "»ÈÍÑË¡:" +#: sunrpc/rpc_main.c:1116 +msgid "rpcgen: arglist coding error\n" +msgstr "rpcgen: °ú¿ô¥ê¥¹¥È¥³¡¼¥Ç¥£¥ó¥°¥¨¥é¡¼\n" -#: posix/getconf.c:883 +#. TRANS: the file will not be removed; this is an +#. TRANS: informative message. +#: sunrpc/rpc_main.c:1149 #, c-format -msgid "Usage: %s [-v specification] variable_name [pathname]\n" -msgstr "»ÈÍÑË¡: %s [-v »ÅÍÍ] ÊÑ¿ô̾ [¥Ñ¥¹Ì¾]\n" +msgid "file `%s' already exists and may be overwritten\n" +msgstr "¥Õ¥¡¥¤¥ë`%s'¤Ï´û¤Ë¸ºß¤·¤Þ¤¹¡£¾å½ñ¤­¤µ¤ì¤ë¤«¤â¤·¤ì¤Þ¤»¤ó\n" -#: sunrpc/rpcinfo.c:674 -msgid "Usage: rpcinfo [ -n portnum ] -u host prognum [ versnum ]\n" -msgstr "" -"»ÈÍÑË¡: rpcinfo [ -n ¥Ý¡¼¥ÈÈÖ¹æ ] -u ¥Û¥¹¥È\n" -" ¥×¥í¥°¥é¥àÈÖ¹æ [ ¥Ð¡¼¥¸¥ç¥óÈÖ¹æ ]\n" +#: sunrpc/rpc_main.c:1194 +msgid "Cannot specify more than one input file!\n" +msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë¤òÊ£¿ô»ØÄê¤Ç¤­¤Þ¤»¤ó!\n" -#: elf/ldconfig.c:127 -msgid "Use CACHE as cache file" -msgstr "¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë¤È¤·¤Æ CACHE ¤ò»ÈÍѤ·¤Þ¤¹" +#: sunrpc/rpc_main.c:1364 +msgid "This implementation doesn't support newstyle or MT-safe code!\n" +msgstr "¤³¤Î¼ÂÁõ¤Ï¿··Á¼°¤Þ¤¿¤ÏMT¥»¡¼¥Õ¤Ê¥³¡¼¥É¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó!\n" -#: elf/ldconfig.c:128 -msgid "Use CONF as configuration file" -msgstr "ÀßÄê¥Õ¥¡¥¤¥ë¤È¤·¤Æ CONF ¤ò»ÈÍѤ·¤Þ¤¹" +#: sunrpc/rpc_main.c:1373 +msgid "Cannot use netid flag with inetd flag!\n" +msgstr "inetd ¥Õ¥é¥°¤È¤È¤â¤Ë netid ¥Õ¥é¥°¤Ï»È¤¨¤Þ¤»¤ó!\n" -#: nscd/nscd.c:92 -msgid "Use separate cache for each user" -msgstr "³Æ¥æ¡¼¥¶¤ËÂФ·¤Æ°Û¤Ê¤ë¥­¥ã¥Ã¥·¥å¤ò»ÈÍѤ·¤Þ¤¹" +#: sunrpc/rpc_main.c:1385 +msgid "Cannot use netid flag without TIRPC!\n" +msgstr "TIRPC ¤Ê¤·¤Ë netid ¥Õ¥é¥°¤Ï»È¤¨¤Þ¤»¤ó!\n" -#: stdio-common/../sysdeps/unix/siglist.c:56 sysdeps/generic/siglist.h:55 -msgid "User defined signal 1" -msgstr "¥æ¡¼¥¶ÄêµÁ¥·¥°¥Ê¥ë 1" +#: sunrpc/rpc_main.c:1392 +msgid "Cannot use table flags with newstyle!\n" +msgstr "¿··Á¼°¤ò¤â¤Ä¥Æ¡¼¥Ö¥ë¥Õ¥é¥°¤Ï»È¤¨¤Þ¤»¤ó!\n" -#: stdio-common/../sysdeps/unix/siglist.c:57 sysdeps/generic/siglist.h:56 -msgid "User defined signal 2" -msgstr "¥æ¡¼¥¶ÄêµÁ¥·¥°¥Ê¥ë 2" +#: sunrpc/rpc_main.c:1411 +msgid "\"infile\" is required for template generation flags.\n" +msgstr "¥Æ¥ó¥×¥ì¡¼¥ÈÀ¸À®¥Õ¥é¥°¤Ë¤Ï\"ÆþÎÏ¥Õ¥¡¥¤¥ë\"¤¬É¬ÍפǤ¹.\n" -#: stdio-common/../sysdeps/gnu/errlist.c:673 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:109 -msgid "Value too large for defined data type" -msgstr "ÄêµÁ¤µ¤ì¤¿¥Ç¡¼¥¿·¿¤ËÂФ·¤ÆÃͤ¬Â礭¤¹¤®¤Þ¤¹" +#: sunrpc/rpc_main.c:1416 +msgid "Cannot have more than one file generation flag!\n" +msgstr "¥Õ¥¡¥¤¥ëÀ¸À®¥Õ¥é¥°¤ÏÊ£¿ô»ØÄê¤Ç¤­¤Þ¤»¤ó!\n" -#: stdio-common/../sysdeps/unix/siglist.c:52 sysdeps/generic/siglist.h:52 -msgid "Virtual timer expired" -msgstr "²¾ÁÛ¥¿¥¤¥Þ¤¬½ªÎ»¤·¤Þ¤·¤¿" +#: sunrpc/rpc_main.c:1425 +#, c-format +msgid "usage: %s infile\n" +msgstr "»ÈÍÑË¡: %s ÆþÎÏ¥Õ¥¡¥¤¥ë\n" -#: timezone/zic.c:1932 -msgid "Wild result from command execution" -msgstr "¥³¥Þ¥ó¥É¼Â¹Ô¤«¤é¤ÎÁƤ¤·ë²Ì" +#: sunrpc/rpc_main.c:1426 +#, 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" -#: stdio-common/../sysdeps/unix/siglist.c:54 sysdeps/generic/siglist.h:54 -msgid "Window changed" -msgstr "¥¦¥£¥ó¥É¥¦¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿" +#: sunrpc/rpc_main.c:1428 +#, 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" -#: locale/programs/locale.c:77 -msgid "Write names of available charmaps" -msgstr "ÍøÍѲÄǽ¤Ê¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×̾¤Î½ÐÎÏ" +#: sunrpc/rpc_main.c:1430 +#, c-format +msgid "\t%s [-s nettype]* [-o outfile] [infile]\n" +msgstr "\t%s [-s ¥Í¥Ã¥È¥¿¥¤¥×]* [-o ½ÐÎÏ¥Õ¥¡¥¤¥ë] [ÆþÎÏ¥Õ¥¡¥¤¥ë]\n" -#: locale/programs/locale.c:75 -msgid "Write names of available locales" -msgstr "ÍøÍѲÄǽ¤Ê¥í¥±¡¼¥ë̾¤Î½ÐÎÏ" +#: sunrpc/rpc_main.c:1431 +#, c-format +msgid "\t%s [-n netid]* [-o outfile] [infile]\n" +msgstr "\t%s [-n netid]* [-o ½ÐÎÏ¥Õ¥¡¥¤¥ë] [ÆþÎÏ¥Õ¥¡¥¤¥ë]\n" -#: locale/programs/locale.c:79 -msgid "Write names of selected categories" -msgstr "ÁªÂò¤·¤¿¥«¥Æ¥´¥ê̾¤Î½ÐÎÏ" +#: sunrpc/rpc_scan.c:116 +msgid "constant or identifier expected" +msgstr "Äê¿ô¤Þ¤¿¤Ï¼±Ê̻Ҥ¬Å¬Åö¤Ç¤¹" -#: locale/programs/locale.c:80 -msgid "Write names of selected keywords" -msgstr "ÁªÂò¤·¤¿¥­¡¼¥ï¡¼¥É̾¤Î½ÐÎÏ" +#: sunrpc/rpc_scan.c:312 +msgid "illegal character in file: " +msgstr "¥Õ¥¡¥¤¥ëÃæ¤ËÉÔÀµ¤Ê¥­¥ã¥é¥¯¥¿¤¬¤¢¤ê¤Þ¤¹: " -#: catgets/gencat.c:115 -msgid "Write output to file NAME" -msgstr "¥Õ¥¡¥¤¥ë NAME ¤Ø½ÐÎϤò½ñ¤­¹þ¤à" +#: sunrpc/rpc_scan.c:351 sunrpc/rpc_scan.c:377 +msgid "unterminated string constant" +msgstr "ʸ»úÎóÄê¿ô¤¬½ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó" -#: elf/cache.c:402 elf/cache.c:411 elf/cache.c:415 -msgid "Writing of cache data failed" -msgstr "¥­¥ã¥Ã¥·¥å¥Ç¡¼¥¿¤Î½ñ¹þ¤ß¤Ë¼ºÇÔ" +#: sunrpc/rpc_scan.c:383 +msgid "empty char string" +msgstr "¶õ¤Î char ʸ»úÎó" -#: elf/cache.c:419 -msgid "Writing of cache data failed." -msgstr "¥­¥ã¥Ã¥·¥å¥Ç¡¼¥¿¤Î½ñ¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿." +#: sunrpc/rpc_scan.c:525 sunrpc/rpc_scan.c:535 +msgid "preprocessor error" +msgstr "¥×¥ê¥×¥í¥»¥Ã¥µ¥¨¥é¡¼" -#: 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:909 +#: sunrpc/rpcinfo.c:237 sunrpc/rpcinfo.c:383 #, c-format -msgid "Written by %s.\n" -msgstr "%s¤Ë¤è¤ë½ñ¤­¹þ¤ß.\n" - -#: stdio-common/../sysdeps/gnu/errlist.c:837 -msgid "Wrong medium type" -msgstr "ÉÔÀµ¤Ê¥á¥Ç¥£¥¢·Á¼°¤Ç¤¹" +msgid "program %lu is not available\n" +msgstr "¥×¥í¥°¥é¥à%lu¤ÏÍøÍѤǤ­¤Þ¤»¤ó\n" -#: nis/ypclnt.c:174 +#: sunrpc/rpcinfo.c:264 sunrpc/rpcinfo.c:310 sunrpc/rpcinfo.c:333 +#: sunrpc/rpcinfo.c:407 sunrpc/rpcinfo.c:453 sunrpc/rpcinfo.c:476 +#: sunrpc/rpcinfo.c:510 #, c-format -msgid "YPBINDPROC_DOMAIN: %s\n" -msgstr "YPBINDPROC_DOMAIN: %s\n" +msgid "program %lu version %lu is not available\n" +msgstr "¥×¥í¥°¥é¥à%lu¥Ð¡¼¥¸¥ç¥ó%lu¤ÏÍøÍѤǤ­¤Þ¤»¤ó\n" -#: nis/nis_error.c:71 -msgid "Yes, 42 is the meaning of life" -msgstr "¤Ï¤¤¡¢42¤Ï¿ÍÀ¸¤ÎÊ¿¶Ñ¤Ç¤¹" +#: sunrpc/rpcinfo.c:515 +#, c-format +msgid "program %lu version %lu ready and waiting\n" +msgstr "¥×¥í¥°¥é¥à %lu ¥Ð¡¼¥¸¥ç¥ó %lu ¤Î½àÈ÷¤¬´°Î»¤·ÂÔµ¡Ãæ¤Ç¤¹\n" -#. TRANS You did @strong{what}? -#: stdio-common/../sysdeps/gnu/errlist.c:627 -msgid "You really blew it this time" -msgstr "You really blew it this time" +#: sunrpc/rpcinfo.c:556 sunrpc/rpcinfo.c:563 +msgid "rpcinfo: can't contact portmapper" +msgstr "rpcinfo: ¥Ý¡¼¥È¥Þ¥Ã¥Ñ¤ÈÀܳ¤Ç¤­¤Þ¤»¤ó" -#: timezone/zic.c:1094 -msgid "Zone continuation line end time is not after end time of previous line" -msgstr "¥¾¡¼¥óϢ³¹Ô end time ¤ÏÁ°¤Î¹Ô¤Î end time ¤è¤ê¤â¸å¤Ç¤¢¤Ã¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó" +#: sunrpc/rpcinfo.c:570 +msgid "No remote programs registered.\n" +msgstr "±ó³Ö¥×¥í¥°¥é¥à¤¬ÅÐÏ¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó.\n" -#: iconv/iconvconfig.c:114 -msgid "[DIR...]" -msgstr "[¥Ç¥£¥ì¥¯¥È¥ê...]" +#: sunrpc/rpcinfo.c:574 +msgid " program vers proto port\n" +msgstr " ¥×¥í¥°¥é¥à ¥Ð¡¼¥¸¥ç¥ó ¥×¥í¥È¥³¥ë ¥Ý¡¼¥È\n" -#: iconv/iconv_prog.c:77 -msgid "[FILE...]" -msgstr "[¥Õ¥¡¥¤¥ë...]" +#: sunrpc/rpcinfo.c:613 +msgid "(unknown)" +msgstr "(ÉÔÌÀ)" -#: debug/pcprofiledump.c:59 -msgid "[FILE]" -msgstr "[¥Õ¥¡¥¤¥ë]" +#: sunrpc/rpcinfo.c:637 +#, c-format +msgid "rpcinfo: broadcast failed: %s\n" +msgstr "rpcinfo: ¥Ö¥í¡¼¥É¥­¥ã¥¹¥È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n" -#: sunrpc/pmap_clnt.c:72 -msgid "__get_myaddress: ioctl (get interface configuration)" -msgstr "__get_myaddress: ioctl (¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹¤ÎÀßÄê¤ò¼èÆÀ¤·¤Þ¤¹)" +#: sunrpc/rpcinfo.c:658 +msgid "Sorry. You are not root\n" +msgstr "¼ºÎé. ¤¢¤Ê¤¿¤Ï root ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" -#: locale/programs/ld-collate.c:417 +#: sunrpc/rpcinfo.c:665 #, c-format -msgid "`%.*s' already defined as collating element" -msgstr "`%.*s' ¤Ï´û¤Ë¾È¹çÍ×ÁǤȤ·¤ÆÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" +msgid "rpcinfo: Could not delete registration for prog %s version %s\n" +msgstr "rpcinfo: ¥×¥í¥°¥é¥à%s¥Ð¡¼¥¸¥ç¥ó%s¤Ø¤ÎÅÐÏ¿¤òºï½ü¤Ç¤­¤Þ¤»¤ó\n" -#: locale/programs/ld-collate.c:410 -#, c-format -msgid "`%.*s' already defined as collating symbol" -msgstr "`%.*s' ¤Ï´û¤Ë¾È¹ç¥·¥ó¥Ü¥ë¤È¤·¤ÆÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" +#: sunrpc/rpcinfo.c:674 +msgid "Usage: rpcinfo [ -n portnum ] -u host prognum [ versnum ]\n" +msgstr "" +"»ÈÍÑË¡: rpcinfo [ -n ¥Ý¡¼¥ÈÈÖ¹æ ] -u ¥Û¥¹¥È\n" +" ¥×¥í¥°¥é¥àÈÖ¹æ [ ¥Ð¡¼¥¸¥ç¥óÈÖ¹æ ]\n" -#: locale/programs/ld-collate.c:394 -#, c-format -msgid "`%.*s' already defined in charmap" -msgstr "`%.*s'¤Ï´û¤Ë charmap Ãæ¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" +#: sunrpc/rpcinfo.c:676 +msgid " rpcinfo [ -n portnum ] -t host prognum [ versnum ]\n" +msgstr " rpcinfo [ -n portnum ] -t ¥Û¥¹¥È prognum [ versnum ]\n" -#: locale/programs/ld-collate.c:403 -#, c-format -msgid "`%.*s' already defined in repertoire" -msgstr "`%.*s' ¤Ï´û¤Ë¥ì¥Ñ¡¼¥È¥êÃæ¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" +#: sunrpc/rpcinfo.c:678 +msgid " rpcinfo -p [ host ]\n" +msgstr " rpcinfo -p [ ¥Û¥¹¥È ]\n" -#: 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' ¤Ç½ª¤Ã¤Æ¤¤¤Þ¤»¤ó" +#: sunrpc/rpcinfo.c:679 +msgid " rpcinfo -b prognum versnum\n" +msgstr " rpcinfo -b prognum versnum\n" + +#: sunrpc/rpcinfo.c:680 +msgid " rpcinfo -d prognum versnum\n" +msgstr " rpcinfo -d prognum versnum\n" -#: locale/programs/ld-collate.c:1281 locale/programs/ld-ctype.c:1455 +#: sunrpc/rpcinfo.c:695 #, c-format -msgid "`%s' and `%.*s' are no valid names for symbolic range" -msgstr "`%s' ¤È `%.*s' ¤Ï¥·¥ó¥Ü¥ë¤ÎÈϰϤȤ·¤ÆÉÔÀµ¤Ê̾Á°¤Ç¤¹" +msgid "rpcinfo: %s is unknown service\n" +msgstr "rpcinfo: %s¤ÏÉÔÌÀ¤Ê¥µ¡¼¥Ó¥¹¤Ç¤¹\n" -#: elf/sprof.c:762 +#: sunrpc/rpcinfo.c:732 #, c-format -msgid "`%s' is no correct profile data file for `%s'" -msgstr "%s'¤Ï`%s'¤ËÂФ¹¤ëÀµ¤·¤¤¥×¥í¥Õ¥¡¥¤¥ë¥Ç¡¼¥¿¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +msgid "rpcinfo: %s is unknown host\n" +msgstr "rpcinfo: %s¤ÏÉÔÌÀ¤Ê¥Û¥¹¥È¤Ç¤¹\n" -#: locale/programs/ld-ctype.c:699 -msgid "`digit' category has not entries in groups of ten" -msgstr "`digit' ¥«¥Æ¥´¥ê¤Ï¥°¥ë¡¼¥×Ãæ¤Ë10¸Ä¤Î¥¨¥ó¥È¥ê¤ò»ý¤Ã¤Æ¤¤¤Þ¤»¤ó" +#: sunrpc/svc_run.c:76 +msgid "svc_run: - poll failed" +msgstr "svc_run: - poll¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: posix/../sysdeps/posix/gai_strerror.c:35 -msgid "ai_family not supported" -msgstr "ai_family ¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" +#: sunrpc/svc_simple.c:87 +#, c-format +msgid "can't reassign procedure number %ld\n" +msgstr "¼ê³¤­ÈÖ¹æ %ld ¤òºÆ³ä¤êÅö¤Æ¤Ç¤­¤Þ¤»¤ó\n" -#: posix/../sysdeps/posix/gai_strerror.c:40 -msgid "ai_socktype not supported" -msgstr "ai_socktype ¤Ï¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó" +#: sunrpc/svc_simple.c:96 +msgid "couldn't create an rpc server\n" +msgstr "RPC¥µ¡¼¥Ð¤òºîÀ®¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" -#: nscd/nscd.c:130 -msgid "already running" -msgstr "´û¤Ëµ¯Æ°¤·¤Æ¤¤¤Þ¤¹" +#: sunrpc/svc_simple.c:104 +#, c-format +msgid "couldn't register prog %ld vers %ld\n" +msgstr "¥×¥í¥°¥é¥à %ld ¥Ð¡¼¥¸¥ç¥ó %ld ¤òÅÐÏ¿¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" -#: locale/programs/charmap.c:439 locale/programs/repertoire.c:184 +#: sunrpc/svc_simple.c:111 +msgid "registerrpc: out of memory\n" +msgstr "registerrpc: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" + +#: sunrpc/svc_simple.c:175 #, c-format -msgid "argument to <%s> must be a single character" -msgstr "°ú¿ô <%s> ¤Ï¥·¥ó¥°¥ë¥­¥ã¥é¥¯¥¿¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" +msgid "trouble replying to prog %d\n" +msgstr "¥×¥í¥°¥é¥à %d ¤Ø¤Î±þÅúÃæ¤ËÌäÂ꤬µ¯¤­¤Þ¤·¤¿\n" -#: locale/programs/locfile.c:126 +#: sunrpc/svc_simple.c:183 #, c-format -msgid "argument to `%s' must be a single character" -msgstr "°ú¿ô `%s' ¤Ï¥·¥ó¥°¥ë¥­¥ã¥é¥¯¥¿¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" +msgid "never registered prog %d\n" +msgstr "¥×¥í¥°¥é¥à %d ¤ÏÅÐÏ¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" -#: sunrpc/auth_unix.c:311 -msgid "auth_none.c - Fatal marshalling problem" -msgstr "auth_none.c - Ã×̿Ū¤ÊÀ°Îó¤ÎÌäÂê" +#: sunrpc/svc_tcp.c:155 +msgid "svc_tcp.c - tcp socket creation problem" +msgstr "svc_tcp.c - tcp¥½¥±¥Ã¥ÈºîÀ®¤ËÌäÂ꤬¤¢¤ê¤Þ¤¹" -#: sunrpc/auth_unix.c:106 sunrpc/auth_unix.c:112 sunrpc/auth_unix.c:142 -msgid "authunix_create: out of memory\n" -msgstr "authunix_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" +#: sunrpc/svc_tcp.c:170 +msgid "svc_tcp.c - cannot getsockname or listen" +msgstr "svc_tcp.c - getsockname¤â¤·¤¯¤Ïlisten¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/charmap.c:369 locale/programs/locfile.c:120 -#: locale/programs/locfile.c:147 locale/programs/repertoire.c:176 -msgid "bad argument" -msgstr "ÉÔÀµ¤Ê°ú¿ô¤Ç¤¹" +#: sunrpc/svc_tcp.c:181 sunrpc/svc_tcp.c:184 +msgid "svctcp_create: out of memory\n" +msgstr "svctcp_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: inet/rcmd.c:425 -msgid "bad owner" -msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô¤Ç¤¹" +#: sunrpc/svc_tcp.c:225 sunrpc/svc_tcp.c:228 +msgid "svc_tcp: makefd_xprt: out of memory\n" +msgstr "svc_tcp: makefd_xprt: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: timezone/zic.c:1216 -msgid "blank FROM field on Link line" -msgstr "Link ¹Ô¤Î FROM ¥Õ¥£¡¼¥ë¥É¤¬¶õÍó¤Ç¤¹" +#: sunrpc/svc_udp.c:128 +msgid "svcudp_create: socket creation problem" +msgstr "svcudp_create: ¥½¥±¥Ã¥È¤ÎºîÀ®¤ËÌäÂ꤬¤¢¤ê¤Þ¤¹" -#: timezone/zic.c:1220 -msgid "blank TO field on Link line" -msgstr "Link ¹Ô¤Î TO ¥Õ¥£¡¼¥ë¥É¤¬¶õÍó¤Ç¤¹" +#: sunrpc/svc_udp.c:142 +msgid "svcudp_create - cannot getsockname" +msgstr "svcudp_create - getsockname¤Ç¤­¤Þ¤»¤ó" -#: malloc/mcheck.c:302 -msgid "block freed twice\n" -msgstr "¥Ö¥í¥Ã¥¯¤Î²òÊü¤¬2ÅÙ¹Ô¤ï¤ì¤Þ¤·¤¿\n" +#: sunrpc/svc_udp.c:154 sunrpc/svc_udp.c:157 +msgid "svcudp_create: out of memory\n" +msgstr "svcudp_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: malloc/mcheck.c:305 -msgid "bogus mcheck_status, library is buggy\n" -msgstr "mcheck_status ¤¬¤¢¤¤¤Þ¤¤¤Ç¤¹¡£¥é¥¤¥Ö¥é¥ê¤Î¥Ð¥°¤Ç¤¹¡£\n" +#: sunrpc/svc_udp.c:182 sunrpc/svc_udp.c:185 +msgid "svcudp_create: xp_pad is too small for IP_PKTINFO\n" +msgstr "svcudp_create: xp_pad¤ÏIP_PKTINFO¤ËÂФ·¤Æ¾®¤µ¤¹¤®¤Þ¤¹\n" -#: sunrpc/pmap_rmt.c:186 -msgid "broadcast: ioctl (get interface configuration)" -msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥È: ioctl (¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹ÀßÄê¤ò¼èÆÀ)" +#: sunrpc/svc_udp.c:471 +msgid "enablecache: cache already enabled" +msgstr "enablecache: ¥­¥ã¥Ã¥·¥å¤Ï´û¤ËÍ­¸ú¤Ç¤¹" -#: sunrpc/pmap_rmt.c:195 -msgid "broadcast: ioctl (get interface flags)" -msgstr "¥Ö¥í¡¼¥É¥­¥ã¥¹¥È: ioctl (¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹¥Õ¥é¥°¤ò¼èÆÀ)" +#: sunrpc/svc_udp.c:477 +msgid "enablecache: could not allocate cache" +msgstr "enablecache: ¥­¥ã¥Ã¥·¥å¤ò³ÎÊݤǤ­¤Þ¤»¤ó¤Ç¤·¤¿" -#: sunrpc/svc_udp.c:528 -msgid "cache_set: could not allocate new rpc_buffer" -msgstr "cache_set: ¿·¤·¤¤rpc_buffer¤ò³ÎÊݤǤ­¤Þ¤»¤ó¤Ç¤·¤¿" +#: sunrpc/svc_udp.c:485 +msgid "enablecache: could not allocate cache data" +msgstr "enablecache: ¥­¥ã¥Ã¥·¥å¥Ç¡¼¥¿¤ò³ÎÊݤǤ­¤Þ¤»¤ó¤Ç¤·¤¿" -#: sunrpc/svc_udp.c:522 -msgid "cache_set: victim alloc failed" -msgstr "cache_set: µ¾À·Îΰè³ÎÊݤ˼ºÇÔ¤·¤Þ¤·¤¿" +#: sunrpc/svc_udp.c:492 +msgid "enablecache: could not allocate cache fifo" +msgstr "enablecache: ¥­¥ã¥Ã¥·¥åfifo¤ò³ÎÊݤǤ­¤Þ¤»¤ó¤Ç¤·¤¿" -#: sunrpc/svc_udp.c:511 +#: sunrpc/svc_udp.c:528 msgid "cache_set: victim not found" msgstr "cache_set: µ¾À·Îΰ褬¤ß¤Ä¤«¤ê¤Þ¤»¤ó" -#: timezone/zic.c:1757 -msgid "can't determine time zone abbreviation to use just after until time" -msgstr "¤Á¤ç¤¦¤É¤½¤Î»þ¹ï¤ò»ÈÍѤ¹¤ë¥¿¥¤¥à¥¾¡¼¥ó¤Î¾Êά·Á¤ò·èÄê¤Ç¤­¤Þ¤»¤ó" - -#: sunrpc/svc_simple.c:85 -#, c-format -msgid "can't reassign procedure number %ld\n" -msgstr "¼ê³¤­ÈÖ¹æ %ld ¤òºÆ³ä¤êÅö¤Æ¤Ç¤­¤Þ¤»¤ó\n" - -#: elf/dl-reloc.c:152 -msgid "can't restore segment prot after reloc" -msgstr "ºÆ³ÎÊݸå¤Ë¥»¥°¥á¥ó¥Èprot¤òºÆ³ÊǼ¤Ç¤­¤Þ¤»¤ó" +#: sunrpc/svc_udp.c:539 +msgid "cache_set: victim alloc failed" +msgstr "cache_set: µ¾À·Îΰè³ÎÊݤ˼ºÇÔ¤·¤Þ¤·¤¿" -#: locale/programs/localedef.c:487 -#, c-format -msgid "cannot add already read locale `%s' a second time" -msgstr "ÆɹþºÑ¤ß¤Î¥í¥±¡¼¥ë`%s'¤Ï2²ó¤âÄɲäǤ­¤Þ¤»¤ó" +#: sunrpc/svc_udp.c:545 +msgid "cache_set: could not allocate new rpc_buffer" +msgstr "cache_set: ¿·¤·¤¤rpc_buffer¤ò³ÎÊݤǤ­¤Þ¤»¤ó¤Ç¤·¤¿" -#: elf/dl-deps.c:454 -msgid "cannot allocate dependency list" -msgstr "°Í¸¥ê¥¹¥È¤ò³ÎÊݤǤ­¤Þ¤»¤ó" +#: sunrpc/svc_unix.c:150 +msgid "svc_unix.c - AF_UNIX socket creation problem" +msgstr "svc_unix.c - AF_UNIX¥½¥±¥Ã¥ÈºîÀ®¤ËÌäÂ꤬¤¢¤ê¤Þ¤¹" -#: elf/dl-load.c:1039 -msgid "cannot allocate memory for program header" -msgstr "¥×¥í¥°¥é¥à¥Ø¥Ã¥À¤ËÂФ¹¤ë¥á¥â¥ê¤ò³ÎÊݤǤ­¤Þ¤»¤ó" +#: sunrpc/svc_unix.c:166 +msgid "svc_unix.c - cannot getsockname or listen" +msgstr "svc_unix.c - getsockname¤â¤·¤¯¤Ïlisten¤Ç¤­¤Þ¤»¤ó" -#: elf/dl-load.c:348 -msgid "cannot allocate name record" -msgstr "̾Á°¥ì¥³¡¼¥É¤ò³ÎÊݤǤ­¤Þ¤»¤ó" +#: sunrpc/svc_unix.c:178 sunrpc/svc_unix.c:181 +msgid "svcunix_create: out of memory\n" +msgstr "svcunix_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: elf/sprof.c:930 elf/sprof.c:982 -msgid "cannot allocate symbol data" -msgstr "¥·¥ó¥Ü¥ë¾ðÊó¤ò³ÎÊݤǤ­¤Þ¤»¤ó" +#: sunrpc/svc_unix.c:222 sunrpc/svc_unix.c:225 +msgid "svc_unix: makefd_xprt: out of memory\n" +msgstr "svc_unix: makefd_xprt: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: elf/dl-deps.c:484 -msgid "cannot allocate symbol search list" -msgstr "¥·¥ó¥Ü¥ëõº÷¥ê¥¹¥È¤ò³ÎÊݤǤ­¤Þ¤»¤ó" +#: sunrpc/xdr.c:570 sunrpc/xdr.c:573 +msgid "xdr_bytes: out of memory\n" +msgstr "xdr_bytes: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: elf/dl-version.c:292 -msgid "cannot allocate version reference table" -msgstr "¥Ð¡¼¥¸¥ç¥ó»²¾È¥ê¥¹¥È¤ò³ÎÊݤǤ­¤Þ¤»¤ó" +#: sunrpc/xdr.c:725 sunrpc/xdr.c:728 +msgid "xdr_string: out of memory\n" +msgstr "xdr_string: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: elf/dl-load.c:1008 -msgid "cannot change memory protections" -msgstr "¥á¥â¥êÊݸî¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" +#: sunrpc/xdr_array.c:111 sunrpc/xdr_array.c:114 +msgid "xdr_array: out of memory\n" +msgstr "xdr_array: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: elf/dl-load.c:540 -msgid "cannot create RUNPATH/RPATH copy" -msgstr "RUNPATH/RPATH¤Î¥³¥Ô¡¼¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" +#: sunrpc/xdr_rec.c:158 sunrpc/xdr_rec.c:161 +msgid "xdrrec_create: out of memory\n" +msgstr "xdrrec_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: 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 "¥µ¡¼¥Á¥Ñ¥¹¤ËÂФ¹¤ë¥­¥ã¥Ã¥·¥å¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" +#: sunrpc/xdr_ref.c:88 sunrpc/xdr_ref.c:91 +msgid "xdr_reference: out of memory\n" +msgstr "xdr_reference: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: elf/sprof.c:715 elf/sprof.c:773 -msgid "cannot create internal descriptor" -msgstr "ÆâÉôµ­½Ò»Ò¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_callback.c:189 +msgid "unable to free arguments" +msgstr "°ú¿ô¤ò²òÊü¤Ç¤­¤Þ¤»¤ó" -#: elf/sprof.c:413 -msgid "cannot create internal descriptors" -msgstr "ÆâÉôµ­½Ò»Ò¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:30 +msgid "Probable success" +msgstr "¤ª¤½¤é¤¯À®¸ù" -#: locale/programs/locfile.c:693 -#, c-format -msgid "cannot create output file `%s' for category `%s'" -msgstr "¥«¥Æ¥´¥ê`%2$s'ÍѤνÐÎÏ¥Õ¥¡¥¤¥ë`%1$s'¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:31 +msgid "Not found" +msgstr "¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: elf/dl-load.c:590 -msgid "cannot create search path array" -msgstr "¥µ¡¼¥Á¥Ñ¥¹¥¢¥ì¥¤¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:32 +msgid "Probably not found" +msgstr "¤ª¤½¤é¤¯¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: elf/dl-load.c:1125 -msgid "cannot create searchlist" -msgstr "¥µ¡¼¥Á¥ê¥¹¥È¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:33 +msgid "Cache expired" +msgstr "¥­¥ã¥Ã¥·¥å¤¬ÇË´þ¤µ¤ì¤Þ¤·¤¿" -#: elf/dl-load.c:830 elf/dl-load.c:1724 -msgid "cannot create shared object descriptor" -msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥Èµ­½Ò»Ò¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:34 +msgid "NIS+ servers unreachable" +msgstr "NIS+ ¥µ¡¼¥Ð¤ËÆϤ­¤Þ¤»¤ó" -#: catgets/gencat.c:1315 -msgid "cannot determine escape character" -msgstr "¥¨¥¹¥±¡¼¥×¥­¥ã¥é¥¯¥¿¤ò·èÄê¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:35 +msgid "Unknown object" +msgstr "ÉÔÌÀ¤Ê¥ª¥Ö¥¸¥§¥¯¥È" -#: elf/dl-load.c:958 -msgid "cannot dynamically load executable" -msgstr "¼Â¹Ô¥Õ¥¡¥¤¥ë¤òưŪ¤Ë¥í¡¼¥É¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:36 +msgid "Server busy, try again" +msgstr "¥µ¡¼¥Ð¤¬¥Ó¥¸¡¼¾õÂ֤Ǥ¹, ºÆ»î¹Ô¤·¤Æ¤¯¤À¤µ¤¤" -#: nscd/connections.c:183 -#, c-format -msgid "cannot enable socket to accept connections: %s" -msgstr "Àܳ¤ò¼õ¤±ÉÕ¤±¤ë¥½¥±¥Ã¥È¤òÍ­¸ú¤Ë¤Ç¤­¤Þ¤»¤ó: %s" +#: nis/nis_error.c:37 +msgid "Generic system error" +msgstr "°ìÈÌŪ¤Ê¥·¥¹¥Æ¥à¥¨¥é¡¼" -#: elf/dl-open.c:121 -msgid "cannot extend global scope" -msgstr "Âç°èŪ¥¹¥³¡¼¥×¤ò³ÈÄ¥¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:38 +msgid "First/next chain broken" +msgstr "ºÇ½é/¼¡¤Î¥Á¥§¥¤¥ó¤¬²õ¤ì¤Æ¤¤¤Þ¤¹" -#: sunrpc/rpc_main.c:343 -#, c-format -msgid "cannot find C preprocessor: %s \n" -msgstr "C ¥×¥ê¥×¥í¥»¥Ã¥µ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s \n" +#: nis/nis_error.c:41 +msgid "Name not served by this server" +msgstr "̾Á°¤Ï¤³¤Î¥µ¡¼¥Ð¡¼¤Ç´ÉÍý¤µ¤ì¤Æ¤Þ¤»¤ó" -#: sunrpc/rpc_main.c:351 -msgid "cannot find any C preprocessor (cpp)\n" -msgstr "¤É¤Î¤è¤¦¤Ê C ¥×¥ê¥×¥í¥»¥Ã¥µ¤â¸«¤Ä¤«¤ê¤Þ¤»¤ó (cpp)\n" +#: nis/nis_error.c:42 +msgid "Server out of memory" +msgstr "¥µ¡¼¥Ð¤Î¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó" -#: iconv/iconvconfig.c:1159 -msgid "cannot generate output file" -msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤òÀ¸À®¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:43 +msgid "Object with same name exists" +msgstr "Ʊ¤¸Ì¾Á°¤ò»ý¤Ä¥ª¥Ö¥¸¥§¥¯¥È¤¬Â¸ºß¤·¤Þ¤¹" -#: nscd/connections.c:227 -#, c-format -msgid "cannot handle old request version %d; current version is %d" -msgstr "Í׵ᤵ¤ì¤¿¸Å¤¤¥Ð¡¼¥¸¥ç¥ó %d ¤ò°·¤¦¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¡£¸½ºß¤Î¥Ð¡¼¥¸¥ç¥ó¤Ï %d ¤Ç¤¹" +#: nis/nis_error.c:44 +msgid "Not master server for this domain" +msgstr "¤³¤Î¥É¥á¥¤¥ó¤Î¥Þ¥¹¥¿¡¼¥µ¡¼¥Ð¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: elf/sprof.c:670 -msgid "cannot load profiling data" -msgstr "¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¥Ç¡¼¥¿¤ò¥í¡¼¥É¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:45 +msgid "Invalid object for operation" +msgstr "Áàºî¤ËÂФ¹¤ë̵¸ú¤Ê¥ª¥Ö¥¸¥§¥¯¥È¤Ç¤¹" -#: elf/dl-reloc.c:62 -msgid "cannot make segment writable for relocation" -msgstr "ºÆ³ÎÊÝÍѤΥ»¥°¥á¥ó¥È¤ò½ñ¹þ¤ß²Äǽ¤Ë¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:46 +msgid "Malformed name, or illegal name" +msgstr "ÉÔÅö, ¤Þ¤¿¤ÏÉÔÀµ¤Ê̾Á°¤Ç¤¹" -#: elf/dl-load.c:1024 -msgid "cannot map zero-fill pages" -msgstr "¥¼¥í¤ÇËä¤á¤é¤ì¤¿¥Ú¡¼¥¸¤ò¥Þ¥Ã¥×¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:47 +msgid "Unable to create callback" +msgstr "¥³¡¼¥ë¥Ð¥Ã¥¯¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: inet/rcmd.c:421 -msgid "cannot open" -msgstr "³«¤±¤Þ¤»¤ó" +#: nis/nis_error.c:48 +msgid "Results sent to callback proc" +msgstr "¥³¡¼¥ë¥Ð¥Ã¥¯¥×¥í¥·¡¼¥¸¥ã¤Ë·ë²Ì¤òÁ÷¤ê¤Þ¤·¤¿" -#: sysdeps/unix/sysv/linux/lddlibc4.c:64 -#, c-format -msgid "cannot open `%s'" -msgstr "`%s'¤ò³«¤±¤Þ¤»¤ó" +#: nis/nis_error.c:49 +msgid "Not found, no such name" +msgstr "¤½¤Î¤è¤¦¤Ê̾Á°¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: debug/pcprofiledump.c:96 -msgid "cannot open input file" -msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó" +#: nis/nis_error.c:50 +msgid "Name/entry isn't unique" +msgstr "̾Á°/¥¨¥ó¥È¥ê¤¬¥æ¥Ë¡¼¥¯¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: catgets/gencat.c:288 iconv/iconv_charmap.c:159 iconv/iconv_prog.c:265 -#, c-format -msgid "cannot open input file `%s'" -msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë`%s'¤ò³«¤±¤Þ¤»¤ó" +#: nis/nis_error.c:51 +msgid "Modification failed" +msgstr "¹¹¿·¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: locale/programs/localedef.c:203 locale/programs/localedef.c:218 -#: locale/programs/localedef.c:513 locale/programs/localedef.c:533 -#, c-format -msgid "cannot open locale definition file `%s'" -msgstr "¥í¥±¡¼¥ëÄêµÁ¥Õ¥¡¥¤¥ë`%s'¤ò³«¤±¤Þ¤»¤ó" +#: nis/nis_error.c:52 +msgid "Database for table does not exist" +msgstr "¥Æ¡¼¥Ö¥ë¤Î¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬Â¸ºß¤·¤Þ¤»¤ó" -#: iconv/iconv_prog.c:209 -msgid "cannot open output file" -msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó" +#: nis/nis_error.c:53 +msgid "Entry/table type mismatch" +msgstr "¥¨¥ó¥È¥ê¤È¥Æ¡¼¥Ö¥ë¤Î·¿¤¬°ìÃפ·¤Þ¤»¤ó" -#: catgets/gencat.c:949 catgets/gencat.c:990 -#, c-format -msgid "cannot open output file `%s'" -msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë`%s'¤ò³«¤±¤Þ¤»¤ó" +#: nis/nis_error.c:54 +msgid "Link points to illegal name" +msgstr "¥ê¥ó¥¯¤¬ÉÔÀµ¤Ê̾Á°¤ò»Ø¤·¤Æ¤¤¤Þ¤¹" -#: locale/programs/locfile.c:571 -#, c-format -msgid "cannot open output file `%s' for category `%s'" -msgstr "¥«¥Æ¥´¥ê`%2$s'ÍѤνÐÎÏ¥Õ¥¡¥¤¥ë`%1$s'¤ò³«¤±¤Þ¤»¤ó" +#: nis/nis_error.c:55 +msgid "Partial success" +msgstr "ÉôʬŪ¤ËÀ®¸ù" -#: elf/dl-load.c:1737 -msgid "cannot open shared object file" -msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó" +#: nis/nis_error.c:56 +msgid "Too many attributes" +msgstr "°À­¤¬Â¿¤¹¤®¤Þ¤¹" -#: nscd/connections.c:165 -#, c-format -msgid "cannot open socket: %s" -msgstr "¥½¥±¥Ã¥È¤ò³«¤±¤Þ¤»¤ó: %s" +#: nis/nis_error.c:57 +msgid "Error in RPC subsystem" +msgstr "RPC¥µ¥Ö¥·¥¹¥Æ¥àÆ⥨¥é¡¼" -#: elf/dl-load.c:822 -msgid "cannot open zero fill device" -msgstr "¥¼¥í¤ÇËä¤á¤é¤ì¤¿¥Ç¥Ð¥¤¥¹¤ò³«¤±¤Þ¤»¤ó" +#: nis/nis_error.c:58 +msgid "Missing or malformed attribute" +msgstr "°À­¤¬¸«Åö¤¿¤é¤Ê¤¤¤«ÉÔÅö¤Ç¤¹" -#: locale/programs/charmap-dir.c:61 -#, c-format -msgid "cannot read character map directory `%s'" -msgstr "¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê`%s'¤òÆɤ߹þ¤á¤Þ¤»¤ó" +#: nis/nis_error.c:59 +msgid "Named object is not searchable" +msgstr "̾Á°ÉÕ¤­¥ª¥Ö¥¸¥§¥¯¥È¤¬¸¡º÷²Äǽ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: nscd/connections.c:125 -msgid "cannot read configuration file; this is fatal" -msgstr "ÀßÄê¥Õ¥¡¥¤¥ë¤òÆɤ߹þ¤á¤Þ¤»¤ó¡£¤³¤ì¤ÏÃ×̿Ū¤Ç¤¹" +#: nis/nis_error.c:60 +msgid "Error while talking to callback proc" +msgstr "¥³¡¼¥ë¥Ð¥Ã¥¯¥×¥í¥·¡¼¥¸¥ã¤ÈÄÌ¿®Ãæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿" -#: 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 "¥Õ¥¡¥¤¥ë¥Ç¡¼¥¿¤¬Æɤá¤Þ¤»¤ó" +#: nis/nis_error.c:61 +msgid "Non NIS+ namespace encountered" +msgstr "NIS+ ̾Á°¶õ´Ö¤ËÁø¶ø¤·¤Æ¤¤¤Þ¤»¤ó" -#: debug/pcprofiledump.c:102 -msgid "cannot read header" -msgstr "¥Ø¥Ã¥À¤¬Æɤá¤Þ¤»¤ó" +#: nis/nis_error.c:62 +msgid "Illegal object type for operation" +msgstr "Áàºî¤ËÂФ¹¤ëÉÔÀµ¤Ê¥ª¥Ö¥¸¥§¥¯¥È¥¿¥¤¥×¤Ç¤¹" -#: sysdeps/unix/sysv/linux/lddlibc4.c:68 -#, c-format -msgid "cannot read header from `%s'" -msgstr "`%s'¤Î¥Ø¥Ã¥À¤òÆɤá¤Þ¤»¤ó" +#: nis/nis_error.c:63 +msgid "Passed object is not the same object on server" +msgstr "¥Ñ¥¹¤µ¤ì¤¿¥ª¥Ö¥¸¥§¥¯¥È¤Ï¥µ¡¼¥Ð¾å¤Î¤½¤ì¤ÈƱ°ì¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: nscd/nscd_stat.c:128 -msgid "cannot read statistics data" -msgstr "Åý·×¾ðÊó¤òÆɤ߹þ¤á¤Þ¤»¤ó" +#: nis/nis_error.c:64 +msgid "Modify operation failed" +msgstr "¹¹¿·Áàºî¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: locale/programs/repertoire.c:331 -msgid "cannot safe new repertoire map" -msgstr "¿·¤·¤¤¥ì¥Ñ¡¼¥È¥ê¥Þ¥Ã¥×¤Ï°ÂÁ´¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: nis/nis_error.c:65 +msgid "Query illegal for named table" +msgstr "named table ¤ËÂФ·¤ÆÉÔÀµ¤Ê¥¯¥¨¥ê¤Ç¤¹" -#: elf/dl-load.c:784 -msgid "cannot stat shared object" -msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤òstat¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_error.c:66 +msgid "Attempt to remove a non-empty table" +msgstr "¶õ¤Ç¤Ê¤¤¥Æ¡¼¥Ö¥ë¤òºï½ü¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹" -#: nscd/cache.c:150 nscd/connections.c:151 -#, c-format -msgid "cannot stat() file `%s': %s" -msgstr "¥Õ¥¡¥¤¥ë`%s'¤¬ stat() ¤Ç¤­¤Þ¤»¤ó: %s" +#: nis/nis_error.c:67 +msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" +msgstr "NIS+ ¥³¡¼¥ë¥É¥¹¥¿¡¼¥È¥Õ¥¡¥¤¥ë¤Ø¤Î¥¢¥¯¥»¥¹¤Ç¥¨¥é¡¼. NIS+ ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹¤«?" -#: locale/programs/localedef.c:230 -#, c-format -msgid "cannot write output files to `%s'" -msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë`%s'¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó" +#: nis/nis_error.c:68 +msgid "Full resync required for directory" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ËÂФ¹¤ë´°Á´ºÆsync¤¬Í׵ᤵ¤ì¤Þ¤·¤¿" -#: nscd/connections.c:265 nscd/connections.c:287 -#, c-format -msgid "cannot write result: %s" -msgstr "·ë²Ì¤ò½ñ¤­¹þ¤á¤Þ¤»¤ó: %s" +#: nis/nis_error.c:69 +msgid "NIS+ operation failed" +msgstr "NIS+ ¤ÎÁàºî¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: nscd/nscd_stat.c:87 -#, c-format -msgid "cannot write statistics: %s" -msgstr "Åý·×¤ò½ñ¤­¹þ¤á¤Þ¤»¤ó: %s" +#: nis/nis_error.c:70 +msgid "NIS+ service is unavailable or not installed" +msgstr "NIS+ ¥µ¡¼¥Ó¥¹¤¬ÍøÍÑÉÔǽ¤«¡¢¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: 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'¤Ë¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" +#: nis/nis_error.c:71 +msgid "Yes, 42 is the meaning of life" +msgstr "¤Ï¤¤¡¢42¤Ï¿ÍÀ¸¤ÎÊ¿¶Ñ¤Ç¤¹" -#: 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'¤Ë¤¢¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" +#: nis/nis_error.c:72 +msgid "Unable to authenticate NIS+ server" +msgstr "NIS+ ¥µ¡¼¥Ð¤òǧ¾Ú¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/ld-ctype.c:587 -msgid "character not defined in character map" -msgstr "ʸ»ú ¤¬¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: nis/nis_error.c:73 +msgid "Unable to authenticate NIS+ client" +msgstr "NIS+ ¥¯¥é¥¤¥¢¥ó¥È¤òǧ¾Ú¤Ç¤­¤Þ¤»¤ó" -#: 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'¤Ë¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" +#: nis/nis_error.c:74 +msgid "No file space on server" +msgstr "¥µ¡¼¥Ð¤Ë¥Õ¥¡¥¤¥ë¤ÎÎΰ褬¤¢¤ê¤Þ¤»¤ó" -#: 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'¤Ë¤¢¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" +#: nis/nis_error.c:75 +msgid "Unable to create process on server" +msgstr "¥µ¡¼¥Ð¾å¤Ë¥×¥í¥»¥¹¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/ld-ctype.c:3032 -#, c-format -msgid "character `%s' not defined while needed as default value" -msgstr "¥Ç¥Õ¥©¥ë¥ÈÃͤȤ·¤ÆɬÍפʥ­¥ã¥é¥¯¥¿`%s'¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: nis/nis_error.c:76 +msgid "Master server busy, full dump rescheduled." +msgstr "¥Þ¥¹¥¿¡¼¥µ¡¼¥Ð¤¬¥Ó¥¸¡¼¤Ç¤¹, ¥Õ¥ë¥À¥ó¥×¤ÏºÆ¥¹¥±¥¸¥å¡¼¥ë¤·¤Þ¤·¤¿." -#: locale/programs/ld-ctype.c:1223 +#: nis/nis_local_names.c:126 #, c-format -msgid "character class `%s' already defined" -msgstr "¥­¥ã¥é¥¯¥¿¥¯¥é¥¹`%s'¤Ï¤¹¤Ç¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" +msgid "LOCAL entry for UID %d in directory %s not unique\n" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %2$s ¤Î UID %1$d ¤ËÂФ¹¤ë¥í¡¼¥«¥ë¥¨¥ó¥È¥ê¤¬¥æ¥Ë¡¼¥¯¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" -#: locale/programs/ld-ctype.c:1255 -#, c-format -msgid "character map `%s' already defined" -msgstr "¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×`%s'¤Ï¤¹¤Ç¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" +#: nis/nis_print.c:51 +msgid "UNKNOWN" +msgstr "̤ÃÎ" -#: 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" +#: nis/nis_print.c:109 +msgid "BOGUS OBJECT\n" +msgstr "BOGUS OBJECT\n" -#: locale/programs/charmap.c:140 -#, c-format -msgid "character map file `%s' not found" -msgstr "¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¥Õ¥¡¥¤¥ë `%s' ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +#: nis/nis_print.c:112 +msgid "NO OBJECT\n" +msgstr "¥ª¥Ö¥¸¥§¥¯¥È¤¬¤¢¤ê¤Þ¤»¤ó\n" -#: locale/programs/charmap.c:465 -msgid "character sets with locking states are not supported" -msgstr "¥í¥Ã¥¯¾õÂÖ¤ò»ý¤Ä¥­¥ã¥é¥¯¥¿½¸¹ç¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: nis/nis_print.c:115 +msgid "DIRECTORY\n" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê\n" -#: intl/tst-codeset.c:40 intl/tst-codeset.c:50 -msgid "cheese" -msgstr "cheese" +#: nis/nis_print.c:118 +msgid "GROUP\n" +msgstr "¥°¥ë¡¼¥×\n" -#: locale/programs/localedef.c:482 -msgid "circular dependencies between locale definitions" -msgstr "¥í¥±¡¼¥ëÄêµÁÃæ¤Ç°Í¸´Ø·¸¤Î¥ë¡¼¥×¤¬¤¢¤ê¤Þ¤¹" +#: nis/nis_print.c:121 +msgid "TABLE\n" +msgstr "¥Æ¡¼¥Ö¥ë\n" -#: sunrpc/clnt_raw.c:115 -msgid "clnt_raw.c - Fatal header serialization error." -msgstr "clnt_raw.c - ¥Ø¥Ã¥À¤ÎľÎ󲽤ÇÃ×̿Ū¥¨¥é¡¼." +#: nis/nis_print.c:124 +msgid "ENTRY\n" +msgstr "¥¨¥ó¥È¥ê\n" -#: sunrpc/clnt_tcp.c:127 sunrpc/clnt_tcp.c:136 -msgid "clnttcp_create: out of memory\n" -msgstr "clnttcp_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" +#: nis/nis_print.c:127 +msgid "LINK\n" +msgstr "LINK\n" -#: sunrpc/clnt_udp.c:132 sunrpc/clnt_udp.c:143 -msgid "clntudp_create: out of memory\n" -msgstr "clntudp_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" +#: nis/nis_print.c:130 +msgid "PRIVATE\n" +msgstr "PRIVATE\n" -#: sunrpc/clnt_unix.c:125 sunrpc/clnt_unix.c:134 -msgid "clntunix_create: out of memory\n" -msgstr "clntunix_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" +#: nis/nis_print.c:133 +msgid "(Unknown object)\n" +msgstr "(ÉÔÌÀ¤Ê¥ª¥Ö¥¸¥§¥¯¥È¤Ç¤¹)\n" -#: sunrpc/rpc_scan.c:116 -msgid "constant or identifier expected" -msgstr "Äê¿ô¤Þ¤¿¤Ï¼±Ê̻Ҥ¬Å¬Åö¤Ç¤¹" +#: nis/nis_print.c:166 +#, c-format +msgid "Name : `%s'\n" +msgstr "̾Á° : `%s'\n" -#: iconv/iconv_prog.c:231 +#: nis/nis_print.c:167 #, c-format -msgid "conversion from `%s' to `%s' not supported" -msgstr "`%s'¤«¤é`%s'¤Ø¤ÎÊÑ´¹¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +msgid "Type : %s\n" +msgstr "·¿ : %s\n" -#: catgets/gencat.c:1289 -msgid "conversion modules not available" -msgstr "ÊÑ´¹¥â¥¸¥å¡¼¥ë¤¬ÍøÍѤǤ­¤Þ¤»¤ó" +#: nis/nis_print.c:172 +msgid "Master Server :\n" +msgstr "¥Þ¥¹¥¿¡¼¥µ¡¼¥Ð:\n" -#: locale/programs/ld-monetary.c:902 -msgid "conversion rate value cannot be zero" -msgstr "ÊÑ´¹¥ì¡¼¥ÈÃͤϥ¼¥í¤Ë¤Ï¤Ç¤­¤Þ¤»¤ó" +#: nis/nis_print.c:174 +msgid "Replicate :\n" +msgstr "Ê£À½ :\n" -#: iconv/iconv_prog.c:427 iconv/iconv_prog.c:452 -msgid "conversion stopped due to problem in writing the output" -msgstr "½ÐÎϽñ¤­½Ð¤·Ãæ¤ËÌäÂ꤬¤¢¤Ã¤¿¤¿¤áÊÑ´¹¤òÃæ»ß¤·¤Þ¤·¤¿" +#: nis/nis_print.c:175 +#, c-format +msgid "\tName : %s\n" +msgstr "\t̾Á° : %s\n" -#: sunrpc/svc_simple.c:93 -msgid "couldn't create an rpc server\n" -msgstr "RPC¥µ¡¼¥Ð¤òºîÀ®¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" +#: nis/nis_print.c:176 +msgid "\tPublic Key : " +msgstr "\t¸ø³«¸° : " -#: sunrpc/svc_simple.c:101 -#, c-format -msgid "couldn't register prog %ld vers %ld\n" -msgstr "¥×¥í¥°¥é¥à %ld ¥Ð¡¼¥¸¥ç¥ó %ld ¤òÅÐÏ¿¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" +#: nis/nis_print.c:180 +msgid "None.\n" +msgstr "½ªÎ».\n" -#: nss/getent.c:51 -msgid "database [key ...]" -msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹ [¥­¡¼ ...]" +#: nis/nis_print.c:183 +#, c-format +msgid "Diffie-Hellmann (%d bits)\n" +msgstr "Diffie-Hellmann (%d ¥Ó¥Ã¥È)\n" -#: locale/programs/charmap.c:197 +#: nis/nis_print.c:188 #, c-format -msgid "default character map file `%s' not found" -msgstr "ɸ½à¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¥Õ¥¡¥¤¥ë`%s'¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +msgid "RSA (%d bits)\n" +msgstr "RSA (%d ¥Ó¥Ã¥È)\n" -#: locale/programs/charmap.c:397 +#: nis/nis_print.c:191 +msgid "Kerberos.\n" +msgstr "Kerberos.\n" + +#: nis/nis_print.c:194 #, c-format -msgid "duplicate definition of <%s>" -msgstr "<%s> ¤ÎÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" +msgid "Unknown (type = %d, bits = %d)\n" +msgstr "̤ÃÎ (·¿ = %d, ¥Ó¥Ã¥È = %d)\n" -#: locale/programs/ld-collate.c:3062 +#: nis/nis_print.c:205 #, c-format -msgid "duplicate definition of script `%s'" -msgstr "¥¹¥¯¥ê¥×¥È `%s' ¤ÎÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" +msgid "\tUniversal addresses (%u)\n" +msgstr "\t¥æ¥Ë¥Ð¡¼¥µ¥ë¥¢¥É¥ì¥¹ (%u)\n" -#: catgets/gencat.c:430 -msgid "duplicate set definition" -msgstr "ÀßÄê¤ÎÄêµÁ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" +#: nis/nis_print.c:227 +msgid "Time to live : " +msgstr "À¸Â¸»þ´Ö : " -#: timezone/zic.c:1009 -#, c-format -msgid "duplicate zone name %s (file \"%s\", line %d)" -msgstr "¥¾¡¼¥ó̾ %s ¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹(¥Õ¥¡¥¤¥ë\"%s\", %d ¹Ô)" +#: nis/nis_print.c:229 +msgid "Default Access rights :\n" +msgstr "¥Ç¥Õ¥©¥ë¥È¥¢¥¯¥»¥¹¸¢¸Â :\n" -#: locale/programs/ld-ctype.c:2559 +#: nis/nis_print.c:238 #, c-format -msgid "duplicated definition for mapping `%s'" -msgstr "½ÅÊ£¤·¤¿¥Þ¥Ã¥Ô¥ó¥° `%s' ¤ÎÄêµÁ" +msgid "\tType : %s\n" +msgstr "\t·¿ : %s\n" -#: catgets/gencat.c:631 -msgid "duplicated message identifier" -msgstr "½ÅÊ£¤·¤¿¥á¥Ã¥»¡¼¥¸¼±ÊÌ»Ò" +#: nis/nis_print.c:239 +msgid "\tAccess rights: " +msgstr "\t¥¢¥¯¥»¥¹¸¢¸Â : " -#: catgets/gencat.c:603 -msgid "duplicated message number" -msgstr "½ÅÊ£¤·¤¿¥á¥Ã¥»¡¼¥¸ÈÖ¹æ" +#: nis/nis_print.c:252 +msgid "Group Flags :" +msgstr "¥°¥ë¡¼¥×¥Õ¥é¥°:" -#: locale/programs/ld-ctype.c:2370 -msgid "ellipsis range must be marked by two operands of same type" -msgstr "¾Êά¤ÎÈϰϤÏƱ¤¸·¿¤Î2¤Ä¤Î¥ª¥Ú¥é¥ó¥É¤Ë¤è¤Ã¤Æ¥Þ¡¼¥¯¤Å¤±¤µ¤ì¤Æ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" +#: nis/nis_print.c:255 +msgid "" +"\n" +"Group Members :\n" +msgstr "" +"\n" +"¥°¥ë¡¼¥×¥á¥ó¥Ð :\n" -#: sunrpc/rpc_scan.c:383 -msgid "empty char string" -msgstr "¶õ¤Î char ʸ»úÎó" +#: nis/nis_print.c:266 +#, c-format +msgid "Table Type : %s\n" +msgstr "¥Æ¡¼¥Ö¥ë·¿ : %s\n" -#: elf/dl-open.c:219 -msgid "empty dynamic string token substitution" -msgstr "¶õ¤ÊưŪʸ»úÎó¥È¡¼¥¯¥ó¤ÎÂåÆþ" +#: nis/nis_print.c:267 +#, c-format +msgid "Number of Columns : %d\n" +msgstr "¥«¥é¥à¿ô : %d\n" -#: elf/dl-deps.c:113 -msgid "empty dynamics string token substitution" -msgstr "¶õ¤ÊưŪʸ»úÎó¥È¡¼¥¯¥ó¤ÎÂåÆþ" +#: nis/nis_print.c:268 +#, c-format +msgid "Character Separator : %c\n" +msgstr "ʸ»ú¥»¥Ñ¥ì¡¼¥¿ : %c\n" -#: sunrpc/svc_udp.c:454 -msgid "enablecache: cache already enabled" -msgstr "enablecache: ¥­¥ã¥Ã¥·¥å¤Ï´û¤ËÍ­¸ú¤Ç¤¹" +#: nis/nis_print.c:269 +#, c-format +msgid "Search Path : %s\n" +msgstr "¸¡º÷¥Ñ¥¹ : %s\n" -#: sunrpc/svc_udp.c:460 -msgid "enablecache: could not allocate cache" -msgstr "enablecache: ¥­¥ã¥Ã¥·¥å¤ò³ÎÊݤǤ­¤Þ¤»¤ó¤Ç¤·¤¿" +#: nis/nis_print.c:270 +msgid "Columns :\n" +msgstr "¥«¥é¥à :\n" -#: sunrpc/svc_udp.c:468 -msgid "enablecache: could not allocate cache data" -msgstr "enablecache: ¥­¥ã¥Ã¥·¥å¥Ç¡¼¥¿¤ò³ÎÊݤǤ­¤Þ¤»¤ó¤Ç¤·¤¿" +#: nis/nis_print.c:273 +#, c-format +msgid "\t[%d]\tName : %s\n" +msgstr "\t[%d]\t̾Á° : %s\n" -#: sunrpc/svc_udp.c:475 -msgid "enablecache: could not allocate cache fifo" -msgstr "enablecache: ¥­¥ã¥Ã¥·¥åfifo¤ò³ÎÊݤǤ­¤Þ¤»¤ó¤Ç¤·¤¿" +#: nis/nis_print.c:275 +msgid "\t\tAttributes : " +msgstr "\t\t°À­ : " -#: iconv/iconv_prog.c:61 -msgid "encoding for output" -msgstr "½ÐÎÏ»þ¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°" +#: nis/nis_print.c:277 +msgid "\t\tAccess Rights : " +msgstr "\t\t¥¢¥¯¥»¥¹¸¢¸Â : " -#: iconv/iconv_prog.c:60 -msgid "encoding of original text" -msgstr "¸µ¤Î¥Æ¥­¥¹¥È¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°" +#: nis/nis_print.c:286 +msgid "Linked Object Type : " +msgstr "¥ê¥ó¥¯¤µ¤ì¤¿¥ª¥Ö¥¸¥§¥¯¥È·¿ : " -#: nscd/connections.c:366 nscd/connections.c:460 +#: nis/nis_print.c:288 #, c-format -msgid "error getting callers id: %s" -msgstr "¸Æ¤Ó½Ð¤·ID¤Î¼èÆÀ¤Ç¥¨¥é¡¼: %s" - -#: locale/programs/ld-collate.c:3032 -msgid "error while adding equivalent collating symbol" -msgstr "Åù²Á¤Ê¾È¹ç¥·¥ó¥Ü¥ëÄɲÃÃæ¤Ç¥¨¥é¡¼" +msgid "Linked to : %s\n" +msgstr "¥ê¥ó¥¯Àè : %s\n" -#: iconv/iconv_charmap.c:177 iconv/iconv_prog.c:283 +#: nis/nis_print.c:297 #, c-format -msgid "error while closing input `%s'" -msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë `%s' ¤òÊĤ¸¤Æ¤¤¤ë´Ö¤Î¥¨¥é¡¼" - -#: iconv/iconv_prog.c:330 -msgid "error while closing output file" -msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤òÊĤ¸¤Æ¤¤¤ë´Ö¤Î¥¨¥é¡¼" - -#: elf/sprof.c:706 -msgid "error while closing the profiling data file" -msgstr "¥×¥í¥Õ¥¡¥¤¥ë¾ðÊó¥Õ¥¡¥¤¥ë¤òÊĤ¸¤Æ¤¤¤ë´Ö¤Î¥¨¥é¡¼" +msgid "\tEntry data of type %s\n" +msgstr "\t¥¨¥ó¥È¥ê¥Ç¡¼¥¿¤Î·¿ %s\n" -#: 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 "ÆþÎÏÆɤ߹þ¤ßÃæ¤Î¥¨¥é¡¼" +#: nis/nis_print.c:300 +#, c-format +msgid "\t[%u] - [%u bytes] " +msgstr "\t[%u] - [%u¥Ð¥¤¥È] " -#: locale/programs/locfile.h:59 -msgid "expect string argument for `copy'" -msgstr "`copy'¤Ë¤Ïʸ»úÎó°ú¿ô¤¬´üÂÔ¤µ¤ì¤Þ¤¹" +#: nis/nis_print.c:303 +msgid "Encrypted data\n" +msgstr "°Å¹æ²½¥Ç¡¼¥¿\n" -#: timezone/zic.c:899 -msgid "expected continuation line not found" -msgstr "·Ñ³¹Ô¤¬´üÂÔ¤µ¤ì¤Þ¤·¤¿¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +#: nis/nis_print.c:305 +msgid "Binary data\n" +msgstr "¥Ð¥¤¥Ê¥ê¥Ç¡¼¥¿\n" -#: locale/programs/ld-time.c:1027 -msgid "extra trailing semicolon" -msgstr ";·×¤Ê¥»¥ß¥³¥í¥ó¤¬»Ä¤Ã¤Æ¤¤¤Þ¤¹" +#: nis/nis_print.c:320 +#, c-format +msgid "Object Name : %s\n" +msgstr "¥ª¥Ö¥¸¥§¥¯¥È̾: %s\n" -#: elf/sprof.c:404 +#: nis/nis_print.c:321 #, c-format -msgid "failed to load shared object `%s'" -msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È`%s' ¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ" +msgid "Directory : %s\n" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê : %s\n" -#: elf/sprof.c:600 -msgid "failed to load symbol data" -msgstr "¥·¥ó¥Ü¥ë¾ðÊó¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ" +#: nis/nis_print.c:322 +#, c-format +msgid "Owner : %s\n" +msgstr "½êÍ­¼Ô : %s\n" -#: elf/dl-load.c:771 -msgid "failed to map segment from shared object" -msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤Î¥»¥°¥á¥ó¥È¤ò¥Þ¥Ã¥×¤¹¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: nis/nis_print.c:323 +#, c-format +msgid "Group : %s\n" +msgstr "¥°¥ë¡¼¥× : %s\n" -#: elf/sprof.c:698 -msgid "failed to mmap the profiling data file" -msgstr "¥×¥í¥Õ¥¡¥¤¥ë¾ðÊó¥Õ¥¡¥¤¥ë¤Îmmap¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: nis/nis_print.c:324 +msgid "Access Rights : " +msgstr "¥¢¥¯¥»¥¹¸¢¸Â : " -#: iconv/iconv_prog.c:235 -msgid "failed to start conversion processing" -msgstr "ÊÑ´¹½èÍý¤Î³«»Ï¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: nis/nis_print.c:326 +msgid "" +"\n" +"Time to Live : " +msgstr "" +"\n" +"À¸Â¸»þ´Ö : " -#: locale/programs/locfile.c:596 +#: nis/nis_print.c:329 #, c-format -msgid "failure while writing data for category `%s'" -msgstr "¥«¥Æ¥´¥ê`%s'¤Î¥Ç¡¼¥¿¤ò½ñ¤­¹þ¤ßÃæ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +msgid "Creation Time : %s" +msgstr "ºîÀ®Æü»þ : %s" -#: elf/../sysdeps/generic/readelflib.c:35 +#: nis/nis_print.c:331 #, c-format -msgid "file %s is truncated\n" -msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¥È¥é¥ó¥±¡¼¥È(û¤¯)¤µ¤ì¤Þ¤·¤¿\n" +msgid "Mod. Time : %s" +msgstr "¹¹¿·»þ¹ï : %s" -#. TRANS: the file will not be removed; this is an -#. TRANS: informative message. -#: sunrpc/rpc_main.c:1150 +#: nis/nis_print.c:332 +msgid "Object Type : " +msgstr "¥ª¥Ö¥¸¥§¥¯¥È·¿: " + +#: nis/nis_print.c:352 #, c-format -msgid "file `%s' already exists and may be overwritten\n" -msgstr "¥Õ¥¡¥¤¥ë`%s'¤Ï´û¤Ë¸ºß¤·¤Þ¤¹¡£¾å½ñ¤­¤µ¤ì¤ë¤«¤â¤·¤ì¤Þ¤»¤ó\n" +msgid " Data Length = %u\n" +msgstr " ¥Ç¡¼¥¿Ä¹ = %u\n" -#: elf/dl-load.c:1247 -msgid "file too short" -msgstr "¥Õ¥¡¥¤¥ë¤¬¾®¤µ¤¹¤®¤Þ¤¹" +#: nis/nis_print.c:365 +#, c-format +msgid "Status : %s\n" +msgstr "¥¹¥Æ¡¼¥¿¥¹ : %s\n" -#: inet/rcmd.c:423 -msgid "fstat failed" -msgstr "fstat¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: nis/nis_print.c:366 +#, c-format +msgid "Number of objects : %u\n" +msgstr "¥ª¥Ö¥¸¥§¥¯¥È¿ô : %u\n" -#: locale/programs/linereader.c:388 -msgid "garbage at end of character code specification" -msgstr "¥­¥ã¥é¥¯¥¿¥³¡¼¥É»ØÄê¤Î½ª¤ï¤ê¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹" +#: nis/nis_print.c:370 +#, c-format +msgid "Object #%d:\n" +msgstr "¥ª¥Ö¥¸¥§¥¯¥È #%d:\n" -#: locale/programs/linereader.c:276 -msgid "garbage at end of number" -msgstr "¿ô»ú¤Î½ª¤ï¤ê¤Ë¥´¥ß¤¬¤¢¤ê¤Þ¤¹" +#: nis/nis_print_group_entry.c:115 +#, c-format +msgid "Group entry for \"%s.%s\" group:\n" +msgstr "¥°¥ë¡¼¥×¥¨¥ó¥È¥ê \"%s.%s\" ¥°¥ë¡¼¥×:\n" -#: elf/sprof.c:77 -msgid "generate call graph" -msgstr "¸Æ¤Ó½Ð¤·¥°¥é¥Õ¤òÀ¸À®¤·¤Þ¤¹" +#: nis/nis_print_group_entry.c:123 +msgid " Explicit members:\n" +msgstr " ÌÀ¼¨Åª¥á¥ó¥Ð:\n" -#: elf/sprof.c:76 -msgid "generate flat profile with counts and ticks" -msgstr "¥«¥¦¥ó¥È¤È¥Æ¥£¥Ã¥¯¤ò¥Õ¥é¥Ã¥È¤Ë¥×¥í¥Õ¥¡¥¤¥ëÀ¸À®¤·¤Þ¤¹" +#: nis/nis_print_group_entry.c:128 +msgid " No explicit members\n" +msgstr " ÈóÌÀ¼¨Åª¥á¥ó¥Ð\n" -#: sunrpc/get_myaddr.c:78 -msgid "get_myaddress: ioctl (get interface configuration)" -msgstr "get_myaddress: ioctl (¥¤¥ó¥¿¡¼¥Õ¥§¡¼¥¹¤ÎÀßÄê¤ò¼èÆÀ¤·¤Þ¤¹)" +#: nis/nis_print_group_entry.c:131 +msgid " Implicit members:\n" +msgstr " °ÅÌÛŪ¥á¥ó¥Ð:\n" -#: nss/getent.c:702 -msgid "getent - get entries from administrative database." -msgstr "getent - ´ÉÍý¥Ç¡¼¥¿¥Ù¡¼¥¹¤«¤é¥¨¥ó¥È¥ê¤òÆÀ¤ë" +#: nis/nis_print_group_entry.c:136 +msgid " No implicit members\n" +msgstr " Èó°ÅÌÛŪ¥á¥ó¥Ð\n" -#: nscd/connections.c:221 -#, c-format -msgid "handle_request: request received (Version = %d)" -msgstr "handle_request: Í׵᤬ÅþÃ夷¤Þ¤·¤¿ (¥Ð¡¼¥¸¥ç¥ó = %d)" +#: nis/nis_print_group_entry.c:139 +msgid " Recursive members:\n" +msgstr " ºÆµ¢Åª¥á¥ó¥Ð:\n" -#: timezone/zic.c:643 -msgid "hard link failed, symbolic link used" -msgstr "¥Ï¡¼¥É¥ê¥ó¥¯¤Ë¼ºÇÔ¤·¤¿¤¿¤á¡¢¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤ò»È¤¤¤Þ¤¹" +#: nis/nis_print_group_entry.c:144 +msgid " No recursive members\n" +msgstr " ÈóºÆµ¢Åª¥á¥ó¥Ð\n" -#: inet/rcmd.c:429 -msgid "hard linked somewhere" -msgstr "¤É¤³¤«¤Ç¥Ï¡¼¥É¥ê¥ó¥¯¤µ¤ì¤Æ¤¤¤Þ¤¹" +#: nis/nis_print_group_entry.c:147 nis/nis_print_group_entry.c:163 +msgid " Explicit nonmembers:\n" +msgstr " ÌÀ¼¨ÅªÈó¥á¥ó¥Ð:\n" -#: locale/programs/charmap.c:986 locale/programs/repertoire.c:430 -msgid "hexadecimal range format should use only capital characters" -msgstr "16¿Ê¿ô¤ÎÈÏ°Ï¥Õ¥©¡¼¥Þ¥Ã¥È¤Ï±ÑÂçʸ»ú¤Ç¤Î¤ß»ÈÍѤ¹¤Ù¤­¤Ç¤¹" +#: nis/nis_print_group_entry.c:152 +msgid " No explicit nonmembers\n" +msgstr " ÈóÌÀ¼¨ÅªÈó¥á¥ó¥Ð\n" -#: timezone/zic.c:1193 -msgid "illegal CORRECTION field on Leap line" -msgstr "Leap ¹Ô¤ËÉÔÀµ¤Ê CORRECTION ¥Õ¥£¡¼¥ë¥É¤¬¤¢¤ê¤Þ¤¹" +#: nis/nis_print_group_entry.c:155 +msgid " Implicit nonmembers:\n" +msgstr " °ÅÌÛŪÈó¥á¥ó¥Ð:\n" -#: timezone/zic.c:1197 -msgid "illegal Rolling/Stationary field on Leap line" -msgstr "Leap ¹Ô¤ËÉÔÀµ¤Ê Rolling/Stationary ¥Õ¥£¡¼¥ë¥É¤¬¤¢¤ê¤Þ¤¹" +#: nis/nis_print_group_entry.c:160 +msgid " No implicit nonmembers\n" +msgstr " Èó°ÅÌÛŪÈó¥á¥ó¥Ð\n" -#: sunrpc/rpc_scan.c:312 -msgid "illegal character in file: " -msgstr "¥Õ¥¡¥¤¥ëÃæ¤ËÉÔÀµ¤Ê¥­¥ã¥é¥¯¥¿¤¬¤¢¤ê¤Þ¤¹: " +#: nis/nis_print_group_entry.c:168 +msgid " No recursive nonmembers\n" +msgstr " ÈóºÆµ¢ÅªÈó¥á¥ó¥Ð\n" -#: locale/programs/linereader.c:600 -msgid "illegal escape sequence at end of string" -msgstr "ʸ»úÎó¤Î½ª¤ï¤ê¤ËÉÔÀµ¤Ê¥¨¥¹¥±¡¼¥×¥·¡¼¥±¥ó¥¹¤¬¤¢¤ê¤Þ¤·¤¿" +#: nis/nss_nisplus/nisplus-publickey.c:96 +#: nis/nss_nisplus/nisplus-publickey.c:172 +#, c-format +msgid "DES entry for netname %s not unique\n" +msgstr "¥Í¥Ã¥È̾ %s ¤Î DES ¥¨¥ó¥È¥ê¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹\n" -#: iconv/iconv_charmap.c:443 +#: nis/nss_nisplus/nisplus-publickey.c:208 #, c-format -msgid "illegal input sequence at position %Zd" -msgstr "°ÌÃÖ %Zd ¤ÇÉÔÀµ¤ÊÆþÎÏ¥·¡¼¥±¥ó¥¹¤¬¤¢¤ê¤Þ¤·¤¿" +msgid "netname2user: missing group id list in `%s'." +msgstr "netname2user: `%s'¤Ë¥°¥ë¡¼¥×ID¥ê¥¹¥È¤¬¤¢¤ê¤Þ¤»¤ó." -#: iconv/iconv_prog.c:469 +#: nis/nss_nisplus/nisplus-publickey.c:285 +#: nis/nss_nisplus/nisplus-publickey.c:291 +#: nis/nss_nisplus/nisplus-publickey.c:350 +#: nis/nss_nisplus/nisplus-publickey.c:359 #, c-format -msgid "illegal input sequence at position %ld" -msgstr "°ÌÃÖ %ld ¤ÇÉÔÀµ¤ÊÆþÎÏ¥·¡¼¥±¥ó¥¹¤¬¤¢¤ê¤Þ¤·¤¿" +msgid "netname2user: (nis+ lookup): %s\n" +msgstr "netname2user: (nis+ lookup): %s\n" -#: sunrpc/rpc_main.c:463 +#: nis/nss_nisplus/nisplus-publickey.c:304 #, c-format -msgid "illegal nettype :`%s'\n" -msgstr "ÉÔÀµ¤Ê nettype ¤Ç¤¹:`%s'\n" +msgid "netname2user: DES entry for %s in directory %s not unique" +msgstr "netname2user: ¥Ç¥£¥ì¥¯¥È¥ê %2$s ¤Î %1$s ¤ËÂФ¹¤ë DES ¥¨¥ó¥È¥ê¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" -#: catgets/gencat.c:403 catgets/gencat.c:480 -msgid "illegal set number" -msgstr "ÉÔÀµ¤ÊÀßÄêÃͤǤ¹" +#: nis/nss_nisplus/nisplus-publickey.c:322 +#, c-format +msgid "netname2user: principal name `%s' too long" +msgstr "netname2user: principal̾ `%s' ¤¬Ä¹¤¹¤®¤Þ¤¹" -#: locale/programs/ld-ctype.c:1229 +#: nis/nss_nisplus/nisplus-publickey.c:372 #, c-format -msgid "implementation limit: no more than %Zd character classes allowed" -msgstr "¼ÂÁõ¾å¤ÎÀ©¸Â: %Zd °Ê¾å¤Î¥­¥ã¥é¥¯¥¿¥¯¥é¥¹¤Ïµö¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +msgid "netname2user: LOCAL entry for %s in directory %s not unique" +msgstr "netname2user: ¥Ç¥£¥ì¥¯¥È¥ê %2$s ¤Î %1$s ¤ËÂФ¹¤ë LOCAL ¥¨¥ó¥È¥ê¤¬½ÅÊ£¤·¤Æ¤¤¤¹" + +#: nis/nss_nisplus/nisplus-publickey.c:379 +msgid "netname2user: should not have uid 0" +msgstr "netname2user: uid 0 ¤ò»È¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" -#: locale/programs/ld-ctype.c:1261 +#: nis/ypclnt.c:174 #, c-format -msgid "implementation limit: no more than %d character maps allowed" -msgstr "¼ÂÁõ¾å¤ÎÀ©¸Â: %d °Ê¾å¤Î¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¤Ïµö¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +msgid "YPBINDPROC_DOMAIN: %s\n" +msgstr "YPBINDPROC_DOMAIN: %s\n" -#: iconv/iconv_charmap.c:462 iconv/iconv_prog.c:473 -msgid "incomplete character or shift sequence at end of buffer" -msgstr "¥Ð¥Ã¥Õ¥¡¤ÎºÇ¸å¤Ç¤Î°ìÃפ·¤Ê¤¤Ê¸»ú¤Þ¤¿¤Ï¥·¥Õ¥È¥·¡¼¥±¥ó¥¹¤Ç¤¹" +#: nis/ypclnt.c:789 +msgid "Request arguments bad" +msgstr "Í×µá°ú¿ô¤¬ÉÔÀµ¤Ç¤¹" -#: timezone/zic.c:856 -msgid "input line of unknown type" -msgstr "ÉÔÌÀ¤Ê·Á¼°¤ÎÆþÎϥ饤¥ó¹Ô¤Ç¤¹" +#: nis/ypclnt.c:791 +msgid "RPC failure on NIS operation" +msgstr "NISÁàºî¤Ë¤ª¤±¤ëRPC¤Î¼ºÇԤǤ¹" -#: elf/dl-load.c:1294 -msgid "internal error" -msgstr "ÆâÉô¥¨¥é¡¼" +#: nis/ypclnt.c:793 +msgid "Can't bind to server which serves this domain" +msgstr "¤³¤Î¥É¥á¥¤¥ó¤ò°·¤¦¥µ¡¼¥Ð¤Ø¥Ð¥¤¥ó¥É¤Ç¤­¤Þ¤»¤ó" -#: iconv/iconv_prog.c:477 -msgid "internal error (illegal descriptor)" -msgstr "ÆâÉô¥¨¥é¡¼ (ÉÔÀµ¤Êµ­½Ò»Ò¤Ç¤¹)" +#: nis/ypclnt.c:795 +msgid "No such map in server's domain" +msgstr "¥µ¡¼¥Ð¥É¥á¥¤¥ó¤Ë¤½¤Î¤è¤¦¤Ê¥Þ¥Ã¥×¤Ï¤¢¤ê¤Þ¤»¤ó" -#: timezone/zic.c:1819 -msgid "internal error - addtype called with bad isdst" -msgstr "ÆâÉô¥¨¥é¡¼ - ´Ö°ã¤Ã¤¿ isdst ¤È¤È¤â¤Ë addtype ¤¬¸Æ¤Ð¤ì¤Þ¤·¤¿" +#: nis/ypclnt.c:797 +msgid "No such key in map" +msgstr "¥Þ¥Ã¥×¤Ë¤½¤Î¤è¤¦¤Ê¥­¡¼¤Ï¤¢¤ê¤Þ¤»¤ó" -#: timezone/zic.c:1827 -msgid "internal error - addtype called with bad ttisgmt" -msgstr "ÆâÉô¥¨¥é¡¼ - ´Ö°ã¤Ã¤¿ ttisgmt ¤È¤È¤â¤Ë addtype ¤¬¸Æ¤Ð¤ì¤Þ¤·¤¿" +#: nis/ypclnt.c:799 +msgid "Internal NIS error" +msgstr "NISÆâÉô¥¨¥é¡¼" -#: timezone/zic.c:1823 -msgid "internal error - addtype called with bad ttisstd" -msgstr "ÆâÉô¥¨¥é¡¼ - ´Ö°ã¤Ã¤¿ ttisstd ¤È¤È¤â¤Ë addtype ¤¬¸Æ¤Ð¤ì¤Þ¤·¤¿" +#: nis/ypclnt.c:801 +msgid "Local resource allocation failure" +msgstr "¥í¡¼¥«¥ë¥ê¥½¡¼¥¹³ÎÊݤμºÇÔ¤·¤Þ¤·¤¿" -#: locale/programs/ld-ctype.c:488 locale/programs/ld-ctype.c:544 -#, c-format -msgid "internal error in %s, line %u" -msgstr "%sÃæ(%u¹Ô)¤Ç¡¢ÆâÉô¥¨¥é¡¼¤¬µ¯¤³¤ê¤Þ¤·¤¿" +#: nis/ypclnt.c:803 +msgid "No more records in map database" +msgstr "¥Þ¥Ã¥×¥Ç¡¼¥¿¥Ù¡¼¥¹¤Ë¤³¤ì°Ê¾åµ­Ï¿¤¬¤¢¤ê¤Þ¤»¤ó" -#: elf/dl-load.c:1267 -msgid "invalid ELF header" -msgstr "ÉÔÅö¤ÊELF¥Ø¥Ã¥À" +#: nis/ypclnt.c:805 +msgid "Can't communicate with portmapper" +msgstr "¥Ý¡¼¥È¥Þ¥Ã¥Ñ¡¼¤ÈÄÌ¿®¤Ç¤­¤Þ¤»¤ó" -#: timezone/zic.c:1065 -msgid "invalid UTC offset" -msgstr "ÉÔÅö¤ÊUTC¥ª¥Õ¥»¥Ã¥È" +#: nis/ypclnt.c:807 +msgid "Can't communicate with ypbind" +msgstr "ypbind¤ÈÄÌ¿®¤Ç¤­¤Þ¤»¤ó" -#: timezone/zic.c:1068 -msgid "invalid abbreviation format" -msgstr "ÉÔÅö¤Ê¾Êά·Á" +#: nis/ypclnt.c:809 +msgid "Can't communicate with ypserv" +msgstr "ypserv¤ÈÄÌ¿®¤Ç¤­¤Þ¤»¤ó" -#: catgets/gencat.c:688 -msgid "invalid character: message ignored" -msgstr "̵¸ú¤Ê¥­¥ã¥é¥¯¥¿: ¥á¥Ã¥»¡¼¥¸¤ò̵»ë¤·¤Þ¤¹" +#: nis/ypclnt.c:811 +msgid "Local domain name not set" +msgstr "¥í¡¼¥«¥ë¥É¥á¥¤¥ó̾¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: timezone/zic.c:1158 timezone/zic.c:1370 timezone/zic.c:1384 -msgid "invalid day of month" -msgstr "ÉÔÅö¤Ê1¥ö·îÃæ¤ÎÆü¤Ë¤Á¤Ç¤¹" +#: nis/ypclnt.c:813 +msgid "NIS map database is bad" +msgstr "NIS¥Þ¥Ã¥×¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬ÉÔÀµ¤Ç¤¹" -#: locale/programs/charmap.c:352 -msgid "invalid definition" -msgstr "ÉÔÀµ¤ÊÄêµÁ¤Ç¤¹" +#: nis/ypclnt.c:815 +msgid "NIS client/server version mismatch - can't supply service" +msgstr "NIS¥¯¥é¥¤¥¢¥ó¥È¤È¥µ¡¼¥Ð¤Î¥Ð¡¼¥¸¥ç¥ó¤¬°ìÃפ·¤Þ¤»¤ó - ¥µ¡¼¥Ó¥¹¤òÄ󶡤Ǥ­¤Þ¤»¤ó" -#: locale/programs/charmap.c:547 -msgid "invalid encoding given" -msgstr "ÉÔÀµ¤Ê¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤¬Í¿¤¨¤é¤ì¤Þ¤·¤¿" +#: nis/ypclnt.c:819 +msgid "Database is busy" +msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¥Ó¥¸¡¼¾õÂ֤Ǥ¹" -#: timezone/zic.c:1322 -msgid "invalid ending year" -msgstr "ÉÔÅö¤Ê½ªÎ»Ç¯" +#: nis/ypclnt.c:821 +msgid "Unknown NIS error code" +msgstr "̤ÃΤÎNIS¥¨¥é¡¼¥³¡¼¥É" -#: catgets/gencat.c:1152 locale/programs/linereader.c:538 -msgid "invalid escape sequence" -msgstr "ÉÔÅö¤ÊÊݸ»þ¹ï¤Ç¤¹" +#: nis/ypclnt.c:863 +msgid "Internal ypbind error" +msgstr "ypbindÆâÉô¥¨¥é¡¼" -#: timezone/zic.c:1130 -msgid "invalid leaping year" -msgstr "ÉÔÅö¤Ê¤¦¤ë¤¦Ç¯¤Ç¤¹" +#: nis/ypclnt.c:865 +msgid "Domain not bound" +msgstr "¥É¥á¥¤¥ó¤Ï¥Ð¥¤¥ó¥É¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: catgets/gencat.c:731 -msgid "invalid line" -msgstr "ÉÔÅö¤Ê¹Ô¤Ç¤¹" +#: nis/ypclnt.c:867 +msgid "System resource allocation failure" +msgstr "¥·¥¹¥Æ¥à¥ê¥½¡¼¥¹¤Î³ÎÊݤ˼ºÇÔ" -#: elf/dl-open.c:349 -msgid "invalid mode for dlopen()" -msgstr "dlopen()¤ËÂФ¹¤ëÉÔÀµ¤Ê¥â¡¼¥É¤Ç¤¹" +#: nis/ypclnt.c:869 +msgid "Unknown ypbind error" +msgstr "ÉÔÌÀ¤Êypbind¥¨¥é¡¼" -#: timezone/zic.c:1145 timezone/zic.c:1248 -msgid "invalid month name" -msgstr "ÉÔÅö¤Ê·î̾¤Ç¤¹" +#: nis/ypclnt.c:908 +msgid "yp_update: cannot convert host to netname\n" +msgstr "yp_update: ¥Û¥¹¥È¤ò¥Í¥Ã¥È̾¤ØÊÑ´¹¤Ç¤­¤Þ¤»¤ó\n" -#: locale/programs/charmap.c:974 locale/programs/ld-collate.c:2888 -#: locale/programs/repertoire.c:418 -msgid "invalid names for character range" -msgstr "¥­¥ã¥é¥¯¥¿ÈϰϤȤ·¤ÆÉÔÀµ¤Ê̾Á°" +#: nis/ypclnt.c:920 +msgid "yp_update: cannot get server address\n" +msgstr "yp_update: ¥µ¡¼¥Ð¥¢¥É¥ì¥¹¤òÆÀ¤é¤ì¤Þ¤»¤ó\n" -#: debug/pcprofiledump.c:166 -msgid "invalid pointer size" -msgstr "ÉÔÀµ¤Ê¥Ý¥¤¥ó¥¿¥µ¥¤¥º" +#: nscd/cache.c:88 +msgid "while allocating hash table entry" +msgstr "¥Ï¥Ã¥·¥å¥Æ¡¼¥Ö¥ë¥¨¥ó¥È¥ê³ä¤êÅö¤ÆÃæ" -#: catgets/gencat.c:549 -msgid "invalid quote character" -msgstr "ÉÔÀµ¤Ê¥¯¥©¡¼¥È¥­¥ã¥é¥¯¥¿¤Ç¤¹" +#: nscd/cache.c:150 nscd/connections.c:187 +#, c-format +msgid "cannot stat() file `%s': %s" +msgstr "¥Õ¥¡¥¤¥ë`%s'¤¬ stat() ¤Ç¤­¤Þ¤»¤ó: %s" -#: timezone/zic.c:964 -msgid "invalid saved time" -msgstr "ÉÔÀµ¤ÊÊݸ»þ¹ï" +#: nscd/connections.c:146 +msgid "cannot read configuration file; this is fatal" +msgstr "ÀßÄê¥Õ¥¡¥¤¥ë¤òÆɤ߹þ¤á¤Þ¤»¤ó¡£¤³¤ì¤ÏÃ×̿Ū¤Ç¤¹" -#: timezone/zic.c:1297 -msgid "invalid starting year" -msgstr "ÉÔÅö¤Ê³«»Ïǯ" +#: nscd/connections.c:153 +msgid "Cannot run nscd in secure mode as unprivileged user" +msgstr "ÈóÆø¢¥æ¡¼¥¶¤Ï¥»¥­¥å¥¢¥â¡¼¥É¤Çnscd¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" -#: timezone/zic.c:1174 timezone/zic.c:1277 -msgid "invalid time of day" -msgstr "1ÆüÊÕ¤ê¤Î»þ´Ö¤¬ÉÔÀµ" +#: nscd/connections.c:175 +#, c-format +msgid "while allocating cache: %s" +msgstr "¥­¥ã¥Ã¥·¥å³ä¤êÅö¤ÆÃæ: %s" -#: timezone/zic.c:1375 -msgid "invalid weekday name" -msgstr "¤ª¤«¤·¤ÊÍËÆü̾" +#: nscd/connections.c:200 +#, c-format +msgid "cannot open socket: %s" +msgstr "¥½¥±¥Ã¥È¤ò³«¤±¤Þ¤»¤ó: %s" -#: nscd/connections.c:479 +#: nscd/connections.c:218 #, c-format -msgid "key length in request too long: %d" -msgstr "Í׵ᤵ¤ì¤¿¥­¡¼Ä¹¤ÏŤ¹¤®¤Þ¤¹: %d" +msgid "cannot enable socket to accept connections: %s" +msgstr "Àܳ¤ò¼õ¤±ÉÕ¤±¤ë¥½¥±¥Ã¥È¤òÍ­¸ú¤Ë¤Ç¤­¤Þ¤»¤ó: %s" -#: elf/ldconfig.c:794 +#: nscd/connections.c:260 #, c-format -msgid "libc4 library %s in wrong directory" -msgstr "¸í¤Ã¤¿¥Ç¥£¥ì¥¯¥È¥êÆâ¤Îlibc4¥é¥¤¥Ö¥é¥ê %s " +msgid "handle_request: request received (Version = %d)" +msgstr "handle_request: Í׵᤬ÅþÃ夷¤Þ¤·¤¿ (¥Ð¡¼¥¸¥ç¥ó = %d)" -#: elf/ldconfig.c:788 +#: nscd/connections.c:266 #, c-format -msgid "libc5 library %s in wrong directory" -msgstr "¸í¤Ã¤¿¥Ç¥£¥ì¥¯¥È¥êÆâ¤Îlibc5¥é¥¤¥Ö¥é¥ê %s" +msgid "cannot handle old request version %d; current version is %d" +msgstr "Í׵ᤵ¤ì¤¿¸Å¤¤¥Ð¡¼¥¸¥ç¥ó %d ¤ò°·¤¦¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¡£¸½ºß¤Î¥Ð¡¼¥¸¥ç¥ó¤Ï %d ¤Ç¤¹" -#: elf/ldconfig.c:791 +#: nscd/connections.c:304 nscd/connections.c:326 #, c-format -msgid "libc6 library %s in wrong directory" -msgstr "¸í¤Ã¤¿¥Ç¥£¥ì¥¯¥È¥êÆâ¤Îlibc6¥é¥¤¥Ö¥é¥ê %s" +msgid "cannot write result: %s" +msgstr "·ë²Ì¤ò½ñ¤­¹þ¤á¤Þ¤»¤ó: %s" -#: elf/ldconfig.c:821 +#: nscd/connections.c:405 nscd/connections.c:499 #, c-format -msgid "libraries %s and %s in directory %s have same soname but different type." -msgstr "¥Ç¥£¥ì¥¯¥È¥ê %3$s Æâ¤Ë¤¢¤ë¥é¥¤¥Ö¥é¥ê %1$s ¤È %2$s ¤ÏƱ°ì¤Î soname ¤Ç¤¹¤¬°Û¤Ê¤Ã¤¿¥¿¥¤¥×¤Ç¤¹." +msgid "error getting callers id: %s" +msgstr "¸Æ¤Ó½Ð¤·ID¤Î¼èÆÀ¤Ç¥¨¥é¡¼: %s" -#: timezone/zic.c:836 -msgid "line too long" -msgstr "¹Ô¤¬Ä¹¤¹¤®¤Þ¤¹" +#: nscd/connections.c:471 +#, c-format +msgid "while accepting connection: %s" +msgstr "¼õÉÕ¥³¥Í¥¯¥·¥ç¥óÃæ: %s" -#: iconv/iconv_prog.c:63 -msgid "list all known coded character sets" -msgstr "´ûÃΤÎÁ´¥­¥ã¥é¥¯¥¿¥»¥Ã¥È¤òɽ¼¨¤¹¤ë" +#: nscd/connections.c:482 +#, c-format +msgid "short read while reading request: %s" +msgstr "¥ê¥¯¥¨¥¹¥È: %s ¤òÆɹþ¤ßÃæ¤Îû¤¤Æɹþ¤ß¤Ç¤¹" -#: locale/programs/locfile.h:63 -msgid "locale name should consist only of portable characters" -msgstr "¥í¥±¡¼¥ë̾¤Ï¥Ý¡¼¥¿¥Ö¥ëʸ»ú¤À¤±¤Ç¹½À®¤¹¤Ù¤­¤Ç¤¹" +#: nscd/connections.c:518 +#, c-format +msgid "key length in request too long: %d" +msgstr "Í׵ᤵ¤ì¤¿¥­¡¼Ä¹¤ÏŤ¹¤®¤Þ¤¹: %d" -#: inet/rcmd.c:414 -msgid "lstat failed" -msgstr "lstat¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: nscd/connections.c:532 +#, c-format +msgid "short read while reading request key: %s" +msgstr "¥ê¥¯¥¨¥¹¥È¥­¡¼: %s ¤òÆɹþ¤ßÃæ¤Îû¤¤Æɹþ¤ß¤Ç¤¹" -#: malloc/memusagestat.c:59 -msgid "make output graphic VALUE pixel high" -msgstr "½ÐÎÏ¥°¥é¥Õ¥£¥Ã¥¯ÃͤΥԥ¯¥»¥ë¤ò¹â¤¯¤·¤Þ¤¹" +#: nscd/connections.c:591 nscd/connections.c:592 nscd/connections.c:611 +#: nscd/connections.c:624 nscd/connections.c:630 nscd/connections.c:637 +#, c-format +msgid "Failed to run nscd as user '%s'" +msgstr "¥æ¡¼¥¶ '%s' ¤Ç nscd ¤ò¼Â¹Ô¤¹¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: malloc/memusagestat.c:58 -msgid "make output graphic VALUE pixel wide" -msgstr "½ÐÎÏ¥°¥é¥Õ¥£¥Ã¥¯ÃͤΥԥ¯¥»¥ë¤ò¹­¤¯¤·¤Þ¤¹" +#: nscd/connections.c:612 +msgid "getgrouplist failed" +msgstr "getgrouplist¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: 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" +#: nscd/connections.c:625 +msgid "setgroups failed" +msgstr "setgroups¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: catgets/gencat.c:785 -msgid "malformed line ignored" -msgstr "ÉÔÅö¤Ê¹Ô¤ò̵»ë¤·¤Þ¤·¤¿" +#: nscd/grpcache.c:103 nscd/hstcache.c:111 nscd/pwdcache.c:109 +msgid "while allocating key copy" +msgstr "¥­¡¼¥³¥Ô¡¼³ä¤êÅö¤ÆÃæ" -#: elf/sprof.c:550 -msgid "mapping of section header string table failed" -msgstr "¥»¥¯¥·¥ç¥ó¥Ø¥Ã¥À¤Îʸ»úÎó¥Æ¡¼¥Ö¥ë¤Î¥Þ¥Ã¥Ô¥ó¥°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: nscd/grpcache.c:153 nscd/hstcache.c:168 nscd/pwdcache.c:146 +msgid "while allocating cache entry" +msgstr "¥­¥ã¥Ã¥·¥å¥¨¥ó¥È¥ê³ä¤êÅö¤ÆÃæ" -#: elf/sprof.c:540 -msgid "mapping of section headers failed" -msgstr "¥»¥¯¥·¥ç¥ó¥Ø¥Ã¥À¤Î¥Þ¥Ã¥Ô¥ó¥°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: nscd/grpcache.c:196 nscd/hstcache.c:282 nscd/pwdcache.c:192 +#, c-format +msgid "short write in %s: %s" +msgstr "%s ¤Ç¤Îû¤¤½ñ¤­¹þ¤ß: %s" -#: malloc/mcheck.c:296 -msgid "memory clobbered before allocated block\n" -msgstr "¥Ö¥í¥Ã¥¯³ÎÊÝÁ°¤Ë¥á¥â¥ê¤òÍøÍѤ·¤Þ¤·¤¿\n" +#: nscd/grpcache.c:218 +#, c-format +msgid "Haven't found \"%s\" in group cache!" +msgstr "¥°¥ë¡¼¥×¥­¥ã¥Ã¥·¥å¤Ë \"%s\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó!" -#: malloc/mcheck.c:299 -msgid "memory clobbered past end of allocated block\n" -msgstr "¥Ö¥í¥Ã¥¯³ÎÊݤκǸå¤è¤ê°Ê¸å¤Ë¥á¥â¥ê¤òÍøÍѤ·¤Þ¤·¤¿\n" +#: nscd/grpcache.c:284 +#, c-format +msgid "Invalid numeric gid \"%s\"!" +msgstr "̵¸ú¤Ê gid ¤Î¿ôÃÍ \"%s\"!" + +#: nscd/grpcache.c:291 +#, c-format +msgid "Haven't found \"%d\" in group cache!" +msgstr "¥°¥ë¡¼¥×¥­¥ã¥Ã¥·¥åÃæ¤Ë \"%d\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó!" + +#: nscd/hstcache.c:304 nscd/hstcache.c:370 nscd/hstcache.c:435 +#: nscd/hstcache.c:500 +#, c-format +msgid "Haven't found \"%s\" in hosts cache!" +msgstr "¥Û¥¹¥È¥­¥ã¥Ã¥·¥å¤Ë \"%s\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó!" + +#: nscd/nscd.c:85 +msgid "Read configuration data from NAME" +msgstr "NAME ¤«¤éÀßÄê¾ðÊó¤òÆɤ߹þ¤à" + +#: nscd/nscd.c:87 +msgid "Do not fork and display messages on the current tty" +msgstr "¥Õ¥©¡¼¥¯¤·¤Ê¤¤¤Ç¸½ºß¤Îtty¤Ë¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤¹¤ë" + +#: nscd/nscd.c:88 +msgid "NUMBER" +msgstr "ÈÖ¹æ" + +#: nscd/nscd.c:88 +msgid "Start NUMBER threads" +msgstr "NUMBER¥¹¥ì¥Ã¥É¤Çµ¯Æ°¤¹¤ë" + +#: nscd/nscd.c:89 +msgid "Shut the server down" +msgstr "¥µ¡¼¥Ð¤ò½ªÎ»¤¹¤ë" + +#: nscd/nscd.c:90 +msgid "Print current configuration statistic" +msgstr "¸½ºß¤Î¥³¥ó¥Õ¥£¥®¥å¥ì¡¼¥·¥ç¥ó¤ÎÅý·×¤òɽ¼¨¤¹¤ë" + +#: nscd/nscd.c:91 +msgid "TABLE" +msgstr "¥Æ¡¼¥Ö¥ë" -#: locale/programs/xmalloc.c:70 malloc/obstack.c:484 posix/getconf.c:996 -msgid "memory exhausted" -msgstr "¥á¥â¥ê¤ò»È¤¤²Ì¤¿¤·¤Þ¤·¤¿" +#: nscd/nscd.c:92 +msgid "Invalidate the specified cache" +msgstr "»ØÄꥭ¥ã¥Ã¥·¥å¤Ï̵¸ú¤Ç¤¹" -#: malloc/mcheck.c:293 -msgid "memory is consistent, library is buggy\n" -msgstr "¥á¥â¥ê¤Ï°ì´ÓÀ­¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹¤¬¡¢¥é¥¤¥Ö¥é¥ê¤¬¥Ð¥®¡¼¤Ç¤¹\n" +#: nscd/nscd.c:93 +msgid "TABLE,yes" +msgstr "¥Æ¡¼¥Ö¥ë,¤Ï¤¤" -#: elf/cache.c:143 -msgid "mmap of cache file failed.\n" -msgstr "¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë¤Îmmap¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n" +#: nscd/nscd.c:93 +msgid "Use separate cache for each user" +msgstr "³Æ¥æ¡¼¥¶¤ËÂФ·¤Æ°Û¤Ê¤ë¥­¥ã¥Ã¥·¥å¤ò»ÈÍѤ·¤Þ¤¹" -#: elf/../sysdeps/generic/readelflib.c:110 -msgid "more than one dynamic segment\n" -msgstr "Ê£¿ô¤ÎưŪ¥»¥°¥á¥ó¥È\n" +#: nscd/nscd.c:98 +msgid "Name Service Cache Daemon." +msgstr "¥Í¡¼¥à¥µ¡¼¥Ó¥¹¥­¥ã¥Ã¥·¥å¥Ç¡¼¥â¥ó." -#: timezone/zic.c:959 -msgid "nameless rule" -msgstr "̾Á°¤¬¤Ê¤¤¥ë¡¼¥ë¤Ç¤¹" +#: nscd/nscd.c:131 +msgid "already running" +msgstr "´û¤Ëµ¯Æ°¤·¤Æ¤¤¤Þ¤¹" -#: nis/nss_nisplus/nisplus-publickey.c:281 -#: nis/nss_nisplus/nisplus-publickey.c:287 -#: nis/nss_nisplus/nisplus-publickey.c:346 -#: nis/nss_nisplus/nisplus-publickey.c:355 -#, c-format -msgid "netname2user: (nis+ lookup): %s\n" -msgstr "netname2user: (nis+ lookup): %s\n" +#: nscd/nscd.c:243 nscd/nscd.c:263 nscd/nscd.c:269 +msgid "Only root is allowed to use this option!" +msgstr "¤³¤Î¥ª¥×¥·¥ç¥ó¤Ïroot¤Ç¤·¤«»È¤¨¤Þ¤»¤ó!" -#: nis/nss_nisplus/nisplus-publickey.c:300 +#: nscd/nscd_conf.c:83 #, c-format -msgid "netname2user: DES entry for %s in directory %s not unique" -msgstr "netname2user: ¥Ç¥£¥ì¥¯¥È¥ê %2$s ¤Î %1$s ¤ËÂФ¹¤ë DES ¥¨¥ó¥È¥ê¤¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹" +msgid "Parse error: %s" +msgstr "¥Ñ¡¼¥µ¥¨¥é¡¼: %s" -#: nis/nss_nisplus/nisplus-publickey.c:368 +#: nscd/nscd_conf.c:166 #, c-format -msgid "netname2user: LOCAL entry for %s in directory %s not unique" -msgstr "netname2user: ¥Ç¥£¥ì¥¯¥È¥ê %2$s ¤Î %1$s ¤ËÂФ¹¤ë LOCAL ¥¨¥ó¥È¥ê¤¬½ÅÊ£¤·¤Æ¤¤¤¹" +msgid "Could not create log file \"%s\"" +msgstr "¥í¥°¥Õ¥¡¥¤¥ë\"%s\"¤òºîÀ®¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿" -#: nis/nss_nisplus/nisplus-publickey.c:207 -#, c-format -msgid "netname2user: missing group id list in `%s'." -msgstr "netname2user: `%s'¤Ë¥°¥ë¡¼¥×ID¥ê¥¹¥È¤¬¤¢¤ê¤Þ¤»¤ó." +#: nscd/nscd_conf.c:182 +msgid "Must specify user name for server-user option" +msgstr "¥µ¡¼¥Ð¥æ¡¼¥¶¥ª¥×¥·¥ç¥ó¤ËÂФ·¤Æ¥æ¡¼¥¶Ì¾¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹" -#: nis/nss_nisplus/nisplus-publickey.c:318 +#: nscd/nscd_conf.c:187 #, c-format -msgid "netname2user: principal name `%s' too long" -msgstr "netname2user: principal̾ `%s' ¤¬Ä¹¤¹¤®¤Þ¤¹" - -#: nis/nss_nisplus/nisplus-publickey.c:375 -msgid "netname2user: should not have uid 0" -msgstr "netname2user: uid 0 ¤ò»È¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" +msgid "Unknown option: %s %s %s" +msgstr "ÉÔÌÀ¤Ê¥ª¥×¥·¥ç¥ó: %s %s %s" -#: sunrpc/svc_simple.c:168 +#: nscd/nscd_stat.c:87 #, c-format -msgid "never registered prog %d\n" -msgstr "¥×¥í¥°¥é¥à %d ¤ÏÅÐÏ¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" +msgid "cannot write statistics: %s" +msgstr "Åý·×¤ò½ñ¤­¹þ¤á¤Þ¤»¤ó: %s" -#: locale/programs/repertoire.c:272 -msgid "no or value given" -msgstr " ¤Þ¤¿¤Ï Ãͤ¬Í¿¤¨¤é¤ì¤Þ¤»¤ó¤Ç¤·¤¿" +#: nscd/nscd_stat.c:105 +msgid "nscd not running!\n" +msgstr "nscd¤Ïµ¯Æ°¤·¤Æ¤¤¤Þ¤»¤ó!\n" -#: timezone/zic.c:2148 -msgid "no day in month matches rule" -msgstr "·î¤ÎÃæ¤ÎÆü¤Ë¤Á¤Ï¥ë¡¼¥ë¤Ë¥Þ¥Ã¥Á¤·¤Æ¤¤¤Þ¤»¤ó" +#: nscd/nscd_stat.c:116 +msgid "write incomplete" +msgstr "½ñ¹þ¤ß¤¬ÉÔ´°Á´¤Ç¤¹" -#: locale/programs/ld-collate.c:1770 -msgid "no definition of `UNDEFINED'" -msgstr "`UNDEFINED'¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +#: nscd/nscd_stat.c:128 +msgid "cannot read statistics data" +msgstr "Åý·×¾ðÊó¤òÆɤ߹þ¤á¤Þ¤»¤ó" -#: elf/sprof.c:272 +#: nscd/nscd_stat.c:131 #, c-format -msgid "no filename for profiling data given and shared object `%s' has no soname" -msgstr "¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¥Ç¡¼¥¿¤Î¥Õ¥¡¥¤¥ë̾¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Ê¤¤¤«¡¢¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È`%s' ¤¬soname¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +msgid "" +"nscd configuration:\n" +"\n" +"%15d server debug level\n" +msgstr "" +"nscd ¥³¥ó¥Õ¥£¥®¥å¥ì¡¼¥·¥ç¥ó:\n" +"\n" +"%15d ¥µ¡¼¥Ð¤Î¥Ç¥Ð¥Ã¥°¥ì¥Ù¥ë\n" -#: locale/programs/ld-ctype.c:747 -msgid "no input digits defined and none of the standard names in the charmap" -msgstr "ÆþÎϷ夬ÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¡¢¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×Ãæ¤Ëɸ½à̾¤¬¤¢¤ê¤Þ¤»¤ó" +#: nscd/nscd_stat.c:146 nscd/nscd_stat.c:148 +msgid " no" +msgstr " ¤¤¤¤¤¨" -#: locale/programs/locfile.h:82 -msgid "no other keyword shall be specified when `copy' is used" -msgstr "`copy' ¤ò»ÈÍѤ·¤¿¤È¤­¤Ë¾¤Î¤¤¤«¤Ê¤ë¥­¡¼¥ï¡¼¥É¤â»ØÄꤵ¤ì¤Þ¤»¤ó¤Ç¤·¤¿" +#: nscd/nscd_stat.c:146 nscd/nscd_stat.c:148 +msgid " yes" +msgstr " ¤Ï¤¤" -#: locale/programs/ld-ctype.c:3351 -msgid "no output digits defined and none of the standard names in the charmap" -msgstr "½ÐÎϷ夬ÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¡¢¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×Ãæ¤Ëɸ½à̾¤¬¤¢¤ê¤Þ¤»¤ó" +#: nscd/nscd_stat.c:154 +#, c-format +msgid "" +"\n" +"%s cache:\n" +"\n" +"%15s cache is enabled\n" +"%15Zd suggested size\n" +"%15ld seconds time to live for positive entries\n" +"%15ld seconds time to live for negative entries\n" +"%15ld cache hits on positive entries\n" +"%15ld cache hits on negative entries\n" +"%15ld cache misses on positive entries\n" +"%15ld cache misses on negative entries\n" +"%15ld%% cache hit rate\n" +"%15s check /etc/%s for changes\n" +msgstr "" +"\n" +"%s ¥­¥ã¥Ã¥·¥å:\n" +"\n" +"%15s ¥­¥ã¥Ã¥·¥å¤ÏÍ­¸ú\n" +"%15Zd ¿ä¾©¤µ¤ì¤Æ¤¤¤ë¥µ¥¤¥º\n" +"%15ld ¥Ý¥¸¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤¬Í­¸ú¤ÊÉÿô\n" +"%15ld ¥Í¥¬¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤¬Í­¸ú¤ÊÉÿô\n" +"%15ld ¥Ý¥¸¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤Î¥­¥ã¥Ã¥·¥å¥Ò¥Ã¥È¿ô\n" +"%15ld ¥Í¥¬¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤Î¥­¥ã¥Ã¥·¥å¥Ò¥Ã¥È¿ô\n" +"%15ld ¥Ý¥¸¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤Î¥­¥ã¥Ã¥·¥å¥ß¥¹¿ô\n" +"%15ld ¥Í¥¬¥Æ¥£¥Ö¥¨¥ó¥È¥ê¤Î¥­¥ã¥Ã¥·¥å¥ß¥¹¿ô\n" +"%15ld%% ¥­¥ã¥Ã¥·¥å¤Î¥Ò¥Ã¥ÈΨ\n" +"%15s /etc/%s¤ÎÊѹ¹¤ò¥Á¥§¥Ã¥¯¤¹¤ë\n" -#: iconv/iconvconfig.c:308 locale/programs/localedef.c:236 -msgid "no output file produced because warning were issued" -msgstr "·Ù¹ð¤¬½Ð¤µ¤ì¤¿¤¿¤á¥Õ¥¡¥¤¥ë¤Ë½ÐÎϤµ¤ì¤Þ¤»¤ó¤Ç¤·¤¿" +#: nscd/pwdcache.c:214 +#, c-format +msgid "Haven't found \"%s\" in password cache!" +msgstr "¥Ñ¥¹¥ï¡¼¥É¥­¥ã¥Ã¥·¥å¤Ë \"%s\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó!" -#: 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 "¥·¥ó¥Ü¥ë̾¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤»¤ó" +#: nscd/pwdcache.c:280 +#, c-format +msgid "Invalid numeric uid \"%s\"!" +msgstr "̵¸ú¤Ê uid ¤Î¿ôÃÍ \"%s\"!" -#: 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 "Îΰè¤ÎºÇ¸å¤Ë¥·¥ó¥Ü¥ë̾¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤»¤ó" +#: nscd/pwdcache.c:287 +#, c-format +msgid "Haven't found \"%d\" in password cache!" +msgstr "¥Ñ¥¹¥ï¡¼¥É¥­¥ã¥Ã¥·¥å¤Ë \"%d\" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó!" -#: locale/programs/linereader.c:646 -msgid "non-symbolic character value should not be used" -msgstr "Èó¥·¥ó¥Ü¥ë¥­¥ã¥é¥¯¥¿ÃͤϻÈÍѤ¹¤Ù¤­¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: elf/../sysdeps/generic/dl-sysdep.c:357 +msgid "cannot create capability list" +msgstr "¥±¡¼¥Ñ¥Ó¥ê¥Æ¥£¥ê¥¹¥È¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/ld-ctype.c:812 -msgid "not all characters used in `outdigit' are available in the charmap" -msgstr "`outdigit'¤Ç»ÈÍÑÃæ¤Îʸ»ú¤Î°ìÉô¤Ï¥­¥ã¥é¥¯¥¿¥Þ¥Ã¥×¤ÇÍøÍѲÄǽ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: elf/../sysdeps/generic/readelflib.c:35 +#, c-format +msgid "file %s is truncated\n" +msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¥È¥é¥ó¥±¡¼¥È(û¤¯)¤µ¤ì¤Þ¤·¤¿\n" -#: locale/programs/ld-ctype.c:829 -msgid "not all characters used in `outdigit' are available in the repertoire" -msgstr "`outdigit'¤Ç»ÈÍÑÃæ¤Îʸ»ú¤Î°ìÉô¤Ï¥ì¥Ñ¡¼¥È¥ê¥Þ¥Ã¥×¤ÇÍøÍѲÄǽ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: elf/../sysdeps/generic/readelflib.c:67 +#, c-format +msgid "%s is a 32 bit ELF file.\n" +msgstr "%s ¤Ï32¥Ó¥Ã¥ÈELF¥Õ¥¡¥¤¥ë¤Ç¤¹.\n" -#: inet/rcmd.c:416 -msgid "not regular file" -msgstr "Ä̾ï¤Î¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: elf/../sysdeps/generic/readelflib.c:69 +#, c-format +msgid "%s is a 64 bit ELF file.\n" +msgstr "%s ¤Ï64¥Ó¥Ã¥ÈELF¥Õ¥¡¥¤¥ë¤Ç¤¹.\n" -#: nscd/nscd_stat.c:131 +#: elf/../sysdeps/generic/readelflib.c:71 #, c-format -msgid "" -"nscd configuration:\n" -"\n" -"%15d server debug level\n" -msgstr "" -"nscd ¥³¥ó¥Õ¥£¥®¥å¥ì¡¼¥·¥ç¥ó:\n" -"\n" -"%15d ¥µ¡¼¥Ð¤Î¥Ç¥Ð¥Ã¥°¥ì¥Ù¥ë\n" +msgid "Unknown ELFCLASS in file %s.\n" +msgstr "¥Õ¥¡¥¤¥ë %s Ãæ¤Ç̤ÃΤÎELFCLASS.\n" -#: nscd/nscd_stat.c:105 -msgid "nscd not running!\n" -msgstr "nscd¤Ïµ¯Æ°¤·¤Æ¤¤¤Þ¤»¤ó!\n" +#: elf/../sysdeps/generic/readelflib.c:78 +#, c-format +msgid "%s is not a shared object file (Type: %d).\n" +msgstr "%s ¤Ï¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó (¥¿¥¤¥×: %d).\n" -#: elf/dl-load.c:1059 -msgid "object file has no dynamic section" -msgstr "¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë¤ÏưŪ¥»¥¯¥·¥ç¥ó¤ò»ý¤Ã¤Æ¤¤¤Þ¤»¤ó" +#: elf/../sysdeps/generic/readelflib.c:109 +msgid "more than one dynamic segment\n" +msgstr "Ê£¿ô¤ÎưŪ¥»¥°¥á¥ó¥È\n" -#: iconv/iconv_prog.c:65 -msgid "omit invalid characters from output" -msgstr "½ÐÎϤ«¤éÉÔÀµ¤Êʸ»ú¤òÈ´¤«¤·¤Þ¤·¤¿" +#: elf/../sysdeps/unix/sysv/linux/i386/readelflib.c:49 +#, c-format +msgid "%s is for unknown machine %d.\n" +msgstr "%s ¤Ï̤ÃΤΥޥ·¥ó %d ¤ËÂФ¹¤ë¤â¤Î¤Ç¤¹.\n" -#: elf/dl-load.c:1309 -msgid "only ET_DYN and ET_EXEC can be loaded" -msgstr "ET_DYN ¤È ET_EXEC ¤À¤±¤¬¥í¡¼¥É¤Ç¤­¤Þ¤·¤¿" +#: elf/cache.c:69 +msgid "unknown" +msgstr "ÉÔÌÀ" -#: locale/programs/charmap.c:637 -msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" -msgstr "WIDTH ÄêµÁ¤Ï CHARMAP ÄêµÁ¤Ë½¾¤¦¤³¤È¤Î¤ßµö¤µ¤ì¤Þ¤¹" +#: elf/cache.c:105 +msgid "Unknown OS" +msgstr "̤ÃΤÎOS" -#: locale/programs/ld-collate.c:1018 locale/programs/ld-collate.c:1188 +#: elf/cache.c:110 #, c-format -msgid "order for `%.*s' already defined at %s:%Zu" -msgstr "`%.*s'¤ËÂФ¹¤ë¥ª¡¼¥À¡¼¤Ï %s:%Zu ¤Ç´û¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹" +msgid ", OS ABI: %s %d.%d.%d" +msgstr ", OS ABI: %s %d.%d.%d" -#: inet/ruserpass.c:170 inet/ruserpass.c:193 -msgid "out of memory" -msgstr "¥á¥â¥êÉÔ­" +#: elf/cache.c:136 elf/ldconfig.c:1045 +#, c-format +msgid "Can't open cache file %s\n" +msgstr "¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë %s ¤ò³«¤±¤Þ¤»¤ó\n" -#: iconv/iconv_prog.c:66 -msgid "output file" -msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë" +#: elf/cache.c:148 +msgid "mmap of cache file failed.\n" +msgstr "¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë¤Îmmap¤Ë¼ºÇÔ¤·¤Þ¤·¤¿.\n" -#: sunrpc/pm_getmaps.c:74 -msgid "pmap_getmaps rpc problem" -msgstr "pmap_getmaps rpc ¤¬ÌäÂê¤Ç¤¹" +#: elf/cache.c:152 elf/cache.c:162 +msgid "File is not a cache file.\n" +msgstr "¥Õ¥¡¥¤¥ë¤Ï¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.\n" -#: inet/rcmd.c:234 -msgid "poll: protocol failure in circuit setup\n" -msgstr "poll: ²óÀþ¤Î¥»¥Ã¥È¥¢¥Ã¥×Ãæ¤Ç¥×¥í¥È¥³¥ë¤¬¼ºÇÔ¤·¤Þ¤·¤¿\n" +#: elf/cache.c:195 elf/cache.c:205 +#, c-format +msgid "%d libs found in cache `%s'\n" +msgstr "%d ¥é¥¤¥Ö¥é¥ê¤¬¥­¥ã¥Ã¥·¥å `%s ¤Ç¸«¤Ä¤«¤ê¤Þ¤·¤¿\n" -#: locale/programs/ld-ctype.c:1950 locale/programs/ld-ctype.c:2001 -msgid "premature end of `translit_ignore' definition" -msgstr "`translit_ignore'ÄêµÁ¤Î½ªÃ¼¤¬Á᤹¤®¤Þ¤¹" +#: elf/cache.c:392 +#, c-format +msgid "Can't remove old temporary cache file %s" +msgstr "¸Å¤¤¥Æ¥ó¥Ý¥é¥ê¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë %s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó" -#: sunrpc/rpc_scan.c:525 sunrpc/rpc_scan.c:535 -msgid "preprocessor error" -msgstr "¥×¥ê¥×¥í¥»¥Ã¥µ¥¨¥é¡¼" +#: elf/cache.c:399 +#, c-format +msgid "Can't create temporary cache file %s" +msgstr "¥Æ¥ó¥Ý¥é¥ê¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë %s ¤¬ºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/ld-ctype.c:2733 -msgid "previous definition was here" -msgstr "Á°¤ÎÄêµÁ¤¬¤³¤³¤Ë¤¢¤ê¤Þ¤·¤¿" +#: elf/cache.c:407 elf/cache.c:416 elf/cache.c:420 +msgid "Writing of cache data failed" +msgstr "¥­¥ã¥Ã¥·¥å¥Ç¡¼¥¿¤Î½ñ¹þ¤ß¤Ë¼ºÇÔ" -#: elf/sprof.c:74 -msgid "print list of count paths and their number of use" -msgstr "¥«¥¦¥ó¥È¤·¤¿·ÐÏ©¤È¤½¤ì¤é¤Î»ÈÍÑ¿ô¤Î¥ê¥¹¥È¤òɽ¼¨" +#: elf/cache.c:424 +msgid "Writing of cache data failed." +msgstr "¥­¥ã¥Ã¥·¥å¥Ç¡¼¥¿¤Î½ñ¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿." -#: iconv/iconv_prog.c:68 -msgid "print progress information" -msgstr "·Ð²á¾ðÊó¤Îɽ¼¨" +#: elf/cache.c:431 +#, c-format +msgid "Changing access rights of %s to %#o failed" +msgstr "%s ¤Î¥¢¥¯¥»¥¹¸¢¸Â¤ò %#o ¤ØÊѹ¹¤¹¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: elf/sprof.c:687 +#: elf/cache.c:436 #, c-format -msgid "profiling data file `%s' does not match shared object `%s'" -msgstr "¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¥Ç¡¼¥¿¥Õ¥¡¥¤¥ë`%s'¤Ï¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È`%s'¤È°ìÃפ·¤Þ¤»¤ó" +msgid "Renaming of %s to %s failed" +msgstr "%s ¤«¤é %s ¤Ø¤Î̾Á°Êѹ¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" + +#: elf/dl-close.c:128 +msgid "shared object not open" +msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤¬³«¤±¤Þ¤»¤ó" + +#: elf/dl-close.c:486 elf/dl-open.c:444 +msgid "TLS generation counter wrapped! Please send report with the 'glibcbug' script." +msgstr "TLSÀ¸À®¥«¥¦¥ó¥¿¤¬°ì¼þ¤·¤Þ¤·¤¿! 'glibcbug' ¥¹¥¯¥ê¥×¥È¤ò»È¤Ã¤Æ¥ì¥Ý¡¼¥È¤òÁ÷¿®²¼¤µ¤¤." -#: sunrpc/rpcinfo.c:237 sunrpc/rpcinfo.c:383 -#, c-format -msgid "program %lu is not available\n" -msgstr "¥×¥í¥°¥é¥à%lu¤ÏÍøÍѤǤ­¤Þ¤»¤ó\n" +#: elf/dl-deps.c:111 elf/dl-open.c:183 +msgid "DST not allowed in SUID/SGID programs" +msgstr "DST¤ÏSUID/SGID¥×¥í¥°¥é¥àÃæ¤Ç¤Ïµö¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: sunrpc/rpcinfo.c:264 sunrpc/rpcinfo.c:310 sunrpc/rpcinfo.c:333 -#: sunrpc/rpcinfo.c:407 sunrpc/rpcinfo.c:453 sunrpc/rpcinfo.c:476 -#: sunrpc/rpcinfo.c:510 -#, c-format -msgid "program %lu version %lu is not available\n" -msgstr "¥×¥í¥°¥é¥à%lu¥Ð¡¼¥¸¥ç¥ó%lu¤ÏÍøÍѤǤ­¤Þ¤»¤ó\n" +#: elf/dl-deps.c:124 +msgid "empty dynamics string token substitution" +msgstr "¶õ¤ÊưŪʸ»úÎó¥È¡¼¥¯¥ó¤ÎÂåÆþ" -#: sunrpc/rpcinfo.c:515 +#: elf/dl-deps.c:130 #, c-format -msgid "program %lu version %lu ready and waiting\n" -msgstr "¥×¥í¥°¥é¥à %lu ¥Ð¡¼¥¸¥ç¥ó %lu ¤Î½àÈ÷¤¬´°Î»¤·ÂÔµ¡Ãæ¤Ç¤¹\n" +msgid "cannot load auxiliary `%s' because of empty dynamic string token substitution\n" +msgstr "ưŪ¥í¡¼¥É¤ËºÝ¤·¶õʸ»ú¥È¡¼¥¯¥ó¤Ë¤è¤ëÃÖ´¹¤¨¤ò¹Ô¤Ã¤¿¤¿¤á¤Ë auxliary `%s' ¤Î¥í¡¼¥É¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: inet/rcmd.c:271 -#, c-format -msgid "rcmd: %s: short read" -msgstr "rcmd: %s: û¤¤Æɹþ¤ß" +#: elf/dl-deps.c:461 +msgid "cannot allocate dependency list" +msgstr "°Í¸¥ê¥¹¥È¤ò³ÎÊݤǤ­¤Þ¤»¤ó" -#: inet/rcmd.c:231 -#, c-format -msgid "rcmd: poll (setting up stderr): %m\n" -msgstr "rcmd: poll (stderr ¤òÀßÄêÃæ¤Ç¤¹): %m\n" +#: elf/dl-deps.c:494 elf/dl-deps.c:549 +msgid "cannot allocate symbol search list" +msgstr "¥·¥ó¥Ü¥ëõº÷¥ê¥¹¥È¤ò³ÎÊݤǤ­¤Þ¤»¤ó" -#: inet/rcmd.c:159 -msgid "rcmd: socket: All ports in use\n" -msgstr "rcmd: socket: Á´¥Ý¡¼¥È¤¬»ÈÍÑÃæ¤Ç¤¹\n" +#: elf/dl-deps.c:534 +msgid "Filters not supported with LD_TRACE_PRELINKING" +msgstr "LD_TRACE_PRELINKING¤Ç¥Õ¥£¥ë¥¿¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: inet/rcmd.c:221 -#, c-format -msgid "rcmd: write (setting up stderr): %m\n" -msgstr "rcmd: write (stderr ¤òÀßÄêÃæ¤Ç¤¹): %m\n" +#: elf/dl-error.c:75 +msgid "DYNAMIC LINKER BUG!!!" +msgstr "¥À¥¤¥Ê¥ß¥Ã¥¯¥ê¥ó¥«¤Î¥Ð¥°!!!" -#: sunrpc/svc_simple.c:108 -msgid "registerrpc: out of memory\n" -msgstr "registerrpc: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" +#: elf/dl-error.c:108 +msgid "error while loading shared libraries" +msgstr "¶¦Í­¥é¥¤¥Ö¥é¥ê¤Î¥í¡¼¥ÉÃæ¤Ë¥¨¥é¡¼" -#: timezone/zic.c:1880 -msgid "repeated leap second moment" -msgstr "½Û´Ä±¼ÉäνִÖ" +#: elf/dl-load.c:339 +msgid "cannot allocate name record" +msgstr "̾Á°¥ì¥³¡¼¥É¤ò³ÎÊݤǤ­¤Þ¤»¤ó" -#: locale/programs/repertoire.c:342 -#, c-format -msgid "repertoire map file `%s' not found" -msgstr "¥ì¥Ñ¡¼¥È¥ê¥Þ¥Ã¥×¥Õ¥¡¥¤¥ë`%s'¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" +#: elf/dl-load.c:441 elf/dl-load.c:520 elf/dl-load.c:612 elf/dl-load.c:707 +msgid "cannot create cache for search path" +msgstr "¥µ¡¼¥Á¥Ñ¥¹¤ËÂФ¹¤ë¥­¥ã¥Ã¥·¥å¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/charmap.c:1068 -msgid "resulting bytes for range not representable." -msgstr "ÈÏ°ÏÆâ¤Î·ë²Ì¥Ð¥¤¥È¤Ïɽ¸½²Äǽ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó." +#: elf/dl-load.c:543 +msgid "cannot create RUNPATH/RPATH copy" +msgstr "RUNPATH/RPATH¤Î¥³¥Ô¡¼¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: sunrpc/rpc_main.c:1117 -msgid "rpcgen: arglist coding error\n" -msgstr "rpcgen: °ú¿ô¥ê¥¹¥È¥³¡¼¥Ç¥£¥ó¥°¥¨¥é¡¼\n" +#: elf/dl-load.c:598 +msgid "cannot create search path array" +msgstr "¥µ¡¼¥Á¥Ñ¥¹¥¢¥ì¥¤¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: sunrpc/rpc_main.c:1105 -msgid "rpcgen: too many defines\n" -msgstr "rpcgen: ÄêµÁ¤¬Â¿¤¹¤®¤Þ¤¹\n" +#: elf/dl-load.c:794 +msgid "cannot stat shared object" +msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤òstat¤Ç¤­¤Þ¤»¤ó" -#: sunrpc/rpcinfo.c:732 -#, c-format -msgid "rpcinfo: %s is unknown host\n" -msgstr "rpcinfo: %s¤ÏÉÔÌÀ¤Ê¥Û¥¹¥È¤Ç¤¹\n" +#: elf/dl-load.c:838 +msgid "cannot open zero fill device" +msgstr "¥¼¥í¤ÇËä¤á¤é¤ì¤¿¥Ç¥Ð¥¤¥¹¤ò³«¤±¤Þ¤»¤ó" -#: sunrpc/rpcinfo.c:695 -#, c-format -msgid "rpcinfo: %s is unknown service\n" -msgstr "rpcinfo: %s¤ÏÉÔÌÀ¤Ê¥µ¡¼¥Ó¥¹¤Ç¤¹\n" +#: elf/dl-load.c:847 elf/dl-load.c:1902 +msgid "cannot create shared object descriptor" +msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥Èµ­½Ò»Ò¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: sunrpc/rpcinfo.c:665 -#, c-format -msgid "rpcinfo: Could not delete registration for prog %s version %s\n" -msgstr "rpcinfo: ¥×¥í¥°¥é¥à%s¥Ð¡¼¥¸¥ç¥ó%s¤Ø¤ÎÅÐÏ¿¤òºï½ü¤Ç¤­¤Þ¤»¤ó\n" +#: elf/dl-load.c:866 elf/dl-load.c:1398 elf/dl-load.c:1481 +msgid "cannot read file data" +msgstr "¥Õ¥¡¥¤¥ë¥Ç¡¼¥¿¤¬Æɤá¤Þ¤»¤ó" -#: sunrpc/rpcinfo.c:637 -#, c-format -msgid "rpcinfo: broadcast failed: %s\n" -msgstr "rpcinfo: ¥Ö¥í¡¼¥É¥­¥ã¥¹¥È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n" +#: elf/dl-load.c:906 +msgid "ELF load command alignment not page-aligned" +msgstr "ELF¥í¡¼¥É¥³¥Þ¥ó¥É¤Î¥¢¥é¥¤¥ó¥á¥ó¥È¤Ï¥Ú¡¼¥¸¥¢¥é¥¤¥ó¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: sunrpc/rpcinfo.c:556 sunrpc/rpcinfo.c:563 -msgid "rpcinfo: can't contact portmapper" -msgstr "rpcinfo: ¥Ý¡¼¥È¥Þ¥Ã¥Ñ¤ÈÀܳ¤Ç¤­¤Þ¤»¤ó" +#: elf/dl-load.c:913 +msgid "ELF load command address/offset not properly aligned" +msgstr "ELF¥í¡¼¥É¥³¥Þ¥ó¥É¤Î¥¢¥É¥ì¥¹/¥ª¥Õ¥»¥Ã¥È¤ÏŬÀڤ˥¢¥é¥¤¥ó¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: timezone/zic.c:749 timezone/zic.c:751 -msgid "same rule name in multiple files" -msgstr "Ê£¿ô¥Õ¥¡¥¤¥ë¤ËƱ¤¸¥ë¡¼¥ë̾¤¬¤¢¤ê¤Þ¤¹" +#: elf/dl-load.c:988 +msgid "cannot allocate TLS data structures for initial thread" +msgstr "ºÇ½é¤Î¥¹¥ì¥Ã¥É¤Î¤¿¤á¤ÎTLS¥Ç¡¼¥¿¹½Â¤ÂΤ¬³ÎÊݤǤ­¤Þ¤»¤ó" -#: elf/dl-load.c:1104 -msgid "shared object cannot be dlopen()ed" -msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤Ï dlopen() ¤Ç¤­¤Þ¤»¤ó" +#: elf/dl-load.c:1012 +msgid "cannot handle TLS data" +msgstr "TLS¥Ç¡¼¥¿¤ò°·¤¨¤Þ¤»¤ó" -#: elf/dl-close.c:61 -msgid "shared object not open" -msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤¬³«¤±¤Þ¤»¤ó" +#: elf/dl-load.c:1047 +msgid "failed to map segment from shared object" +msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤Î¥»¥°¥á¥ó¥È¤ò¥Þ¥Ã¥×¤¹¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: nscd/connections.c:493 -#, c-format -msgid "short read while reading request key: %s" -msgstr "¥ê¥¯¥¨¥¹¥È¥­¡¼: %s ¤òÆɹþ¤ßÃæ¤Îû¤¤Æɹþ¤ß¤Ç¤¹" +#: elf/dl-load.c:1071 +msgid "cannot dynamically load executable" +msgstr "¼Â¹Ô¥Õ¥¡¥¤¥ë¤òưŪ¤Ë¥í¡¼¥É¤Ç¤­¤Þ¤»¤ó" -#: nscd/connections.c:443 -#, c-format -msgid "short read while reading request: %s" -msgstr "¥ê¥¯¥¨¥¹¥È: %s ¤òÆɹþ¤ßÃæ¤Îû¤¤Æɹþ¤ß¤Ç¤¹" +#: elf/dl-load.c:1132 +msgid "cannot change memory protections" +msgstr "¥á¥â¥êÊݸî¤òÊѹ¹¤Ç¤­¤Þ¤»¤ó" -#: nscd/grpcache.c:193 nscd/hstcache.c:278 nscd/pwdcache.c:189 -#, c-format -msgid "short write in %s: %s" -msgstr "%s ¤Ç¤Îû¤¤½ñ¤­¹þ¤ß: %s" +#: elf/dl-load.c:1151 +msgid "cannot map zero-fill pages" +msgstr "¥¼¥í¤ÇËä¤á¤é¤ì¤¿¥Ú¡¼¥¸¤ò¥Þ¥Ã¥×¤Ç¤­¤Þ¤»¤ó" -#: inet/rcmd.c:261 -msgid "socket: protocol failure in circuit setup\n" -msgstr "socket: ²óÀþ¤Î¥»¥Ã¥È¥¢¥Ã¥×Ãæ¤Ç¥×¥í¥È¥³¥ë¤¬¼ºÇÔ¤·¤Þ¤·¤¿\n" +#: elf/dl-load.c:1169 +msgid "cannot allocate memory for program header" +msgstr "¥×¥í¥°¥é¥à¥Ø¥Ã¥À¤ËÂФ¹¤ë¥á¥â¥ê¤ò³ÎÊݤǤ­¤Þ¤»¤ó" -#: timezone/zic.c:820 -msgid "standard input" -msgstr "ɸ½àÆþÎÏ" +#: elf/dl-load.c:1200 +msgid "object file has no dynamic section" +msgstr "¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë¤ÏưŪ¥»¥¯¥·¥ç¥ó¤ò»ý¤Ã¤Æ¤¤¤Þ¤»¤ó" -#: locale/programs/ld-ctype.c:1681 -msgid "start and end character sequence of range must have the same length" -msgstr "ÈÏ°ÏÆâ¤Î³«»Ï½ªÎ»¥­¥ã¥é¥¯¥¿¥·¡¼¥±¥ó¥¹¤ÏƱ°ìĹ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" +#: elf/dl-load.c:1240 +msgid "shared object cannot be dlopen()ed" +msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤Ï dlopen() ¤Ç¤­¤Þ¤»¤ó" -#: timezone/zic.c:1331 -msgid "starting year greater than ending year" -msgstr "³«»Ïǯ¤¬½ªÎ»Ç¯¤è¤êÂ礭¤¯¤Ê¤Ã¤Æ¤¤¤Þ¤¹" +#: elf/dl-load.c:1263 +msgid "cannot create searchlist" +msgstr "¥µ¡¼¥Á¥ê¥¹¥È¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: timezone/zic.c:1303 timezone/zic.c:1328 -msgid "starting year too high to be represented" -msgstr "³«»Ïǯ¤ÎÃͤ¬Â礭¤¹¤®¤ë¤¿¤áɽ¸½¤Ç¤­¤Þ¤»¤ó" +#: elf/dl-load.c:1398 +msgid "file too short" +msgstr "¥Õ¥¡¥¤¥ë¤¬¾®¤µ¤¹¤®¤Þ¤¹" -#: timezone/zic.c:1301 timezone/zic.c:1326 -msgid "starting year too low to be represented" -msgstr "³«»Ïǯ¤ÎÃͤ¬¾®¤µ¤¹¤®¤ë¤¿¤áɽ¸½¤Ç¤­¤Þ¤»¤ó" +#: elf/dl-load.c:1421 +msgid "invalid ELF header" +msgstr "ÉÔÅö¤ÊELF¥Ø¥Ã¥À" -#: iconv/iconv_prog.c:67 -msgid "suppress warnings" -msgstr "·Ù¹ð¤ÎÍÞÀ©" +#: elf/dl-load.c:1430 +msgid "ELF file data encoding not big-endian" +msgstr "ELF¥Õ¥¡¥¤¥ë¥Ç¡¼¥¿¤¬¥Ó¥Ã¥°¥¨¥ó¥Ç¥£¥¢¥ó¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: sunrpc/svc_run.c:76 -msgid "svc_run: - poll failed" -msgstr "svc_run: - poll¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" +#: elf/dl-load.c:1432 +msgid "ELF file data encoding not little-endian" +msgstr "ELF¥Õ¥¡¥¤¥ë¥Ç¡¼¥¿¤¬¥ê¥È¥ë¥¨¥ó¥Ç¥£¥¢¥ó¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: sunrpc/svc_tcp.c:170 -msgid "svc_tcp.c - cannot getsockname or listen" -msgstr "svc_tcp.c - getsockname¤â¤·¤¯¤Ïlisten¤Ç¤­¤Þ¤»¤ó" +#: elf/dl-load.c:1436 +msgid "ELF file version ident does not match current one" +msgstr "ELF¥Õ¥¡¥¤¥ë¤Î¥Ð¡¼¥¸¥ç¥ó¼±Ê̻Ҥϸ½ºß¤Î¥Õ¥¡¥¤¥ë¤Ë°ìÃפ·¤Æ¤¤¤Þ¤»¤ó" -#: sunrpc/svc_tcp.c:155 -msgid "svc_tcp.c - tcp socket creation problem" -msgstr "svc_tcp.c - tcp¥½¥±¥Ã¥ÈºîÀ®¤ËÌäÂ꤬¤¢¤ê¤Þ¤¹" +#: elf/dl-load.c:1440 +msgid "ELF file OS ABI invalid" +msgstr "ELF¥Õ¥¡¥¤¥ë¤ÎOS ABI¤¬ÉÔÀµ¤Ç¤¹." -#: 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" +#: elf/dl-load.c:1442 +msgid "ELF file ABI version invalid" +msgstr "ELF¥Õ¥¡¥¤¥ë¤ÎABI¥Ð¡¼¥¸¥ç¥ó¤¬ÉÔÀµ¤Ç¤¹." -#: sunrpc/svc_unix.c:146 -msgid "svc_unix.c - AF_UNIX socket creation problem" -msgstr "svc_unix.c - AF_UNIX¥½¥±¥Ã¥ÈºîÀ®¤ËÌäÂ꤬¤¢¤ê¤Þ¤¹" +#: elf/dl-load.c:1445 +msgid "internal error" +msgstr "ÆâÉô¥¨¥é¡¼" -#: sunrpc/svc_unix.c:162 -msgid "svc_unix.c - cannot getsockname or listen" -msgstr "svc_unix.c - getsockname¤â¤·¤¯¤Ïlisten¤Ç¤­¤Þ¤»¤ó" +#: elf/dl-load.c:1452 +msgid "ELF file version does not match current one" +msgstr "ELF¥Õ¥¡¥¤¥ë¤Î¥Ð¡¼¥¸¥ç¥óÈֹ椬¸½ºß¤Î¥Õ¥¡¥¤¥ë¤Ë°ìÃפ·¤Æ¤¤¤Þ¤»¤ó" -#: sunrpc/svc_unix.c:212 sunrpc/svc_unix.c:218 -msgid "svc_unix: makefd_xprt: out of memory\n" -msgstr "svc_unix: makefd_xprt: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" +#: elf/dl-load.c:1460 +msgid "ELF file's phentsize not the expected size" +msgstr "ELF¥Õ¥¡¥¤¥ë¤Îphentsize¤Ï´üÂÔ¤µ¤ì¤ë¥µ¥¤¥º¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: sunrpc/svc_tcp.c:178 sunrpc/svc_tcp.c:186 -msgid "svctcp_create: out of memory\n" -msgstr "svctcp_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" +#: elf/dl-load.c:1466 +msgid "only ET_DYN and ET_EXEC can be loaded" +msgstr "ET_DYN ¤È ET_EXEC ¤À¤±¤¬¥í¡¼¥É¤Ç¤­¤Þ¤·¤¿" -#: sunrpc/svc_udp.c:141 -msgid "svcudp_create - cannot getsockname" -msgstr "svcudp_create - getsockname¤Ç¤­¤Þ¤»¤ó" +#: elf/dl-load.c:1917 +msgid "cannot open shared object file" +msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó" -#: sunrpc/svc_udp.c:149 sunrpc/svc_udp.c:155 sunrpc/svc_udp.c:161 -msgid "svcudp_create: out of memory\n" -msgstr "svcudp_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" +#: elf/dl-lookup.c:265 elf/dl-lookup.c:430 +msgid "relocation error" +msgstr "ºÆÇÛÃÖ¥¨¥é¡¼" -#: sunrpc/svc_udp.c:127 -msgid "svcudp_create: socket creation problem" -msgstr "svcudp_create: ¥½¥±¥Ã¥È¤ÎºîÀ®¤ËÌäÂ꤬¤¢¤ê¤Þ¤¹" +#: elf/dl-open.c:111 +msgid "cannot extend global scope" +msgstr "Âç°èŪ¥¹¥³¡¼¥×¤ò³ÈÄ¥¤Ç¤­¤Þ¤»¤ó" -#: sunrpc/svc_udp.c:177 -msgid "svcudp_create: xp_pad is too small for IP_PKTINFO\n" -msgstr "svcudp_create: xp_pad¤ÏIP_PKTINFO¤ËÂФ·¤Æ¾®¤µ¤¹¤®¤Þ¤¹\n" +#: elf/dl-open.c:214 +msgid "empty dynamic string token substitution" +msgstr "¶õ¤ÊưŪʸ»úÎó¥È¡¼¥¯¥ó¤ÎÂåÆþ" -#: sunrpc/svc_unix.c:171 sunrpc/svc_unix.c:179 -msgid "svcunix_create: out of memory\n" -msgstr "svcunix_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" +#: elf/dl-open.c:351 elf/dl-open.c:362 +msgid "cannot create scope list" +msgstr "¥¹¥³¡¼¥×¥ê¥¹¥È¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/linereader.c:750 -#, c-format -msgid "symbol `%.*s' not in charmap" -msgstr "ÉÔÌÀ¤Ê¥·¥ó¥Ü¥ë`%.*s'¤¬¤¢¤ê¤Þ¤·¤¿: ¤³¤Î¹Ô¤Ï̵»ë¤·¤Þ¤¹" +#: elf/dl-open.c:424 +msgid "cannot create TLS data structures" +msgstr "TLS¥Ç¡¼¥¿¹½Â¤ÂΤòºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/linereader.c:771 -#, c-format -msgid "symbol `%.*s' not in repertoire map" -msgstr "¥·¥ó¥Ü¥ë `%.*s' ¤¬¥ì¥Ñ¡¼¥È¥ê¥Þ¥Ã¥×Ãæ¤Ë¤¢¤ê¤Þ¤»¤ó" +#: elf/dl-open.c:486 +msgid "invalid mode for dlopen()" +msgstr "dlopen()¤ËÂФ¹¤ëÉÔÀµ¤Ê¥â¡¼¥É¤Ç¤¹" -#: locale/programs/ld-collate.c:1630 locale/programs/ld-collate.c:1729 -#, c-format -msgid "symbol `%s'" -msgstr "¥·¥ó¥Ü¥ë `%s'" +#: elf/dl-reloc.c:58 +msgid "shared object cannot be dlopen()ed: static TLS memory too small" +msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¤Ï dlopen() ¤Ç¤­¤Þ¤»¤ó: TLS ÍÑÀÅŪ¥á¥â¥ê¤¬¾®¤µ¤¹¤®¤Þ¤¹" + +#: elf/dl-reloc.c:118 +msgid "cannot make segment writable for relocation" +msgstr "ºÆ³ÎÊÝÍѤΥ»¥°¥á¥ó¥È¤ò½ñ¹þ¤ß²Äǽ¤Ë¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/ld-collate.c:1627 locale/programs/ld-collate.c:1726 +#: elf/dl-reloc.c:219 #, c-format -msgid "symbol `%s' has the same encoding as" -msgstr "¥·¥ó¥Ü¥ë `%s' ¤Ï°Ê²¼¤ÈƱ¤¸¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹" +msgid "%s: profiler found no PLTREL in object %s\n" +msgstr "%s: ¥×¥í¥Õ¥¡¥¤¥é¤¬¥ª¥Ö¥¸¥§¥¯¥È %s Ãæ¤Ë PLTREL ¤¬¤Ê¤¤¤³¤È¤ò¸«¤Ä¤±¤Þ¤·¤¿\n" -#: locale/programs/ld-collate.c:1552 +#: elf/dl-reloc.c:231 #, c-format -msgid "symbol `%s' not defined" -msgstr "¥·¥ó¥Ü¥ë`%s'¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" +msgid "%s: profiler out of memory shadowing PLTREL of %s\n" +msgstr "%s: %s ¤Î PLTREL ÍÑ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" -#: locale/programs/ld-ctype.c:1956 locale/programs/ld-ctype.c:2007 -#: locale/programs/ld-ctype.c:2049 -msgid "syntax error" -msgstr "ʸˡ¥¨¥é¡¼" +#: elf/dl-reloc.c:246 +msgid "cannot restore segment prot after reloc" +msgstr "ºÆÇÛÃÖ¸å¤Ë¥»¥°¥á¥ó¥Èprot¤ò¥ê¥¹¥È¥¢¤Ç¤­¤Þ¤»¤ó" -#: 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" +#: elf/dl-sym.c:74 elf/dl-sym.c:145 +msgid "RTLD_NEXT used in code not dynamically loaded" +msgstr "¥³¡¼¥ÉÃæ¤Ç»È¤ï¤ì¤Æ¤¤¤ëRTLD_NEXT¤òưŪ¤ËÆɤ߹þ¤á¤Þ¤»¤ó" -#: locale/programs/charmap.c:351 locale/programs/charmap.c:368 -#: locale/programs/repertoire.c:175 -#, c-format -msgid "syntax error in prolog: %s" -msgstr "prolog Ãæ¤Çʸˡ¥¨¥é¡¼¤Ç¤¹: %s" +#: elf/dl-version.c:302 +msgid "cannot allocate version reference table" +msgstr "¥Ð¡¼¥¸¥ç¥ó»²¾È¥ê¥¹¥È¤ò³ÎÊݤǤ­¤Þ¤»¤ó" -#: locale/programs/repertoire.c:230 locale/programs/repertoire.c:271 -#: locale/programs/repertoire.c:296 -#, c-format -msgid "syntax error in repertoire map definition: %s" -msgstr "¥ì¥Ñ¡¼¥È¥ê¥Þ¥Ã¥×¤ÎÄêµÁÃæ¤Ëʸˡ¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹: %s" +#: elf/ldconfig.c:122 +msgid "Print cache" +msgstr "¥­¥ã¥Ã¥·¥å¤Îɽ¼¨" -#: locale/programs/locfile.c:245 -msgid "syntax error: not inside a locale definition section" -msgstr "ʸˡ¥¨¥é¡¼: ¥í¥±¡¼¥ëÄêµÁ¥»¥¯¥·¥ç¥óÆâÉô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" +#: elf/ldconfig.c:123 +msgid "Generate verbose messages" +msgstr "¾ÜºÙ¤Ê¥á¥Ã¥»¡¼¥¸¤Îɽ¼¨" -#: catgets/gencat.c:432 catgets/gencat.c:605 catgets/gencat.c:634 -msgid "this is the first definition" -msgstr "¤³¤ì¤¬ºÇ½é¤ÎÄêµÁ¤Ç¤¹" +#: elf/ldconfig.c:124 +msgid "Don't build cache" +msgstr "¥­¥ã¥Ã¥·¥å¤Î¹½ÃÛ¤ò¹Ô¤ï¤Ê¤¤" -#: timezone/zic.c:1163 -msgid "time before zero" -msgstr "¥¼¥íÁ°¤Î»þ¹ï" +#: elf/ldconfig.c:125 +msgid "Don't generate links" +msgstr "¥ê¥ó¥¯¤òÀ¸À®¤·¤Ê¤¤" -#: timezone/zic.c:1171 timezone/zic.c:2048 timezone/zic.c:2067 -msgid "time overflow" -msgstr "»þ´Ö¥ª¡¼¥Ð¡¼¥Õ¥í¡¼" +#: elf/ldconfig.c:126 +msgid "Change to and use ROOT as root directory" +msgstr "¥ë¡¼¥È¥Ç¥£¥ì¥¯¥È¥ê¤È¤·¤ÆROOT¤ò»ÈÍѤ·¡¢¤½¤³¤ØÊѹ¹¤·¤Þ¤¹" -#: locale/programs/ld-ctype.c:1554 locale/programs/ld-ctype.c:2030 -#, c-format -msgid "to-value of range is smaller than from-value " -msgstr "ÈÏ°ÏÆâ¤Îto¤ÎÃÍ ¤Ïfrom¤ÎÃÍ ¤è¤ê¤â¾®¤µ¤¹¤®¤Þ¤¹" +#: elf/ldconfig.c:127 +msgid "Use CACHE as cache file" +msgstr "¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë¤È¤·¤Æ CACHE ¤ò»ÈÍѤ·¤Þ¤¹" -#: locale/programs/ld-ctype.c:1688 -msgid "to-value character sequence is smaller than from-value sequence" -msgstr "toÃͤÎʸ»ú¥·¡¼¥±¥ó¥¹¤ÏfromÃͤÎʸ»ú¥·¡¼¥±¥ó¥¹¤è¤ê¤â¾®¤µ¤¹¤®¤Þ¤¹" +#: elf/ldconfig.c:128 +msgid "Use CONF as configuration file" +msgstr "ÀßÄê¥Õ¥¡¥¤¥ë¤È¤·¤Æ CONF ¤ò»ÈÍѤ·¤Þ¤¹" -#: locale/programs/charmap.c:556 -msgid "too few bytes in character encoding" -msgstr "ʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°Ãæ¤Ç¤Î¥Ð¥¤¥È¿ô¤¬¾¯¤Ê¤¹¤®¤Þ¤¹" +#: elf/ldconfig.c:129 +msgid "Only process directories specified on the command line. Don't build cache." +msgstr "¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê¤Î¤ß½èÍý¤·¤Þ¤¹. ¥­¥ã¥Ã¥·¥å¤ò¹½ÃÛ¤·¤Þ¤»¤ó." -#: locale/programs/charmap.c:558 -msgid "too many bytes in character encoding" -msgstr "ʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°Ãæ¤Ç¤Î¥Ð¥¤¥È¿ô¤¬Â¿¤¹¤®¤Þ¤¹" +#: elf/ldconfig.c:130 +msgid "Manually link individual libraries." +msgstr "¸Ä¡¹¤Î¥é¥¤¥Ö¥é¥ê¤Ë¼êÆ°¤Ç¥ê¥ó¥¯¤·¤Æ¤¯¤À¤µ¤¤." -#: timezone/zic.c:1874 -msgid "too many leap seconds" -msgstr "¤¦¤ë¤¦Éä¬Â礭¤¹¤®¤Þ¤¹" +#: elf/ldconfig.c:131 +msgid "Format to use: new, old or compat (default)" +msgstr "»ÈÍÑ¥Õ¥©¡¼¥Þ¥Ã¥È: ¿·, µì, ¸ß´¹ (¥Ç¥Õ¥©¥ë¥È)" -#: timezone/zic.c:1846 -msgid "too many local time types" -msgstr "¥í¡¼¥«¥ë»þ´Ö·Á¼°¤¬Â¿¤¹¤®¤Þ¤¹" +#: elf/ldconfig.c:136 +msgid "Configure Dynamic Linker Run Time Bindings." +msgstr "¥À¥¤¥Ê¥ß¥Ã¥¯¥ê¥ó¥«¤Î¥é¥ó¥¿¥¤¥à¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÀßÄꤷ¤Þ¤¹." -#: timezone/zic.c:1800 -msgid "too many transitions?!" -msgstr "Á«°ÜÀ褬¿¤¹¤®¤Þ¤¹?!" +#: elf/ldconfig.c:294 +#, c-format +msgid "Path `%s' given more than once" +msgstr "1²ó°Ê¾åÍ¿¤¨¤é¤ì¤¿¥Ñ¥¹`%s'" -#: timezone/zic.c:2171 -msgid "too many, or too long, time zone abbreviations" -msgstr "¥¿¥¤¥à¥¾¡¼¥ó¤Î¾Êά̾¤¬Â¿¤¹¤®¤ë¤«Ä¹¤¹¤®¤Þ¤¹" +#: elf/ldconfig.c:338 +#, c-format +msgid "%s is not a known library type" +msgstr "%s ¤Ï̤ÃΤΥ饤¥Ö¥é¥ê¥¿¥¤¥×¤Ç¤¹" -#: locale/programs/linereader.h:160 -msgid "trailing garbage at end of line" -msgstr "¹ÔËö¤Ë¥´¥ß¤¬»Ä¤Ã¤Æ¤¤¤Þ¤¹" +#: elf/ldconfig.c:356 +#, c-format +msgid "Can't stat %s" +msgstr "stat %s ¤¬¤Ç¤­¤Þ¤»¤ó" -#: sunrpc/svc_simple.c:160 +#: elf/ldconfig.c:426 #, c-format -msgid "trouble replying to prog %d\n" -msgstr "¥×¥í¥°¥é¥à %d ¤Ø¤Î±þÅúÃæ¤ËÌäÂ꤬µ¯¤­¤Þ¤·¤¿\n" +msgid "Can't stat %s\n" +msgstr "stat %s ¤¬¤Ç¤­¤Þ¤»¤ó\n" -#: timezone/zic.c:1338 -msgid "typed single year" -msgstr "typed single year" +#: elf/ldconfig.c:436 +#, c-format +msgid "%s is not a symbolic link\n" +msgstr "%s ¤Ï¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" -#: iconv/iconv_charmap.c:524 iconv/iconv_prog.c:533 -msgid "unable to allocate buffer for input" -msgstr "ÆþÎÏÍѥХåե¡¤ò³ä¤êÅö¤Æ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó" +#: elf/ldconfig.c:455 +#, c-format +msgid "Can't unlink %s" +msgstr "%s ¤ò¥¢¥ó¥ê¥ó¥¯¤Ç¤­¤Þ¤»¤ó" -#: nis/nis_callback.c:189 -msgid "unable to free arguments" -msgstr "°ú¿ô¤ò²òÊü¤Ç¤­¤Þ¤»¤ó" +#: elf/ldconfig.c:461 +#, c-format +msgid "Can't link %s to %s" +msgstr "%s ¤«¤é %s ¤Ø¥ê¥ó¥¯¤òÄ¥¤ì¤Þ¤»¤ó" -#: posix/getconf.c:968 posix/getconf.c:984 -msgid "undefined" -msgstr "̤ÄêµÁ" +#: elf/ldconfig.c:467 +msgid " (changed)\n" +msgstr " (Êѹ¹)\n" -#: elf/cache.c:69 -msgid "unknown" -msgstr "ÉÔÌÀ" +#: elf/ldconfig.c:469 +msgid " (SKIPPED)\n" +msgstr " (¥¹¥­¥Ã¥×)\n" -#: locale/programs/charmap.c:861 locale/programs/charmap.c:872 +#: elf/ldconfig.c:524 #, c-format -msgid "unknown character `%s'" -msgstr "ÉÔÌÀ¤Êʸ»ú`%s'" +msgid "Can't find %s" +msgstr "%s ¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" -#: catgets/gencat.c:562 +#: elf/ldconfig.c:540 #, c-format -msgid "unknown directive `%s': line ignored" -msgstr "ÉÔÌÀ¤Ê»Ø¼¨`%s'¤¬¤¢¤ê¤Þ¤·¤¿: ¤³¤Î¹Ô¤Ï̵»ë¤·¤Þ¤¹" +msgid "Can't lstat %s" +msgstr "lstat %s ¤Ç¤­¤Þ¤»¤ó" -#: iconv/iconv_prog.c:480 +#: elf/ldconfig.c:547 #, c-format -msgid "unknown iconv() error %d" -msgstr "ÉÔÌÀ¤Ê iconv() ¥¨¥é¡¼ %d" +msgid "Ignored file %s since it is not a regular file." +msgstr "Àµµ¬¤Î¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤¿¤á¥Õ¥¡¥¤¥ë %s ¤ò̵»ë¤·¤Þ¤¹" -#: catgets/gencat.c:508 +#: elf/ldconfig.c:555 #, c-format -msgid "unknown set `%s'" -msgstr "ÉÔÌÀ¤Ê¥»¥Ã¥È`%s'¤Ç¤¹" +msgid "No link created since soname could not be found for %s" +msgstr "%s ¤ËÂФ¹¤ë soname ¤¬¸«¤Ä¤«¤é¤Ê¤¤¤¿¤á¥ê¥ó¥¯¤¬ºîÀ®¤µ¤ì¤Þ¤»¤ó" -#: posix/getconf.c:941 +#: elf/ldconfig.c:646 #, c-format -msgid "unknown specification \"%s\"" -msgstr "̤ÃΤλÅÍÍ \"%s\" ¤Ç¤¹" +msgid "Can't open directory %s" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò³«¤±¤Þ¤»¤ó" -#: timezone/zic.c:792 -msgid "unruly zone" -msgstr "unruly zone" +#: elf/ldconfig.c:701 elf/ldconfig.c:748 +#, c-format +msgid "Cannot lstat %s" +msgstr "lstat %s ¤Ç¤­¤Þ¤»¤ó" -#: catgets/gencat.c:1174 -msgid "unterminated message" -msgstr "¥á¥Ã¥»¡¼¥¸¤¬½ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó" +#: elf/ldconfig.c:713 +#, c-format +msgid "Cannot stat %s" +msgstr "stat %s ¤¬¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/linereader.c:604 locale/programs/linereader.c:789 -msgid "unterminated string" -msgstr "ʸ»úÎ󤬽ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó" +#: elf/ldconfig.c:770 elf/readlib.c:93 +#, c-format +msgid "Input file %s not found.\n" +msgstr "ÆþÎÏ¥Õ¥¡¥¤¥ë %s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó.\n" -#: sunrpc/rpc_scan.c:351 sunrpc/rpc_scan.c:377 -msgid "unterminated string constant" -msgstr "ʸ»úÎóÄê¿ô¤¬½ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó" +#: elf/ldconfig.c:804 +#, c-format +msgid "libc5 library %s in wrong directory" +msgstr "¸í¤Ã¤¿¥Ç¥£¥ì¥¯¥È¥êÆâ¤Îlibc5¥é¥¤¥Ö¥é¥ê %s" -#: locale/programs/linereader.c:474 -msgid "unterminated symbolic name" -msgstr "¥·¥ó¥Ü¥ë̾¤¬½ªÎ»¤·¤Æ¤¤¤Þ¤»¤ó" +#: elf/ldconfig.c:807 +#, c-format +msgid "libc6 library %s in wrong directory" +msgstr "¸í¤Ã¤¿¥Ç¥£¥ì¥¯¥È¥êÆâ¤Îlibc6¥é¥¤¥Ö¥é¥ê %s" -#: locale/programs/charmap.c:1010 -msgid "upper limit in range is not higher then lower limit" -msgstr "ÈÏ°ÏÆâ¤Î¾å¸Â¤Ï²¼¸Â¤è¤êÂ礭¤¯¤¢¤ê¤Þ¤»¤ó" +#: elf/ldconfig.c:810 +#, c-format +msgid "libc4 library %s in wrong directory" +msgstr "¸í¤Ã¤¿¥Ç¥£¥ì¥¯¥È¥êÆâ¤Îlibc4¥é¥¤¥Ö¥é¥ê %s " -#: locale/programs/repertoire.c:455 -msgid "upper limit in range is not smaller then lower limit" -msgstr "ÈÏ°ÏÆâ¤Î¾å¸Â¤Ï²¼¸Â¤è¤ê¾®¤µ¤¯¤¢¤ê¤Þ¤»¤ó" +#: elf/ldconfig.c:837 +#, c-format +msgid "libraries %s and %s in directory %s have same soname but different type." +msgstr "¥Ç¥£¥ì¥¯¥È¥ê %3$s Æâ¤Ë¤¢¤ë¥é¥¤¥Ö¥é¥ê %1$s ¤È %2$s ¤ÏƱ°ì¤Î soname ¤Ç¤¹¤¬°Û¤Ê¤Ã¤¿¥¿¥¤¥×¤Ç¤¹." -#: sunrpc/rpc_main.c:1426 +#: elf/ldconfig.c:940 #, c-format -msgid "usage: %s infile\n" -msgstr "»ÈÍÑË¡: %s ÆþÎÏ¥Õ¥¡¥¤¥ë\n" +msgid "Can't open configuration file %s" +msgstr "ÀßÄê¥Õ¥¡¥¤¥ë %s ¤ò³«¤±¤Þ¤»¤ó" -#: timezone/zic.c:2114 -msgid "use of 2/29 in non leap-year" -msgstr "±¼Ç¯¤Ç¤Ï¤Ê¤¤¤Î¤Ë2/29¤ò»È¤Ã¤Æ¤¤¤Þ¤¹" +#: elf/ldconfig.c:1024 +msgid "Can't chdir to /" +msgstr "/ ¤Ëchdir¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/charmap.c:645 locale/programs/charmap.c:708 +#: elf/ldconfig.c:1066 #, c-format -msgid "value for %s must be an integer" -msgstr "%s¤ÎÃͤÏÀ°¿ô¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" +msgid "Can't open cache file directory %s\n" +msgstr "¥­¥ã¥Ã¥·¥å¥Õ¥¡¥¤¥ë¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò³«¤±¤Þ¤»¤ó\n" -#: locale/programs/charmap.c:404 +#: elf/readlib.c:99 #, c-format -msgid "value for <%s> must be 1 or greater" -msgstr "<%s> ¤ÎÃͤÏ1°Ê¾å¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" +msgid "Cannot fstat file %s.\n" +msgstr "¥Õ¥¡¥¤¥ë %s ¤ò fstat ¤Ç¤­¤Þ¤»¤ó.\n" -#: locale/programs/charmap.c:416 +#: elf/readlib.c:109 #, c-format -msgid "value of <%s> must be greater or equal than the value of <%s>" -msgstr "<%s> ¤ÎÃÍ¤Ï <%s> ¤ÎÃͰʾå¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó" +msgid "File %s is too small, not checked." +msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¾®¤µ¤¹¤®¤Þ¤¹, ¥Á¥§¥Ã¥¯¤µ¤ì¤Æ¤¤¤Þ¤»¤ó." -#: timezone/zic.c:439 -msgid "warning: " -msgstr "·Ù¹ð: " +#: elf/readlib.c:118 +#, c-format +msgid "Cannot mmap file %s.\n" +msgstr "¥Õ¥¡¥¤¥ë %s ¤òmmap¤Ç¤­¤Þ¤»¤ó.\n" -#: nscd/connections.c:432 +#: elf/readlib.c:158 #, c-format -msgid "while accepting connection: %s" -msgstr "¼õÉÕ¥³¥Í¥¯¥·¥ç¥óÃæ: %s" +msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n" +msgstr "%s ¤ÏELF¥Õ¥¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó - ´Ö°ã¤Ã¤¿magic¥Ð¥¤¥È¤ò¥Õ¥¡¥¤¥ë¤ÎÀèƬ¤Ë»ý¤Ã¤Æ¤¤¤Þ¤¹.\n" -#: nscd/grpcache.c:150 nscd/hstcache.c:165 nscd/pwdcache.c:143 -msgid "while allocating cache entry" -msgstr "¥­¥ã¥Ã¥·¥å¥¨¥ó¥È¥ê³ä¤êÅö¤ÆÃæ" +#: elf/sprof.c:72 +msgid "Output selection:" +msgstr "½ÐÎÏÁªÂò:" -#: nscd/cache.c:88 -msgid "while allocating hash table entry" -msgstr "¥Ï¥Ã¥·¥å¥Æ¡¼¥Ö¥ë¥¨¥ó¥È¥ê³ä¤êÅö¤ÆÃæ" +#: elf/sprof.c:74 +msgid "print list of count paths and their number of use" +msgstr "¥«¥¦¥ó¥È¤·¤¿·ÐÏ©¤È¤½¤ì¤é¤Î»ÈÍÑ¿ô¤Î¥ê¥¹¥È¤òɽ¼¨" -#: nscd/grpcache.c:100 nscd/hstcache.c:108 nscd/pwdcache.c:106 -msgid "while allocating key copy" -msgstr "¥­¡¼¥³¥Ô¡¼³ä¤êÅö¤ÆÃæ" +#: elf/sprof.c:76 +msgid "generate flat profile with counts and ticks" +msgstr "¥«¥¦¥ó¥È¤È¥Æ¥£¥Ã¥¯¤ò¥Õ¥é¥Ã¥È¤Ë¥×¥í¥Õ¥¡¥¤¥ëÀ¸À®¤·¤Þ¤¹" -#: iconv/iconvconfig.c:369 -msgid "while inserting in search tree" -msgstr "¸¡º÷ÌÚ¤ØÁÞÆþÃæ¤Ç¤¹" +#: elf/sprof.c:77 +msgid "generate call graph" +msgstr "¸Æ¤Ó½Ð¤·¥°¥é¥Õ¤òÀ¸À®¤·¤Þ¤¹" -#: catgets/gencat.c:1198 -msgid "while opening old catalog file" -msgstr "¸Å¤¤¥«¥¿¥í¥°¥Õ¥¡¥¤¥ë¥ª¡¼¥×¥óÃæ" +#: elf/sprof.c:84 +msgid "Read and display shared object profiling data" +msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¥Ç¡¼¥¿¤òÆɤ߹þ¤ßɽ¼¨¤¹¤ë" -#: locale/programs/locale.c:353 -msgid "while preparing output" -msgstr "Á°½èÍý½ÐÎÏÃæ" +#: elf/sprof.c:87 +msgid "SHOBJ [PROFDATA]" +msgstr "SHOBJ [PROFDATA]" -#: elf/sprof.c:679 -msgid "while stat'ing profiling data file" -msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥Õ¥¡¥¤¥ë½ñ¤­¹þ¤ßÃæ" +#: elf/sprof.c:398 +#, c-format +msgid "failed to load shared object `%s'" +msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È`%s' ¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ" -#: locale/programs/ld-ctype.c:2394 -msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" -msgstr "UCS ¤ÎÃͤÎÈϰϤȤ·¤Æ16¿Ê¥·¥ó¥Ü¥ë¾Êά `..' ¤ò»ÈÍѤ·¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" +#: elf/sprof.c:407 +msgid "cannot create internal descriptors" +msgstr "ÆâÉôµ­½Ò»Ò¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: locale/programs/ld-ctype.c:2408 -msgid "with character code range values one must use the absolute ellipsis `...'" -msgstr "ʸ»ú¥³¡¼¥É¤ÎÃͤÎÈϰϤȤ·¤ÆÀäÂоÊά `...' ¤ò»ÈÍѤ·¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" +#: elf/sprof.c:526 +#, c-format +msgid "Reopening shared object `%s' failed" +msgstr "¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È`%s'¤ÎºÆ¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: locale/programs/ld-ctype.c:2379 -msgid "with symbolic name range values the absolute ellipsis `...' must not be used" -msgstr "¥·¥ó¥Ü¥ë̾¤ÎÃͤÎÈϰϤȤ·¤ÆÀäÂоÊά `...' ¤Ï»ÈÍѤ·¤Æ¤Ï¤¤¤±¤Þ¤»¤ó" +#: elf/sprof.c:534 +msgid "mapping of section headers failed" +msgstr "¥»¥¯¥·¥ç¥ó¥Ø¥Ã¥À¤Î¥Þ¥Ã¥Ô¥ó¥°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: nscd/nscd_stat.c:116 -msgid "write incomplete" -msgstr "½ñ¹þ¤ß¤¬ÉÔ´°Á´¤Ç¤¹" +#: elf/sprof.c:544 +msgid "mapping of section header string table failed" +msgstr "¥»¥¯¥·¥ç¥ó¥Ø¥Ã¥À¤Îʸ»úÎó¥Æ¡¼¥Ö¥ë¤Î¥Þ¥Ã¥Ô¥ó¥°¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: inet/rcmd.c:427 -msgid "writeable by other than owner" -msgstr "½êÍ­¼Ô°Ê³°¤¬½ñ¤­¹þ¤ß¤¬²Äǽ¤Ç¤¹" +#: elf/sprof.c:564 +#, c-format +msgid "*** The file `%s' is stripped: no detailed analysis possible\n" +msgstr "*** ¥Õ¥¡¥¤¥ë `%s' ¤Ï strip ¤µ¤ì¤Æ¤¤¤Þ¤¹: ¾ÜºÙ¤Ê²òÀϤ¬½ÐÍè¤Þ¤»¤ó\n" -#: nscd/nscd.c:123 nscd/nscd_nischeck.c:64 nss/getent.c:761 -msgid "wrong number of arguments" -msgstr "°ú¿ô¤Î¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" +#: elf/sprof.c:594 +msgid "failed to load symbol data" +msgstr "¥·¥ó¥Ü¥ë¾ðÊó¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ" -#: timezone/zic.c:1121 -msgid "wrong number of fields on Leap line" -msgstr "Leap¹Ô¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" +#: elf/sprof.c:664 +msgid "cannot load profiling data" +msgstr "¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¥Ç¡¼¥¿¤ò¥í¡¼¥É¤Ç¤­¤Þ¤»¤ó" -#: timezone/zic.c:1212 -msgid "wrong number of fields on Link line" -msgstr "Link¹Ô¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" +#: elf/sprof.c:673 +msgid "while stat'ing profiling data file" +msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥Õ¥¡¥¤¥ë½ñ¤­¹þ¤ßÃæ" -#: timezone/zic.c:955 -msgid "wrong number of fields on Rule line" -msgstr "Rule¹Ô¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" +#: elf/sprof.c:681 +#, c-format +msgid "profiling data file `%s' does not match shared object `%s'" +msgstr "¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¥Ç¡¼¥¿¥Õ¥¡¥¤¥ë`%s'¤Ï¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È`%s'¤È°ìÃפ·¤Þ¤»¤ó" -#: timezone/zic.c:1025 -msgid "wrong number of fields on Zone continuation line" -msgstr "Zone continuation¹Ô¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" +#: elf/sprof.c:692 +msgid "failed to mmap the profiling data file" +msgstr "¥×¥í¥Õ¥¡¥¤¥ë¾ðÊó¥Õ¥¡¥¤¥ë¤Îmmap¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: timezone/zic.c:983 -msgid "wrong number of fields on Zone line" -msgstr "Zone¹Ô¤Î¥Õ¥£¡¼¥ë¥É¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" +#: elf/sprof.c:700 +msgid "error while closing the profiling data file" +msgstr "¥×¥í¥Õ¥¡¥¤¥ë¾ðÊó¥Õ¥¡¥¤¥ë¤òÊĤ¸¤Æ¤¤¤ë´Ö¤Î¥¨¥é¡¼" -#: sunrpc/xdr_ref.c:85 -msgid "xdr_reference: out of memory\n" -msgstr "xdr_reference: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" +#: elf/sprof.c:709 elf/sprof.c:779 +msgid "cannot create internal descriptor" +msgstr "ÆâÉôµ­½Ò»Ò¤òºîÀ®¤Ç¤­¤Þ¤»¤ó" -#: sunrpc/xdr_rec.c:151 sunrpc/xdr_rec.c:166 -msgid "xdrrec_create: out of memory\n" -msgstr "xdrrec_create: ¥á¥â¥ê¤¬Â­¤ê¤Þ¤»¤ó\n" +#: elf/sprof.c:755 +#, c-format +msgid "`%s' is no correct profile data file for `%s'" +msgstr "%s'¤Ï`%s'¤ËÂФ¹¤ëÀµ¤·¤¤¥×¥í¥Õ¥¡¥¤¥ë¥Ç¡¼¥¿¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" -#: nis/ypclnt.c:909 -msgid "yp_update: cannot convert host to netname\n" -msgstr "yp_update: ¥Û¥¹¥È¤ò¥Í¥Ã¥È̾¤ØÊÑ´¹¤Ç¤­¤Þ¤»¤ó\n" +#: elf/sprof.c:936 elf/sprof.c:988 +msgid "cannot allocate symbol data" +msgstr "¥·¥ó¥Ü¥ë¾ðÊó¤ò³ÎÊݤǤ­¤Þ¤»¤ó" -#: nis/ypclnt.c:921 -msgid "yp_update: cannot get server address\n" -msgstr "yp_update: ¥µ¡¼¥Ð¥¢¥É¥ì¥¹¤òÆÀ¤é¤ì¤Þ¤»¤ó\n" +#~ 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 ¤ÎÈϰϤˤʤ±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" + +#~ msgid "Failed to look up user '%s' to run server as" +#~ msgstr "¥µ¡¼¥Ð¡¼¤ò¼Â¹Ô¤µ¤»¤ë¤¿¤á¤Î¥æ¡¼¥¶'%s'¤Î¸¡º÷¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" + +#~ msgid "no filename for profiling data given and shared object `%s' has no soname" +#~ msgstr "¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¥Ç¡¼¥¿¤Î¥Õ¥¡¥¤¥ë̾¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Ê¤¤¤«¡¢¶¦Í­¥ª¥Ö¥¸¥§¥¯¥È`%s' ¤¬soname¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" diff --git a/posix/PTESTS b/posix/PTESTS index 8732a2ccfe..02b357cf2e 100644 --- a/posix/PTESTS +++ b/posix/PTESTS @@ -226,11 +226,18 @@ 1¦20¦a\(.*b\)c¦axcaxbbbcsxbbbbbbbbc¦ # GA135 1¦7¦\(a\(b\(c\(d\(e\)\)\)\)\)\4¦abcdededede¦ -1¦2¦a\(b\)*c\1¦acb¦ +#W POSIX does not really specify whether a\(b\)*c\1 matches acb. +#W back references are supposed to expand to the last match, but what +#W if there never was a match as in this case? +-1¦-1¦a\(b\)*c\1¦acb¦ 1¦11¦\(a\(b\(c\(d\(e\(f\(g\)h\(i\(j\)\)\)\)\)\)\)\)\9¦abcdefghijjk¦ # GA136 -1¦2¦a\(b\)*c\1¦acb¦ -4¦7¦a\(b\(c\(d\(f\)*\)\)\)\4¦xYzabcdePQRST¦ +#W These two tests have the same problem as the test in GA135. No match +#W of a subexpression, why should the back reference be usable? +#W 1 2 a\(b\)*c\1 acb +#W 4 7 a\(b\(c\(d\(f\)*\)\)\)\4¦xYzabcdePQRST +-1¦-1¦a\(b\)*c\1¦acb¦ +-1¦-1¦a\(b\(c\(d\(f\)*\)\)\)\4¦xYzabcdePQRST¦ # GA137 -2¦-2¦\(a\(b\)\)\3¦foo¦ -2¦-2¦\(a\(b\)\)\(a\(b\)\)\5¦foo¦ diff --git a/posix/bug-regex11.c b/posix/bug-regex11.c index 7c7ef52e73..a9c319e2d6 100644 --- a/posix/bug-regex11.c +++ b/posix/bug-regex11.c @@ -54,13 +54,22 @@ struct { "(^|foo)bar", "(^|foo)bar", 0, 2, { { 0, 10 }, { -1, -1 } } }, { "(foo|^)bar", "(foo|^)bar", 0, 2, { { 0, 10 }, { -1, -1 } } }, /* More tests on backreferences. */ + { "()\\1", "x", REG_EXTENDED, 2, { { 0, 0 }, { 0, 0 } } }, + { "()x\\1", "x", REG_EXTENDED, 2, { { 0, 1 }, { 0, 0 } } }, { "()\\1*\\1*", "", REG_EXTENDED, 2, { { 0, 0 }, { 0, 0 } } }, { "([0-9]).*\\1(a*)", "7;7a6", REG_EXTENDED, 3, { { 0, 4 }, { 0, 1 }, { 3, 4 } } }, { "([0-9]).*\\1(a*)", "7;7a", REG_EXTENDED, 3, { { 0, 4 }, { 0, 1 }, { 3, 4 } } }, + { "(b)()c\\1", "bcb", REG_EXTENDED, 3, { { 0, 3 }, { 0, 1 }, { 1, 1 } } }, + { "()(b)c\\2", "bcb", REG_EXTENDED, 3, { { 0, 3 }, { 0, 0 }, { 0, 1 } } }, + { "a(b)()c\\1", "abcb", REG_EXTENDED, 3, { { 0, 4 }, { 1, 2 }, { 2, 2 } } }, + { "a()(b)c\\2", "abcb", REG_EXTENDED, 3, { { 0, 4 }, { 1, 1 }, { 1, 2 } } }, #if 0 /* XXX Not used since they fail so far. */ - { "()(b)\\1c\\2", "bcb", REG_EXTENDED, 3, { { 0, 3 }, { 0, 0 }, { 1, 2 } } }, + { "()(b)\\1c\\2", "bcb", REG_EXTENDED, 3, { { 0, 3 }, { 0, 0 }, { 0, 1 } } }, { "(b())\\2\\1", "bbbb", REG_EXTENDED, 3, { { 0, 2 }, { 0, 1 }, { 1, 1 } } }, + { "a()(b)\\1c\\2", "abcb", REG_EXTENDED, 3, { { 0, 4 }, { 1, 1 }, { 1, 2 } } }, + { "a()d(b)\\1c\\2", "adbcb", REG_EXTENDED, 3, { { 0, 5 }, { 1, 1 }, { 2, 3 } } }, + { "a(b())\\2\\1", "abbbb", REG_EXTENDED, 3, { { 0, 3 }, { 1, 2 }, { 2, 2 } } }, { "(bb())\\2\\1", "bbbb", REG_EXTENDED, 3, { { 0, 4 }, { 0, 2 }, { 2, 2 } } }, { "^(.?)(.?)(.?)(.?)(.?)(.?)(.?)(.?)(.?).?\\9\\8\\7\\6\\5\\4\\3\\2\\1$", "level", REG_NOSUB | REG_EXTENDED, 0, { { -1, -1 } } }, diff --git a/posix/bug-regex20.c b/posix/bug-regex20.c index e709ef5fee..e55a06d270 100644 --- a/posix/bug-regex20.c +++ b/posix/bug-regex20.c @@ -271,7 +271,6 @@ main (void) continue; } - /* XXX: This causes regex segfault. Disable for now. res = re_search (®buf, tests[i].string, str_len, str_len, -str_len, NULL); if (res != tests[i].res) @@ -280,7 +279,7 @@ main (void) ret = 1; regfree (®buf); continue; - } */ + } regfree (®buf); } diff --git a/posix/ptestcases.h b/posix/ptestcases.h index 2819004b50..506b1cce0f 100644 --- a/posix/ptestcases.h +++ b/posix/ptestcases.h @@ -221,11 +221,18 @@ { 1, 20, "a\\(.*b\\)c", "axcaxbbbcsxbbbbbbbbc", }, { 0, 0, "GA135", NULL, }, { 1, 7, "\\(a\\(b\\(c\\(d\\(e\\)\\)\\)\\)\\)\\4", "abcdededede", }, - { 1, 2, "a\\(b\\)*c\\1", "acb", }, + { 0, 0, NULL, "POSIX does not really specify whether a\\(b\\)*c\\1 matches acb." }, + { 0, 0, NULL, "back references are supposed to expand to the last match, but what" }, + { 0, 0, NULL, "if there never was a match as in this case?" }, + { -1, -1, "a\\(b\\)*c\\1", "acb", }, { 1, 11, "\\(a\\(b\\(c\\(d\\(e\\(f\\(g\\)h\\(i\\(j\\)\\)\\)\\)\\)\\)\\)\\)\\9", "abcdefghijjk", }, { 0, 0, "GA136", NULL, }, - { 1, 2, "a\\(b\\)*c\\1", "acb", }, - { 4, 7, "a\\(b\\(c\\(d\\(f\\)*\\)\\)\\)\\4", "xYzabcdePQRST", }, + { 0, 0, NULL, "These two tests have the same problem as the test in GA135. No match" }, + { 0, 0, NULL, "of a subexpression, why should the back reference be usable?" }, + { 0, 0, NULL, "1 2 a\\(b\\)*c\\1 acb" }, + { 0, 0, NULL, "4 7 a\\(b\\(c\\(d\\(f\\)*\\)\\)\\)\\4¦xYzabcdePQRST" }, + { -1, -1, "a\\(b\\)*c\\1", "acb", }, + { -1, -1, "a\\(b\\(c\\(d\\(f\\)*\\)\\)\\)\\4", "xYzabcdePQRST", }, { 0, 0, "GA137", NULL, }, { -2, -2, "\\(a\\(b\\)\\)\\3", "foo", }, { -2, -2, "\\(a\\(b\\)\\)\\(a\\(b\\)\\)\\5", "foo", }, diff --git a/posix/regcomp.c b/posix/regcomp.c index 52f1fa23e1..1f1c85926e 100644 --- a/posix/regcomp.c +++ b/posix/regcomp.c @@ -3213,7 +3213,6 @@ parse_bracket_exp (regexp, dfa, token, syntax, err) int sbc_idx; /* Build a tree for complex bracket. */ dfa->has_mb_node = 1; - dfa->has_plural_match = 1; for (sbc_idx = 0; sbc_idx < BITSET_UINTS; ++sbc_idx) if (sbcset[sbc_idx]) break; @@ -3233,6 +3232,7 @@ parse_bracket_exp (regexp, dfa, token, syntax, err) goto parse_bracket_exp_espace; /* Then join them by ALT node. */ alt_token.type = OP_ALT; + dfa->has_plural_match = 1; work_tree = re_dfa_add_tree_node (dfa, work_tree, mbc_tree, &alt_token); if (BE (mbc_tree != NULL, 1)) return work_tree; @@ -3627,6 +3627,7 @@ build_charclass_op (dfa, trans, class_name, extra, not, err) goto build_word_op_espace; /* Then join them by ALT node. */ alt_token.type = OP_ALT; + dfa->has_plural_match = 1; tree = re_dfa_add_tree_node (dfa, tree, mbc_tree, &alt_token); if (BE (mbc_tree != NULL, 1)) return tree; diff --git a/posix/regex_internal.c b/posix/regex_internal.c index 8b68bd62cb..f78ec79e65 100644 --- a/posix/regex_internal.c +++ b/posix/regex_internal.c @@ -55,7 +55,12 @@ re_string_allocate (pstr, str, len, init_len, trans, icase, dfa) const re_dfa_t *dfa; { reg_errcode_t ret; - int init_buf_len = (len + 1 < init_len) ? len + 1: init_len; + int init_buf_len; + + /* Ensure at least one character fits into the buffers. */ + if (init_len < dfa->mb_cur_max) + init_len = dfa->mb_cur_max; + init_buf_len = (len + 1 < init_len) ? len + 1: init_len; re_string_construct_common (str, len, pstr, trans, icase, dfa); pstr->stop = pstr->len; @@ -516,33 +521,33 @@ re_string_reconstruct (pstr, idx, eflags, newline) /* Special case UTF-8. Multi-byte chars start with any byte other than 0x80 - 0xbf. */ raw = pstr->raw_mbs + pstr->raw_mbs_idx; - end = raw + (pstr->valid_len > offset - pstr->mb_cur_max - ? pstr->valid_len : offset - pstr->mb_cur_max); + end = raw + (offset - pstr->mb_cur_max); for (p = raw + offset - 1; p >= end; --p) if ((*p & 0xc0) != 0x80) { mbstate_t cur_state; wchar_t wc2; + int mlen; /* XXX Don't use mbrtowc, we know which conversion to use (UTF-8 -> UCS4). */ memset (&cur_state, 0, sizeof (cur_state)); - if (mbrtowc (&wc2, p, raw + offset - p, &cur_state) - == raw + offset - p) + mlen = mbrtowc (&wc2, p, raw + pstr->len - p, + &cur_state) - (raw + offset - p); + if (mlen >= 0) { memset (&pstr->cur_state, '\0', sizeof (mbstate_t)); + pstr->valid_len = mlen; wc = wc2; } break; } } if (wc == WEOF) - { - pstr->valid_len = re_string_skip_chars (pstr, idx, &wc) - idx; - for (wcs_idx = 0; wcs_idx < pstr->valid_len; ++wcs_idx) - pstr->wcs[wcs_idx] = WEOF; - } + pstr->valid_len = re_string_skip_chars (pstr, idx, &wc) - idx; + for (wcs_idx = 0; wcs_idx < pstr->valid_len; ++wcs_idx) + pstr->wcs[wcs_idx] = WEOF; if (pstr->trans && wc <= 0xff) wc = pstr->trans[wc]; pstr->tip_context = (IS_WIDE_WORD_CHAR (wc) ? CONTEXT_WORD diff --git a/posix/regexec.c b/posix/regexec.c index 58ac9c82c4..9720879722 100644 --- a/posix/regexec.c +++ b/posix/regexec.c @@ -620,7 +620,7 @@ re_search_internal (preg, string, length, start, range, stop, nmatch, pmatch, multi character collating element. */ if (nmatch > 1 || dfa->has_mb_node) { - mctx.state_log = re_malloc (re_dfastate_t *, dfa->nodes_len + 1); + mctx.state_log = re_malloc (re_dfastate_t *, input.bufs_len + 1); if (BE (mctx.state_log == NULL, 0)) { err = REG_ESPACE; @@ -766,6 +766,7 @@ re_search_internal (preg, string, length, start, range, stop, nmatch, pmatch, break; if (BE (err != REG_NOMATCH, 0)) goto free_return; + match_last = -1; } else break; /* We found a match. */ @@ -785,7 +786,7 @@ re_search_internal (preg, string, length, start, range, stop, nmatch, pmatch, int reg_idx; /* Initialize registers. */ - for (reg_idx = 0; reg_idx < nmatch; ++reg_idx) + for (reg_idx = 1; reg_idx < nmatch; ++reg_idx) pmatch[reg_idx].rm_so = pmatch[reg_idx].rm_eo = -1; /* Set the points where matching start/end. */ @@ -801,7 +802,8 @@ re_search_internal (preg, string, length, start, range, stop, nmatch, pmatch, } /* At last, add the offset to the each registers, since we slided - the buffers so that We can assume that the matching starts from 0. */ + the buffers so that we could assume that the matching starts + from 0. */ for (reg_idx = 0; reg_idx < nmatch; ++reg_idx) if (pmatch[reg_idx].rm_so != -1) { @@ -869,7 +871,8 @@ prune_impossible_nodes (preg, mctx) ret = REG_NOMATCH; goto free_return; } - } while (!mctx->state_log[match_last]->halt); + } while (mctx->state_log[match_last] == NULL + || !mctx->state_log[match_last]->halt); halt_node = check_halt_state_context (preg, mctx->state_log[match_last], mctx, match_last); @@ -1236,7 +1239,7 @@ pop_fail_stack (fs, pidx, nregs, regs, eps_via_nodes) /* Set the positions where the subexpressions are starts/ends to registers PMATCH. Note: We assume that pmatch[0] is already set, and - pmatch[i].rm_so == pmatch[i].rm_eo == -1 (i > 1). */ + pmatch[i].rm_so == pmatch[i].rm_eo == -1 for 0 < i < nmatch. */ static reg_errcode_t set_regs (preg, mctx, nmatch, pmatch, fl_backtrack) diff --git a/posix/runptests.c b/posix/runptests.c index 9ce395be4f..4d43180e41 100644 --- a/posix/runptests.c +++ b/posix/runptests.c @@ -119,8 +119,5 @@ main (int argc, char *argv[]) printf ("\n%Zu tests, %d errors\n", cnt, errors); - /* We should return here the error status but since some tests are known - to fail this would only cause the libc testsuite to fail. */ - //return errors != 0; - return 0; + return errors != 0; } diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index afb192925a..627ed185ec 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -337,6 +337,11 @@ struct rtld_global /* File descriptor to write debug messages to. */ EXTERN int _dl_debug_fd; + /* -1 if the dynamic linker should honor library load bias, + 0 if not, -2 use the default (honor biases for normal + binaries, don't honor for PIEs). */ + EXTERN ElfW(Addr) _dl_use_load_bias; + #ifdef _LIBC_REENTRANT EXTERN void **(*_dl_error_catch_tsd) (void) __attribute__ ((const)); #endif diff --git a/sysdeps/generic/unsecvars.h b/sysdeps/generic/unsecvars.h index efb9515951..88fba19b23 100644 --- a/sysdeps/generic/unsecvars.h +++ b/sysdeps/generic/unsecvars.h @@ -7,6 +7,7 @@ "LD_ORIGIN_PATH\0" \ "LD_DEBUG_OUTPUT\0" \ "LD_PROFILE\0" \ + "LD_USE_LOAD_BIAS\0" \ "GCONV_PATH\0" \ "HOSTALIASES\0" \ "LOCALDOMAIN\0" \ diff --git a/sysdeps/unix/sysv/linux/dl-librecon.h b/sysdeps/unix/sysv/linux/dl-librecon.h index afe1ec4b72..97de79640d 100644 --- a/sysdeps/unix/sysv/linux/dl-librecon.h +++ b/sysdeps/unix/sysv/linux/dl-librecon.h @@ -1,5 +1,5 @@ /* Optional code to distinguish library flavours. - Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2001. @@ -44,12 +44,12 @@ _dl_osversion_init (char *assume_kernel) } /* Recognizing extra environment variables. */ -#define EXTRA_LD_ENVVARS EXTRA_LD_ENVVARS_LINUX -#define EXTRA_LD_ENVVARS_LINUX \ - case 13: \ +#define EXTRA_LD_ENVVARS_13 \ if (memcmp (envline, "ASSUME_KERNEL", 13) == 0) \ - _dl_osversion_init (&envline[14]); \ - break; \ + { \ + _dl_osversion_init (&envline[14]); \ + break; \ + } #define DL_OSVERSION_INIT \ do { \ diff --git a/sysdeps/unix/sysv/linux/i386/dl-librecon.h b/sysdeps/unix/sysv/linux/i386/dl-librecon.h index 3163c58103..f5a9f65166 100644 --- a/sysdeps/unix/sysv/linux/i386/dl-librecon.h +++ b/sysdeps/unix/sysv/linux/i386/dl-librecon.h @@ -1,5 +1,5 @@ /* Optional code to distinguish library flavours. - Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. @@ -48,8 +48,7 @@ while (0) /* Recognizing extra environment variables. */ -#undef EXTRA_LD_ENVVARS -#define EXTRA_LD_ENVVARS EXTRA_LD_ENVVARS_LINUX \ +#define EXTRA_LD_ENVVARS \ case 15: \ if (memcmp (envline, "LIBRARY_VERSION", 15) == 0) \ GL(dl_correct_cache_id) = envline[16] == '5' ? 2 : 3; \