[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r8010 - in /fsf/trunk/libc: ./ nptl/ nptl_db/ po/
- To: commits@xxxxxxxxxx
- Subject: [commits] r8010 - in /fsf/trunk/libc: ./ nptl/ nptl_db/ po/
- From: eglibc@xxxxxxxxxx
- Date: Sat, 28 Feb 2009 08:05:04 -0000
Author: eglibc
Date: Sat Feb 28 00:05:01 2009
New Revision: 8010
Log:
Import glibc-mainline for 2009-02-28
Added:
fsf/trunk/libc/nptl_db/db-symbols.awk
fsf/trunk/libc/nptl_db/db-symbols.h
Modified:
fsf/trunk/libc/ChangeLog
fsf/trunk/libc/Makeconfig
fsf/trunk/libc/nptl/ChangeLog
fsf/trunk/libc/nptl/init.c
fsf/trunk/libc/nptl/pthread_create.c
fsf/trunk/libc/nptl_db/ChangeLog
fsf/trunk/libc/nptl_db/Makefile
fsf/trunk/libc/nptl_db/td_symbol_list.c
fsf/trunk/libc/po/ko.po
Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Sat Feb 28 00:05:01 2009
@@ -1,3 +1,12 @@
+2009-02-27 Roland McGrath <roland@xxxxxxxxxx>
+
+ * Makeconfig (%.v.i): Depend on Makeconfig.
+ Exclude % lines from initial #-comment removal.
+
+2009-02-27 Ulrich Drepper <drepper@xxxxxxxxxx>
+
+ * po/ko.po: Update from translation team.
+
2009-02-26 Roland McGrath <roland@xxxxxxxxxx>
* shadow/lckpwdf.c (__lckpwdf): Move FLAGS inside block using it,
Modified: fsf/trunk/libc/Makeconfig
==============================================================================
--- fsf/trunk/libc/Makeconfig (original)
+++ fsf/trunk/libc/Makeconfig Sat Feb 28 00:05:01 2009
@@ -793,9 +793,9 @@
# `FOO.v', and along with that `FOO.v.i' should be given dependencies
# listing both its input files, and any header files that it may reference
# (but no commands).
-%.v.i: $(common-objpfx)config.h
- sed 's/#.*$$//;/^[ ]*$$/d;s/^[ ]*%/#/' \
- $(filter-out FORCE %.h,$^) \
+%.v.i: $(common-objpfx)config.h $(..)Makeconfig
+ sed '/^[ ]*%/!s/#.*$$//;/^[ ]*$$/d;s/^[ ]*%/#/' \
+ $(filter-out FORCE %.h $(..)Makeconfig,$^) \
| $(CC) -E -undef $(CPPFLAGS) -x assembler-with-cpp - \
> $@T
mv -f $@T $@
Modified: fsf/trunk/libc/nptl/ChangeLog
==============================================================================
--- fsf/trunk/libc/nptl/ChangeLog (original)
+++ fsf/trunk/libc/nptl/ChangeLog Sat Feb 28 00:05:01 2009
@@ -1,3 +1,8 @@
+2009-02-27 Roland McGrath <roland@xxxxxxxxxx>
+
+ * init.c (__nptl_initial_report_events): Mark __attribute_used__.
+ * pthread_create.c (__nptl_threads_events, __nptl_last_event): Likewise.
+
2009-02-26 Ulrich Drepper <drepper@xxxxxxxxxx>
* sysdeps/unix/sysv/linux/bits/posix_opt.h: Define
Modified: fsf/trunk/libc/nptl/init.c
==============================================================================
--- fsf/trunk/libc/nptl/init.c (original)
+++ fsf/trunk/libc/nptl/init.c Sat Feb 28 00:05:01 2009
@@ -260,7 +260,7 @@
/* This can be set by the debugger before initialization is complete. */
-static bool __nptl_initial_report_events;
+static bool __nptl_initial_report_events __attribute_used__;
void
__pthread_initialize_minimal_internal (void)
Modified: fsf/trunk/libc/nptl/pthread_create.c
==============================================================================
--- fsf/trunk/libc/nptl/pthread_create.c (original)
+++ fsf/trunk/libc/nptl/pthread_create.c Sat Feb 28 00:05:01 2009
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002-2007, 2008 Free Software Foundation, Inc.
+/* Copyright (C) 2002-2007,2008,2009 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@xxxxxxxxxx>, 2002.
@@ -40,10 +40,10 @@
int __pthread_debug;
/* Globally enabled events. */
-static td_thr_events_t __nptl_threads_events;
+static td_thr_events_t __nptl_threads_events __attribute_used__;
/* Pointer to descriptor with the last event. */
-static struct pthread *__nptl_last_event;
+static struct pthread *__nptl_last_event __attribute_used__;
/* Number of threads running. */
unsigned int __nptl_nthreads = 1;
Modified: fsf/trunk/libc/nptl_db/ChangeLog
==============================================================================
--- fsf/trunk/libc/nptl_db/ChangeLog (original)
+++ fsf/trunk/libc/nptl_db/ChangeLog Sat Feb 28 00:05:01 2009
@@ -1,3 +1,13 @@
+2009-02-27 Roland McGrath <roland@xxxxxxxxxx>
+
+ * td_symbol_list.c (symbol_list_arr): Move initializer guts to ...
+ * db-symbols.h: ... here, new file.
+ * db-symbols.awk: New file.
+ * Makefile (distribute): Add them.
+ ($(objpfx)db-symbols.out): New target.
+ (tests): Depend on it.
+ ($(objpfx)db-symbols.v.i): New dependent rule.
+
2009-02-06 Ulrich Drepper <drepper@xxxxxxxxxx>
* td_thr_get_info.c (td_thr_get_info): Initialize schedpolicy in
Modified: fsf/trunk/libc/nptl_db/Makefile
==============================================================================
--- fsf/trunk/libc/nptl_db/Makefile (original)
+++ fsf/trunk/libc/nptl_db/Makefile Sat Feb 28 00:05:01 2009
@@ -1,4 +1,4 @@
-# Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# Copyright (C) 2002,2003,2009 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# The GNU C Library is free software; you can redistribute it and/or
@@ -50,7 +50,8 @@
# The ps_* callback functions are not defined.
libthread_db.so-no-z-defs = yes
-distribute = thread_dbP.h shlib-versions proc_service.h db_info.c structs.def
+distribute = thread_dbP.h shlib-versions proc_service.h \
+ db_info.c structs.def db-symbols.h db-symbols.awk
include ../Rules
# Depend on libc.so so a DT_NEEDED is generated in the shared objects.
@@ -58,3 +59,10 @@
# a statically-linked program that hasn't already loaded it.
$(objpfx)libthread_db.so: $(common-objpfx)libc.so \
$(common-objpfx)libc_nonshared.a
+
+tests: $(objpfx)db-symbols.out
+$(objpfx)db-symbols.out: $(objpfx)db-symbols.v.i \
+ $(common-objpfx)nptl/libpthread.so
+ readelf -W -s $(filter %.so,$^) | $(AWK) -f $< > $@
+
+$(objpfx)db-symbols.v.i: db-symbols.awk
Added: fsf/trunk/libc/nptl_db/db-symbols.awk
==============================================================================
--- fsf/trunk/libc/nptl_db/db-symbols.awk (added)
+++ fsf/trunk/libc/nptl_db/db-symbols.awk Sat Feb 28 00:05:01 2009
@@ -1,0 +1,45 @@
+# This script processes the output of 'readelf -W -s' on the libpthread.so
+# we've just built. It checks for all the symbols used in td_symbol_list.
+
+BEGIN {
+%define DB_LOOKUP_NAME(idx, name) required[STRINGIFY (name)] = 1;
+%define DB_LOOKUP_NAME_TH_UNIQUE(idx, name) th_unique[STRINGIFY (name)] = 1;
+%include "db-symbols.h"
+
+ in_symtab = 0;
+}
+
+/Symbol table '.symtab'/ { in_symtab=1; next }
+NF == 0 { in_symtab=0; next }
+
+!in_symtab { next }
+
+NF >= 8 && $7 != "UND" { seen[$8] = 1 }
+
+END {
+ status = 0;
+
+ for (s in required) {
+ if (s in seen) print s, "ok";
+ else {
+ status = 1;
+ print s, "***MISSING***";
+ }
+ }
+
+ any = "";
+ for (s in th_unique) {
+ if (s in seen) {
+ any = s;
+ break;
+ }
+ }
+ if (any)
+ print "th_unique:", any;
+ else {
+ status = 1;
+ print "th_unique:", "***MISSING***";
+ }
+
+ exit(status);
+}
Added: fsf/trunk/libc/nptl_db/db-symbols.h
==============================================================================
--- fsf/trunk/libc/nptl_db/db-symbols.h (added)
+++ fsf/trunk/libc/nptl_db/db-symbols.h Sat Feb 28 00:05:01 2009
@@ -1,0 +1,56 @@
+/* List of symbols in libpthread examined by libthread_db.
+ Copyright (C) 2009 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, write to the Free
+ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA. */
+
+#ifdef HAVE_ASM_GLOBAL_DOT_NAME
+# define DOT(x) .##x /* PPC64 requires . prefix on code symbols. */
+#else
+# define DOT(x) x /* No prefix. */
+#endif
+
+#define STRINGIFY(name) STRINGIFY_1(name)
+#define STRINGIFY_1(name) #name
+
+#define DB_STRUCT(type) \
+ DB_LOOKUP_NAME (SYM_SIZEOF_##type, _thread_db_sizeof_##type)
+#define DB_STRUCT_FIELD(type, field) \
+ DB_LOOKUP_NAME (SYM_##type##_FIELD_##field, _thread_db_##type##_##field)
+#define DB_SYMBOL(name) \
+ DB_LOOKUP_NAME (SYM_##name, name)
+#define DB_FUNCTION(name) \
+ DB_LOOKUP_NAME (SYM_##name, DOT (name))
+#define DB_VARIABLE(name) \
+ DB_LOOKUP_NAME (SYM_##name, name) \
+ DB_LOOKUP_NAME (SYM_DESC_##name, _thread_db_##name)
+
+# include "structs.def"
+
+# undef DB_STRUCT
+# undef DB_FUNCTION
+# undef DB_SYMBOL
+# undef DB_VARIABLE
+# undef DOT
+
+DB_LOOKUP_NAME_TH_UNIQUE (SYM_TH_UNIQUE_REGISTER64, _thread_db_register64)
+DB_LOOKUP_NAME_TH_UNIQUE (SYM_TH_UNIQUE_REGISTER32, _thread_db_register32)
+DB_LOOKUP_NAME_TH_UNIQUE (SYM_TH_UNIQUE_CONST_THREAD_AREA,
+ _thread_db_const_thread_area)
+DB_LOOKUP_NAME_TH_UNIQUE (SYM_TH_UNIQUE_REGISTER32_THREAD_AREA,
+ _thread_db_register32_thread_area)
+DB_LOOKUP_NAME_TH_UNIQUE (SYM_TH_UNIQUE_REGISTER64_THREAD_AREA,
+ _thread_db_register64_thread_area)
Modified: fsf/trunk/libc/nptl_db/td_symbol_list.c
==============================================================================
--- fsf/trunk/libc/nptl_db/td_symbol_list.c (original)
+++ fsf/trunk/libc/nptl_db/td_symbol_list.c Sat Feb 28 00:05:01 2009
@@ -1,5 +1,5 @@
/* Return list of symbols the library can request.
- Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
+ Copyright (C) 2001,2002,2003,2009 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@xxxxxxxxxx>, 2001.
@@ -22,37 +22,13 @@
#include <gnu/lib-names.h>
#include "thread_dbP.h"
-
-#ifdef HAVE_ASM_GLOBAL_DOT_NAME
-# define DOT "." /* PPC64 requires . prefix on code symbols. */
-#else
-# define DOT /* No prefix. */
-#endif
-
static const char *symbol_list_arr[] =
{
-# define DB_STRUCT(type) \
- [SYM_SIZEOF_##type] = "_thread_db_sizeof_" #type,
-# define DB_STRUCT_FIELD(type, field) \
- [SYM_##type##_FIELD_##field] = "_thread_db_" #type "_" #field,
-# define DB_SYMBOL(name) \
- [SYM_##name] = #name,
-# define DB_FUNCTION(name) \
- [SYM_##name] = DOT #name,
-# define DB_VARIABLE(name) \
- [SYM_##name] = #name, \
- [SYM_DESC_##name] = "_thread_db_" #name,
-# include "structs.def"
-# undef DB_STRUCT
-# undef DB_FUNCTION
-# undef DB_SYMBOL
-# undef DB_VARIABLE
-
- [SYM_TH_UNIQUE_CONST_THREAD_AREA] = "_thread_db_const_thread_area",
- [SYM_TH_UNIQUE_REGISTER64] = "_thread_db_register64",
- [SYM_TH_UNIQUE_REGISTER32] = "_thread_db_register32",
- [SYM_TH_UNIQUE_REGISTER32_THREAD_AREA] = "_thread_db_register32_thread_area",
- [SYM_TH_UNIQUE_REGISTER64_THREAD_AREA] = "_thread_db_register64_thread_area",
+# define DB_LOOKUP_NAME(idx, name) [idx] = #name,
+# define DB_LOOKUP_NAME_TH_UNIQUE(idx, name) [idx] = #name,
+# include "db-symbols.h"
+# undef DB_LOOKUP_NAME
+# undef DB_LOOKUP_NAME_TH_UNIQUE
[SYM_NUM_MESSAGES] = NULL
};
Modified: fsf/trunk/libc/po/ko.po
==============================================================================
--- fsf/trunk/libc/po/ko.po (original)
+++ fsf/trunk/libc/po/ko.po Sat Feb 28 00:05:01 2009
@@ -1,13 +1,14 @@
# GNU libcì íêµì´ ë©ìì§
-# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2004, 2007, 2008 Free Software Foundation, Inc.
+# This file is distributed under the same license as the glibc package.
+# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
# Bang Jun-Young <bangjy@xxxxxxxxxxx>, 1996-97.
-# Changwoo Ryu <cwryu@xxxxxxxxxx>, 2000-2004, 2007, 2008.
+# Changwoo Ryu <cwryu@xxxxxxxxxx>, 2000-2004, 2007, 2008, 2009.
#
msgid ""
msgstr ""
-"Project-Id-Version: GNU libc 2.7\n"
-"POT-Creation-Date: 2007-10-15 21:18-0700\n"
-"PO-Revision-Date: 2008-01-23 11:35+0900\n"
+"Project-Id-Version: GNU libc 2.9.90\n"
+"POT-Creation-Date: 2009-02-06 12:40-0800\n"
+"PO-Revision-Date: 2009-02-27 19:46+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@xxxxxxxxxx>\n"
"Language-Team: Korean <translation-team-ko@xxxxxxxxxxxxxxxxxxxxx>\n"
"MIME-Version: 1.0\n"
@@ -61,7 +62,7 @@
#: argp/argp-parse.c:103
msgid "Give a short usage message"
-msgstr "ê°ëµí ì¬ì©ë² ë©ì¸ì§ë¥¼ íìí¨"
+msgstr "ê°ëµí ì¬ì©ë² ë©ìì§ë¥¼ íìí¨"
#: argp/argp-parse.c:104
msgid "Set the program name"
@@ -98,7 +99,7 @@
msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n"
msgstr "%s%s%s:%u: %s%sassertion `%s' ì¤í¨.\n"
-#: catgets/gencat.c:110 catgets/gencat.c:114 nscd/nscd.c:97 nss/makedb.c:61
+#: catgets/gencat.c:110 catgets/gencat.c:114 nscd/nscd.c:100 nss/makedb.c:61
msgid "NAME"
msgstr "<ì´ë¦>"
@@ -119,7 +120,7 @@
"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 ""
-"ë©ì¸ì§ 목ë¡ì ë§ëëë¤.^K<ì
ë ¥-íì¼>ì´ - ì´ë©´ íì¤ ì
ë ¥ì ì½ê² ë©ëë¤. <ì¶ë ¥-íì¼>ì´ - ì´ë©´\n"
+"ë©ìì§ ëª©ë¡ì ë§ëëë¤.^K<ì
ë ¥-íì¼>ì´ - ì´ë©´ íì¤ ì
ë ¥ì ì½ê² ë©ëë¤. <ì¶ë ¥-íì¼>ì´ - ì´ë©´\n"
"íì¤ ì¶ë ¥ì ì¶ë ¥í©ëë¤.\n"
#: catgets/gencat.c:124
@@ -130,9 +131,15 @@
"-o <ì¶ë ¥-íì¼> [<ì
ë ¥-íì¼>]...\n"
"[<ì¶ë ¥-íì¼> [<ì
ë ¥-íì¼>]...]"
-#: catgets/gencat.c:232 debug/pcprofiledump.c:204 iconv/iconv_prog.c:411
-#: iconv/iconvconfig.c:380 locale/programs/localedef.c:371
-#: login/programs/pt_chown.c:88 malloc/memusagestat.c:526 nss/makedb.c:231
+#: catgets/gencat.c:232 debug/pcprofiledump.c:208 debug/xtrace.sh:58
+#: elf/ldconfig.c:302 elf/ldd.bash.in:56 elf/sln.c:86 elf/sprof.c:360
+#: iconv/iconv_prog.c:408 iconv/iconvconfig.c:380 locale/programs/locale.c:278
+#: locale/programs/localedef.c:371 login/programs/pt_chown.c:88
+#: malloc/memusage.sh:65 malloc/memusagestat.c:533 nscd/nscd.c:415
+#: nss/getent.c:842 nss/makedb.c:231 posix/getconf.c:1030
+#: sunrpc/rpc_main.c:1494 sunrpc/rpcinfo.c:699
+#: sysdeps/unix/sysv/linux/lddlibc4.c:62
+#, c-format
msgid ""
"For bug reporting instructions, please see:\n"
"<http://www.gnu.org/software/libc/bugs.html>.\n"
@@ -140,12 +147,13 @@
"ë²ê·¸ë¥¼ ë³´ê³ íë ë°©ë²ì ë¤ìì ì°¸ê³ íììì¤:\n"
"<http://www.gnu.org/software/libc/bugs.html>.\n"
-#: catgets/gencat.c:246 debug/xtrace.sh:64 elf/ldconfig.c:296
-#: elf/ldd.bash.in:39 elf/sprof.c:355 iconv/iconv_prog.c:426
-#: iconv/iconvconfig.c:395 locale/programs/locale.c:275
+#: catgets/gencat.c:246 debug/pcprofiledump.c:222 debug/xtrace.sh:66
+#: elf/ldconfig.c:316 elf/ldd.bash.in:39 elf/sprof.c:375
+#: iconv/iconv_prog.c:423 iconv/iconvconfig.c:395 locale/programs/locale.c:293
#: locale/programs/localedef.c:387 login/programs/pt_chown.c:59
-#: malloc/memusage.sh:71 nscd/nscd.c:406 nss/getent.c:83 nss/makedb.c:245
-#: posix/getconf.c:1012
+#: malloc/memusage.sh:73 malloc/memusagestat.c:551 nscd/nscd.c:429
+#: nss/getent.c:81 nss/makedb.c:245 posix/getconf.c:1012
+#: sysdeps/unix/sysv/linux/lddlibc4.c:69
#, c-format
msgid ""
"Copyright (C) %s Free Software Foundation, Inc.\n"
@@ -156,10 +164,12 @@
"ì´ íë¡ê·¸ë¨ì ê³µê° ìíí¸ì¨ì´ì
ëë¤; ë³µì¬ì¡°ê±´ì ìì¤ë¥¼ 참조íììì¤. ìíì±\n"
"ì´ë í¹ì 목ì ì ëí ì í©ì±ì ë¹ë¡¯íì¬ ì´ë í ë³´ì¦ë íì§ ììµëë¤.\n"
-#: catgets/gencat.c:251 debug/xtrace.sh:68 elf/ldconfig.c:301 elf/sprof.c:361
-#: iconv/iconv_prog.c:431 iconv/iconvconfig.c:400 locale/programs/locale.c:280
-#: locale/programs/localedef.c:392 malloc/memusage.sh:75 nscd/nscd.c:411
-#: nss/getent.c:88 nss/makedb.c:250 posix/getconf.c:1017
+#: catgets/gencat.c:251 debug/pcprofiledump.c:227 debug/xtrace.sh:70
+#: elf/ldconfig.c:321 elf/sprof.c:381 iconv/iconv_prog.c:428
+#: iconv/iconvconfig.c:400 locale/programs/locale.c:298
+#: locale/programs/localedef.c:392 malloc/memusage.sh:77
+#: malloc/memusagestat.c:556 nscd/nscd.c:434 nss/getent.c:86 nss/makedb.c:250
+#: posix/getconf.c:1017
#, c-format
msgid "Written by %s.\n"
msgstr "ë§ë ì¬ë: %s.\n"
@@ -168,7 +178,7 @@
msgid "*standard input*"
msgstr "*íì¤ ì
ë ¥*"
-#: catgets/gencat.c:288 iconv/iconv_charmap.c:158 iconv/iconv_prog.c:298
+#: catgets/gencat.c:288 iconv/iconv_charmap.c:170 iconv/iconv_prog.c:294
#: nss/makedb.c:170
#, c-format
msgid "cannot open input file `%s'"
@@ -210,7 +220,7 @@
#: catgets/gencat.c:731
msgid "invalid character: message ignored"
-msgstr "ì못ë 문ì: ë©ì¸ì§ë 무ìí©ëë¤"
+msgstr "ì못ë 문ì: ë©ìì§ë 무ìí©ëë¤"
#: catgets/gencat.c:774
msgid "invalid line"
@@ -260,17 +270,17 @@
msgid "[FILE]"
msgstr "[íì¼]"
-#: debug/pcprofiledump.c:104
+#: debug/pcprofiledump.c:108
#, c-format
msgid "cannot open input file"
msgstr "ì
ë ¥ íì¼ì ì´ ì ììµëë¤"
-#: debug/pcprofiledump.c:111
+#: debug/pcprofiledump.c:115
#, c-format
msgid "cannot read header"
msgstr "í¤ë를 ì½ì ì ììµëë¤"
-#: debug/pcprofiledump.c:175
+#: debug/pcprofiledump.c:179
#, c-format
msgid "invalid pointer size"
msgstr "ì못ë í¬ì¸í° í¬ê¸°"
@@ -300,36 +310,32 @@
"Mandatory arguments to long options are also mandatory for any corresponding\n"
"short options.\n"
"\n"
-"For bug reporting instructions, please see:\n"
-"<http://www.gnu.org/software/libc/bugs.html>.\\n"
msgstr ""
"íë¡ê·¸ë¨ ì¤íì ì¶ì í´ì íì¬ ì¤ííê³ ìë í¨ì를 íìí©ëë¤.\n"
"\n"
" --data=<íì¼> íë¡ê·¸ë¨ì ì¤ííì§ ìê³ , <íì¼>ìì ë°ì´í°ë§ íìí©ëë¤\n"
"\n"
" -?,--help ëìë§ì íìíê³ ëë
ëë¤\n"
-" --usage ê°ë¨í ì¬ì©ë² ë©ì¸ì§ë¥¼ íìí©ëë¤\n"
+" --usage ê°ë¨í ì¬ì©ë² ë©ìì§ë¥¼ íìí©ëë¤\n"
" -V,--version ë²ì ì 보를 íìíê³ ëë
ëë¤\n"
"\n"
"긴 ìµì
ì íìì ì¸ ì¸ìë, ê°ì 짧ì ìµì
ììë íìì ì¸ ì¸ìì
ëë¤.\n"
"\n"
-"ë²ê·¸ ë³´ê³ íë ë°©ë²ì ë¤ìì ì°¸ê³ íììì¤:\n"
-"<http://www.gnu.org/software/libc/bugs.html>.\\n"
-
-#: debug/xtrace.sh:125
+
+#: debug/xtrace.sh:127
msgid "xtrace: unrecognized option \\`$1'\\n"
msgstr "xtrace: ì¸ìí ì ìë ìµì
\\`$1'\\n"
-#: debug/xtrace.sh:138
+#: debug/xtrace.sh:140
msgid "No program name given\\n"
msgstr "íë¡ê·¸ë¨ ì´ë¦ì´ ììµëë¤\\n"
-#: debug/xtrace.sh:146
+#: debug/xtrace.sh:148
#, sh-format
msgid "executable \\`$program' not found\\n"
msgstr "\\`$program' ì¤í íì¼ì´ ììµëë¤\\n"
-#: debug/xtrace.sh:150
+#: debug/xtrace.sh:152
#, sh-format
msgid "\\`$program' is no executable\\n"
msgstr "\\`$program' íì¼ì´ ì¤í íì¼ì´ ìëëë¤\\n"
@@ -350,7 +356,7 @@
msgid "invalid mode"
msgstr "ì못ë 모ë"
-#: dlfcn/dlopen.c:64
+#: dlfcn/dlopen.c:65
msgid "invalid mode parameter"
msgstr "ì못ë 모ë 매ê°ë³ì"
@@ -367,7 +373,7 @@
msgid ", OS ABI: %s %d.%d.%d"
msgstr ", OS ABI: %s %d.%d.%d"
-#: elf/cache.c:134 elf/ldconfig.c:1270
+#: elf/cache.c:134 elf/ldconfig.c:1289
#, c-format
msgid "Can't open cache file %s\n"
msgstr "ìºì íì¼ `%s'ì(를) ì´ ì ììµëë¤\n"
@@ -411,7 +417,7 @@
msgid "cannot create scope list"
msgstr "ì¤ì½í 목ë¡ì ë§ë¤ ì ììµëë¤"
-#: elf/dl-close.c:724
+#: elf/dl-close.c:725
msgid "shared object not open"
msgstr "ê³µì ì¤ë¸ì í¸ê° ì´ë¦¬ì§ ìììµëë¤"
@@ -486,11 +492,11 @@
msgid "cannot open zero fill device"
msgstr "0ì¼ë¡ ì±ì´ ì¥ì¹ë¥¼ ì´ ì ììµëë¤"
-#: elf/dl-load.c:979 elf/dl-load.c:2224
+#: elf/dl-load.c:979 elf/dl-load.c:2215
msgid "cannot create shared object descriptor"
msgstr "ê³µì ì¤ë¸ì í¸ ëì¤í¬ë¦½í°ë¥¼ ë§ë¤ ì ììµëë¤"
-#: elf/dl-load.c:998 elf/dl-load.c:1656 elf/dl-load.c:1748
+#: elf/dl-load.c:998 elf/dl-load.c:1647 elf/dl-load.c:1739
msgid "cannot read file data"
msgstr "íì¼ ë°ì´í°ë¥¼ ì½ì ì ììµëë¤"
@@ -554,63 +560,59 @@
msgid "cannot close file descriptor"
msgstr "íì¼ ëì¤í¬ë¦½í°ë¥¼ ë«ì ì ììµëë¤"
-#: elf/dl-load.c:1478
-msgid "cannot create searchlist"
-msgstr "찾기리ì¤í¸ë¥¼ ë§ë¤ ì ììµëë¤"
-
-#: elf/dl-load.c:1656
+#: elf/dl-load.c:1647
msgid "file too short"
msgstr "íì¼ì´ ë무 짧ìµëë¤"
-#: elf/dl-load.c:1685
+#: elf/dl-load.c:1676
msgid "invalid ELF header"
msgstr "ì못ë ELF í¤ë"
-#: elf/dl-load.c:1697
+#: elf/dl-load.c:1688
msgid "ELF file data encoding not big-endian"
msgstr "ELF íì¼ ë°ì´í° ì¸ì½ë©ì´ ë¹
ì¸ëìì´ ìëëë¤"
-#: elf/dl-load.c:1699
+#: elf/dl-load.c:1690
msgid "ELF file data encoding not little-endian"
msgstr "ELF íì¼ ë°ì´í° ì¸ì½ë©ì´ 리íì¸ëìì´ ìëëë¤"
-#: elf/dl-load.c:1703
+#: elf/dl-load.c:1694
msgid "ELF file version ident does not match current one"
msgstr "ELF íì¼ ë²ì identê° íì¬ identì ë§ì§ ììµëë¤"
-#: elf/dl-load.c:1707
+#: elf/dl-load.c:1698
msgid "ELF file OS ABI invalid"
msgstr "ELF íì¼ OS ABIê° ì못ëììµëë¤"
-#: elf/dl-load.c:1709
+#: elf/dl-load.c:1700
msgid "ELF file ABI version invalid"
msgstr "ELF íì¼ ABI ë²ì ì´ ì못ëììµëë¤"
-#: elf/dl-load.c:1712
+#: elf/dl-load.c:1703
msgid "internal error"
msgstr "ë´ë¶ ì¤ë¥"
-#: elf/dl-load.c:1719
+#: elf/dl-load.c:1710
msgid "ELF file version does not match current one"
msgstr "ELF íì¼ ë²ì ì´ íì¬ ë²ì ê³¼ ë§ì§ ììµëë¤"
-#: elf/dl-load.c:1727
+#: elf/dl-load.c:1718
msgid "only ET_DYN and ET_EXEC can be loaded"
msgstr "ET_DYNê³¼ ET_EXECë§ì ì½ì´ë¤ì¼ ì ììµëë¤"
-#: elf/dl-load.c:1733
+#: elf/dl-load.c:1724
msgid "ELF file's phentsize not the expected size"
msgstr "ELF íì¼ì phentsizeê° ììê³¼ ë§ì§ ììµëë¤"
-#: elf/dl-load.c:2240
+#: elf/dl-load.c:2231
msgid "wrong ELF class: ELFCLASS64"
msgstr "ELF í´ëì¤ê° íë ¸ìµëë¤: ELFCLASS64"
-#: elf/dl-load.c:2241
+#: elf/dl-load.c:2232
msgid "wrong ELF class: ELFCLASS32"
msgstr "ELF í´ëì¤ê° íë ¸ìµëë¤: ELFCLASS32"
-#: elf/dl-load.c:2244
+#: elf/dl-load.c:2235
msgid "cannot open shared object file"
msgstr "ëì ì¤ë¸ì í¸ íì¼ì ì´ ì ììµëë¤"
@@ -642,11 +644,11 @@
msgid "invalid target namespace in dlmopen()"
msgstr "dlmopen()ì ëì ë¤ìì¤íì´ì¤ê° ì못ëììµëë¤"
-#: elf/dl-reloc.c:54
+#: elf/dl-reloc.c:121
msgid "cannot allocate memory in static TLS block"
msgstr "ì ì TLS ë¸ëìë ë©ëª¨ë¦¬ë¥¼ í ë¹í ì ììµëë¤"
-#: elf/dl-reloc.c:196
+#: elf/dl-reloc.c:211
msgid "cannot make segment writable for relocation"
msgstr "리ë¡ì¼ì´ì
ì ìí´ ì¸ê·¸ë¨¼í¸ë¥¼ ì°ê¸° ê°ë¥íëë¡ ë§ë¤ ì ììµëë¤"
@@ -674,11 +676,11 @@
# ë²ì: capabilityë DBìì authenticationì ì¤ì´ê¸° ìí´ ì°ë ê²..
# ê°ê¹ì´ DBì±
참조.
-#: elf/dl-sysdep.c:469 elf/dl-sysdep.c:481
+#: elf/dl-sysdep.c:481 elf/dl-sysdep.c:493
msgid "cannot create capability list"
msgstr "ì¼ì´í¼ë¹ë¦¬í° 리ì¤í¸ë¥¼ ë§ë¤ ì ììµëë¤"
-#: elf/dl-tls.c:825
+#: elf/dl-tls.c:864
msgid "cannot create TLS data structures"
msgstr "TLS ë°ì´í° 구조를 ë§ë¤ ì ììµëë¤"
@@ -686,223 +688,223 @@
msgid "cannot allocate version reference table"
msgstr "ë²ì 참조 í
ì´ë¸ì í ë¹í ì ììµëë¤"
-#: elf/ldconfig.c:138
+#: elf/ldconfig.c:141
msgid "Print cache"
msgstr "ìºì íì"
-#: elf/ldconfig.c:139
+#: elf/ldconfig.c:142
msgid "Generate verbose messages"
msgstr "ë ë§ì ë©ìì§ íì"
-#: elf/ldconfig.c:140
+#: elf/ldconfig.c:143
msgid "Don't build cache"
msgstr "ìºì를 ë§ë¤ì§ ìì"
-#: elf/ldconfig.c:141
+#: elf/ldconfig.c:144
msgid "Don't generate links"
msgstr "ë§í¬ë¥¼ ë§ë¤ì§ ìì"
-#: elf/ldconfig.c:142
+#: elf/ldconfig.c:145
msgid "Change to and use ROOT as root directory"
-msgstr "<루í¸>ë¡ ì´ëí ë¤ì <루í¸>를 ë£¨í¸ ëë í ë¦¬ë¡ ì¬ì©í©ëë¤"
-
-#: elf/ldconfig.c:142
+msgstr "<루í¸>ë¡ ì´ëí ë¤ì <루í¸>를 ë£¨í¸ ëë í°ë¦¬ë¡ ì¬ì©í©ëë¤"
+
+#: elf/ldconfig.c:145
msgid "ROOT"
msgstr "<루í¸>"
-#: elf/ldconfig.c:143
+#: elf/ldconfig.c:146
msgid "CACHE"
msgstr "<ìºì>"
-#: elf/ldconfig.c:143
+#: elf/ldconfig.c:146
msgid "Use CACHE as cache file"
msgstr "ìºì íì¼ë¡ <ìºì>를 ì¬ì©í©ëë¤"
-#: elf/ldconfig.c:144
+#: elf/ldconfig.c:147
msgid "CONF"
msgstr "<ì¤ì >"
-#: elf/ldconfig.c:144
+#: elf/ldconfig.c:147
msgid "Use CONF as configuration file"
msgstr "ì¤ì íì¼ë¡ <ì¤ì >ì ì¬ì©í©ëë¤"
-#: elf/ldconfig.c:145
+#: elf/ldconfig.c:148
msgid "Only process directories specified on the command line. Don't build cache."
-msgstr "ëª
ë ¹íì ì§ì í ëë í ë¦¬ë§ ì²ë¦¬í©ëë¤. ìºì를 ë§ë¤ì§ ììµëë¤."
-
-#: elf/ldconfig.c:146
+msgstr "ëª
ë ¹íì ì§ì í ëë í°ë¦¬ë§ ì²ë¦¬í©ëë¤. ìºì를 ë§ë¤ì§ ììµëë¤."
+
+#: elf/ldconfig.c:149
msgid "Manually link individual libraries."
msgstr "ìëì¼ë¡ ê°ê°ì ë¼ì´ë¸ë¬ë¦¬ë¥¼ ë§í¬íììì¤."
-#: elf/ldconfig.c:147
+#: elf/ldconfig.c:150
msgid "FORMAT"
msgstr "<íì>"
-#: elf/ldconfig.c:147
+#: elf/ldconfig.c:150
msgid "Format to use: new, old or compat (default)"
msgstr "ì¬ì©í ì ìë íì: new, old, compat (기본ê°)"
-#: elf/ldconfig.c:148
+#: elf/ldconfig.c:151
msgid "Ignore auxiliary cache file"
msgstr "ë³´ì¡° ìºì íì¼ ë¬´ì"
-#: elf/ldconfig.c:156
+#: elf/ldconfig.c:159
msgid "Configure Dynamic Linker Run Time Bindings."
msgstr "ëì ë§ì»¤ì ë°íì ë°ì¸ë©ì ì¤ì í©ëë¤."
-#: elf/ldconfig.c:319
+#: elf/ldconfig.c:339
#, c-format
msgid "Path `%s' given more than once"
msgstr "`%s' ê²½ë¡ê° ì¬ë¬ë² 주ì´ì¡ìµëë¤"
-#: elf/ldconfig.c:359
+#: elf/ldconfig.c:379
#, c-format
msgid "%s is not a known library type"
msgstr "%sì(ë) ìë ¤ì§ ë¼ì´ë¸ë¬ë¦¬ íì
ì´ ìëëë¤"
-#: elf/ldconfig.c:384
+#: elf/ldconfig.c:404
#, c-format
msgid "Can't stat %s"
msgstr "%sì stat()í ì ììµëë¤"
-#: elf/ldconfig.c:458
+#: elf/ldconfig.c:478
#, c-format
msgid "Can't stat %s\n"
msgstr "%sì stat()í ì ììµëë¤\n"
-#: elf/ldconfig.c:468
+#: elf/ldconfig.c:488
#, c-format
msgid "%s is not a symbolic link\n"
msgstr "%sì(ë) ì¬ë³¼ë¦ ë§í¬ê° ìëëë¤\n"
-#: elf/ldconfig.c:487
+#: elf/ldconfig.c:507
#, c-format
msgid "Can't unlink %s"
msgstr "%sì(를) ì§ì¸ ì ììµëë¤"
-#: elf/ldconfig.c:493
+#: elf/ldconfig.c:513
#, c-format
msgid "Can't link %s to %s"
msgstr "%sì(를) %s(ì¼)ë¡ ë§í¬í ì ììµëë¤"
-#: elf/ldconfig.c:499
+#: elf/ldconfig.c:519
msgid " (changed)\n"
msgstr " (ë°ë)\n"
-#: elf/ldconfig.c:501
+#: elf/ldconfig.c:521
msgid " (SKIPPED)\n"
msgstr " (ì§ë침)\n"
-#: elf/ldconfig.c:556
+#: elf/ldconfig.c:576
#, c-format
msgid "Can't find %s"
msgstr "%sì(를) ì°¾ì ì ììµëë¤"
-#: elf/ldconfig.c:572 elf/ldconfig.c:745 elf/ldconfig.c:793 elf/ldconfig.c:827
+#: elf/ldconfig.c:592 elf/ldconfig.c:765 elf/ldconfig.c:813 elf/ldconfig.c:847
#, c-format
msgid "Cannot lstat %s"
msgstr "%sì lstat()í ì ììµëë¤"
-#: elf/ldconfig.c:579
+#: elf/ldconfig.c:599
#, c-format
msgid "Ignored file %s since it is not a regular file."
msgstr "ì¼ë° íì¼ì´ ìëë¯ë¡ %s íì¼ì 무ìí©ëë¤."
-#: elf/ldconfig.c:588
+#: elf/ldconfig.c:608
#, c-format
msgid "No link created since soname could not be found for %s"
msgstr "%sì ëí sonameì ì°¾ì ì ìì¼ë¯ë¡ ë§í¬ë¥¼ ë§ë¤ì§ ììµëë¤"
-#: elf/ldconfig.c:671
+#: elf/ldconfig.c:691
#, c-format
msgid "Can't open directory %s"
-msgstr "ëë í 리 %sì(를) ì´ ì ììµëë¤"
-
-#: elf/ldconfig.c:759
+msgstr "ëë í°ë¦¬ %sì(를) ì´ ì ììµëë¤"
+
+#: elf/ldconfig.c:779
#, c-format
msgid "Cannot stat %s"
msgstr "%sì stat()í ì ììµëë¤"
-#: elf/ldconfig.c:814 elf/readlib.c:91
+#: elf/ldconfig.c:834 elf/readlib.c:91
#, c-format
msgid "Input file %s not found.\n"
msgstr "ì
ë ¥ íì¼ %sì(를) ì°¾ì§ ëª»íìµëë¤.\n"
-#: elf/ldconfig.c:888
+#: elf/ldconfig.c:908
#, c-format
msgid "libc5 library %s in wrong directory"
-msgstr "libc5 library %sì´(ê°) ì못ë ëë í 리ì ììµëë¤"
-
-#: elf/ldconfig.c:891
+msgstr "libc5 library %sì´(ê°) ì못ë ëë í°ë¦¬ì ììµëë¤"
+
+#: elf/ldconfig.c:911
#, c-format
msgid "libc6 library %s in wrong directory"
-msgstr "libc6 library %sì´(ê°) ì못ë ëë í 리ì ììµëë¤"
-
-#: elf/ldconfig.c:894
+msgstr "libc6 library %sì´(ê°) ì못ë ëë í°ë¦¬ì ììµëë¤"
+
+#: elf/ldconfig.c:914
#, c-format
msgid "libc4 library %s in wrong directory"
-msgstr "libc4 library %sì´(ê°) ì못ë ëë í 리ì ììµëë¤"
-
-#: elf/ldconfig.c:922
+msgstr "libc4 library %sì´(ê°) ì못ë ëë í°ë¦¬ì ììµëë¤"
+
+#: elf/ldconfig.c:942
#, c-format
msgid "libraries %s and %s in directory %s have same soname but different type."
-msgstr "ëë í 리 %sì ë¼ì´ë¸ë¬ë¦¬ %sê³¼(ì) %sì´(ê°) ê°ì sonameì ê°ì§ê³ ìì§ë§ íì
ì´ ë¤ë¦
ëë¤."
-
-#: elf/ldconfig.c:1031
+msgstr "ëë í°ë¦¬ %sì ë¼ì´ë¸ë¬ë¦¬ %sê³¼(ì) %sì´(ê°) ê°ì sonameì ê°ì§ê³ ìì§ë§ íì
ì´ ë¤ë¦
ëë¤."
+
+#: elf/ldconfig.c:1051
#, c-format
msgid "Can't open configuration file %s"
msgstr "ì¤ì íì¼ `%s'ì(를) ì´ ì ììµëë¤"
-#: elf/ldconfig.c:1095
+#: elf/ldconfig.c:1115
#, c-format
msgid "%s:%u: bad syntax in hwcap line"
msgstr "%s:%u: hwcap ì¤ì 문ë²ì´ ì못ëììµëë¤"
-#: elf/ldconfig.c:1101
+#: elf/ldconfig.c:1121
#, c-format
msgid "%s:%u: hwcap index %lu above maximum %u"
msgstr "%s:%u: hwcap ì¸ë±ì¤ %luì(ë) ìµëê° %uì(를) ëì´ê°ìµëë¤"
-#: elf/ldconfig.c:1108 elf/ldconfig.c:1116
+#: elf/ldconfig.c:1128 elf/ldconfig.c:1136
#, c-format
msgid "%s:%u: hwcap index %lu already defined as %s"
msgstr "%s:%u: hwcap ì¸ë±ì¤ %luì(ë) ì´ë¯¸ %s(ì¼)ë¡ ì ìëì´ ììµëë¤"
-#: elf/ldconfig.c:1119
+#: elf/ldconfig.c:1139
#, c-format
msgid "%s:%u: duplicate hwcap %lu %s"
msgstr "%s:%u: ì¤ë³µë hwcap %lu %s"
-#: elf/ldconfig.c:1141
+#: elf/ldconfig.c:1161
#, c-format
msgid "need absolute file name for configuration file when using -r"
msgstr "-r ìµì
ì ì¬ì©í ê²½ì° ì¤ì íì¼ì ì ë íì¼ ì´ë¦ì´ íìí©ëë¤"
-#: elf/ldconfig.c:1148 locale/programs/xmalloc.c:70 malloc/obstack.c:434
-#: malloc/obstack.c:436 posix/getconf.c:985 posix/getconf.c:1163
+#: elf/ldconfig.c:1168 locale/programs/xmalloc.c:70 malloc/obstack.c:434
+#: malloc/obstack.c:436 posix/getconf.c:985 posix/getconf.c:1177
#, c-format
msgid "memory exhausted"
msgstr "ë©ëª¨ë¦¬ê° ë°ë¥ë¨"
-#: elf/ldconfig.c:1178
+#: elf/ldconfig.c:1198
#, c-format
msgid "%s:%u: cannot read directory %s"
-msgstr "%s:%u: %s ëë í 리를 ì½ì ì ììµëë¤"
-
-#: elf/ldconfig.c:1223
+msgstr "%s:%u: %s ëë í°ë¦¬ë¥¼ ì½ì ì ììµëë¤"
+
+#: elf/ldconfig.c:1242
#, c-format
msgid "relative path `%s' used to build cache"
msgstr "ìºì를 ë§ëë ë° ìë ê²½ë¡ì¸ `%s' ê²½ë¡ë¥¼ ì¬ì©íìµëë¤"
-#: elf/ldconfig.c:1249
+#: elf/ldconfig.c:1268
#, c-format
msgid "Can't chdir to /"
-msgstr "/ë¡ ëë í 리를 ì´ëí ì ììµëë¤"
-
-#: elf/ldconfig.c:1291
+msgstr "/ë¡ ëë í°ë¦¬ë¥¼ ì´ëí ì ììµëë¤"
+
+#: elf/ldconfig.c:1310
#, c-format
msgid "Can't open cache file directory %s\n"
-msgstr "ìºì íì¼ ëë í 리 `%s'ì(를) ì´ ì ììµëë¤\n"
+msgstr "ìºì íì¼ ëë í°ë¦¬ `%s'ì(를) ì´ ì ììµëë¤\n"
#: elf/ldd.bash.in:43
msgid "Written by %s and %s.\n"
@@ -917,8 +919,6 @@
" -r, --function-relocs process data and function relocations\n"
" -u, --unused print unused direct dependencies\n"
" -v, --verbose print all information\n"
-"For bug reporting instructions, please see:\n"
-"<http://www.gnu.org/software/libc/bugs.html>."
msgstr ""
"ì¬ì©ë²: ldd [ìµì
]... <íì¼>...\n"
" --help ì´ ëìë§ì ì¶ë ¥íê³ ëë©ëë¤\n"
@@ -927,49 +927,47 @@
" -r, --function-relocs ë°ì´í° ë° í¨ì 리ë¡ì¼ì´ì
ì ì²ë¦¬í©ëë¤\n"
" -u, --unused ì¬ì©íì§ ìë ì§ì ìì¡´ì±ì íìí©ëë¤\n"
" -v, --verbose ì ì²´ ì 보를 íìí©ëë¤\n"
-"ë²ê·¸ ë³´ê³ ë°©ë²ì ë¤ìì ì°¸ê³ íììì¤:\n"
-"<http://www.gnu.org/software/libc/bugs.html>."
-
-#: elf/ldd.bash.in:80
+
+#: elf/ldd.bash.in:82
msgid "ldd: option \\`$1' is ambiguous"
msgstr "ldd: \\`$1' ìµì
ì 모í¸í ìµì
ì
ëë¤"
-#: elf/ldd.bash.in:87
+#: elf/ldd.bash.in:89
msgid "unrecognized option"
msgstr "ì¸ìí ì ìë ìµì
"
-#: elf/ldd.bash.in:88 elf/ldd.bash.in:126
+#: elf/ldd.bash.in:90 elf/ldd.bash.in:128
msgid "Try \\`ldd --help' for more information."
msgstr "ë ë§ì ì 보를 ë³´ë ¤ë©´ \\`ldd --help' íììì¤."
-#: elf/ldd.bash.in:125
+#: elf/ldd.bash.in:127
msgid "missing file arguments"
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.
-#: elf/ldd.bash.in:148 sysdeps/gnu/errlist.c:36
+#: elf/ldd.bash.in:150 sysdeps/gnu/errlist.c:36
msgid "No such file or directory"
-msgstr "ê·¸ë° íì¼ì´ë ëë í ë¦¬ê° ììµëë¤"
-
-#: elf/ldd.bash.in:151 inet/rcmd.c:483
+msgstr "ê·¸ë° íì¼ì´ë ëë í°ë¦¬ê° ììµëë¤"
+
+#: elf/ldd.bash.in:153 inet/rcmd.c:483
msgid "not regular file"
msgstr "ì¼ë° íì¼ì´ ìë"
-#: elf/ldd.bash.in:154
+#: elf/ldd.bash.in:156
msgid "warning: you do not have execution permission for"
msgstr "ê²½ê³ : ë¤ìì ëí´ ì¤í ê¶íì´ ììµëë¤"
-#: elf/ldd.bash.in:183
+#: elf/ldd.bash.in:185
msgid "\tnot a dynamic executable"
msgstr "\tëì ì¤í íì¼ì´ ìëëë¤"
-#: elf/ldd.bash.in:191
+#: elf/ldd.bash.in:193
msgid "exited with unknown exit code"
-msgstr "ì ì ìë ì¢
ë£ ì½ëë¡ ëë¬ìµëë¤"
-
-#: elf/ldd.bash.in:196
+msgstr "ì ì ìë ì¤ë¥ ì½ëë¡ ëë¬ìµëë¤"
+
+#: elf/ldd.bash.in:198
msgid "error: you do not have read permission for"
msgstr "ì¤ë¥: ë¤ìì ëí´ ì½ê¸° ê¶íì´ ììµëë¤"
@@ -1027,6 +1025,45 @@
#, c-format
msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n"
msgstr "%sì(ë) ELF íì¼ì´ ìëëë¤ - ììë¶ë¶ì ë§¤ì§ ë°ì´í¸ê° íë ¸ìµëë¤.\n"
+
+#: elf/sln.c:85
+#, c-format
+msgid ""
+"Usage: sln src dest|file\n"
+"\n"
+msgstr ""
+"ì¬ì©ë²: sln ì본 ëì|íì¼\n"
+"\n"
+
+#: elf/sln.c:110
+#, c-format
+msgid "%s: file open error: %m\n"
+msgstr "%s: íì¼ ì´ê¸° ì¤ë¥: %m\n"
+
+#: elf/sln.c:147
+#, c-format
+msgid "No target in line %d\n"
+msgstr "%dë² ì¤ì 목íê° ììµëë¤\n"
+
+#: elf/sln.c:179
+#, c-format
+msgid "%s: destination must not be a directory\n"
+msgstr "%s: ëìì´ ëë í°ë¦¬ë©´ ì ë©ëë¤\n"
+
+#: elf/sln.c:185
+#, c-format
+msgid "%s: failed to remove the old destination\n"
+msgstr "%s: ìì ëìì ì ê±°íë ë° ì¤í¨íìµëë¤\n"
+
+#: elf/sln.c:193
+#, c-format
+msgid "%s: invalid destination: %s\n"
+msgstr "%s: ëìì´ ì못ëììµëë¤: %s\n"
+
+#: elf/sln.c:208 elf/sln.c:217
+#, c-format
+msgid "Invalid link from \"%s\" to \"%s\": %s\n"
+msgstr "\"%s\"ìì \"%s\"(ì¼)ë¡ ë§í¬ê° ì못ëììµëë¤: %s\n"
#: elf/sprof.c:77
msgid "Output selection:"
@@ -1045,129 +1082,130 @@
msgstr "í¸ì¶ ê·¸ëí를 ë§ë¦"
#: elf/sprof.c:89
-msgid ""
-"Read and display shared object profiling data.\vFor bug reporting instructions, please see:\n"
-"<http://www.gnu.org/software/libc/bugs.html>.\n"
-msgstr ""
-"ê³µì ì¤ë¸ì í¸ íë¡íì¼ë§ ë°ì´í°ë¥¼ ì½ê³ íìí©ëë¤\\vë²ê·¸ë¥¼ ë³´ê³ íë ë°©ë²ì ë¤ìì ì°¸ê³ íììì¤:\n"
-"<http://www.gnu.org/software/libc/bugs.html>.\n"
+msgid "Read and display shared object profiling data."
+msgstr "ê³µì ì¤ë¸ì í¸ íë¡íì¼ ë°ì´í°ë¥¼ ì½ê³ íìí ì ììµëë¤."
#: elf/sprof.c:94
msgid "SHOBJ [PROFDATA]"
msgstr "SHOBJ [PROFDATA]"
-#: elf/sprof.c:400
+#: elf/sprof.c:420
#, c-format
msgid "failed to load shared object `%s'"
msgstr "ëì ì¤ë¸ì í¸ `%s'ì(를) ì½ëë° ì¤í¨íìµëë¤"
-#: elf/sprof.c:409
+#: elf/sprof.c:429
#, c-format
msgid "cannot create internal descriptors"
msgstr "ë´ë¶ ëì¤í¬ë¦½í°ë¥¼ ë§ë¤ ì ììµëë¤"
-#: elf/sprof.c:528
+#: elf/sprof.c:548
#, c-format
msgid "Reopening shared object `%s' failed"
msgstr "ëì ì¤ë¸ì í¸ `%s'ì(를) ë¤ì ì¬ë ë° ì¤í¨íìµëë¤"
-#: elf/sprof.c:535 elf/sprof.c:629
+#: elf/sprof.c:555 elf/sprof.c:649
#, c-format
msgid "reading of section headers failed"
msgstr "ì¹ì
í¤ë를 ì½ë ë° ì¤í¨íìµëë¤"
-#: elf/sprof.c:543 elf/sprof.c:637
+#: elf/sprof.c:563 elf/sprof.c:657
#, c-format
msgid "reading of section header string table failed"
msgstr "ì¹ì
í¤ë 문ìì´ í
ì´ë¸ì ì½ë ë° ì¤í¨íìµëë¤"
-#: elf/sprof.c:569
+#: elf/sprof.c:589
#, c-format
msgid "*** Cannot read debuginfo file name: %m\n"
msgstr "*** ëë²ê¹
ì ë³´ íì¼ ì´ë¦ì ì½ì ì ììµëë¤: %m\n"
-#: elf/sprof.c:589
+#: elf/sprof.c:609
#, c-format
msgid "cannot determine file name"
msgstr "íì¼ ì´ë¦ì íì
í ì ììµëë¤"
-#: elf/sprof.c:622
+#: elf/sprof.c:642
#, c-format
msgid "reading of ELF header failed"
msgstr "ELF í¤ë를 ì½ë ë° ì¤í¨íìµëë¤"
-#: elf/sprof.c:658
+#: elf/sprof.c:678
#, c-format
msgid "*** The file `%s' is stripped: no detailed analysis possible\n"
msgstr "*** `%s' íì¼ì ëë²ê¹
ì 보를 ì ê±°í íì¼ì
ëë¤: ë ìì¸í ë¶ìì ë¶ê°ë¥í©ëë¤\n"
-#: elf/sprof.c:688
+#: elf/sprof.c:708
#, c-format
msgid "failed to load symbol data"
msgstr "ê¸°í¸ ë°ì´í°ë¥¼ ì½ë ë° ì¤í¨íìµëë¤"
-#: elf/sprof.c:755
+#: elf/sprof.c:775
#, c-format
msgid "cannot load profiling data"
msgstr "íë¡íì¼ë§ ë°ì´í°ë¥¼ ì½ì ì ììµëë¤"
-#: elf/sprof.c:764
+#: elf/sprof.c:784
#, c-format
msgid "while stat'ing profiling data file"
msgstr "íë¡íì¼ë§ ë°ì´í° íì¼ì ì°ë ëì"
-#: elf/sprof.c:772
+#: elf/sprof.c:792
#, c-format
msgid "profiling data file `%s' does not match shared object `%s'"
msgstr "íë¡íì¼ë§ ë°ì´í° íì¼ `%s'ì(ë) ëì ì¤ë¸ì í¸`%s'ì ë§ì§ ììµëë¤"
-#: elf/sprof.c:783
+#: elf/sprof.c:803
#, c-format
msgid "failed to mmap the profiling data file"
msgstr "íë¡íì¼ë§ ë°ì´í° íì¼ì mmapíë ë° ì¤í¨"
-#: elf/sprof.c:791
+#: elf/sprof.c:811
#, c-format
msgid "error while closing the profiling data file"
msgstr "íë¡íì¼ë§ ë°ì´í° íì¼ì ë«ë ëì¤ ì¤ë¥ ë°ì"
-#: elf/sprof.c:800 elf/sprof.c:870
+#: elf/sprof.c:820 elf/sprof.c:890
#, c-format
msgid "cannot create internal descriptor"
msgstr "ë´ë¶ ëì¤í¬ë¦½í°ë¥¼ ë§ë¤ ì ììµëë¤"
-#: elf/sprof.c:846
+#: elf/sprof.c:866
#, c-format
msgid "`%s' is no correct profile data file for `%s'"
msgstr "`%s'ì(ë) `%s'ì ë§ë íë¡íì¼ ë°ì´í° íì¼ì´ ìëëë¤"
-#: elf/sprof.c:1027 elf/sprof.c:1085
+#: elf/sprof.c:1047 elf/sprof.c:1105
#, c-format
msgid "cannot allocate symbol data"
msgstr "ê¸°í¸ ë°ì´í°ë¥¼ í ë¹í ì ììµëë¤"
-#: iconv/iconv_charmap.c:176 iconv/iconv_prog.c:316
+#: iconv/iconv_charmap.c:142 iconv/iconv_prog.c:446
+#, c-format
+msgid "cannot open output file"
+msgstr "ì¶ë ¥ íì¼ì ì´ ì ììµëë¤"
+
+#: iconv/iconv_charmap.c:188 iconv/iconv_prog.c:312
#, c-format
msgid "error while closing input `%s'"
msgstr "`%s' ì
ë ¥ì ë«ë ëì¤ ì¤ë¥ ë°ì"
-#: iconv/iconv_charmap.c:450
+#: iconv/iconv_charmap.c:462
#, c-format
msgid "illegal input sequence at position %Zd"
msgstr "%Zd ìì¹ì ì못ë ì
ë ¥ ììì´ì´ ìì"
-#: iconv/iconv_charmap.c:469 iconv/iconv_prog.c:526
+#: iconv/iconv_charmap.c:481 iconv/iconv_prog.c:537
#, c-format
msgid "incomplete character or shift sequence at end of buffer"
msgstr "ë²í¼ì ëì ë¶ìì í 문ì í¹ì ì¬íí¸ ì°ì"
-#: iconv/iconv_charmap.c:514 iconv/iconv_charmap.c:550 iconv/iconv_prog.c:569
-#: iconv/iconv_prog.c:605
+#: iconv/iconv_charmap.c:526 iconv/iconv_charmap.c:562 iconv/iconv_prog.c:580
+#: iconv/iconv_prog.c:616
#, c-format
msgid "error while reading the input"
msgstr "ì
ë ¥ì ì½ë ëì¤ì ì¤ë¥ ë°ì"
-#: iconv/iconv_charmap.c:532 iconv/iconv_prog.c:587
+#: iconv/iconv_charmap.c:544 iconv/iconv_prog.c:598
#, c-format
msgid "unable to allocate buffer for input"
msgstr "ì
ë ¥ì ìí ë²í¼ë¥¼ í ë¹í ì ììµëë¤"
@@ -1220,62 +1258,57 @@
msgid "[FILE...]"
msgstr "[íì¼...]"
-#: iconv/iconv_prog.c:200
-#, c-format
-msgid "cannot open output file"
-msgstr "ì¶ë ¥ íì¼ì ì´ ì ììµëë¤"
-
-#: iconv/iconv_prog.c:242
+#: iconv/iconv_prog.c:234
#, c-format
msgid "conversions from `%s' and to `%s' are not supported"
msgstr "`%s'ìì ë³í ë° `%s'(ì¼)ë¡ì ë³íì ì§ìíì§ ììµëë¤"
-#: iconv/iconv_prog.c:247
+#: iconv/iconv_prog.c:239
#, c-format
msgid "conversion from `%s' is not supported"
msgstr "`%s'ìì ë³íì ì§ìíì§ ììµëë¤"
-#: iconv/iconv_prog.c:254
+#: iconv/iconv_prog.c:246
#, c-format
msgid "conversion to `%s' is not supported"
msgstr "`%s'ë¡ì ë³íì ì§ìíì§ ììµëë¤"
-#: iconv/iconv_prog.c:258
+#: iconv/iconv_prog.c:250
#, c-format
msgid "conversion from `%s' to `%s' is not supported"
msgstr "`%s'ìì `%s'ë¡ì ë³íì ì§ìíì§ ììµëë¤"
-#: iconv/iconv_prog.c:268
+#: iconv/iconv_prog.c:260
#, c-format
msgid "failed to start conversion processing"
msgstr "ë³íìì
ì ììíëë° ì¤í¨"
-#: iconv/iconv_prog.c:362
+#: iconv/iconv_prog.c:358
#, c-format
msgid "error while closing output file"
msgstr "ì¶ë ¥ íì¼ì ë«ë ëì¤ ì¤ë¥ ë°ì"
-#: iconv/iconv_prog.c:471 iconv/iconv_prog.c:497
+#: iconv/iconv_prog.c:456
#, c-format
msgid "conversion stopped due to problem in writing the output"
msgstr "ì¶ë ¥íì¼ì ì¸ ë ë°ìí 문ì ë¡ ë³íìì
ì ì¤ë¨íìµëë¤"
-#: iconv/iconv_prog.c:522
+#: iconv/iconv_prog.c:533
#, c-format
msgid "illegal input sequence at position %ld"
msgstr "%ld ìì¹ì ì못ë ì
ë ¥ ììì´ì´ ìì"
-#: iconv/iconv_prog.c:530
+#: iconv/iconv_prog.c:541
#, c-format
msgid "internal error (illegal descriptor)"
msgstr "ë´ë¶ ì¤ë¥ (ì못ë ëì¤í¬ë¦½í°)"
-#: iconv/iconv_prog.c:533
+#: iconv/iconv_prog.c:544
#, c-format
msgid "unknown iconv() error %d"
msgstr "ì ì ìë iconv() ì¤ë¥ %d"
-#: iconv/iconv_prog.c:779
+#: iconv/iconv_prog.c:790
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"
@@ -1297,7 +1330,7 @@
#: iconv/iconvconfig.c:114
msgid "[DIR...]"
-msgstr "[ëë í 리...]"
+msgstr "[ëë í°ë¦¬...]"
#: iconv/iconvconfig.c:127
msgid "Prefix used for all file accesses"
@@ -1309,12 +1342,12 @@
#: iconv/iconvconfig.c:132
msgid "Do not search standard directories, only those on the command line"
-msgstr "íì¤ ëë í 리를 ì°¾ì§ ìê³ , ëª
ë ¹íì ëë í ë¦¬ë§ ì°¾ìµëë¤"
+msgstr "íì¤ ëë í°ë¦¬ë¥¼ ì°¾ì§ ìê³ , ëª
ë ¹íì ëë í°ë¦¬ë§ ì°¾ìµëë¤"
#: iconv/iconvconfig.c:301
#, c-format
msgid "Directory arguments required when using --nostdlib"
-msgstr "--nostdlib ìµì
ì ì¬ì©íë©´ ëë í 리 ì¸ìê° íìí©ëë¤"
+msgstr "--nostdlib ìµì
ì ì¬ì©íë©´ ëë í°ë¦¬ ì¸ìê° íìí©ëë¤"
#: iconv/iconvconfig.c:343 locale/programs/localedef.c:291
#, c-format
@@ -1337,7 +1370,7 @@
#: inet/rcmd.c:172
msgid "rcmd: socket: All ports in use\n"
-msgstr "rcmd: socket: 모ë í¬í¸ê° ì¬ì©ì¤\n"
+msgstr "rcmd: socket: 모ë í¬í¸ê° ì¬ì© ì¤\n"
#: inet/rcmd.c:200
#, c-format
@@ -1420,7 +1453,7 @@
#: locale/programs/charmap-dir.c:59
#, c-format
msgid "cannot read character map directory `%s'"
-msgstr "`%s' 문ì ì§ë ëë í 리를 ì½ì ì ììµëë¤"
+msgstr "`%s' 문ì ì§ë ëë í°ë¦¬ë¥¼ ì½ì ì ììµëë¤"
#: locale/programs/charmap.c:138
#, c-format
@@ -1511,7 +1544,7 @@
msgid "no symbolic name given for end of range"
msgstr "ë²ìì ëê¹ì§ ê¸°í¸ ì´ë¦ì´ ììµëë¤"
-#: locale/programs/charmap.c:610 locale/programs/ld-address.c:600
+#: locale/programs/charmap.c:610 locale/programs/ld-address.c:602
#: locale/programs/ld-collate.c:2767 locale/programs/ld-collate.c:3924
#: locale/programs/ld-ctype.c:2232 locale/programs/ld-ctype.c:2984
#: locale/programs/ld-identification.c:452
@@ -1538,8 +1571,8 @@
msgid "%s: error in state machine"
msgstr "%s: ìí 기ê³ì ì¤ë¥ ë°ì"
-#: locale/programs/charmap.c:850 locale/programs/ld-address.c:616
-#: locale/programs/ld-collate.c:2764 locale/programs/ld-collate.c:4115
+#: locale/programs/charmap.c:850 locale/programs/ld-address.c:618
+#: locale/programs/ld-collate.c:2764 locale/programs/ld-collate.c:4117
#: locale/programs/ld-ctype.c:2229 locale/programs/ld-ctype.c:3001
#: locale/programs/ld-identification.c:468
#: locale/programs/ld-measurement.c:254 locale/programs/ld-messages.c:348
@@ -1562,7 +1595,7 @@
msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d"
msgstr "ë²ìì ììê³¼ ëì ë°ì´í¸ ìíì¤ ë°ì´í¸ ìê° ë¤ë¦
ëë¤: %d ë° %d"
-#: locale/programs/charmap.c:993 locale/programs/ld-collate.c:3047
+#: locale/programs/charmap.c:993 locale/programs/ld-collate.c:3044
#: locale/programs/repertoire.c:419
msgid "invalid names for character range"
msgstr "문ìì ë²ìë¡ ì못ë ì´ë¦"
@@ -1584,7 +1617,7 @@
msgid "resulting bytes for range not representable."
msgstr "ë²ìì ìµì¢
ë°ì´í¸ì를 íìí ì ììµëë¤."
-#: locale/programs/ld-address.c:133 locale/programs/ld-collate.c:1556
+#: locale/programs/ld-address.c:135 locale/programs/ld-collate.c:1556
#: locale/programs/ld-ctype.c:420 locale/programs/ld-identification.c:133
#: locale/programs/ld-measurement.c:94 locale/programs/ld-messages.c:97
#: locale/programs/ld-monetary.c:194 locale/programs/ld-name.c:94
@@ -1594,10 +1627,10 @@
msgid "No definition for %s category found"
msgstr "%s ë²ì£¼ì ëí ì ìê° ììµëë¤"
-#: locale/programs/ld-address.c:144 locale/programs/ld-address.c:182
-#: locale/programs/ld-address.c:200 locale/programs/ld-address.c:229
-#: locale/programs/ld-address.c:301 locale/programs/ld-address.c:320
-#: locale/programs/ld-address.c:333 locale/programs/ld-identification.c:146
+#: locale/programs/ld-address.c:146 locale/programs/ld-address.c:184
+#: locale/programs/ld-address.c:202 locale/programs/ld-address.c:231
+#: locale/programs/ld-address.c:303 locale/programs/ld-address.c:322
+#: locale/programs/ld-address.c:335 locale/programs/ld-identification.c:146
#: locale/programs/ld-measurement.c:105 locale/programs/ld-monetary.c:206
#: locale/programs/ld-monetary.c:250 locale/programs/ld-monetary.c:266
#: locale/programs/ld-monetary.c:278 locale/programs/ld-name.c:105
@@ -1610,47 +1643,47 @@
msgid "%s: field `%s' not defined"
msgstr "%s: `%s' íë를 ì ìíì§ ìììµëë¤"
-#: locale/programs/ld-address.c:156 locale/programs/ld-address.c:208
-#: locale/programs/ld-address.c:238 locale/programs/ld-address.c:276
+#: locale/programs/ld-address.c:158 locale/programs/ld-address.c:210
+#: locale/programs/ld-address.c:240 locale/programs/ld-address.c:278
#: locale/programs/ld-name.c:117 locale/programs/ld-telephone.c:117
#, c-format
msgid "%s: field `%s' must not be empty"
msgstr "%s: `%s' íëë ë¹ì´ ìì¼ë©´ ì ë©ëë¤"
-#: locale/programs/ld-address.c:168
+#: locale/programs/ld-address.c:170
#, c-format
msgid "%s: invalid escape `%%%c' sequence in field `%s'"
msgstr "%1$s: `%3$s' íëì ì못ë ì´ì¤ì¼ì´í `%%%2$c' ììì´"
# ë²ì: terminology???
-#: locale/programs/ld-address.c:219
+#: locale/programs/ld-address.c:221
#, c-format
msgid "%s: terminology language code `%s' not defined"
msgstr "%s: terminology ì¸ì´ì½ë `%s'ì´(ê°) ì ìíì§ ìììµëë¤"
-#: locale/programs/ld-address.c:244
+#: locale/programs/ld-address.c:246
#, c-format
msgid "%s: field `%s' must not be defined"
msgstr "%s: `%s' íëë ì ìí´ìë ì ë©ëë¤"
-#: locale/programs/ld-address.c:258 locale/programs/ld-address.c:287
+#: locale/programs/ld-address.c:260 locale/programs/ld-address.c:289
#, c-format
msgid "%s: language abbreviation `%s' not defined"
msgstr "%s: ì¸ì´ ì¤ìë§ `%s'ì´(ê°) ì ìíì§ ìììµëë¤"
-#: locale/programs/ld-address.c:265 locale/programs/ld-address.c:293
-#: locale/programs/ld-address.c:327 locale/programs/ld-address.c:339
+#: locale/programs/ld-address.c:267 locale/programs/ld-address.c:295
+#: locale/programs/ld-address.c:329 locale/programs/ld-address.c:341
#, c-format
msgid "%s: `%s' value does not match `%s' value"
msgstr "%s: `%s'ì ê°ì `%s'ì ê°ê³¼ ë§ì§ ììµëë¤"
-#: locale/programs/ld-address.c:312
+#: locale/programs/ld-address.c:314
#, c-format
msgid "%s: numeric country code `%d' not valid"
msgstr "%s: êµê° ì½ë ì«ì `%d'ë²ì ì¬ë°ë¥´ì§ ììµëë¤"
-#: locale/programs/ld-address.c:508 locale/programs/ld-address.c:545
-#: locale/programs/ld-address.c:583 locale/programs/ld-ctype.c:2608
+#: locale/programs/ld-address.c:510 locale/programs/ld-address.c:547
+#: locale/programs/ld-address.c:585 locale/programs/ld-ctype.c:2608
#: locale/programs/ld-identification.c:364
#: locale/programs/ld-measurement.c:221 locale/programs/ld-messages.c:301
#: locale/programs/ld-monetary.c:701 locale/programs/ld-monetary.c:736
@@ -1662,7 +1695,7 @@
msgid "%s: field `%s' declared more than once"
msgstr "%s: `%s' íë를 ì¬ë¬ ë² ì ì¸íìµëë¤"
-#: locale/programs/ld-address.c:512 locale/programs/ld-address.c:550
+#: locale/programs/ld-address.c:514 locale/programs/ld-address.c:552
#: locale/programs/ld-identification.c:368 locale/programs/ld-messages.c:311
#: locale/programs/ld-monetary.c:705 locale/programs/ld-monetary.c:740
#: locale/programs/ld-name.c:284 locale/programs/ld-numeric.c:267
@@ -1672,7 +1705,7 @@
msgid "%s: unknown character in field `%s'"
msgstr "%s: `%s' íëì ìë ¤ì§ì§ ìì 문ìê° ììµëë¤"
-#: locale/programs/ld-address.c:597 locale/programs/ld-collate.c:3922
+#: locale/programs/ld-address.c:599 locale/programs/ld-collate.c:3922
#: locale/programs/ld-ctype.c:2981 locale/programs/ld-identification.c:449
#: locale/programs/ld-measurement.c:235 locale/programs/ld-messages.c:330
#: locale/programs/ld-monetary.c:941 locale/programs/ld-name.c:305
@@ -1682,10 +1715,10 @@
msgid "%s: incomplete `END' line"
msgstr "%s: ë¶ìì í `END' ì¤"
-#: locale/programs/ld-address.c:607 locale/programs/ld-collate.c:542
+#: locale/programs/ld-address.c:609 locale/programs/ld-collate.c:542
#: locale/programs/ld-collate.c:594 locale/programs/ld-collate.c:890
#: locale/programs/ld-collate.c:903 locale/programs/ld-collate.c:2733
-#: locale/programs/ld-collate.c:2754 locale/programs/ld-collate.c:4105
+#: locale/programs/ld-collate.c:2754 locale/programs/ld-collate.c:4107
#: locale/programs/ld-ctype.c:1960 locale/programs/ld-ctype.c:2219
#: locale/programs/ld-ctype.c:2806 locale/programs/ld-ctype.c:2992
#: locale/programs/ld-identification.c:459
@@ -1829,7 +1862,7 @@
msgid "too many errors; giving up"
msgstr "ì¤ë¥ê° ë무 ë§ìµëë¤; í¬ê¸°í©ëë¤"
-#: locale/programs/ld-collate.c:2659 locale/programs/ld-collate.c:4044
+#: locale/programs/ld-collate.c:2659 locale/programs/ld-collate.c:4046
#, c-format
msgid "%s: nested conditionals not supported"
msgstr "%s: ì¤ì²©í 조건문ì ì§ìíì§ ììµëë¤"
@@ -1849,29 +1882,29 @@
msgid "%s: duplicate declaration of section `%s'"
msgstr "%s: ì¹ì
`%s'ì ì ì¸ì´ ì¤ë³µëììµëë¤"
-#: locale/programs/ld-collate.c:3027
+#: locale/programs/ld-collate.c:3024
#, c-format
msgid "%s: unknown character in collating symbol name"
msgstr "%s: ì¬ì ìì ê¸°í¸ ì´ë¦ì ì ì ìë 문ì"
# ë²ì: equivalent definition??
-#: locale/programs/ld-collate.c:3159
+#: locale/programs/ld-collate.c:3153
#, c-format
msgid "%s: unknown character in equivalent definition name"
msgstr "%s: ëì 문ì ì ì ì´ë¦ì ìë ¤ì§ì§ ìì 문ìê° ììµëë¤"
-#: locale/programs/ld-collate.c:3172
+#: locale/programs/ld-collate.c:3164
#, c-format
msgid "%s: unknown character in equivalent definition value"
msgstr "%s: ëì 문ì ì ì ê°ì ìë ¤ì§ì§ ìì 문ìê° ììµëë¤"
# ë²ì: equivalent definition??
-#: locale/programs/ld-collate.c:3182
+#: locale/programs/ld-collate.c:3174
#, c-format
msgid "%s: unknown symbol `%s' in equivalent definition"
msgstr "%s: ëì문ì ì ìì ì ì ìë ê¸°í¸ `%s'"
-#: locale/programs/ld-collate.c:3191
+#: locale/programs/ld-collate.c:3183
msgid "error while adding equivalent collating symbol"
msgstr "ëìíë ì¬ì 기í¸ë¥¼ ëíë ë° ì¤ë¥"
@@ -1952,12 +1985,12 @@
msgid "%s: missing `reorder-sections-end' keyword"
msgstr "%s: `reorder-sections-end' í¤ìëê° ë¹ ì¡ìµëë¤"
-#: locale/programs/ld-collate.c:4077
+#: locale/programs/ld-collate.c:4079
#, c-format
msgid "%s: '%s' without matching 'ifdef' or 'ifndef'"
msgstr "%s: '%s'ì´(ê°) í´ë¹íë 'ifdef' í¹ì 'ifndef' ìì´ ëíë¬ìµëë¤"
-#: locale/programs/ld-collate.c:4095
+#: locale/programs/ld-collate.c:4097
#, c-format
msgid "%s: 'endif' without matching 'ifdef' or 'ifndef'"
msgstr "%s: 'endif'ê° í´ë¹íë 'ifdef' í¹ì 'ifndef' ìì´ ëíë¬ìµëë¤"
@@ -2288,7 +2321,7 @@
msgid "%s: starting date is invalid in string %Zd in `era' field"
msgstr "%s: `era' íëì ìë 문ìì´ %Zdìì ìì ë ì§ê° ì못ëììµëë¤"
-#: locale/programs/ld-time.c:407
+#: locale/programs/ld-time.c:407 locale/programs/ld-time.c:435
#, c-format
msgid "%s: invalid stopping date in string %Zd in `era' field"
msgstr "%s: `era' íëì ìë 문ìì´ %Zdì ì¤íì
ì ì못ë ì ì§ ë ì§ê° ììµëë¤ "
@@ -2297,11 +2330,6 @@
#, c-format
msgid "%s: garbage at end of stopping date in string %Zd in `era' field"
msgstr "%s: `era' íëì ìë 문ìì´ %Zdìì ë©ì¶¤ ë ì§ ê°ì ëì ì¸ëª¨ìë ê²ì´ ììµëë¤"
-
-#: locale/programs/ld-time.c:435
-#, c-format
-msgid "%s: stopping date is invalid in string %Zd in `era' field"
-msgstr "%s: `era' íëì ìë 문ìì´ %Zdìì ì ì§ ë ì§ê° ì못ëììµëë¤"
#: locale/programs/ld-time.c:444
#, c-format
@@ -2405,14 +2433,10 @@
msgstr "ë ë§ì ì 보를 íìí©ëë¤"
#: locale/programs/locale.c:87
-msgid ""
-"Get locale-specific information.\vFor bug reporting instructions, please see:\n"
-"<http://www.gnu.org/software/libc/bugs.html>.\n"
-msgstr ""
-"ë¡ìº ê´ë ¨ ì 보를 ê°ì ¸ìµëë¤\\vë²ê·¸ë¥¼ ë³´ê³ íë ë°©ë²ì ë¤ìì ì°¸ê³ íììì¤:\n"
-"<http://www.gnu.org/software/libc/bugs.html>.\n"
-
-#: locale/programs/locale.c:92
+msgid "Get locale-specific information."
+msgstr "ë¡ìº ê´ë ¨ ì 보를 ì½ìµëë¤."
+
+#: locale/programs/locale.c:90
msgid ""
"NAME\n"
"[-a|-m]"
@@ -2420,27 +2444,27 @@
"<ì´ë¦>\n"
"[-a|-m]"
-#: locale/programs/locale.c:193
+#: locale/programs/locale.c:194
#, c-format
msgid "Cannot set LC_CTYPE to default locale"
msgstr "LC_CTYPEì 기본 ë¡ìºë¡ ì¤ì í ì ììµëë¤"
-#: locale/programs/locale.c:195
+#: locale/programs/locale.c:196
#, c-format
msgid "Cannot set LC_MESSAGES to default locale"
msgstr "LC_MESSAGESì 기본 ë¡ìºë¡ ì¤ì í ì ììµëë¤"
-#: locale/programs/locale.c:208
+#: locale/programs/locale.c:209
#, c-format
msgid "Cannot set LC_COLLATE to default locale"
msgstr "LC_COLLATEì 기본 ë¡ìºë¡ ì¤ì í ì ììµëë¤"
-#: locale/programs/locale.c:224
+#: locale/programs/locale.c:225
#, c-format
msgid "Cannot set LC_ALL to default locale"
msgstr "LC_ALLì 기본 ë¡ìºë¡ ì¤ì í ì ììµëë¤"
-#: locale/programs/locale.c:500
+#: locale/programs/locale.c:518
#, c-format
msgid "while preparing output"
msgstr "ì¶ë ¥ì ì¤ë¹íë ëì"
@@ -2463,7 +2487,7 @@
#: locale/programs/localedef.c:129
msgid "Create output even if warning messages were issued"
-msgstr "ê²½ê³ ë©ì¸ì§ê° ëì¬ ê²½ì°ìë ì¶ë ¥í¨"
+msgstr "ê²½ê³ ë©ìì§ê° ëì¬ ê²½ì°ìë ì¶ë ¥í¨"
#: locale/programs/localedef.c:130
msgid "Create old-style tables"
@@ -2479,7 +2503,7 @@
#: locale/programs/localedef.c:134
msgid "Suppress warnings and information messages"
-msgstr "ê²½ê³ ë©ì¸ì§ì ê´ë ¨ ì ë³´ ë©ì¸ì§ë¥¼ íìíì§ ìì"
+msgstr "ê²½ê³ ë©ìì§ì ê´ë ¨ ì ë³´ ë©ìì§ë¥¼ íìíì§ ìì"
#: locale/programs/localedef.c:135
msgid "Print more messages"
@@ -2530,7 +2554,7 @@
#: locale/programs/localedef.c:232
#, c-format
msgid "cannot create directory for output files"
-msgstr "ì¶ë ¥ íì¼ì ëë í 리를 ë§ë¤ ì ììµëë¤"
+msgstr "ì¶ë ¥ íì¼ì ëë í°ë¦¬ë¥¼ ë§ë¤ ì ììµëë¤"
#: locale/programs/localedef.c:243
#, c-format
@@ -2556,7 +2580,7 @@
" locale path : %s\n"
"%s"
msgstr ""
-"ìì¤í
ì ëë í 리, 문ì ì§ë : %s\n"
+"ìì¤í
ì ëë í°ë¦¬, 문ì ì§ë : %s\n"
" ë íí 리 ì§ë: %s\n"
" ë¡ìº ê²½ë¡ : %s\n"
"%s"
@@ -2677,12 +2701,12 @@
#: locale/programs/locarchive.c:1154
#, c-format
msgid "\"%s\" is no directory; ignored"
-msgstr "\"%s\" íì¼ì ëë í ë¦¬ê° ìëëë¤: 무ìí©ëë¤"
+msgstr "\"%s\" íì¼ì ëë í°ë¦¬ê° ìëëë¤: 무ìí©ëë¤"
#: locale/programs/locarchive.c:1161
#, c-format
msgid "cannot open directory \"%s\": %s: ignored"
-msgstr "\"%s\" ëë í 리를 ì´ ì ììµëë¤: %s: 무ìí©ëë¤"
+msgstr "\"%s\" ëë í°ë¦¬ë¥¼ ì´ ì ììµëë¤: %s: 무ìí©ëë¤"
#: locale/programs/locarchive.c:1233
#, c-format
@@ -2724,8 +2748,8 @@
msgstr "ì¶ë ¥ íì¼ `%s' íì¼ì ë²ì£¼ `%s'ì ëí´ ë§ë¤ ì ììµëë¤"
#: locale/programs/locfile.c:782
-msgid "expect string argument for `copy'"
-msgstr "`copy'ì ëí 문ìì´ ì¸ìê° íìí¨"
+msgid "expecting string argument for `copy'"
+msgstr "`copy'ì ëí 문ìì´ ì¸ìê° íìí©ëë¤"
#: locale/programs/locfile.c:786
msgid "locale name should consist only of portable characters"
@@ -2841,8 +2865,6 @@
"Mandatory arguments to long options are also mandatory for any corresponding\n"
"short options.\n"
"\n"
-"For bug reporting instructions, please see:\n"
-"<http://www.gnu.org/software/libc/bugs.html>."
msgstr ""
"ì¬ì©ë²: memusage [ìµì
]... <íë¡ê·¸ë¨> [íë¡ê·¸ë¨ìµì
]...\n"
"<íë¡ê·¸ë¨>ì ë©ëª¨ë¦¬ ì¬ì©ëì íë¡íì¼ë§í©ëë¤.\n"
@@ -2868,10 +2890,8 @@
"\n"
"긴 ìµì
ì íìì ì¸ ì¸ìë, ê°ì 짧ì ìµì
ììë íìì ì¸ ì¸ìì
ëë¤.\n"
"\n"
-"ë²ê·¸ ë³´ê³ ë°©ë²ì ë¤ìì ì°¸ê³ íììì¤:\n"
-"<http://www.gnu.org/software/libc/bugs.html>."
-
-#: malloc/memusage.sh:99
+
+#: malloc/memusage.sh:101
msgid ""
"Syntax: memusage [--data=FILE] [--progname=NAME] [--png=FILE] [--unbuffered]\n"
" [--buffer=SIZE] [--no-timer] [--time-based] [--total]\n"
@@ -2883,52 +2903,52 @@
" [--title=<문ìì´>] [--x-size=<í¬ê¸°>] [--y-size=<í¬ê¸°>]\n"
" <íë¡ê·¸ë¨> [íë¡ê·¸ë¨ìµì
]..."
-#: malloc/memusage.sh:191
+#: malloc/memusage.sh:193
msgid "memusage: option \\`${1##*=}' is ambiguous"
msgstr "memusage: \\`${1##*=}' ìµì
ì 모í¸í ìµì
ì
ëë¤"
-#: malloc/memusage.sh:200
+#: malloc/memusage.sh:202
msgid "memusage: unrecognized option \\`$1'"
msgstr "memusage: ì¸ìí ì ìë ìµì
\\`$1'"
-#: malloc/memusage.sh:213
+#: malloc/memusage.sh:215
msgid "No program name given"
msgstr "íë¡ê·¸ë¨ ì´ë¦ì´ 주ì´ì§ì§ ìììµëë¤"
# ë²ì: Nameì´ ëì¬ì¸ê°, ëª
ì¬ì¸ê°???
-#: malloc/memusagestat.c:54
+#: malloc/memusagestat.c:57
msgid "Name output file"
msgstr "ì¶ë ¥ íì¼ ì´ë¦"
-#: malloc/memusagestat.c:55
+#: malloc/memusagestat.c:58
msgid "Title string used in output graphic"
msgstr "ì¶ë ¥ ê·¸ëí½ì ì 목 문ìì´ ì¬ì©"
-#: malloc/memusagestat.c:56
+#: malloc/memusagestat.c:59
msgid "Generate output linear to time (default is linear to number of function calls)"
msgstr "ìê°ì ë¹ë¡íë ì¶ë ¥ì ë§ëëë¤ (기본ê°ì í¨ì í¸ì¶ íìì ë¹ë¡í©ëë¤)"
-#: malloc/memusagestat.c:58
+#: malloc/memusagestat.c:61
msgid "Also draw graph for total memory consumption"
msgstr "ì ì²´ ë©ëª¨ë¦¬ ì모ì ëí ê·¸ëíë 그립ëë¤"
-#: malloc/memusagestat.c:59
+#: malloc/memusagestat.c:62
msgid "Make output graphic VALUE pixels wide"
msgstr "ì¶ë ¥ ê·¸ëí½ì <ê°> í½ì
ë§í¼ ëê² ë§ëëë¤"
-#: malloc/memusagestat.c:60
+#: malloc/memusagestat.c:63
msgid "Make output graphic VALUE pixels high"
msgstr "ì¶ë ¥ ê·¸ëí½ì <ê°> í½ì
ë§í¼ ëê² ë§ëëë¤"
-#: malloc/memusagestat.c:65
+#: malloc/memusagestat.c:68
msgid "Generate graphic from memory profiling data"
msgstr "ë©ëª¨ë¦¬ íë¡íì¼ë§ ìë£ìì ê·¸ëí½ ë§ë¤ê¸°"
-#: malloc/memusagestat.c:68
+#: malloc/memusagestat.c:71
msgid "DATAFILE [OUTFILE]"
msgstr "<ë°ì´í°íì¼> [ì¶ë ¥íì¼]"
-#: misc/error.c:118 timezone/zic.c:417
+#: misc/error.c:118
msgid "Unknown system error"
msgstr "ì ì ìë ìì¤í
ì¤ë¥"
@@ -2936,7 +2956,7 @@
msgid "unable to free arguments"
msgstr "ì¸ì를 ë¹ì¸ ì ììµëë¤"
-#: nis/nis_error.h:1 nis/ypclnt.c:822 nis/ypclnt.c:910 posix/regcomp.c:132
+#: nis/nis_error.h:1 nis/ypclnt.c:833 nis/ypclnt.c:921 posix/regcomp.c:133
#: sysdeps/gnu/errlist.c:20
msgid "Success"
msgstr "ì±ê³µ"
@@ -2978,7 +2998,7 @@
msgstr "first/next ì°ê²°ì´ ëì´ì§"
#. TRANS Permission denied; the file permissions do not allow the attempted operation.
-#: nis/nis_error.h:11 nis/ypclnt.c:867 sysdeps/gnu/errlist.c:157
+#: nis/nis_error.h:11 nis/ypclnt.c:878 sysdeps/gnu/errlist.c:157
msgid "Permission denied"
msgstr "íê° ê±°ë¶"
@@ -3088,7 +3108,7 @@
#: nis/nis_error.h:38
msgid "Attempt to remove a non-empty table"
-msgstr "ë¹ì´ìì§ ìì í
ì´ë¸ì ì§ì°ë ¤ê³ ìë"
+msgstr "ë¹ì´ìì§ ìì í
ì´ë¸ì ì ê±°íë ¤ê³ ìë"
#: nis/nis_error.h:39
msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?"
@@ -3096,7 +3116,7 @@
#: nis/nis_error.h:40
msgid "Full resync required for directory"
-msgstr "ëë í 리ì ëí´ ìì í resyncê° íìí¨"
+msgstr "ëë í°ë¦¬ì ëí´ ìì í resyncê° íìí¨"
#: nis/nis_error.h:41
msgid "NIS+ operation failed"
@@ -3133,7 +3153,7 @@
#: nis/nis_local_names.c:122
#, c-format
msgid "LOCAL entry for UID %d in directory %s not unique\n"
-msgstr "ëë í 리 %2$sì UID %1$dë²ì ìí LOCAL entryê° ì ì¼íì§ ììµëë¤\n"
+msgstr "ëë í°ë¦¬ %2$sì UID %1$dë²ì ìí LOCAL entryê° ì ì¼íì§ ììµëë¤\n"
#: nis/nis_print.c:51
msgid "UNKNOWN"
@@ -3149,7 +3169,7 @@
#: nis/nis_print.c:115
msgid "DIRECTORY\n"
-msgstr "ëë í 리\n"
+msgstr "ëë í°ë¦¬\n"
#: nis/nis_print.c:118
msgid "GROUP\n"
@@ -3331,7 +3351,7 @@
#: nis/nis_print.c:327
#, c-format
msgid "Directory : %s\n"
-msgstr "ëë í 리 : %s\n"
+msgstr "ëë í°ë¦¬ : %s\n"
#: nis/nis_print.c:328
#, c-format
@@ -3465,7 +3485,7 @@
#: nis/nss_nisplus/nisplus-publickey.c:321
#, c-format
msgid "netname2user: DES entry for %s in directory %s not unique"
-msgstr "netname2user: ëë í 리 %2$sì %1$sì ëí DES entryê° ì ì¼íì§ ììµëë¤"
+msgstr "netname2user: ëë í°ë¦¬ %2$sì %1$sì ëí DES entryê° ì ì¼íì§ ììµëë¤"
#: nis/nss_nisplus/nisplus-publickey.c:339
#, c-format
@@ -3475,439 +3495,478 @@
#: nis/nss_nisplus/nisplus-publickey.c:395
#, c-format
msgid "netname2user: LOCAL entry for %s in directory %s not unique"
-msgstr "netname2user: ëë í 리 %2$sì %1$sì ëí LOCAL ìí¸ë¦¬ê° ì ì¼íì§ ììµëë¤"
+msgstr "netname2user: ëë í°ë¦¬ %2$sì %1$sì ëí LOCAL ìí¸ë¦¬ê° ì ì¼íì§ ììµëë¤"
#: nis/nss_nisplus/nisplus-publickey.c:402
msgid "netname2user: should not have uid 0"
msgstr "netname2user: UID를 0ì¼ë¡ í ì ììµëë¤"
-#: nis/ypclnt.c:825
+#: nis/ypclnt.c:836
msgid "Request arguments bad"
msgstr "ìì² ì¸ìê° ì못ë¨"
-#: nis/ypclnt.c:828
+#: nis/ypclnt.c:839
msgid "RPC failure on NIS operation"
msgstr "NIS ì°ì° ì¤ RPC ì¤í¨í¨"
-#: nis/ypclnt.c:831
+#: nis/ypclnt.c:842
msgid "Can't bind to server which serves this domain"
msgstr "ì´ ëë©ì¸ì ì ê³µíë ìë²ì ì°ê²°í ì ììµëë¤"
-#: nis/ypclnt.c:834
+#: nis/ypclnt.c:845
msgid "No such map in server's domain"
msgstr "ìë²ì ëë©ì¸ì ê·¸ë° ì§ëê° ìì"
-#: nis/ypclnt.c:837
+#: nis/ypclnt.c:848
msgid "No such key in map"
msgstr "ì§ëì ê·¸ë° í¤ê° ìì"
-#: nis/ypclnt.c:840
+#: nis/ypclnt.c:851
msgid "Internal NIS error"
msgstr "ë´ë¶ NIS ì¤ë¥"
-#: nis/ypclnt.c:843
+#: nis/ypclnt.c:854
msgid "Local resource allocation failure"
msgstr "ì§ì ìì í ë¹ ì¤í¨"
-#: nis/ypclnt.c:846
+#: nis/ypclnt.c:857
msgid "No more records in map database"
msgstr "ì§ë ë°ì´í°ë² ì´ì¤ì ë ì´ìì 기ë¡ì´ ìì"
-#: nis/ypclnt.c:849
+#: nis/ypclnt.c:860
msgid "Can't communicate with portmapper"
msgstr "rpcinfo: í¬í¸ë§¤í¼ì íµì í ì ììµëë¤"
-#: nis/ypclnt.c:852
+#: nis/ypclnt.c:863
msgid "Can't communicate with ypbind"
msgstr "ypbindì íµì í ì ììµëë¤"
-#: nis/ypclnt.c:855
+#: nis/ypclnt.c:866
msgid "Can't communicate with ypserv"
msgstr "ypservì íµì í ì ììµëë¤"
-#: nis/ypclnt.c:858
+#: nis/ypclnt.c:869
msgid "Local domain name not set"
msgstr "ì§ì ëë©ì¸ëª
ì ì¤ì íì§ ììì"
-#: nis/ypclnt.c:861
+#: nis/ypclnt.c:872
msgid "NIS map database is bad"
msgstr "NIS ì§ë ë°ì´í°ë² ì´ì¤ê° íë ¸ìµëë¤"
-#: nis/ypclnt.c:864
+#: nis/ypclnt.c:875
msgid "NIS client/server version mismatch - can't supply service"
msgstr "NIS í´ë¼ì´ì¸í¸/ìë² ë²ì ë¶ì¼ì¹ - ìë¹ì¤ë¥¼ ì ê³µí ì ììµëë¤"
-#: nis/ypclnt.c:870
+#: nis/ypclnt.c:881
msgid "Database is busy"
msgstr "ë°ì´í°ë² ì´ì¤ê° ìì
ì¤ì
ëë¤"
-#: nis/ypclnt.c:873
+#: nis/ypclnt.c:884
msgid "Unknown NIS error code"
msgstr "ì ì ìë NIS ì¤ë¥ ì½ë"
-#: nis/ypclnt.c:913
+#: nis/ypclnt.c:924
msgid "Internal ypbind error"
msgstr "ë´ë¶ ypbind ì¤ë¥"
-#: nis/ypclnt.c:916
+#: nis/ypclnt.c:927
msgid "Domain not bound"
msgstr "ëë©ì¸ì´ ì°ê²°íì§ ìì"
-#: nis/ypclnt.c:919
+#: nis/ypclnt.c:930
msgid "System resource allocation failure"
msgstr "ìì¤í
ìì í ë¹ ì¤í¨"
-#: nis/ypclnt.c:922
+#: nis/ypclnt.c:933
msgid "Unknown ypbind error"
msgstr "ì ì ìë ypbind ì¤ë¥"
-#: nis/ypclnt.c:963
+#: nis/ypclnt.c:974
msgid "yp_update: cannot convert host to netname\n"
msgstr "yp_update: í¸ì¤í¸ë¥¼ ë¤í¸ì´ë¦ì¼ë¡ ë°ê¿ ì ììµëë¤\n"
-#: nis/ypclnt.c:981
+#: nis/ypclnt.c:992
msgid "yp_update: cannot get server address\n"
msgstr "yp_update: ìë² ì£¼ì를 ì»ì ì ììµëë¤\n"
-#: nscd/aicache.c:77 nscd/hstcache.c:468
+#: nscd/aicache.c:82 nscd/hstcache.c:481
#, c-format
msgid "Haven't found \"%s\" in hosts cache!"
msgstr "í¸ì¤í¸ ìºììì \"%s\"ì(를) ì°¾ì ì ìììµëë¤!"
-#: nscd/aicache.c:79 nscd/hstcache.c:470
+#: nscd/aicache.c:84 nscd/hstcache.c:483
#, c-format
msgid "Reloading \"%s\" in hosts cache!"
msgstr "í¸ì¤í¸ ìºììì \"%s\"ì(를) ë¤ì ì½ì´ë¤ì
ëë¤!"
-#: nscd/cache.c:146
+#: nscd/cache.c:150
#, c-format
msgid "add new entry \"%s\" of type %s for %s to cache%s"
msgstr "ì í목 \"%s\" ëí기, ì¢
ë¥ %s, ì©ë %s, ìºì %s"
-#: nscd/cache.c:148
+#: nscd/cache.c:152
msgid " (first)"
msgstr " (ì²ì)"
-#: nscd/cache.c:256 nscd/connections.c:810
+#: nscd/cache.c:286 nscd/connections.c:866
#, c-format
msgid "cannot stat() file `%s': %s"
msgstr "`%s' íì¼ì stat()ì í ì ììµëë¤: %s"
-#: nscd/cache.c:285
+#: nscd/cache.c:328
#, c-format
msgid "pruning %s cache; time %ld"
msgstr "ìë¼ë´ê¸°: %s ìºì; ìê° %ld"
-#: nscd/cache.c:312
+#: nscd/cache.c:357
#, c-format
msgid "considering %s entry \"%s\", timeout %<PRIu64>"
msgstr "ì²ë¦¬: %s í목 \"%s\", ì íìê° %<PRIu64>"
-#: nscd/connections.c:521 nscd/connections.c:533 nscd/connections.c:545
-#: nscd/connections.c:564
+#: nscd/connections.c:570
#, c-format
msgid "invalid persistent database file \"%s\": %s"
msgstr "ì못ë ê³ ì ë°ì´í° ë² ì´ì¤ íì¼ \"%s\": %s"
-#: nscd/connections.c:535
+#: nscd/connections.c:578
+msgid "uninitialized header"
+msgstr "ì´ê¸°ííì§ ìì í¤ë"
+
+#: nscd/connections.c:583
msgid "header size does not match"
msgstr "í¤ë í¬ê¸°ê° ë§ì§ ììµëë¤"
-#: nscd/connections.c:547
+#: nscd/connections.c:593
msgid "file size does not match"
msgstr "íì¼ í¬ê¸°ê° ë§ì§ ììµëë¤"
-#: nscd/connections.c:566
+#: nscd/connections.c:610
msgid "verification failed"
msgstr "íì¸ ì¤í¨"
-#: nscd/connections.c:580
+#: nscd/connections.c:624
#, c-format
msgid "suggested size of table for database %s larger than the persistent database's table"
msgstr "%s ë°ì´í°ë² ì´ì¤ì ì ìí í
ì´ë¸ í¬ê¸°ê° ê³ ì ë°ì´í°ë² ì´ì¤ í
ì´ë¸ë³´ë¤ í½ëë¤"
-#: nscd/connections.c:591 nscd/connections.c:673
+#: nscd/connections.c:635 nscd/connections.c:720
#, c-format
msgid "cannot create read-only descriptor for \"%s\"; no mmap"
msgstr "\"%s\"ì ëí ì½ê¸° ì ì© ëì¤í¬ë¦½í°ë¥¼ ë§ë¤ ì ììµëë¤: mmapì´ ììµëë¤"
-#: nscd/connections.c:652
+#: nscd/connections.c:651
+#, c-format
+msgid "cannot access '%s'"
+msgstr "'%s'ì ì°ê²°í ì ììµëë¤"
+
+#: nscd/connections.c:699
#, c-format
msgid "database for %s corrupted or simultaneously used; remove %s manually if necessary and restart"
-msgstr "%sì ëí ë°ì´í°ë² ì´ì¤ê° ììëìê±°ë ëìì ì¬ì©íê³ ììµëë¤. íìíë©´ %sì(를) ìëì¼ë¡ ì§ì°ê³ ë¤ì ììíììì¤"
-
-#: nscd/connections.c:659
+msgstr "%sì ëí ë°ì´í°ë² ì´ì¤ê° ììëìê±°ë ëìì ì¬ì©íê³ ììµëë¤. íìíë©´ %sì(를) ìëì¼ë¡ ì ê±°íê³ ë¤ì ììíììì¤"
+
+#: nscd/connections.c:706
#, c-format
msgid "cannot create %s; no persistent database used"
msgstr "%sì(를) ë§ë¤ ì ììµëë¤: ê³ ì ë°ì´í°ë² ì´ì¤ë¥¼ ì¬ì©íì§ ììµëë¤"
-#: nscd/connections.c:662
+#: nscd/connections.c:709
#, c-format
msgid "cannot create %s; no sharing possible"
msgstr "%sì(를) ë§ë¤ ì ììµëë¤: ê³µì ê° ë¶ê°ë¥í©ëë¤"
-#: nscd/connections.c:733
+#: nscd/connections.c:780
#, c-format
msgid "cannot write to database file %s: %s"
msgstr "%s ë°ì´í°ë² ì´ì¤ íì¼ì ì¸ ì ììµëë¤: %s"
-#: nscd/connections.c:772
+#: nscd/connections.c:819
#, c-format
msgid "cannot set socket to close on exec: %s; disabling paranoia mode"
msgstr "ìì¼ì ì¤íí ë ë«ëë¡ ì¤ì í ì ììµëë¤: %s: íë¼ë
¸ì´ì 모ë를 ì¬ì©íì§ ììµëë¤"
-#: nscd/connections.c:823
+#: nscd/connections.c:902
#, c-format
msgid "cannot open socket: %s"
msgstr "ìì¼ì ì´ ì ììµëë¤: %s"
-#: nscd/connections.c:840
+#: nscd/connections.c:922
#, c-format
msgid "cannot change socket to nonblocking mode: %s"
msgstr "ìì¼ì ë¹ë기 모ëë¡ ë°ê¿ ì ììµëë¤: %s"
-#: nscd/connections.c:848
+#: nscd/connections.c:930
#, c-format
msgid "cannot set socket to close on exec: %s"
msgstr "ìì¼ì ì¤íí ë ë«ëë¡ ì¤ì í ì ììµëë¤: %s"
-#: nscd/connections.c:859
+#: nscd/connections.c:943
#, c-format
msgid "cannot enable socket to accept connections: %s"
msgstr "ìì¼ì´ ì°ê²°ì ë°ìë¤ì´ëë¡ í ì ììµëë¤: %s"
-#: nscd/connections.c:955
+#: nscd/connections.c:1043
#, c-format
msgid "provide access to FD %d, for %s"
msgstr "FD %dë²ì ì ê·¼, ì©ë %s"
-#: nscd/connections.c:967
+#: nscd/connections.c:1055
#, c-format
msgid "cannot handle old request version %d; current version is %d"
msgstr "과거ì ìì² ë²ì %d ë²ì ì ì²ë¦¬í ì ììµëë¤; íì¬ ë²ì ì %dì
ëë¤"
-#: nscd/connections.c:1009 nscd/connections.c:1062
+#: nscd/connections.c:1077
+#, c-format
+msgid "request from %ld not handled due to missing permission"
+msgstr "ê¶íì´ ìì´ì %ldìì ì¨ ìì²ì ì²ë¦¬í ì ììµëë¤"
+
+#: nscd/connections.c:1082
+#, c-format
+msgid "request from '%s' [%ld] not handled due to missing permission"
+msgstr "ê¶íì´ ìì´ì '%s'[%ld]ìì ì¨ ìì²ì ì²ë¦¬í ì ììµëë¤"
+
+#: nscd/connections.c:1087
+msgid "request not handled due to missing permission"
+msgstr "ê¶íì´ ìì´ì ìì²ì ì²ë¦¬í ì ììµëë¤"
+
+#: nscd/connections.c:1125 nscd/connections.c:1178
#, c-format
msgid "cannot write result: %s"
msgstr "결과를 ì¸ ì ììµëë¤: %s"
-#: nscd/connections.c:1145
+#: nscd/connections.c:1261
#, c-format
msgid "error getting caller's id: %s"
msgstr "í¸ì¶í 측 ID를 ì»ëë° ì¤ë¥: %s"
-#: nscd/connections.c:1204
+#: nscd/connections.c:1320
#, c-format
msgid "cannot open /proc/self/cmdline: %s; disabling paranoia mode"
msgstr "/proc/self/cmdlineì ì´ ì ììµëë¤: %s: íë¼ë
¸ì´ì 모ë를 ì¬ì©íì§ ììµëë¤"
-#: nscd/connections.c:1218
+#: nscd/connections.c:1334
#, c-format
msgid "cannot read /proc/self/cmdline: %s; disabling paranoia mode"
msgstr "/proc/self/cmdlineì ì½ì ì ììµëë¤: %s: íë¼ë
¸ì´ì 모ë를 ì¬ì©íì§ ììµëë¤"
-#: nscd/connections.c:1258
+#: nscd/connections.c:1374
#, c-format
msgid "cannot change to old UID: %s; disabling paranoia mode"
msgstr "과거 UIDë¡ ë°ê¿ ì ììµëë¤: %s: íë¼ë
¸ì´ì 모ë를 ì¬ì©íì§ ììµëë¤"
-#: nscd/connections.c:1268
+#: nscd/connections.c:1384
#, c-format
msgid "cannot change to old GID: %s; disabling paranoia mode"
msgstr "과거 GIDë¡ ë°ê¿ ì ììµëë¤: %s: íë¼ë
¸ì´ì 모ë를 ì¬ì©íì§ ììµëë¤"
-#: nscd/connections.c:1281
+#: nscd/connections.c:1397
#, c-format
msgid "cannot change to old working directory: %s; disabling paranoia mode"
-msgstr "과거 ìì
ëë í ë¦¬ë¡ ë°ê¿ ì ììµëë¤: %s: íë¼ë
¸ì´ì 모ë를 ì¬ì©íì§ ììµëë¤"
-
-#: nscd/connections.c:1310
+msgstr "과거 ìì
ëë í°ë¦¬ë¡ ë°ê¿ ì ììµëë¤: %s: íë¼ë
¸ì´ì 모ë를 ì¬ì©íì§ ììµëë¤"
+
+#: nscd/connections.c:1429
#, c-format
msgid "re-exec failed: %s; disabling paranoia mode"
msgstr "ë¤ì ì¤í ì¤í¨: %s: íë¼ë
¸ì´ì 모ë를 ì¬ì©íì§ ììµëë¤"
-#: nscd/connections.c:1319
+#: nscd/connections.c:1438
#, c-format
msgid "cannot change current working directory to \"/\": %s"
-msgstr "íì¬ ìì
ëë í 리를 \"/\"ë¡ ë°ê¿ ì ììµëë¤: %s"
-
-#: nscd/connections.c:1437
+msgstr "íì¬ ìì
ëë í°ë¦¬ë¥¼ \"/\"ë¡ ë°ê¿ ì ììµëë¤: %s"
+
+#: nscd/connections.c:1644
#, c-format
msgid "short read while reading request: %s"
msgstr "ì구ì¬íì ë¤ ì½ì§ 못íì: %s"
-#: nscd/connections.c:1468
+#: nscd/connections.c:1677
#, c-format
msgid "key length in request too long: %d"
msgstr "ìì²í í¤ì 길ì´ê° ë무 ê¹: %d"
-#: nscd/connections.c:1481
+#: nscd/connections.c:1690
#, c-format
msgid "short read while reading request key: %s"
msgstr "ìì²í í¤ë¥¼ ë¤ ì½ì§ 못íì: %s"
-#: nscd/connections.c:1490
+#: nscd/connections.c:1699
#, c-format
msgid "handle_request: request received (Version = %d) from PID %ld"
msgstr "handle_request: ìì²ì ë°ìì (ë²ì = %d), PID %ld"
-#: nscd/connections.c:1495
+#: nscd/connections.c:1704
#, c-format
msgid "handle_request: request received (Version = %d)"
msgstr "handle_request: ìì²ì ë°ìì (ë²ì = %d)"
-#: nscd/connections.c:1856
-#, c-format
-msgid "could only start %d threads; terminating"
-msgstr "ì¤ë ë %dê°ë§ ììí ì ììµëë¤: ëë
ëë¤"
-
-#: nscd/connections.c:1904 nscd/connections.c:1905 nscd/connections.c:1922
-#: nscd/connections.c:1931 nscd/connections.c:1949 nscd/connections.c:1960
-#: nscd/connections.c:1971
+#: nscd/connections.c:1903 nscd/connections.c:2101
+#, c-format
+msgid "disabled inotify after read error %d"
+msgstr "ì½ê¸° ì¤ë¥ %dë² ë°ì í inotify 기ë¥ì ì¬ì©íì§ ììµëë¤"
+
+#: nscd/connections.c:2230
+msgid "could not initialize conditional variable"
+msgstr "ì¡°ê±´ ë³ì를 ì´ê¸°íí ì ììµëë¤"
+
+#: nscd/connections.c:2238
+msgid "could not start clean-up thread; terminating"
+msgstr "ì 리 ì¤ë ë를 ììí ì ììµëë¤: ëë
ëë¤"
+
+#: nscd/connections.c:2252
+msgid "could not start any worker thread; terminating"
+msgstr "ìì
ì¤ë ë를 ììí ì ììµëë¤: ëë
ëë¤"
+
+#: nscd/connections.c:2303 nscd/connections.c:2304 nscd/connections.c:2321
+#: nscd/connections.c:2330 nscd/connections.c:2348 nscd/connections.c:2359
+#: nscd/connections.c:2370
#, c-format
msgid "Failed to run nscd as user '%s'"
msgstr "nscd를 '%s' ì¬ì©ìë¡ ì¤ííë ë° ì¤í¨íìµëë¤"
-#: nscd/connections.c:1923
+#: nscd/connections.c:2322
#, c-format
msgid "initial getgrouplist failed"
msgstr "ìµì´ getgrouplist ì¤í¨"
-#: nscd/connections.c:1932
+#: nscd/connections.c:2331
#, c-format
msgid "getgrouplist failed"
msgstr "getgrouplist ì¤í¨"
-#: nscd/connections.c:1950
+#: nscd/connections.c:2349
#, c-format
msgid "setgroups failed"
msgstr "setgroups ì¤í¨"
-#: nscd/grpcache.c:402 nscd/hstcache.c:418 nscd/initgrcache.c:412
-#: nscd/pwdcache.c:397 nscd/servicescache.c:343
+#: nscd/grpcache.c:395 nscd/hstcache.c:430 nscd/initgrcache.c:416
+#: nscd/pwdcache.c:400 nscd/servicescache.c:343
#, c-format
msgid "short write in %s: %s"
msgstr "%sìì ë¤ ì°ì§ 못íìµëë¤: %s"
-#: nscd/grpcache.c:445 nscd/initgrcache.c:78
+#: nscd/grpcache.c:438 nscd/initgrcache.c:78
#, c-format
msgid "Haven't found \"%s\" in group cache!"
msgstr "그룹 ìºììì \"%s\"ì(를) ì°¾ì ì ìììµëë¤!"
-#: nscd/grpcache.c:447 nscd/initgrcache.c:80
+#: nscd/grpcache.c:440 nscd/initgrcache.c:80
#, c-format
msgid "Reloading \"%s\" in group cache!"
msgstr "그룹 ìºììì \"%s\"ì(를) ë¤ì ì½ì´ë¤ì
ëë¤!"
-#: nscd/grpcache.c:524
+#: nscd/grpcache.c:517
#, c-format
msgid "Invalid numeric gid \"%s\"!"
msgstr "gid ë²í¸ \"%s\"ë²ì´ ì못ëììµëë¤!"
-#: nscd/mem.c:383
+#: nscd/mem.c:457
#, c-format
msgid "freed %zu bytes in %s cache"
msgstr "%zu ë°ì´í¸ ë©ëª¨ë¦¬ í´ì (%s ìºì) "
-#: nscd/mem.c:512
+#: nscd/mem.c:594
#, c-format
msgid "no more memory for database '%s'"
msgstr "'%s' ë°ì´í°ë² ì´ì¤ì ë©ëª¨ë¦¬ê° ë ì´ì ììµëë¤"
-#: nscd/nscd.c:98
+#: nscd/nscd.c:101
msgid "Read configuration data from NAME"
msgstr "<ì´ë¦>ìì ì¤ì ë°ì´í°ë¥¼ ì½ìµëë¤"
-#: nscd/nscd.c:100
+#: nscd/nscd.c:103
msgid "Do not fork and display messages on the current tty"
-msgstr "forkíì§ ìê³ íì¬ TTYì ë©ì¸ì§ë¥¼ íìí©ëë¤"
-
-#: nscd/nscd.c:101
+msgstr "forkíì§ ìê³ íì¬ TTYì ë©ìì§ë¥¼ íìí©ëë¤"
+
+#: nscd/nscd.c:104
msgid "NUMBER"
msgstr "<ì«ì>"
-#: nscd/nscd.c:101
+#: nscd/nscd.c:104
msgid "Start NUMBER threads"
msgstr "<ì«ì>ê°ì ì¤ë ë를 ììí©ëë¤"
-#: nscd/nscd.c:102
+#: nscd/nscd.c:105
msgid "Shut the server down"
msgstr "ìë²ë¥¼ ëë
ëë¤"
-#: nscd/nscd.c:103
-msgid "Print current configuration statistic"
+#: nscd/nscd.c:106
+msgid "Print current configuration statistics"
msgstr "íì¬ ì¤ì ìí를 íìí©ëë¤"
-#: nscd/nscd.c:104
+#: nscd/nscd.c:107
msgid "TABLE"
msgstr "<í
ì´ë¸>"
-#: nscd/nscd.c:105
+#: nscd/nscd.c:108
msgid "Invalidate the specified cache"
msgstr "ì§ì í ìºì를 무í¨íí©ëë¤"
-#: nscd/nscd.c:106
+#: nscd/nscd.c:109
msgid "TABLE,yes"
msgstr "<í
ì´ë¸>,ì"
-#: nscd/nscd.c:107
+#: nscd/nscd.c:110
msgid "Use separate cache for each user"
msgstr "ì¬ì©ìë³ë¡ ë³ëì ìºì ì¬ì©"
-#: nscd/nscd.c:112
+#: nscd/nscd.c:115
msgid "Name Service Cache Daemon."
msgstr "ë¤ì ìë¹ì¤ ìºì ë°ëª¬."
-#: nscd/nscd.c:144 nss/getent.c:858 nss/makedb.c:123
+#: nscd/nscd.c:147 nss/getent.c:876 nss/makedb.c:123
#, c-format
msgid "wrong number of arguments"
msgstr "ì¸ìì ê°ìê° ì못ëìì"
-#: nscd/nscd.c:154
+#: nscd/nscd.c:157
#, c-format
msgid "failure while reading configuration file; this is fatal"
msgstr "ì¤ì íì¼ì ì½ë ë° ì¤í¨: ì¹ëª
ì ì
ëë¤"
-#: nscd/nscd.c:163
+#: nscd/nscd.c:166
#, c-format
msgid "already running"
msgstr "ì´ë¯¸ ì¤í ì¤"
-#: nscd/nscd.c:178 nscd/nscd.c:233
+#: nscd/nscd.c:181 nscd/nscd.c:236
#, c-format
msgid "cannot fork"
msgstr "forkí ì ììµëë¤"
-#: nscd/nscd.c:241
+#: nscd/nscd.c:244
#, c-format
msgid "cannot change current working directory to \"/\""
-msgstr "íì¬ ìì
ëë í 리를 \"/\"ë¡ ë°ê¿ ì ììµëë¤"
-
-#: nscd/nscd.c:249
+msgstr "íì¬ ìì
ëë í°ë¦¬ë¥¼ \"/\"ë¡ ë°ê¿ ì ììµëë¤"
+
+#: nscd/nscd.c:252
msgid "Could not create log file"
msgstr "ê¸°ë¡ íì¼ì ë§ë¤ ì ììµëë¤"
-#: nscd/nscd.c:302 nscd/nscd.c:327 nscd/nscd_stat.c:172
+#: nscd/nscd.c:305 nscd/nscd.c:330 nscd/nscd_stat.c:172
#, c-format
msgid "Only root is allowed to use this option!"
msgstr "rootë§ì´ ì´ ìµì
ì ì¬ì©í ì ììµëë¤!"
-#: nscd/nscd.c:364 nscd/nscd_stat.c:191
+#: nscd/nscd.c:345
+#, c-format
+msgid "'%s' is not a known database"
+msgstr "'%s'ì(ë) ìë ¤ì§ ë°ì´í°ë² ì´ì¤ê° ìëëë¤"
+
+#: nscd/nscd.c:370 nscd/nscd_stat.c:191
#, c-format
msgid "write incomplete"
msgstr "ìì í ì°ì§ 못íìµëë¤"
-#: nscd/nscd.c:375
+#: nscd/nscd.c:381
#, c-format
msgid "cannot read invalidate ACK"
msgstr "무í¨í ACK를 ì½ì§ 못íìµëë¤"
-#: nscd/nscd.c:381
+#: nscd/nscd.c:387
#, c-format
msgid "invalidation failed"
[... 1672 lines stripped ...]