diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-05-22 23:42:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-05-22 23:42:35 +0000 |
commit | 80d9c5f0b121a46467a0fc4eab587c055d79e583 (patch) | |
tree | 1a511b043bd04d216fb732a3f131ab60c7d64ec8 | |
parent | 2373b30ea829ad5dd9599b29902c80101deefc78 (diff) | |
download | glibc-80d9c5f0b121a46467a0fc4eab587c055d79e583.zip glibc-80d9c5f0b121a46467a0fc4eab587c055d79e583.tar.gz glibc-80d9c5f0b121a46467a0fc4eab587c055d79e583.tar.bz2 |
Update.
2001-05-18 Jakub Jelinek <jakub@redhat.com>
* elf/dl-lookup.c (PROTECTED): Remove defines.
(add_dependency): Mark it with internal_function.
(_dl_do_lookup, _dl_do_lookup_versioned): New functions.
(_dl_lookup_symbol, _dl_lookup_symbol_skip,
_dl_lookup_versioned_symbol, _dl_lookup_versioned_symbol_skip): Use
it if we don't want do_lookup* inlined.
2001-05-18 Jakub Jelinek <jakub@redhat.com>
* include/link.h (struct r_scope_elem): Remove r_duplist and
r_nduplist fields.
* elf/dl-load.c (_dl_map_object_from_fd): Don't initialize them.
* elf/dl-lookup.c (_dl_lookup_symbol_skip): Look in r_list, not
r_duplist.
(_dl_lookup_versioned_symbol_skip): Likewise.
* elf/dl-deps.c (struct list): Remove dup field, rename unique to next.
(_dl_map_object_deps): Don't compute duplicate list.
* elf/dl-symbol.c: Removed.
* elf/Makefile (routines): Remove dl-symbol.
2001-05-22 Ulrich Drepper <drepper@redhat.com>
* po/el.po: Update from translation team.
* po/sv.po: Likewise.
-rw-r--r-- | ChangeLog | 28 | ||||
-rw-r--r-- | elf/Makefile | 2 | ||||
-rw-r--r-- | elf/dl-deps.c | 119 | ||||
-rw-r--r-- | elf/dl-load.c | 2 | ||||
-rw-r--r-- | elf/dl-lookup.c | 93 | ||||
-rw-r--r-- | elf/dl-symbol.c | 33 | ||||
-rw-r--r-- | include/link.h | 5 | ||||
-rw-r--r-- | po/el.po | 3952 | ||||
-rw-r--r-- | po/sv.po | 3915 |
9 files changed, 5137 insertions, 3012 deletions
@@ -1,3 +1,31 @@ +2001-05-18 Jakub Jelinek <jakub@redhat.com> + + * elf/dl-lookup.c (PROTECTED): Remove defines. + (add_dependency): Mark it with internal_function. + (_dl_do_lookup, _dl_do_lookup_versioned): New functions. + (_dl_lookup_symbol, _dl_lookup_symbol_skip, + _dl_lookup_versioned_symbol, _dl_lookup_versioned_symbol_skip): Use + it if we don't want do_lookup* inlined. + +2001-05-18 Jakub Jelinek <jakub@redhat.com> + + * include/link.h (struct r_scope_elem): Remove r_duplist and + r_nduplist fields. + * elf/dl-load.c (_dl_map_object_from_fd): Don't initialize them. + * elf/dl-lookup.c (_dl_lookup_symbol_skip): Look in r_list, not + r_duplist. + (_dl_lookup_versioned_symbol_skip): Likewise. + * elf/dl-deps.c (struct list): Remove dup field, rename unique to next. + (_dl_map_object_deps): Don't compute duplicate list. + + * elf/dl-symbol.c: Removed. + * elf/Makefile (routines): Remove dl-symbol. + +2001-05-22 Ulrich Drepper <drepper@redhat.com> + + * po/el.po: Update from translation team. + * po/sv.po: Likewise. + 2001-05-20 Bruno Haible <haible@clisp.cons.org> * iconvdata/cp1255.c: Completely rewritten. diff --git a/elf/Makefile b/elf/Makefile index 8301683..39253e3 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -21,7 +21,7 @@ subdir := elf headers = elf.h bits/elfclass.h link.h -routines = $(dl-routines) dl-open dl-close dl-symbol dl-support \ +routines = $(dl-routines) dl-open dl-close dl-support \ dl-addr enbl-secure dl-profstub dl-origin dl-libc dl-sym # The core dynamic linking functions are in libc for the static and diff --git a/elf/dl-deps.c b/elf/dl-deps.c index 8313ae8..8b9e132 100644 --- a/elf/dl-deps.c +++ b/elf/dl-deps.c @@ -72,20 +72,15 @@ openaux (void *a) -/* We use a very special kind of list to track the two kinds paths +/* We use a very special kind of list to track the path through the list of loaded shared objects. We have to - - - produce a flat list with unique members of all involved objects - - - produce a flat list of all shared objects. + produce a flat list with unique members of all involved objects. */ struct list { int done; /* Nonzero if this map was processed. */ struct link_map *map; /* The data. */ - - struct list *unique; /* Elements for normal list. */ - struct list *dup; /* Elements in complete list. */ + struct list *next; /* Elements for normal list. */ }; @@ -139,8 +134,8 @@ _dl_map_object_deps (struct link_map *map, int trace_mode) { struct list known[1 + npreloads + 1]; - struct list *runp, *utail, *dtail; - unsigned int nlist, nduplist, i; + struct list *runp, *tail; + unsigned int nlist, i; /* Object name. */ const char *name; int errno_saved; @@ -153,9 +148,7 @@ _dl_map_object_deps (struct link_map *map, { known[nlist].done = 0; known[nlist].map = map; - - known[nlist].unique = &known[nlist + 1]; - known[nlist].dup = &known[nlist + 1]; + known[nlist].next = &known[nlist + 1]; ++nlist; /* We use `l_reserved' as a mark bit to detect objects we have @@ -175,17 +168,10 @@ _dl_map_object_deps (struct link_map *map, preload (preloads[i]); /* Terminate the lists. */ - known[nlist - 1].unique = NULL; - known[nlist - 1].dup = NULL; + known[nlist - 1].next = NULL; /* Pointer to last unique object. */ - utail = &known[nlist - 1]; - /* Pointer to last loaded object. */ - dtail = &known[nlist - 1]; - - /* Until now we have the same number of libraries in the normal and - the list with duplicates. */ - nduplist = nlist; + tail = &known[nlist - 1]; /* Process each element of the search list, loading each of its auxiliary objects and immediate dependencies. Auxiliary objects @@ -235,8 +221,6 @@ _dl_map_object_deps (struct link_map *map, { /* Map in the needed object. */ struct link_map *dep; - /* Allocate new entry. */ - struct list *newp; const char *objname; /* Recognize DSTs. */ @@ -255,21 +239,19 @@ _dl_map_object_deps (struct link_map *map, else dep = args.aux; - /* Add it in any case to the duplicate list. */ - newp = alloca (sizeof (struct list)); - newp->map = dep; - newp->dup = NULL; - dtail->dup = newp; - dtail = newp; - ++nduplist; - if (! dep->l_reserved) { - /* Append DEP to the unique list. */ + /* Allocate new entry. */ + struct list *newp; + + newp = alloca (sizeof (struct list)); + + /* Append DEP to the list. */ + newp->map = dep; newp->done = 0; - newp->unique = NULL; - utail->unique = newp; - utail = newp; + newp->next = NULL; + tail->next = newp; + tail = newp; ++nlist; /* Set the mark bit that says it's already in the list. */ dep->l_reserved = 1; @@ -343,7 +325,7 @@ _dl_map_object_deps (struct link_map *map, but we have no back links. So we copy the contents of the current entry over. Note that ORIG and NEWP now have switched their meanings. */ - orig->dup = memcpy (newp, orig, sizeof (*newp)); + memcpy (newp, orig, sizeof (*newp)); /* Initialize new entry. */ orig->done = 0; @@ -372,22 +354,22 @@ _dl_map_object_deps (struct link_map *map, /* This object is already in the search list we are building. Don't add a duplicate pointer. Just added by _dl_map_object. */ - for (late = newp; late->unique; late = late->unique) - if (late->unique->map == args.aux) + for (late = newp; late->next; late = late->next) + if (late->next->map == args.aux) break; - if (late->unique) + if (late->next) { /* The object is somewhere behind the current position in the search path. We have to move it to this earlier position. */ - orig->unique = newp; + orig->next = newp; - /* Now remove the later entry from the unique list + /* Now remove the later entry from the list and adjust the tail pointer. */ - if (utail == late->unique) - utail = late; - late->unique = late->unique->unique; + if (tail == late->next) + tail = late; + late->next = late->next->next; /* We must move the object earlier in the chain. */ if (args.aux->l_prev) @@ -406,25 +388,25 @@ _dl_map_object_deps (struct link_map *map, /* The object must be somewhere earlier in the list. That's good, we only have to insert an entry for the duplicate list. */ - orig->unique = NULL; /* Never used. */ + orig->next = NULL; /* Never used. */ /* Now we have a problem. The element - pointing to ORIG in the unique list must + pointing to ORIG in the list must point to NEWP now. This is the only place where we need this backreference and this situation is really not that frequent. So we don't use a double-linked list but instead search for the preceding element. */ late = known; - while (late->unique != orig) - late = late->unique; - late->unique = newp; + while (late->next != orig) + late = late->next; + late->next = newp; } } else { /* This is easy. We just add the symbol right here. */ - orig->unique = newp; + orig->next = newp; ++nlist; /* Set the mark bit that says it's already in the list. */ args.aux->l_reserved = 1; @@ -444,17 +426,12 @@ _dl_map_object_deps (struct link_map *map, args.aux->l_next = newp->map; } - /* Move the tail pointers if necessary. */ - if (orig == utail) - utail = newp; - if (orig == dtail) - dtail = newp; + /* Move the tail pointer if necessary. */ + if (orig == tail) + tail = newp; /* Move on the insert point. */ orig = newp; - - /* We always add an entry to the duplicate list. */ - ++nduplist; } } @@ -473,7 +450,7 @@ _dl_map_object_deps (struct link_map *map, /* If we have no auxiliary objects just go on to the next map. */ if (runp->done) do - runp = runp->unique; + runp = runp->next; while (runp != NULL && runp->done); } @@ -492,8 +469,7 @@ out: /* Store the search list we built in the object. It will be used for searches in the scope of this object. */ map->l_initfini = - (struct link_map **) malloc ((2 * nlist + 1 - + (nlist == nduplist ? 0 : nduplist)) + (struct link_map **) malloc ((2 * nlist + 1) * sizeof (struct link_map *)); if (map->l_initfini == NULL) _dl_signal_error (ENOMEM, map->l_name, @@ -503,7 +479,7 @@ out: map->l_searchlist.r_list = &map->l_initfini[nlist + 1]; map->l_searchlist.r_nlist = nlist; - for (nlist = 0, runp = known; runp; runp = runp->unique) + for (nlist = 0, runp = known; runp; runp = runp->next) { if (trace_mode && runp->map->l_faked) /* This can happen when we trace the loading. */ @@ -516,23 +492,6 @@ out: runp->map->l_reserved = 0; } - map->l_searchlist.r_nduplist = nduplist; - if (nlist == nduplist) - map->l_searchlist.r_duplist = map->l_searchlist.r_list; - else - { - unsigned int cnt; - - map->l_searchlist.r_duplist = map->l_searchlist.r_list + nlist; - - for (cnt = 0, runp = known; runp; runp = runp->dup) - if (trace_mode && runp->map->l_faked) - /* This can happen when we trace the loading. */ - --map->l_searchlist.r_nduplist; - else - map->l_searchlist.r_duplist[cnt++] = runp->map; - } - /* Now determine the order in which the initialization has to happen. */ memcpy (map->l_initfini, map->l_searchlist.r_list, nlist * sizeof (struct link_map *)); diff --git a/elf/dl-load.c b/elf/dl-load.c index 098da6c..979177d 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -1126,8 +1126,6 @@ _dl_map_object_from_fd (const char *name, int fd, struct filebuf *fbp, l->l_symbolic_searchlist.r_list[0] = l; l->l_symbolic_searchlist.r_nlist = 1; - l->l_symbolic_searchlist.r_duplist = l->l_symbolic_searchlist.r_list; - l->l_symbolic_searchlist.r_nduplist = 1; /* Now move the existing entries one back. */ memmove (&l->l_scope[1], &l->l_scope[0], diff --git a/elf/dl-lookup.c b/elf/dl-lookup.c index f8bb9e1..3acd71f 100644 --- a/elf/dl-lookup.c +++ b/elf/dl-lookup.c @@ -75,16 +75,15 @@ __libc_lock_define (extern, _dl_load_lock) without versioning. gcc is not able to optimize a single function definition serving for both purposes so we define two functions. */ #define VERSIONED 0 -#define PROTECTED 0 #include "do-lookup.h" #define VERSIONED 1 -#define PROTECTED 0 #include "do-lookup.h" /* Add extra dependency on MAP to UNDEF_MAP. */ static int +internal_function add_dependency (struct link_map *undef_map, struct link_map *map) { struct link_map **list; @@ -180,6 +179,19 @@ add_dependency (struct link_map *undef_map, struct link_map *map) return result; } +static int +internal_function +_dl_do_lookup (const char *undef_name, unsigned long int hash, + const ElfW(Sym) *ref, struct sym_val *result, + struct r_scope_elem *scope, size_t i, + struct link_map *skip, int noexec, int noplt); +static int +internal_function +_dl_do_lookup_versioned (const char *undef_name, unsigned long int hash, + const ElfW(Sym) *ref, struct sym_val *result, + struct r_scope_elem *scope, size_t i, + const struct r_found_version *const version, + struct link_map *skip, int noexec, int noplt); /* Search loaded objects' symbol tables for a definition of the symbol UNDEF_NAME. */ @@ -261,8 +273,8 @@ _dl_lookup_symbol (const char *undef_name, struct link_map *undef_map, struct sym_val protected_value = { NULL, NULL }; for (scope = symbol_scope; *scope; ++scope) - if (do_lookup (undef_name, hash, *ref, &protected_value, *scope, 0, - NULL, 0, 1)) + if (_dl_do_lookup (undef_name, hash, *ref, &protected_value, *scope, + 0, NULL, 0, 1)) break; if (protected_value.s == NULL || protected_value.m == undef_map) @@ -299,15 +311,14 @@ _dl_lookup_symbol_skip (const char *undef_name, /* Search the relevant loaded objects for a definition. */ scope = symbol_scope; - for (i = 0; (*scope)->r_duplist[i] != skip_map; ++i) - assert (i < (*scope)->r_nduplist); + for (i = 0; (*scope)->r_list[i] != skip_map; ++i) + assert (i < (*scope)->r_nlist); - if (i >= (*scope)->r_nlist - || ! do_lookup (undef_name, hash, *ref, ¤t_value, *scope, i, - skip_map, 0, 0)) + if (! _dl_do_lookup (undef_name, hash, *ref, ¤t_value, *scope, i, + skip_map, 0, 0)) while (*++scope) - if (do_lookup (undef_name, hash, *ref, ¤t_value, *scope, 0, - skip_map, 0, 0)) + if (_dl_do_lookup (undef_name, hash, *ref, ¤t_value, *scope, 0, + skip_map, 0, 0)) break; if (__builtin_expect (current_value.s == NULL, 0)) @@ -338,11 +349,11 @@ _dl_lookup_symbol_skip (const char *undef_name, struct sym_val protected_value = { NULL, NULL }; if (i >= (*scope)->r_nlist - || !do_lookup (undef_name, hash, *ref, &protected_value, *scope, i, - skip_map, 0, 1)) + || !_dl_do_lookup (undef_name, hash, *ref, &protected_value, *scope, + i, skip_map, 0, 1)) while (*++scope) - if (do_lookup (undef_name, hash, *ref, &protected_value, *scope, 0, - skip_map, 0, 1)) + if (_dl_do_lookup (undef_name, hash, *ref, &protected_value, *scope, + 0, skip_map, 0, 1)) break; if (protected_value.s == NULL || protected_value.m == undef_map) @@ -465,8 +476,8 @@ _dl_lookup_versioned_symbol (const char *undef_name, struct sym_val protected_value = { NULL, NULL }; for (scope = symbol_scope; *scope; ++scope) - if (do_lookup_versioned (undef_name, hash, *ref, &protected_value, - *scope, 0, version, NULL, 0, 1)) + if (_dl_do_lookup_versioned (undef_name, hash, *ref, &protected_value, + *scope, 0, version, NULL, 0, 1)) break; if (protected_value.s == NULL || protected_value.m == undef_map) @@ -502,15 +513,14 @@ _dl_lookup_versioned_symbol_skip (const char *undef_name, /* Search the relevant loaded objects for a definition. */ scope = symbol_scope; - for (i = 0; (*scope)->r_duplist[i] != skip_map; ++i) - assert (i < (*scope)->r_nduplist); + for (i = 0; (*scope)->r_list[i] != skip_map; ++i) + assert (i < (*scope)->r_nlist); - if (i >= (*scope)->r_nlist - || ! do_lookup_versioned (undef_name, hash, *ref, ¤t_value, - *scope, i, version, skip_map, 0, 0)) + if (! _dl_do_lookup_versioned (undef_name, hash, *ref, ¤t_value, + *scope, i, version, skip_map, 0, 0)) while (*++scope) - if (do_lookup_versioned (undef_name, hash, *ref, ¤t_value, *scope, - 0, version, skip_map, 0, 0)) + if (_dl_do_lookup_versioned (undef_name, hash, *ref, ¤t_value, + *scope, 0, version, skip_map, 0, 0)) break; if (__builtin_expect (current_value.s == NULL, 0)) @@ -554,11 +564,13 @@ _dl_lookup_versioned_symbol_skip (const char *undef_name, struct sym_val protected_value = { NULL, NULL }; if (i >= (*scope)->r_nlist - || !do_lookup_versioned (undef_name, hash, *ref, &protected_value, - *scope, i, version, skip_map, 0, 1)) + || !_dl_do_lookup_versioned (undef_name, hash, *ref, + &protected_value, *scope, i, version, + skip_map, 0, 1)) while (*++scope) - if (do_lookup_versioned (undef_name, hash, *ref, &protected_value, - *scope, 0, version, skip_map, 0, 1)) + if (_dl_do_lookup_versioned (undef_name, hash, *ref, + &protected_value, *scope, 0, version, + skip_map, 0, 1)) break; if (protected_value.s == NULL || protected_value.m == undef_map) @@ -591,3 +603,28 @@ _dl_setup_hash (struct link_map *map) hash += map->l_nbuckets; map->l_chain = hash; } + +/* These are here so that we only inline do_lookup{,_versioned} in the common + case, not everywhere. */ +static int +internal_function +_dl_do_lookup (const char *undef_name, unsigned long int hash, + const ElfW(Sym) *ref, struct sym_val *result, + struct r_scope_elem *scope, size_t i, + struct link_map *skip, int noexec, int noplt) +{ + return do_lookup (undef_name, hash, ref, result, scope, i, skip, noexec, + noplt); +} + +static int +internal_function +_dl_do_lookup_versioned (const char *undef_name, unsigned long int hash, + const ElfW(Sym) *ref, struct sym_val *result, + struct r_scope_elem *scope, size_t i, + const struct r_found_version *const version, + struct link_map *skip, int noexec, int noplt) +{ + return do_lookup_versioned (undef_name, hash, ref, result, scope, i, + version, skip, noexec, noplt); +} diff --git a/elf/dl-symbol.c b/elf/dl-symbol.c deleted file mode 100644 index 5c12df7..0000000 --- a/elf/dl-symbol.c +++ /dev/null @@ -1,33 +0,0 @@ -/* Look up a symbol's run-time value in the scope of a loaded object. - Copyright (C) 1995, 96, 98, 99, 2000 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 Library General Public License as - published by the Free Software Foundation; either version 2 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 - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public - License along with the GNU C Library; see the file COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ - -#include <stddef.h> -#include <ldsodefs.h> - -/* Look up symbol NAME in MAP's scope and return its run-time address. */ - -ElfW(Addr) -internal_function -_dl_symbol_value (struct link_map *map, const char *name) -{ - const ElfW(Sym) *ref = NULL; - lookup_t result; - result = _dl_lookup_symbol (name, map, &ref, map->l_local_scope, 0, 1); - return (result ? LOOKUP_VALUE_ADDRESS (result) : 0) + ref->st_value; -} diff --git a/include/link.h b/include/link.h index 5cb7f24..36c8d53 100644 --- a/include/link.h +++ b/include/link.h @@ -93,11 +93,6 @@ struct r_scope_elem struct link_map **r_list; /* Number of entries in the scope. */ unsigned int r_nlist; - - /* Array of maps which also includes duplicates. */ - struct link_map **r_duplist; - /* Number of elements in this list. */ - unsigned int r_nduplist; }; @@ -1,96 +1,86 @@ # Greek(Hellenic) messages for the GNU libc. # Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. -# Mavroyanopoulos Nikos <nmav@hellug.gr>, 1999, 2000. -# Simos Xenitellis <S.Xenitellis@rhbnc.ac.uk>, 1999, 2000. -# -# This file is currently not installed since it contains illegal -# multibyte characters. Just run either of these: -# $ iconv -f iso-8859-7 -t utf-8 < el.po > /dev/null -# $ msgfmt el.po -o el.gmo -# to see the errors. +# Nikos Mavroyanopoulos <nmav@hellug.gr>, 1999, 2000. +# Simos Xenitellis <S.Xenitellis@rhbnc.ac.uk>, 1999, 2000, 2001. # msgid "" msgstr "" -"Project-Id-Version: libc 2.1.3\n" -"POT-Creation-Date: 2000-02-16 10:39-0800\n" -"PO-Revision-Date: 2000-09-01 18:20:31+0000\n" -"Last-Translator: Mavroyanopoulos Nikos <nmav@hellug.gr>\n" +"Project-Id-Version: libc 2.2.3\n" +"POT-Creation-Date: 2001-01-21 08:03-0800\n" +"PO-Revision-Date: 2001-05-21 19:20:31+0000\n" +"Last-Translator: Nikos Mavroyanopoulos <nmav@hellug.gr>\n" "Language-Team: Greek <nls@tux.hellug.gr>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-7\n" "Content-Transfer-Encoding: 8bit\n" -#: nis/nis_print.c:273 -msgid "" -"\t\tKerberos.\n" -"Access Rights : " -msgstr "" -"\t\t��������.\n" -"���������� ����������� : " +#: nis/nis_print.c:274 +msgid "\t\tAccess Rights : " +msgstr "\t\t���������� ����������� : " -#: nis/nis_print.c:271 +#: nis/nis_print.c:272 msgid "\t\tAttributes : " msgstr "\t\t��������� : " -#: sunrpc/rpc_main.c:1414 +#: sunrpc/rpc_main.c:1425 #, 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:1416 +#: sunrpc/rpc_main.c:1427 #, c-format msgid "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o outfile] [infile]\n" msgstr "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o ������_������] [������_�������]\n" -#: sunrpc/rpc_main.c:1419 +#: sunrpc/rpc_main.c:1430 #, c-format msgid "\t%s [-n netid]* [-o outfile] [infile]\n" msgstr "\t%s [-n ����.�������]* [-o ������_������] [������_�������]\n" -#: sunrpc/rpc_main.c:1418 +#: sunrpc/rpc_main.c:1429 #, c-format msgid "\t%s [-s nettype]* [-o outfile] [infile]\n" msgstr "\t%s [-s �����_�������]* [-o ������_������] [������_�������]\n" -#: nis/nis_print.c:235 +#: nis/nis_print.c:236 msgid "\tAccess rights: " msgstr "\t���������� �����������: " -#: nis/nis_print.c:293 +#: nis/nis_print.c:294 #, c-format msgid "\tEntry data of type %s\n" msgstr "\t�������� ��������� ��� ����� %s\n" -#: nis/nis_print.c:171 +#: nis/nis_print.c:172 #, c-format msgid "\tName : %s\n" msgstr "\t����� : %s\n" -#: nis/nis_print.c:172 +#: nis/nis_print.c:173 msgid "\tPublic Key : " msgstr "\t������� ������ :" -#: nis/nis_print.c:234 +#: nis/nis_print.c:235 #, c-format msgid "\tType : %s\n" msgstr "\t����� : %s\n" -#: nis/nis_print.c:201 +#: nis/nis_print.c:202 #, c-format msgid "\tUniversal addresses (%u)\n" msgstr "\t�������� ��������� (%u)\n" -#: nis/nis_print.c:269 +#: nis/nis_print.c:270 #, c-format msgid "\t[%d]\tName : %s\n" msgstr "\t[%d]\t����� : %s\n" -#: nis/nis_print.c:296 +#: nis/nis_print.c:297 #, c-format msgid "\t[%u] - [%u bytes] " msgstr "\t[%u] - [%u byte]" -#: nscd/nscd_stat.c:153 +#: nscd/nscd_stat.c:154 msgid "" "\n" "%s cache:\n" @@ -120,11 +110,11 @@ msgstr "" "%15ld%% ������� ��������� ����������� ������\n" "%15s ������� ��� /etc/%s �������������\n" -#: nis/nis_print.c:251 +#: nis/nis_print.c:252 msgid "\nGroup Members :\n" msgstr "\n���� ������ :\n" -#: nis/nis_print.c:322 +#: nis/nis_print.c:323 msgid "\nTime to Live : " msgstr "\n������ ���� : " @@ -142,62 +132,62 @@ msgstr " rpcinfo -p [ ������� ]\n" #: sunrpc/rpcinfo.c:676 msgid " rpcinfo [ -n portnum ] -t host prognum [ versnum ]\n" -msgstr " rpcinfo [-n ���� ] -t ������� '�����. ������������' ['�����. �������']\n" +msgstr " rpcinfo [-n '�����. �����' ] -t ������� '�����. ������������' ['�����. �������']\n" -#: nscd/nscd_stat.c:145 nscd/nscd_stat.c:147 +#: nscd/nscd_stat.c:146 nscd/nscd_stat.c:148 msgid " no" msgstr " ���" -#: nscd/nscd_stat.c:145 nscd/nscd_stat.c:147 +#: nscd/nscd_stat.c:146 nscd/nscd_stat.c:148 msgid " yes" msgstr " ���" -#: nis/nis_print.c:348 +#: nis/nis_print.c:349 #, c-format msgid " Data Length = %u\n" msgstr " ����� ��������� = %u\n" -#: nis/nis_print_group_entry.c:121 +#: nis/nis_print_group_entry.c:123 msgid " Explicit members:\n" msgstr " ���� ����:\n" -#: nis/nis_print_group_entry.c:145 nis/nis_print_group_entry.c:161 +#: nis/nis_print_group_entry.c:147 nis/nis_print_group_entry.c:163 msgid " Explicit nonmembers:\n" msgstr " ���� ��-����:\n" -#: nis/nis_print_group_entry.c:129 +#: nis/nis_print_group_entry.c:131 msgid " Implicit members:\n" msgstr " ��������� ����:\n" -#: nis/nis_print_group_entry.c:153 +#: nis/nis_print_group_entry.c:155 msgid " Implicit nonmembers:\n" msgstr " ��������� ��-����:\n" -#: nis/nis_print_group_entry.c:126 +#: nis/nis_print_group_entry.c:128 msgid " No explicit members\n" msgstr " ������ ����\n" -#: nis/nis_print_group_entry.c:150 +#: nis/nis_print_group_entry.c:152 msgid " No explicit nonmembers\n" msgstr " ������ ���� ��-�����\n" -#: nis/nis_print_group_entry.c:134 +#: nis/nis_print_group_entry.c:136 msgid " No implicit members\n" msgstr " ������ ��������� �����\n" -#: nis/nis_print_group_entry.c:158 +#: nis/nis_print_group_entry.c:160 msgid " No implicit nonmembers\n" msgstr " ������ ��������� ��-�����\n" -#: nis/nis_print_group_entry.c:142 +#: nis/nis_print_group_entry.c:144 msgid " No recursive members\n" msgstr " ������ ���������� �����\n" -#: nis/nis_print_group_entry.c:166 +#: nis/nis_print_group_entry.c:168 msgid " No recursive nonmembers\n" msgstr " ������ ���������� ��-�����\n" -#: nis/nis_print_group_entry.c:137 +#: nis/nis_print_group_entry.c:139 msgid " Recursive members:\n" msgstr " ���������� ����:\n" @@ -205,304 +195,836 @@ msgstr " ���������� ����:\n" msgid " program vers proto port\n" msgstr " ��������� ���. ���������� ����\n" -#: argp/argp-help.c:1573 +#: argp/argp-help.c:1572 msgid " or: " msgstr " �:" -#: timezone/zic.c:423 +#: elf/ldconfig.c:448 +msgid " (SKIPPED)\n" +msgstr "" + +#: elf/ldconfig.c:446 +msgid " (changed)\n" +msgstr " (������)\n" + +#: timezone/zic.c:421 #, c-format msgid " (rule from \"%s\", line %d)" msgstr " (������� ��� \"%s\", ������ %d)" -#: argp/argp-help.c:1585 +#: argp/argp-help.c:1584 msgid " [OPTION...]" msgstr " [�������...]" -#: locale/programs/ld-collate.c:370 locale/programs/ld-ctype.c:1476 -msgid " done\n" -msgstr " �����\n" - -#: timezone/zic.c:420 +#: timezone/zic.c:418 #, c-format msgid "\"%s\", line %d: %s" msgstr "\"%s\", ������ %d: %s" -#: timezone/zic.c:984 +#: timezone/zic.c:983 #, c-format msgid "\"Zone %s\" line and -l option are mutually exclusive" msgstr "\"���� %s\" ������ ��� ������� -l ����� ��������� ������������" -#: timezone/zic.c:992 +#: timezone/zic.c:991 #, c-format msgid "\"Zone %s\" line and -p option are mutually exclusive" msgstr "\"���� %s\" ������ ��� ������� -p ����� ��������� ������������" -#: sunrpc/rpc_main.c:1399 +#: sunrpc/rpc_main.c:1410 msgid "\"infile\" is required for template generation flags.\n" msgstr "���������� \"������_�������\" ��� ������� �������������� ��� �����.\n" -#: argp/argp-help.c:210 +#: argp/argp-help.c:209 #, c-format msgid "%.*s: ARGP_HELP_FMT parameter requires a value" msgstr "%.*s: � ���������� ARGP_HELP_FMT ������� ����" -#: argp/argp-help.c:219 +#: argp/argp-help.c:218 #, c-format msgid "%.*s: Unknown ARGP_HELP_FMT parameter" msgstr "%.*s: ������� ���������� ARGP_HELP_FMT" -#: timezone/zic.c:794 +#: locale/programs/ld-address.c:576 locale/programs/ld-collate.c:2593 +#: locale/programs/ld-collate.c:3719 locale/programs/ld-ctype.c:2110 +#: locale/programs/ld-ctype.c:2847 locale/programs/ld-identification.c:440 +#: locale/programs/ld-measurement.c:232 locale/programs/ld-messages.c:326 +#: locale/programs/ld-monetary.c:934 locale/programs/ld-name.c:300 +#: locale/programs/ld-numeric.c:370 locale/programs/ld-paper.c:233 +#: locale/programs/ld-telephone.c:308 locale/programs/ld-time.c:1172 +#, c-format +msgid "%1$s: definition does not end with `END %1$s'" +msgstr "%1$s: � ������� ��� ��������� �� `END %1$s'" + +#: elf/cache.c:165 elf/cache.c:175 +#, c-format +msgid "%d libs found in cache `%s'\n" +msgstr "" + +#: timezone/zic.c:793 #, c-format msgid "%s in ruleless zone" msgstr "%s �� ���������� ����" -#: assert/assert.c:51 +#: elf/../sysdeps/generic/readelflib.c:65 +#, c-format +msgid "%s is a 32 bit ELF file.\n" +msgstr "" + +#: elf/../sysdeps/generic/readelflib.c:67 +#, c-format +msgid "%s is a 64 bit ELF file.\n" +msgstr "" + +#: elf/../sysdeps/unix/sysv/linux/i386/readelflib.c:48 +#, c-format +msgid "%s is for unknown machine %d.\n" +msgstr "�� %s ����� ��� �� ������� ������� %d.\n" + +#: elf/ldconfig.c:329 +#, c-format +msgid "%s is not a known library type" +msgstr "" + +#: elf/../sysdeps/generic/readelflib.c:76 +#, c-format +msgid "%s is not a shared object file (Type: %d).\n" +msgstr "" + +#: elf/ldconfig.c:415 +#, c-format +msgid "%s is not a symbolic link\n" +msgstr "�� %s ��� ����� ���������� ���������\n" + +#: elf/readlib.c:157 +#, c-format +msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n" +msgstr "" + +#: assert/assert.c:52 #, c-format msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" msgstr "%s%s%s:%u: %s%s� ���������� %s' �������.\n" -#: assert/assert-perr.c:52 +#: 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" -#: stdio-common/psignal.c:47 +#: stdio-common/psignal.c:48 #, c-format msgid "%s%sUnknown signal %d\n" msgstr "%s%s������� ���� %d\n" -#: timezone/zic.c:2229 +#: timezone/zic.c:2228 #, c-format msgid "%s: %d did not sign extend correctly\n" msgstr "%s: %d ��� ��������� ���������� �����\n" -#: locale/programs/charmap.c:261 +#: locale/programs/charmap.c:326 #, c-format msgid "%s: <mb_cur_max> must be greater than <mb_cur_min>\n" msgstr "%s: <mb_cur_max> ������ �� ����� ���������� ��� <mb_cur_min>\n" -#: sunrpc/rpc_main.c:421 +#: sunrpc/rpc_main.c:423 #, c-format msgid "%s: C preprocessor failed with exit code %d\n" msgstr "%s: � ��������������� C ������� �� ������ ������ %d\n" -#: sunrpc/rpc_main.c:418 +#: sunrpc/rpc_main.c:420 #, c-format msgid "%s: C preprocessor failed with signal %d\n" msgstr "%s: � ��������������� C ������� �� ���� %d\n" -#: timezone/zic.c:1495 +#: timezone/zic.c:1494 #, c-format msgid "%s: Can't create %s: %s\n" msgstr "%s: ��� ����� ������� �� ������������ %s: %s\n" -#: timezone/zic.c:2207 +#: timezone/zic.c:2206 #, c-format msgid "%s: Can't create directory %s: %s\n" msgstr "%s: ��� ����� ������� �� ������������ � ��������� %s: %s\n" -#: timezone/zic.c:646 +#: timezone/zic.c:645 #, c-format msgid "%s: Can't link from %s to %s: %s\n" msgstr "%s: ��� ����� ������� �� �������� �� %s �� �� %s: %s\n" -#: timezone/zic.c:820 +#: timezone/zic.c:819 #, c-format msgid "%s: Can't open %s: %s\n" msgstr "%s: ��� ����� ������� �� �������� �� %s: %s\n" -#: timezone/zic.c:1485 +#: timezone/zic.c:1484 #, c-format msgid "%s: Can't remove %s: %s\n" msgstr "%s: ��� ����� ������� �� ��������� �� %s: %s\n" -#: timezone/zic.c:631 +#: timezone/zic.c:630 #, c-format msgid "%s: Can't unlink %s: %s\n" msgstr "%s: �� ������ �� ��������� �� %s: %s\n" -#: timezone/zic.c:889 +#: timezone/zic.c:888 #, c-format msgid "%s: Error closing %s: %s\n" msgstr "%s: ������ ���� �� �������� ��� %s: %s\n" -#: timezone/zic.c:882 +#: timezone/zic.c:881 #, c-format msgid "%s: Error reading %s\n" msgstr "%s: ������ ���� ��� �������� ��� %s\n" -#: timezone/zdump.c:266 +#: timezone/zdump.c:267 #, c-format msgid "%s: Error writing " msgstr "%s: ������ �������� " -#: timezone/zic.c:1561 +#: timezone/zic.c:1560 #, c-format msgid "%s: Error writing %s\n" msgstr "%s: ������ ���� ��� ������� ��� %s\n" -#: timezone/zic.c:867 +#: timezone/zic.c:866 #, c-format msgid "%s: Leap line in non leap seconds file %s\n" msgstr "%s: ������ ����������(leap) ��� ������ �� ���������� ������������� %s\n" -#: timezone/zic.c:361 +#: timezone/zic.c:359 #, c-format msgid "%s: Memory exhausted: %s\n" msgstr "%s: � ����� �����������: %s\n" -#: timezone/zic.c:526 +#: timezone/zic.c:525 #, c-format msgid "%s: More than one -L option specified\n" msgstr "%s: ������������ ��� ��� -L �������� ������������\n" -#: timezone/zic.c:486 +#: timezone/zic.c:485 #, c-format msgid "%s: More than one -d option specified\n" msgstr "%s: ������������ ��� ��� -d �������� ������������\n" -#: timezone/zic.c:496 +#: timezone/zic.c:495 #, c-format msgid "%s: More than one -l option specified\n" msgstr "%s: ������������ ��� ��� -l �������� ������������\n" -#: timezone/zic.c:506 +#: timezone/zic.c:505 #, c-format msgid "%s: More than one -p option specified\n" msgstr "%s: ������������ ��� ��� -p �������� ������������\n" -#: timezone/zic.c:516 +#: timezone/zic.c:515 #, c-format msgid "%s: More than one -y option specified\n" msgstr "%s: ������������ ��� ��� -y �������� ������������\n" -#: argp/argp-parse.c:640 +#: argp/argp-parse.c:646 #, c-format msgid "%s: Too many arguments\n" msgstr "%s: ���� ����� ��������\n" -#: login/programs/database.c:129 +#: locale/programs/ld-collate.c:457 locale/programs/ld-collate.c:483 +#: locale/programs/ld-collate.c:499 #, c-format -msgid "%s: cannot get modification time" -msgstr "%s: �������� ����� ������ ������������" +msgid "%s: `%s' mentioned more than once in definition of weight %d" +msgstr "" + +#: locale/programs/ld-collate.c:1323 +#, c-format +msgid "%s: `%s' must be a character" +msgstr "%s: �� `%s' ������ �� ����� ���� ����� ����������" -#: timezone/zic.c:1928 +#: locale/programs/ld-address.c:248 locale/programs/ld-address.c:276 +#: locale/programs/ld-address.c:309 locale/programs/ld-address.c:321 +#, c-format +msgid "%s: `%s' value does not match `%s' value" +msgstr "" + +#: locale/programs/ld-monetary.c:835 locale/programs/ld-numeric.c:313 +#, c-format +msgid "%s: `-1' must be last entry in `%s' field" +msgstr "%s: �� `-1' ������ �� ����� � ��������� ���������� ��� ����� `%s'" + +#: locale/programs/ld-collate.c:447 locale/programs/ld-collate.c:473 +#, c-format +msgid "%s: `forward' and `backward' are mutually excluding each other" +msgstr "%s: �� ������������ ����������� `forward' ��� `backward' ����� �������� �������������" + +#: locale/programs/ld-collate.c:1515 +#, c-format +msgid "%s: `position' must be used for a specific level in all sections or none" +msgstr "" + +#: locale/programs/ld-ctype.c:2635 locale/programs/ld-ctype.c:2775 +#, c-format +msgid "%s: `translit_start' section does not end with `translit_end'" +msgstr "" + +#: locale/programs/ld-collate.c:1123 +#, c-format +msgid "%s: byte sequence of first character of sequence is not lower than that of the last character" +msgstr "" + +#: locale/programs/ld-collate.c:1081 +#, c-format +msgid "%s: byte sequences of first and last character must have the same length" +msgstr "" + +#: locale/programs/ld-collate.c:3642 +#, c-format +msgid "%s: cannot have `%s' as end of ellipsis range" +msgstr "" + +#: locale/programs/ld-collate.c:3308 +#, c-format +msgid "%s: cannot reorder after %.*s: symbol not known" +msgstr "" + +#: locale/programs/ld-ctype.c:2910 locale/programs/ld-ctype.c:2994 +#: locale/programs/ld-ctype.c:3014 locale/programs/ld-ctype.c:3035 +#: locale/programs/ld-ctype.c:3056 locale/programs/ld-ctype.c:3077 +#: locale/programs/ld-ctype.c:3098 locale/programs/ld-ctype.c:3138 +#: locale/programs/ld-ctype.c:3159 locale/programs/ld-ctype.c:3226 +#, c-format +msgid "%s: character `%s' in charmap not representable with one byte" +msgstr "" + +#: locale/programs/ld-ctype.c:3270 locale/programs/ld-ctype.c:3295 +#, c-format +msgid "%s: character `%s' needed as default value not representable with one byte" +msgstr "" + +#: locale/programs/ld-ctype.c:2905 +#, fuzzy, c-format +msgid "%s: character `%s' not defined in charmap while needed as default value" +msgstr "� ���������� `%s' ��� �������� ��� ���������� ��� �������������� ����" + +#: locale/programs/ld-ctype.c:2989 locale/programs/ld-ctype.c:3009 +#: locale/programs/ld-ctype.c:3051 locale/programs/ld-ctype.c:3072 +#: locale/programs/ld-ctype.c:3093 locale/programs/ld-ctype.c:3133 +#: locale/programs/ld-ctype.c:3154 locale/programs/ld-ctype.c:3221 +#: locale/programs/ld-ctype.c:3263 locale/programs/ld-ctype.c:3288 +#, fuzzy, c-format +msgid "%s: character `%s' not defined while needed as default value" +msgstr "� ���������� `%s' ��� �������� ��� ���������� ��� �������������� ����" + +#: timezone/zic.c:1927 #, c-format msgid "%s: command was '%s', result was %d\n" msgstr "%s: � ������ ���� '%s', �� ���������� ���� %d\n" -#: locale/programs/charmap.c:676 locale/programs/locfile.c:1014 +#: locale/programs/ld-time.c:225 +#, fuzzy, c-format +msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'" +msgstr "" +"� ������������� ������ ��� ������������� %d ��� ����� `era' ����\n" +"��������� `%s' ��� ����� '+' ���� '-'" + +#: locale/programs/ld-time.c:237 +#, fuzzy, c-format +msgid "%s: direction flag in string %Zd in `era' field is not a single character" +msgstr "%s: � ������������� ������ ��� ������������� %Zd ��� ����� `era' ��� ����� ���� ����� ����������" + +#: locale/programs/ld-ctype.c:2727 +#, c-format +msgid "%s: duplicate `default_missing' definition" +msgstr "%s: ������ ������� `default_missing'" + +#: locale/programs/ld-identification.c:423 +#, c-format +msgid "%s: duplicate category version definition" +msgstr "%s: ������ ������� ������� ����������" + +#: locale/programs/ld-collate.c:2711 +#, fuzzy, c-format +msgid "%s: duplicate declaration of section `%s'" +msgstr "������ ������� ��� ��� ��������� `%.*s'" + +#: locale/programs/ld-collate.c:2675 +#, fuzzy, c-format +msgid "%s: duplicate definition of `%s'" +msgstr "������ ������� ��� ��� ��������� `%.*s'" + +#: locale/programs/ld-collate.c:3691 +#, c-format +msgid "%s: empty category description not allowed" +msgstr "" + +#: locale/programs/ld-collate.c:755 +#, fuzzy, c-format +msgid "%s: empty weight string not allowed" +msgstr "����� �������� ��������: ������ ���������" + +#: locale/programs/charmap.c:831 #, c-format msgid "%s: error in state machine" msgstr "%s: ������ ��� ��������� ����������" -#: posix/getopt.c:788 +#: locale/programs/ld-ctype.c:2483 +#, c-format +msgid "%s: field `%s' declared more than once" +msgstr "" + +#: locale/programs/ld-ctype.c:1525 locale/programs/ld-ctype.c:1650 +#: locale/programs/ld-ctype.c:1756 locale/programs/ld-ctype.c:2346 +#: locale/programs/ld-ctype.c:3329 +#, c-format +msgid "%s: field `%s' does not contain exactly ten entries" +msgstr "" + +#: 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 +#, c-format +msgid "%s: field `%s' must not be empty" +msgstr "" + +#: locale/programs/ld-address.c:142 locale/programs/ld-address.c:197 +#: locale/programs/ld-address.c:224 locale/programs/ld-address.c:284 +#: locale/programs/ld-address.c:303 locale/programs/ld-address.c:315 +#: locale/programs/ld-measurement.c:104 locale/programs/ld-monetary.c:244 +#: locale/programs/ld-monetary.c:260 locale/programs/ld-name.c:104 +#: locale/programs/ld-numeric.c:113 locale/programs/ld-numeric.c:127 +#: locale/programs/ld-paper.c:101 locale/programs/ld-paper.c:109 +#: locale/programs/ld-telephone.c:105 +#, fuzzy, c-format +msgid "%s: field `%s' not defined" +msgstr "�� ����� `%s' ���� ��������� `%s' ��� ��������" + +#: locale/programs/ld-messages.c:115 locale/programs/ld-messages.c:148 +#, fuzzy, c-format +msgid "%s: field `%s' undefined" +msgstr "�� ����� `%s' ���� ��������� `%s' ��� ��������" + +#: locale/programs/ld-time.c:258 +#, fuzzy, c-format +msgid "%s: garbage at end of offset value in string %Zd in `era' field" +msgstr "" +"��������� ��� ����� ����������������(offset) ����� ��� ������������� %d\n" +"��� ����� `era' ���� ��������� `%s'" + +#: locale/programs/ld-time.c:318 +#, fuzzy, c-format +msgid "%s: garbage at end of starting date in string %Zd in `era' field " +msgstr "" +"��������� ��� ����� ��� ����������� ������� ��� ������������� %d\n" +"��� ����� `era' ���� ��������� `%s'" + +#: locale/programs/ld-time.c:395 +#, fuzzy, c-format +msgid "%s: garbage at end of stopping date in string %Zd in `era' field" +msgstr "" +"��������� ��� ����� ��� ����������� ����������� ��� ������������� %d\n" +"��� ����� `era' ���� ��������� `%s'" + +#: posix/getopt.c:795 #, c-format msgid "%s: illegal option -- %c\n" msgstr "%s: �� �������� ������� -- %c\n" -#: posix/getopt.c:791 +#: locale/programs/ld-address.c:573 locale/programs/ld-collate.c:3717 +#: locale/programs/ld-ctype.c:2844 locale/programs/ld-identification.c:437 +#: locale/programs/ld-measurement.c:229 locale/programs/ld-messages.c:324 +#: locale/programs/ld-monetary.c:932 locale/programs/ld-name.c:298 +#: locale/programs/ld-numeric.c:368 locale/programs/ld-paper.c:231 +#: locale/programs/ld-telephone.c:306 locale/programs/ld-time.c:1170 +#, c-format +msgid "%s: incomplete `END' line" +msgstr "" + +#: locale/programs/ld-address.c:166 +msgid "%s: invalid escape `%%%c' sequence in field `%s'" +msgstr "" + +#: locale/programs/ld-name.c:127 locale/programs/ld-telephone.c:126 +#: locale/programs/ld-telephone.c:150 +#, fuzzy, c-format +msgid "%s: invalid escape sequence in field `%s'" +msgstr "�� ������ ���������� �������� ��� ����� ��� ��������������" + +#: locale/programs/ld-time.c:250 +#, fuzzy, c-format +msgid "%s: invalid number for offset in string %Zd in `era' field" +msgstr "�� ������� ������� ��� ������������ ��o ������������� %d ��� ����� `era' ���� ��������� `%s'" + +#: locale/programs/ld-collate.c:3143 +#, c-format +msgid "%s: invalid number of sorting rules" +msgstr "" + +#: posix/getopt.c:798 #, c-format msgid "%s: invalid option -- %c\n" msgstr "%s: �� ������ ������� -- %c\n" -#: posix/getopt.c:711 +#: locale/programs/ld-time.c:309 +#, fuzzy, c-format +msgid "%s: invalid starting date in string %Zd in `era' field" +msgstr "�� ������ ���������� ������� ��� ������������� %d ��� ����� `era'���� ��������� `%s'" + +#: locale/programs/ld-time.c:386 +#, fuzzy, c-format +msgid "%s: invalid stopping date in string %Zd in `era' field" +msgstr "�� ������ ���������� ����������� ��� ������������� %d ��� ����� `era'���� ��������� `%s'" + +#: locale/programs/ld-measurement.c:112 +#, fuzzy, c-format +msgid "%s: invalid value for field `%s'" +msgstr "%s: �������: �� ������ l_value %d\n" + +#: locale/programs/ld-address.c:242 locale/programs/ld-address.c:270 +#, fuzzy, c-format +msgid "%s: language abbreviation `%s' not defined" +msgstr "�� ����� `%s' ���� ��������� `%s' ��� ��������" + +#: locale/programs/ld-collate.c:3223 locale/programs/ld-collate.c:3346 +#: locale/programs/ld-collate.c:3695 +#, c-format +msgid "%s: missing `order_end' keyword" +msgstr "" + +#: locale/programs/ld-collate.c:3360 locale/programs/ld-collate.c:3707 +#, c-format +msgid "%s: missing `reorder-end' keyword" +msgstr "" + +#: locale/programs/ld-collate.c:3710 +#, c-format +msgid "%s: missing `reorder-sections-end' keyword" +msgstr "" + +#: locale/programs/ld-time.c:435 +#, fuzzy, c-format +msgid "%s: missing era format in string %Zd in `era' field" +msgstr "������ � ���������� ������ ��� ������������� %d ��� `era' ��������� ��������� `%s'" + +#: locale/programs/ld-time.c:423 +#, fuzzy, c-format +msgid "%s: missing era name in string %Zd in `era' field" +msgstr "������ �� ����� ��� ������ ��� ������������� %d ��� `era' ��������� ��������� `%s'" + +#: locale/programs/ld-collate.c:3119 +#, fuzzy, c-format +msgid "%s: multiple order definitions for section `%s'" +msgstr "������ ������� ��� ��� ��������� `%.*s'" + +#: locale/programs/ld-collate.c:3169 +#, c-format +msgid "%s: multiple order definitions for unnamed section" +msgstr "" + +#: locale/programs/ld-messages.c:137 locale/programs/ld-messages.c:170 +#, fuzzy, c-format +msgid "%s: no correct regular expression for field `%s': %s" +msgstr "�� ����� �������� ������� ��� �� ����� `%s' ���� ��������� `%s': %s" + +#: locale/programs/ld-identification.c:169 +#, fuzzy, c-format +msgid "%s: no identification for category `%s'" +msgstr "�������� ���������� ������� ����� `%s' ��� ��� ��������� `%s'" + +#: locale/programs/ld-ctype.c:2753 +#, c-format +msgid "%s: no representable `default_missing' definition found" +msgstr "" + +#: locale/programs/ld-collate.c:591 +#, c-format +msgid "%s: not enough sorting rules" +msgstr "" + +#: locale/programs/ld-address.c:295 +#, c-format +msgid "%s: numeric country code `%d' not valid" +msgstr "" + +#: posix/getopt.c:718 #, c-format msgid "%s: option `%c%s' doesn't allow an argument\n" msgstr "%s: � ������� `%c%s' ��� ��������� ���������\n" -#: posix/getopt.c:681 +#: posix/getopt.c:688 #, c-format msgid "%s: option `%s' is ambiguous\n" msgstr "%s: � ������� `%s' ����� �����������\n" -#: posix/getopt.c:729 posix/getopt.c:902 +#: posix/getopt.c:736 posix/getopt.c:909 #, c-format msgid "%s: option `%s' requires an argument\n" msgstr "%s: � ������� `%s' ������� ��� ���������\n" -#: posix/getopt.c:706 +#: posix/getopt.c:713 #, c-format msgid "%s: option `--%s' doesn't allow an argument\n" msgstr "%s: � ������� `--%s' ��� ��������� ���������\n" -#: posix/getopt.c:886 +#: posix/getopt.c:893 #, c-format msgid "%s: option `-W %s' doesn't allow an argument\n" msgstr "%s: � ������� `-W %s' ��� ��������� ���������\n" -#: posix/getopt.c:868 +#: posix/getopt.c:875 #, c-format msgid "%s: option `-W %s' is ambiguous\n" msgstr "%s: � ������� `-W %s' ����� �����������\n" -#: posix/getopt.c:821 posix/getopt.c:951 +#: posix/getopt.c:828 posix/getopt.c:958 #, c-format msgid "%s: option requires an argument -- %c\n" msgstr "%s: � ������� ������� ��� ��������� -- %c\n" -#: sunrpc/rpc_main.c:287 +#: locale/programs/ld-collate.c:1314 locale/programs/ld-collate.c:3654 +#, fuzzy, c-format +msgid "%s: order for `%.*s' already defined at %s:%Zu" +msgstr "� ������ ���������� `%s' �������� ���" + +#: locale/programs/ld-collate.c:3297 +#, fuzzy, c-format +msgid "%s: order for collating element %.*s not yet defined" +msgstr "������� ��� ������������� ��������� ��������� `%.*s' ����������� ��� ��������� ���������" + +#: locale/programs/ld-collate.c:3281 +#, fuzzy, c-format +msgid "%s: order for collating symbol %.*s not yet defined" +msgstr "�� �������������� ��� ��������� ����������� ��� ������� ��������� ��� ������ �����" + +#: sunrpc/rpc_main.c:289 #, c-format msgid "%s: output would overwrite %s\n" msgstr "%s: � ������ �� ���������� �� %s\n" -#: timezone/zic.c:874 timezone/zic.c:1288 timezone/zic.c:1313 +#: timezone/zic.c:873 timezone/zic.c:1287 timezone/zic.c:1312 #, c-format msgid "%s: panic: Invalid l_value %d\n" msgstr "%s: �������: �� ������ l_value %d\n" -#: locale/programs/charmap.c:683 locale/programs/repertoire.c:301 +#: locale/programs/charmap.c:838 locale/programs/ld-address.c:592 +#: locale/programs/ld-collate.c:2590 locale/programs/ld-collate.c:3735 +#: locale/programs/ld-ctype.c:2107 locale/programs/ld-ctype.c:2864 +#: locale/programs/ld-identification.c:456 +#: locale/programs/ld-measurement.c:248 locale/programs/ld-messages.c:342 +#: locale/programs/ld-monetary.c:950 locale/programs/ld-name.c:316 +#: locale/programs/ld-numeric.c:386 locale/programs/ld-paper.c:249 +#: locale/programs/ld-telephone.c:324 locale/programs/ld-time.c:1188 +#: locale/programs/locfile.h:103 locale/programs/repertoire.c:325 #, c-format msgid "%s: premature end of file" msgstr "%s: ������ ����� �������" -#: sunrpc/rpc_main.c:294 +#: locale/programs/ld-collate.c:3394 locale/programs/ld-collate.c:3580 +#, c-format +msgid "%s: section `%.*s' not known" +msgstr "" + +#: locale/programs/ld-time.c:337 +#, fuzzy, c-format +msgid "%s: starting date is invalid in string %Zd in `era' field" +msgstr "� ���������� ������� ��� ����� ������ ��� ������������� %d ��� ����� `era' ���� ��������� `%s'" + +#: locale/programs/ld-time.c:414 +#, fuzzy, c-format +msgid "%s: stopping date is invalid in string %Zd in `era' field" +msgstr "� ���������� ����������� ��� ����� ������ ���� ������� %d ��� ����� `era' ���� ��������� `%s'" + +#: locale/programs/ld-collate.c:1248 +#, c-format +msgid "%s: symbolic range ellipsis must not be direct followed by `order_end'" +msgstr "" + +#: locale/programs/ld-collate.c:1244 +#, c-format +msgid "%s: symbolic range ellipsis must not directly follow `order_start'" +msgstr "" + +#: locale/programs/ld-address.c:583 locale/programs/ld-collate.c:518 +#: locale/programs/ld-collate.c:570 locale/programs/ld-collate.c:865 +#: locale/programs/ld-collate.c:878 locale/programs/ld-collate.c:2581 +#: locale/programs/ld-collate.c:3726 locale/programs/ld-ctype.c:1840 +#: locale/programs/ld-ctype.c:2098 locale/programs/ld-ctype.c:2673 +#: locale/programs/ld-ctype.c:2855 locale/programs/ld-identification.c:447 +#: locale/programs/ld-measurement.c:239 locale/programs/ld-messages.c:333 +#: locale/programs/ld-monetary.c:941 locale/programs/ld-name.c:307 +#: locale/programs/ld-numeric.c:377 locale/programs/ld-paper.c:240 +#: locale/programs/ld-telephone.c:315 locale/programs/ld-time.c:1179 +#, c-format +msgid "%s: syntax error" +msgstr "" + +#: locale/programs/ld-ctype.c:2178 +#, fuzzy, c-format +msgid "%s: syntax error in definition of new character class" +msgstr "���������� ������ ���� ������ ��� ���� ������ ����������" + +#: locale/programs/ld-ctype.c:2193 +#, fuzzy, c-format +msgid "%s: syntax error in definition of new character map" +msgstr "���������� ������ ���� ������ ��� ��� ����� ����������" + +#: locale/programs/ld-ctype.c:3735 +#, c-format +msgid "%s: table for class \"%s\": %lu bytes\n" +msgstr "" + +#: locale/programs/ld-ctype.c:3803 +#, fuzzy, c-format +msgid "%s: table for map \"%s\": %lu bytes\n" +msgstr "%s: ������� �� ������� ��� %s: %m\n" + +#: locale/programs/ld-ctype.c:3935 +#, c-format +msgid "%s: table for width: %lu bytes\n" +msgstr "" + +#: locale/programs/ld-address.c:216 +#, fuzzy, c-format +msgid "%s: terminology language code `%s' not defined" +msgstr "�� ����� `%s' ���� ��������� `%s' ��� ��������" + +#: locale/programs/ld-collate.c:1054 +#, c-format +msgid "%s: the start and the end symbol of a range must stand for characters" +msgstr "" + +#: locale/programs/ld-time.c:464 +#, c-format +msgid "%s: third operand for value of field `%s' must not be larger than %d" +msgstr "" + +#: locale/programs/ld-collate.c:555 +#, c-format +msgid "%s: too many rules; first entry only had %d" +msgstr "" + +#: locale/programs/ld-collate.c:906 +#, fuzzy, c-format +msgid "%s: too many values" +msgstr "%s: ���� ����� ��������\n" + +#: locale/programs/ld-ctype.c:3639 +#, c-format +msgid "%s: transliteration data from locale `%s' not available" +msgstr "" + +#: sunrpc/rpc_main.c:296 #, c-format msgid "%s: unable to open %s: %m\n" msgstr "%s: ������� �� ������� ��� %s: %m\n" -#: posix/getopt.c:762 +#: locale/programs/ld-collate.c:2849 +#, c-format +msgid "%s: unknown character in collating symbol name" +msgstr "" + +#: locale/programs/ld-collate.c:2981 +#, fuzzy, c-format +msgid "%s: unknown character in equivalent definition name" +msgstr "���������� ������ ���� ������ ���������� ����������" + +#: locale/programs/ld-collate.c:2994 +#, fuzzy, c-format +msgid "%s: unknown character in equivalent definition value" +msgstr "���������� ������ ���� ������ ���������� ����������" + +#: locale/programs/ld-time.c:1040 +#, fuzzy, c-format +msgid "%s: unknown character in field `%s'" +msgstr "�������� ���������� `%s'" + +#: locale/programs/ld-collate.c:3091 +#, fuzzy, c-format +msgid "%s: unknown section name `%s'" +msgstr "������� ��� `%s'" + +#: locale/programs/ld-collate.c:3004 +#, fuzzy, c-format +msgid "%s: unknown symbol `%s' in equivalent definition" +msgstr "������� ������� `%.*s': ������ ���������" + +#: posix/getopt.c:769 #, c-format msgid "%s: unrecognized option `%c%s'\n" msgstr "%s: �� ������������ ������� `%c%s'\n" -#: posix/getopt.c:758 +#: posix/getopt.c:765 #, c-format msgid "%s: unrecognized option `--%s'\n" msgstr "%s: �� ������������ ������� `--%s'\n" -#: timezone/zic.c:445 -#, c-format +#: timezone/zic.c:443 +#, fuzzy, c-format msgid "" -"%s: usage is %s [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] [ -d directory ]\n" -"\t[ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" +"%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 posix ������� ]\n" "\t[ -d ��������� ] [ -L ������������ ���������� ] [ -y ����� ����� ] [ ������ ... ]\n" -#: timezone/zdump.c:174 +#: timezone/zdump.c:175 #, c-format msgid "%s: usage is %s [ -v ] [ -c cutoff ] zonename ...\n" msgstr "%s: � ����� ����� %s [ -v ] [ -c ������� ] �������� ����� ...\n" -#: sunrpc/rpc_main.c:306 +#: locale/programs/ld-messages.c:121 locale/programs/ld-messages.c:154 +#, fuzzy, c-format +msgid "%s: value for field `%s' must not be an empty string" +msgstr "� ���� ��� �� ����� `%s' ���� ��������� `%s' ��� ������ �� ����� ���� �������������" + +#: locale/programs/ld-monetary.c:250 locale/programs/ld-numeric.c:119 +#, fuzzy, c-format +msgid "%s: value for field `%s' must not be the empty string" +msgstr "� ���� ��� �� ����� `%s' ���� ��������� `%s' ��� ������ �� ����� ���� �������������" + +#: locale/programs/ld-monetary.c:232 +#, fuzzy, c-format +msgid "%s: value of field `int_curr_symbol' does not correspond to a valid name in ISO 4217" +msgstr "� ���� ��� ������ `int_curr_symbol' ���� ��������� `LC_MONETARY' ����������� �� ������ ����� ������� �� �� ISO 4217" + +#: locale/programs/ld-monetary.c:224 +#, fuzzy, c-format +msgid "%s: value of field `int_curr_symbol' has wrong length" +msgstr "� ���� ��� ������ `int_curr_symbol' ���� ��������� `LC_MONETARY' ���� ����� �����" + +#: locale/programs/ld-monetary.c:857 locale/programs/ld-numeric.c:334 +#, fuzzy, c-format +msgid "%s: values for field `%s' must be smaller than 127" +msgstr "�� ����� ��� �� ����� `%s' ���� ��������� `%s' ������ �� ����� ���������� ��� 127" + +#: locale/programs/ld-time.c:488 +#, fuzzy, c-format +msgid "%s: values for field `%s' must not be larger than %d" +msgstr "�� ����� ��� �� ����� `%s' ���� ��������� `%s' ������ �� ����� ���������� ��� 127" + +#: locale/programs/ld-time.c:472 locale/programs/ld-time.c:480 +#, fuzzy, c-format +msgid "%s: values of field `%s' must not be larger than %d" +msgstr "�� ����� ��� �� ����� `%s' ���� ��������� `%s' ������ �� ����� ���������� ��� 127" + +#: locale/programs/ld-collate.c:850 +#, c-format +msgid "%s: weights must use the same ellipsis symbol as the name" +msgstr "" + +#: sunrpc/rpc_main.c:308 #, c-format msgid "%s: while writing output %s: %m" msgstr "%s: ���� ��� ������� ������ %s: %m" -#: argp/argp-parse.c:164 +#: argp/argp-parse.c:170 msgid "(PROGRAM ERROR) No version known!?" msgstr "(������ ������������) ��� ����� ������ � ������!;" -#: argp/argp-parse.c:781 +#: argp/argp-parse.c:787 msgid "(PROGRAM ERROR) Option should have been recognized!?" msgstr "(������ ������������) � ������� �� ������ �� ���� ������������!;" -#: nis/nis_print.c:129 +#: nis/nis_print.c:130 msgid "(Unknown object)\n" msgstr "(������� �����������)\n" -#: sunrpc/clnt_perr.c:124 +#: sunrpc/clnt_perr.c:125 #, c-format msgid "(unknown authentication error - %d)" msgstr "(������� ������ ������������ - %d)" @@ -516,11 +1038,11 @@ msgstr "(�������)" msgid "*** The file `%s' is stripped: no detailed analysis possible\n" msgstr "*** �� ������ `%s' ����� ������������: ��� ����� ������ ���������� �������\n" -#: catgets/gencat.c:267 +#: catgets/gencat.c:282 msgid "*standard input*" msgstr "*�������� �������*" -#: catgets/gencat.c:121 +#: catgets/gencat.c:125 msgid "" "-o OUTPUT-FILE [INPUT-FILE]...\n" "[OUTPUT-FILE [INPUT-FILE]...]" @@ -528,31 +1050,36 @@ msgstr "" "-o ������-������ [������-�������]...\n" "[������-������ [������-�������]...]" -#: stdio-common/../sysdeps/gnu/errlist.c:796 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:114 +#: 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 "�� ����� .lib ��� a.out ����� �������������" -#: sunrpc/clnt_perr.c:110 sunrpc/clnt_perr.c:131 +#: sunrpc/clnt_perr.c:111 sunrpc/clnt_perr.c:132 #, c-format msgid "; low version = %lu, high version = %lu" msgstr "; ����� ������ = %lu, ������ ������ = %lu" -#: sunrpc/clnt_perr.c:117 +#: sunrpc/clnt_perr.c:118 msgid "; why = " msgstr "; ����� = " -#: locale/programs/charset.c:98 +#: locale/programs/charmap.c:999 #, c-format msgid "<%s> and <%s> are illegal names for range" msgstr "�� <%s> ��� <%s> ����� �� �������� ������� ��� ����" -#: locale/programs/ld-ctype.c:428 +#: locale/programs/repertoire.c:448 +#, fuzzy, c-format +msgid "<%s> and <%s> are invalid names for range" +msgstr "�� <%s> ��� <%s> ����� �� �������� ������� ��� ����" + +#: locale/programs/ld-ctype.c:565 locale/programs/ld-ctype.c:600 #, c-format msgid "<SP> character must not be in class `%s'" msgstr "� <SP> ���������� ��� ������ �� ����� ���� ����� `%s'" -#: locale/programs/ld-ctype.c:416 +#: locale/programs/ld-ctype.c:553 locale/programs/ld-ctype.c:589 #, c-format msgid "<SP> character not in class `%s'" msgstr "� <SP> ���������� ��� ����� ���� ����� `%s'" @@ -560,58 +1087,65 @@ msgstr "� <SP> ���������� ��� ����� ���� ����� `%s'" #. 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:621 +#: stdio-common/../sysdeps/gnu/errlist.c:622 msgid "?" msgstr "?" -#: sysdeps/generic/siglist.h:34 sysdeps/gnu/siglist.h:28 +#: sysdeps/generic/siglist.h:34 msgid "Aborted" msgstr "���������" -#: nis/nis_print.c:320 +#: nis/nis_print.c:321 msgid "Access Rights : " msgstr "���������� ����������� :" -#: stdio-common/../sysdeps/gnu/errlist.c:792 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:113 +#: 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 "�������������� ��� ������������� �������������� ����������" #. TRANS The requested socket address is already in use. @xref{Socket Addresses}. -#: stdio-common/../sysdeps/gnu/errlist.c:366 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:154 +#: stdio-common/../sysdeps/gnu/errlist.c:367 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:155 msgid "Address already in use" msgstr "� ��������� �������� ����� ��� �� �����" -#: posix/../sysdeps/posix/gai_strerror.c:30 +#: posix/../sysdeps/posix/gai_strerror.c:31 msgid "Address family for hostname not supported" msgstr "��� ������������� ���������� ����������� ��� �������" #. 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:361 +#: stdio-common/../sysdeps/gnu/errlist.c:362 msgid "Address family not supported by protocol" msgstr "��� ������������ ��� �� ���������� � ���������� �����������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:153 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:154 msgid "Address family not supported by protocol family" msgstr "� ���������� ����������� ��� ������������� ��� ��� ���������� �����������" -#: stdio-common/../sysdeps/gnu/errlist.c:760 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:97 +#: stdio-common/../sysdeps/gnu/errlist.c:761 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:98 msgid "Advertise error" msgstr "������ ����������" -#: stdio-common/../sysdeps/unix/siglist.c:39 sysdeps/generic/siglist.h:40 -#: sysdeps/gnu/siglist.h:34 +#: stdio-common/../sysdeps/unix/siglist.c:40 sysdeps/generic/siglist.h:40 msgid "Alarm clock" msgstr "���������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:82 +#: malloc/memusagestat.c:57 +msgid "Also draw graph for total memory consumption" +msgstr "" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:83 msgid "Anode table overflow" msgstr "Y���������� ������ Anode" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:36 +#: intl/tst-gettext2.c:37 +msgid "Another string for testing." +msgstr "" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:37 msgid "Arg list too long" msgstr "� ����� ��������� ����� ���������� ������" @@ -619,104 +1153,103 @@ msgstr "� ����� ��������� ����� ���������� ������" #. 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:69 +#: stdio-common/../sysdeps/gnu/errlist.c:70 msgid "Argument list too long" msgstr "� ��������� ��� ���������� ����� ���� ������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:62 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:63 msgid "Argument out of domain" msgstr "�� ����� ����� ��� ��� ��� �����" -#: nis/nis_error.c:65 +#: nis/nis_error.c:66 msgid "Attempt to remove a non-empty table" msgstr "���������� ��������� ��-����� ������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:115 +#: 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:800 +#: stdio-common/../sysdeps/gnu/errlist.c:801 msgid "Attempting to link in too many shared libraries" msgstr "���������� �������� �� ���� ������ ��������������� �����������" -#: sunrpc/clnt_perr.c:328 +#: sunrpc/clnt_perr.c:329 msgid "Authentication OK" msgstr "����������� �������" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:561 +#: stdio-common/../sysdeps/gnu/errlist.c:562 msgid "Authentication error" msgstr "������ ������������" -#: nis/nis_print.c:105 +#: nis/nis_print.c:106 msgid "BOGUS OBJECT\n" msgstr "������ �����������\n" #. 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:114 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:43 +#: stdio-common/../sysdeps/gnu/errlist.c:115 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:44 msgid "Bad address" msgstr "��������� ���������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:79 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:80 msgid "Bad exchange descriptor" 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:82 +#: stdio-common/../sysdeps/gnu/errlist.c:83 msgid "Bad file descriptor" msgstr "���������� ����������� �������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:38 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:39 msgid "Bad file number" msgstr "���������� ������� �������" -#: stdio-common/../sysdeps/gnu/errlist.c:748 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:86 +#: stdio-common/../sysdeps/gnu/errlist.c:749 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:87 msgid "Bad font file format" msgstr "��������� ���������� ������� ��������������" -#: stdio-common/../sysdeps/gnu/errlist.c:640 +#: stdio-common/../sysdeps/gnu/errlist.c:641 msgid "Bad message" msgstr "��������� ������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:83 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:84 msgid "Bad request code" msgstr "���������� ������� �������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:80 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:81 msgid "Bad request descriptor" msgstr "���������� ����������� �������" -#: stdio-common/../sysdeps/unix/siglist.c:37 sysdeps/generic/siglist.h:63 -#: sysdeps/gnu/siglist.h:57 +#: stdio-common/../sysdeps/unix/siglist.c:38 sysdeps/generic/siglist.h:63 msgid "Bad system call" msgstr "��������� ����� ����������" -#: posix/../sysdeps/posix/gai_strerror.c:32 +#: posix/../sysdeps/posix/gai_strerror.c:33 msgid "Bad value for ai_flags" msgstr "���������� ���� ��� ai_flags" -#: locale/programs/localedef.c:101 +#: locale/programs/localedef.c:104 msgid "Be strictly POSIX conform" msgstr "������� ���������� �� POSIX" -#: nis/nis_print.c:301 +#: nis/nis_print.c:302 msgid "Binary data\n" msgstr "������� ��������\n" #. 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:121 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:44 +#: stdio-common/../sysdeps/gnu/errlist.c:122 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:45 msgid "Block device required" msgstr "���������� ������� �����" -#: sunrpc/pmap_rmt.c:347 +#: sunrpc/pmap_rmt.c:348 msgid "Broadcast poll problem" msgstr "�������� ���� ������ ��������" @@ -725,211 +1258,273 @@ msgstr "�������� ���� ������ ��������" #. 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:234 -#: stdio-common/../sysdeps/unix/siglist.c:38 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:61 -#: sysdeps/generic/siglist.h:39 sysdeps/gnu/siglist.h:33 +#: 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 "���������� ��������" -#: stdio-common/../sysdeps/unix/siglist.c:35 sysdeps/generic/siglist.h:37 -#: sysdeps/gnu/siglist.h:31 +#: stdio-common/../sysdeps/unix/siglist.c:36 sysdeps/generic/siglist.h:37 msgid "Bus error" msgstr "������ ���� ������(bus)" -#: nis/nis_print.c:45 +#: nis/nis_print.c:46 msgid "CDS" msgstr "CDS" -#: stdio-common/../sysdeps/unix/siglist.c:49 sysdeps/generic/siglist.h:50 -#: sysdeps/gnu/siglist.h:44 +#: stdio-common/../sysdeps/unix/siglist.c:50 sysdeps/generic/siglist.h:50 msgid "CPU time limit exceeded" msgstr "����������� �� ���� ������ ��� CPU" -#: nis/nis_error.c:32 +#: nis/nis_error.c:33 msgid "Cache expired" msgstr "�� ����������� ��� ����������� ������ ������" -#: stdio-common/../sysdeps/gnu/errlist.c:788 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:112 +#: 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 "��� ����� ������ � ���������� ���� ��������� ��������������� �����������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:116 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:117 msgid "Can not exec a shared library directly" msgstr "��� ����� ������ � ����� �������� ��������������� �����������" -#: nis/ypclnt.c:779 +#: nis/ypclnt.c:792 msgid "Can't bind to server which serves this domain" msgstr "��� ����� ������ � �������� �� ��� ���������� ��� ���������� ����� ��� �����" -#: nis/ypclnt.c:791 +#: elf/ldconfig.c:934 +msgid "Can't chdir to /" +msgstr "" + +#: nis/ypclnt.c:804 msgid "Can't communicate with portmapper" msgstr "��� ����� ������ � ����������� �� �� portmapper" -#: nis/ypclnt.c:793 +#: nis/ypclnt.c:806 msgid "Can't communicate with ypbind" msgstr "��� ����� ������ � ����������� �� �� ypbind" -#: nis/ypclnt.c:795 +#: nis/ypclnt.c:808 msgid "Can't communicate with ypserv" msgstr "��� ����� ������ � ����������� �� �� ypserv" +#: elf/cache.c:359 +#, fuzzy, c-format +msgid "Can't create temporary cache file %s" +msgstr "�������� ��������� ������� locale `%s'" + +#: elf/ldconfig.c:502 +#, c-format +msgid "Can't find %s" +msgstr "" + +#: elf/ldconfig.c:440 +#, fuzzy, c-format +msgid "Can't link %s to %s" +msgstr "%s: ��� ����� ������� �� �������� �� %s �� �� %s: %s\n" + +#: elf/ldconfig.c:518 elf/ldconfig.c:672 +#, c-format +msgid "Can't lstat %s" +msgstr "" + +#: elf/cache.c:108 elf/ldconfig.c:955 +#, fuzzy, c-format +msgid "Can't open cache file %s\n" +msgstr "�������� ���������� ������� ������� `%s'" + +#: elf/ldconfig.c:976 +#, fuzzy, c-format +msgid "Can't open cache file directory %s\n" +msgstr "�������� ��������� ��������� locale `%s'" + +#: elf/ldconfig.c:865 +#, fuzzy, c-format +msgid "Can't open configuration file %s" +msgstr "�������� ���������� ������� ������� `%s'" + +#: elf/ldconfig.c:621 +#, fuzzy, c-format +msgid "Can't open directory %s" +msgstr "%s: ��� ����� ������� �� ������������ � ��������� %s: %s\n" + +#: elf/cache.c:353 +#, c-format +msgid "Can't remove old temporary cache file %s" +msgstr "" + +#: elf/ldconfig.c:405 +#, fuzzy, c-format +msgid "Can't stat %s\n" +msgstr "%s: ��� ����� ������� �� ������������ %s: %s\n" + +#: elf/ldconfig.c:434 +#, fuzzy, c-format +msgid "Can't unlink %s" +msgstr "%s: �� ������ �� ��������� �� %s: %s\n" + #. TRANS No memory available. The system cannot allocate more virtual memory #. TRANS because its capacity is full. -#: stdio-common/../sysdeps/gnu/errlist.c:103 +#: stdio-common/../sysdeps/gnu/errlist.c:104 msgid "Cannot allocate memory" 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:373 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:155 +#: stdio-common/../sysdeps/gnu/errlist.c:374 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:156 msgid "Cannot assign requested address" msgstr "��� ����� ������ � �������� ��� ��������� ����������" -#: sunrpc/pmap_rmt.c:264 +#: sunrpc/pmap_rmt.c:265 msgid "Cannot create socket for broadcast rpc" msgstr "��� ����� ������ � ���������� �������� ��� ������� rpc" -#: stdio-common/../sysdeps/gnu/errlist.c:804 +#: stdio-common/../sysdeps/gnu/errlist.c:805 msgid "Cannot exec a shared library directly" msgstr "��� ����� ������ � ����� �������� ��������������� �����������" -#: sunrpc/rpc_main.c:1404 +#: elf/readlib.c:98 +#, fuzzy, c-format +msgid "Cannot fstat file %s.\n" +msgstr "�������� �����������(stat()) ������� `%s': %s" + +#: sunrpc/rpc_main.c:1415 msgid "Cannot have more than one file generation flag!\n" msgstr "�� ������ �� �������� ������������ ��� ��� ������� ����������� �������!\n" -#: sunrpc/pmap_rmt.c:360 +#: elf/readlib.c:117 +#, fuzzy, c-format +msgid "Cannot mmap file %s.\n" +msgstr "�������� ���������� ������� ������� `%s'" + +#: sunrpc/pmap_rmt.c:361 msgid "Cannot receive reply to broadcast" msgstr "��� ����� ������ � ���� ���������� ���� �������" -#: sunrpc/pmap_clnt.c:133 +#: sunrpc/pmap_clnt.c:136 msgid "Cannot register service" msgstr "��� ����� ������ � ���������� ��� ���������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:172 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:173 msgid "Cannot send after socket shutdown" msgstr "��� ����� ������ � �������� ���� �� �������� ��� ��������" #. TRANS The socket has already been shut down. -#: stdio-common/../sysdeps/gnu/errlist.c:434 +#: stdio-common/../sysdeps/gnu/errlist.c:435 msgid "Cannot send after transport endpoint shutdown" msgstr "��� ����� ������ � �������� ���� �� �������� ��� ���� ����� ������������" -#: sunrpc/pmap_rmt.c:322 +#: sunrpc/pmap_rmt.c:323 msgid "Cannot send broadcast packet" msgstr "��� ����� ������ � �������� ������� ��������" -#: sunrpc/pmap_rmt.c:271 +#: sunrpc/pmap_rmt.c:272 msgid "Cannot set socket option SO_BROADCAST" msgstr "��� ����� ������ � ������ ��� �������� �������� SO_BROADCAST" -#: sunrpc/rpc_main.c:1191 +#: sunrpc/rpc_main.c:1195 msgid "Cannot specify more than one input file!\n" msgstr "��� ����� ������� � ���������� ������������ ��� ���� ������� �������!\n" -#: sunrpc/rpc_main.c:1361 +#: sunrpc/rpc_main.c:1372 msgid "Cannot use netid flag with inetd flag!\n" msgstr "��� ����� ������ �� �������������� ������ ����.������� �� ������ �������!\n" -#: sunrpc/rpc_main.c:1373 +#: sunrpc/rpc_main.c:1384 msgid "Cannot use netid flag without TIRPC!\n" msgstr "��� ����� ������ �� �������������� ������ ����.������� ����� TIRPC!\n" -#: sunrpc/rpc_main.c:1380 +#: sunrpc/rpc_main.c:1391 msgid "Cannot use table flags with newstyle!\n" msgstr "��� ����� ������ �� ��������������� ������� �� �� ��� ����!\n" -#: stdio-common/../sysdeps/gnu/errlist.c:688 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:66 +#: elf/ldconfig.c:131 +msgid "Change to and use ROOT as root directory" +msgstr "" + +#: elf/cache.c:390 +#, c-format +msgid "Changing access rights of %s to 0644 failed" +msgstr "" + +#: stdio-common/../sysdeps/gnu/errlist.c:689 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:67 msgid "Channel number out of range" msgstr "� ������� ��� �������� ����� ��� ��� �� ����" -#: nis/nis_print.c:264 +#: nis/nis_print.c:265 #, c-format msgid "Character Separator : %c\n" msgstr "����������� ���������� : %c\n" -#: stdio-common/../sysdeps/unix/siglist.c:45 sysdeps/generic/siglist.h:46 -#: sysdeps/gnu/siglist.h:40 +#: stdio-common/../sysdeps/unix/siglist.c:46 sysdeps/generic/siglist.h:46 msgid "Child exited" msgstr "� ��������� ��������� ������������" -#: sunrpc/clnt_perr.c:347 +#: sunrpc/clnt_perr.c:348 msgid "Client credential too weak" msgstr "�� �������������� ��� ��������������� ����� ���� �������" -#: nis/nis_print.c:266 +#: nis/nis_print.c:267 msgid "Columns :\n" msgstr "������ :\n" -#: stdio-common/../sysdeps/gnu/errlist.c:768 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:99 +#: 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/localedef.c:109 +#: locale/programs/localedef.c:112 msgid "Compile locale specification" msgstr "�������������� ������������ ������� ���������" #. TRANS Go home and have a glass of warm, dairy-fresh milk. -#: stdio-common/../sysdeps/gnu/errlist.c:631 +#: stdio-common/../sysdeps/gnu/errlist.c:632 msgid "Computer bought the farm" msgstr "� ����������� ���� ��� �������" -#: locale/programs/ld-ctype.c:1438 -msgid "Computing table size for character classes might take a while..." +#: elf/ldconfig.c:141 +msgid "Configure Dynamic Linker Run Time Bindings." msgstr "" -"����������� �������� ������ ��� ������� ����������, ������ ��\n" -"������������ ����..." - -#: locale/programs/ld-collate.c:336 -msgid "Computing table size for collation information might take a while..." -msgstr "" -"����������� �������� ������ ��� ��� ����������� ���������, ������ ��\n" -"������������ ����..." #. 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:451 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:175 +#: stdio-common/../sysdeps/gnu/errlist.c:452 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:176 msgid "Connection refused" 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:401 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:160 +#: stdio-common/../sysdeps/gnu/errlist.c:402 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:161 msgid "Connection reset by peer" msgstr "� ������� ������� ��� �� �����" #. TRANS A socket operation with a specified timeout received no response during #. TRANS the timeout period. -#: stdio-common/../sysdeps/gnu/errlist.c:445 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:174 +#: stdio-common/../sysdeps/gnu/errlist.c:446 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:175 msgid "Connection timed out" msgstr "���� ��������" -#: stdio-common/../sysdeps/unix/siglist.c:44 sysdeps/generic/siglist.h:45 -#: sysdeps/gnu/siglist.h:39 +#: stdio-common/../sysdeps/unix/siglist.c:45 sysdeps/generic/siglist.h:45 msgid "Continued" msgstr "�����������" -#: iconv/iconv_prog.c:66 +#: iconv/iconv_prog.c:69 msgid "Convert encoding of given files from one encoding to another." msgstr "��������� ��� ������������� �������� ������� ��� ��� ������������ �� ����." -#: db2/makedb.c:58 -msgid "Convert key to lower case" -msgstr "��������� �������� �� ����" - -#: catgets/gencat.c:237 db2/makedb.c:242 elf/sprof.c:355 -#: iconv/iconv_prog.c:294 locale/programs/locale.c:267 -#: locale/programs/localedef.c:400 nscd/nscd.c:277 nscd/nscd_nischeck.c:90 -#: nss/getent.c:66 posix/getconf.c:624 +#: catgets/gencat.c:246 elf/ldconfig.c:264 elf/sprof.c:355 +#: iconv/iconv_prog.c:351 locale/programs/locale.c:269 +#: locale/programs/localedef.c:311 nscd/nscd.c:287 nscd/nscd_nischeck.c:90 +#: nss/getent.c:63 posix/getconf.c:751 #, c-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -937,387 +1532,445 @@ msgid "" "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" msgstr "" "Copyright (C) %s Free Software Foundation, Inc.\n" -"���� ����� �������� ���������� ����� ��� ������ ������ ��� ����� ����������.\n" -"��� ������� �������� ���� ����� ��� ��������I������� � ������������� ���\n" +"���� ����� �������� ���������, ����� ��� ������ ������ ��� ����� ����������.\n" +"��� ������� ������� ���� ����� ��� ��������I������� � ������������� ���\n" "������ ������������ �����.\n" -#: nscd/nscd_conf.c:165 +#: nscd/nscd_conf.c:166 #, c-format msgid "Could not create log file \"%s\"" msgstr "������� � ���������� ������� ���������� \"%s\"" -#: catgets/gencat.c:108 +#: catgets/gencat.c:112 msgid "Create C header file NAME containing symbol definitions" msgstr "���������� �������� ������� ��������� C �� �������� ��������" -#: locale/programs/localedef.c:100 +#: locale/programs/localedef.c:102 +msgid "Create old-style tables" +msgstr "" + +#: locale/programs/localedef.c:101 msgid "Create output even if warning messages were issued" msgstr "���������� ������ ����� ��� �� ��������� ���������������" -#: db2/makedb.c:68 -msgid "Create simple DB database from textual input." -msgstr "���������� ����� ����� �� ��� �������� ��������." - -#: nis/nis_print.c:325 +#: nis/nis_print.c:326 #, c-format msgid "Creation Time : %s" msgstr "������ ����������� : %s" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:47 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:48 msgid "Cross-device link" msgstr "��������� ������ ��������" -#: nis/nss_nisplus/nisplus-publickey.c:95 -#: nis/nss_nisplus/nisplus-publickey.c:171 +#: malloc/memusagestat.c:67 +msgid "DATAFILE [OUTFILE]" +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 "� ���������� DES ��� �� ����� ������� %s ��� ����� ��������\n" -#: nis/nis_print.c:111 +#: nis/nis_print.c:112 msgid "DIRECTORY\n" msgstr "���������\n" -#: nis/nis_print.c:41 +#: nis/nis_print.c:42 msgid "DNANS" msgstr "DNANS" -#: nis/nis_print.c:37 +#: nis/nis_print.c:38 msgid "DNS" msgstr "DNS" -#: nis/nis_error.c:51 +#: elf/dl-open.c:189 +msgid "DST not allowed in SUID/SGID programs" +msgstr "" + +#: elf/dl-error.c:71 +msgid "DYNAMIC LINKER BUG!!!" +msgstr "" + +#: nis/nis_error.c:52 msgid "Database for table does not exist" msgstr "� ���� ��������� ��� �� ������ ��� �������" -#: nis/ypclnt.c:805 +#: nis/ypclnt.c:818 msgid "Database is busy" msgstr "� ���� ��������� ����� ������������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:74 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:75 msgid "Deadlock situation detected/avoided" msgstr "�����������/����������� ��������� ���������" -#: nis/nis_print.c:225 +#: nis/nis_print.c:226 msgid "Default Access rights :\n" msgstr "�� ������� ���������� ����������� :\n" #. 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:429 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:125 +#: stdio-common/../sysdeps/gnu/errlist.c:430 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:126 msgid "Destination address required" msgstr "���������� ��������� ����������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:45 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:46 msgid "Device busy" msgstr "� ������� ����� ������������" -#: stdio-common/../sysdeps/gnu/errlist.c:668 +#: stdio-common/../sysdeps/gnu/errlist.c:669 msgid "Device not a stream" 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:61 -msgid "Device not configured" -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:128 +#: stdio-common/../sysdeps/gnu/errlist.c:129 msgid "Device or resource busy" msgstr "������� � ����� ����� �������������" -#: nis/nis_print.c:179 +#: nis/nis_print.c:180 #, c-format msgid "Diffie-Hellmann (%d bits)\n" msgstr "Diffie-Hellmann (%d bit)\n" -#: nis/nis_print.c:317 +#: nis/nis_print.c:318 #, c-format msgid "Directory : %s\n" msgstr "��������� : %s\n" #. 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:480 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:122 +#: stdio-common/../sysdeps/gnu/errlist.c:481 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:123 msgid "Directory not empty" msgstr "� ��������� ��� ����� �����" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:78 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:79 msgid "Disc quota exceeded" msgstr "����������� �� ���� ������ ��� �����" #. TRANS The user's disk quota was exceeded. -#: stdio-common/../sysdeps/gnu/errlist.c:498 +#: stdio-common/../sysdeps/gnu/errlist.c:499 msgid "Disk quota exceeded" msgstr "����������� �� ���� ������ ������" -#: nscd/nscd.c:83 +#: nscd/nscd.c:86 msgid "Do not fork and display messages on the current tty" msgstr "�� �� ����� ��������� ��� �������� ��������� ��� ������ tty" -#: db2/makedb.c:61 -msgid "Do not print messages while building database" -msgstr "�� �� ������������ �������� ���� ��� ��������� ��� ����� ���������" - -#: catgets/gencat.c:110 +#: catgets/gencat.c:114 msgid "Do not use existing catalog, force new output file" msgstr "�� �� �������������� � ������� ���������, ��������� ��� ������ ������" -#: nis/ypclnt.c:851 +#: nis/ypclnt.c:864 msgid "Domain not bound" msgstr "� ������ ��� �������" -#: stdio-common/../sysdeps/unix/siglist.c:32 sysdeps/generic/siglist.h:60 -#: sysdeps/gnu/siglist.h:54 +#: elf/ldconfig.c:129 +msgid "Don't build cache" +msgstr "" + +#: elf/ldconfig.c:130 +msgid "Don't generate links" +msgstr "" + +#: debug/pcprofiledump.c:56 +msgid "Dump information generated by PC profiling." +msgstr "" + +#: elf/dl-load.c:1290 +msgid "ELF file ABI version invalid" +msgstr "" + +#: elf/dl-load.c:1287 +msgid "ELF file OS ABI invalid" +msgstr "" + +#: elf/dl-load.c:1296 +msgid "ELF file version does not match current one" +msgstr "" + +#: elf/dl-load.c:1283 +msgid "ELF file version ident does not match current one" +msgstr "" + +#: elf/dl-load.c:1307 +msgid "ELF file's phentsize not the expected size" +msgstr "" + +#: elf/dl-load.c:876 +msgid "ELF load command address/offset not properly aligned" +msgstr "" + +#: elf/dl-load.c:873 +msgid "ELF load command alignment not page-aligned" +msgstr "" + +#: stdio-common/../sysdeps/unix/siglist.c:33 sysdeps/generic/siglist.h:60 msgid "EMT trap" msgstr "EMT ������" -#: nis/nis_print.c:120 +#: nis/nis_print.c:121 msgid "ENTRY\n" msgstr "����������\n" -#: nis/nis_print.c:299 +#: nis/nis_print.c:300 msgid "Encrypted data\n" msgstr "��������������� ��������\n" -#: nis/nis_error.c:52 +#: nis/nis_error.c:53 msgid "Entry/table type mismatch" msgstr "���������������� ����� �����������/������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:29 +#: nss/getent.c:127 nss/getent.c:292 +#, fuzzy, c-format +msgid "Enumeration not supported on %s\n" +msgstr "� ���������� ��� �������������" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:30 msgid "Error 0" msgstr "����� 0" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:129 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:130 msgid "Error 100" msgstr "����� 100" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:130 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:131 msgid "Error 101" msgstr "����� 101" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:131 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:132 msgid "Error 102" msgstr "����� 102" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:132 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:133 msgid "Error 103" msgstr "����� 103" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:133 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:134 msgid "Error 104" msgstr "����� 104" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:134 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:135 msgid "Error 105" msgstr "����� 105" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:135 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:136 msgid "Error 106" msgstr "����� 106" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:136 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:137 msgid "Error 107" msgstr "����� 107" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:137 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:138 msgid "Error 108" msgstr "����� 108" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:138 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:139 msgid "Error 109" msgstr "����� 109" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:139 +#: 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:140 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:141 msgid "Error 111" msgstr "����� 111" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:141 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:142 msgid "Error 112" msgstr "����� 112" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:142 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:143 msgid "Error 113" msgstr "����� 113" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:143 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:144 msgid "Error 114" msgstr "����� 114" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:144 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:145 msgid "Error 115" msgstr "����� 115" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:145 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:146 msgid "Error 116" msgstr "����� 116" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:146 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:147 msgid "Error 117" msgstr "����� 117" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:147 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:148 msgid "Error 118" msgstr "����� 118" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:148 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:149 msgid "Error 119" msgstr "����� 119" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:165 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:166 msgid "Error 136" msgstr "����� 136" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:171 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:172 msgid "Error 142" msgstr "����� 142" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:87 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:88 msgid "Error 58" msgstr "����� 58" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:88 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:89 msgid "Error 59" msgstr "����� 59" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:101 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:102 msgid "Error 72" msgstr "����� 72" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:102 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:103 msgid "Error 73" msgstr "����� 73" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:104 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:105 msgid "Error 75" msgstr "����� 75" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:105 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:106 msgid "Error 76" msgstr "����� 76" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:120 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:121 msgid "Error 91" msgstr "����� 91" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:121 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:122 msgid "Error 92" msgstr "����� 92" -#: nis/nis_error.c:56 +#: nis/nis_error.c:57 msgid "Error in RPC subsystem" msgstr "������ ��� ���������� RPC" -#: nis/nis_error.c:66 +#: nis/nis_error.c:67 msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" msgstr "������ ���� ���������� ������� ������ ��������� ��� NIS+. ����� �� NIS+ �������������;" -#: string/../sysdeps/mach/_strerror.c:57 -#: sysdeps/mach/hurd/mips/dl-machine.c:67 +#: string/../sysdeps/mach/_strerror.c:58 +#: sysdeps/mach/hurd/mips/dl-machine.c:68 msgid "Error in unknown error system: " msgstr "������ �� ������� ������� ���������: " -#: nis/nis_error.c:59 +#: nis/nis_error.c:60 msgid "Error while talking to callback proc" msgstr "������ ���� ����������� �� ���������� ���������" -#: inet/ruserpass.c:176 +#: inet/ruserpass.c:181 msgid "Error: .netrc file is readable by others." msgstr "������: �� .netrc ������ ����� ���������� ��� ������." -#: stdio-common/../sysdeps/gnu/errlist.c:728 +#: stdio-common/../sysdeps/gnu/errlist.c:729 msgid "Exchange full" 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:75 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:37 +#: stdio-common/../sysdeps/gnu/errlist.c:76 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:38 msgid "Exec format error" msgstr "������ ��� ���������� ��� �����������" -#: locale/programs/localedef.c:187 +#: locale/programs/localedef.c:190 msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" msgstr "�������: �� ������� ��� ������ �� `_POSIX2_LOCALEDEF'" -#: locale/programs/localedef.c:91 locale/programs/localedef.c:93 -#: locale/programs/localedef.c:95 -msgid "FILE" -msgstr "������" - -#: locale/programs/localedef.c:96 +#: locale/programs/localedef.c:97 msgid "FILE contains mapping from symbolic names to UCS4 values" msgstr "�� ������ �������� �������������� ��� ��������� ������� �� ����� UCS4" -#: sunrpc/clnt_perr.c:355 +#: sunrpc/clnt_perr.c:356 msgid "Failed (unspecified error)" msgstr "�������� (�� ����������� ������)" -#: stdio-common/../sysdeps/gnu/errlist.c:780 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:110 +#: nscd/nscd.c:400 +#, c-format +msgid "Failed to look up user '%s' to run server as" +msgstr "" + +#: elf/readlib.c:108 +#, c-format +msgid "File %s is too small, not checked." +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 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:134 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:46 +#: stdio-common/../sysdeps/gnu/errlist.c:135 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:47 msgid "File exists" msgstr "�� ������ �������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:85 +#: elf/cache.c:124 elf/cache.c:134 +msgid "File is not a cache file.\n" +msgstr "" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:86 msgid "File locking deadlock" msgstr "�������� ��� �������� �������" -#: stdio-common/../sysdeps/gnu/errlist.c:744 +#: stdio-common/../sysdeps/gnu/errlist.c:745 msgid "File locking deadlock error" 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:464 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:107 +#: stdio-common/../sysdeps/gnu/errlist.c:465 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:108 msgid "File name too long" msgstr "���� ������ ����� �������" -#: stdio-common/../sysdeps/unix/siglist.c:50 sysdeps/generic/siglist.h:51 -#: sysdeps/gnu/siglist.h:45 +#: stdio-common/../sysdeps/unix/siglist.c:51 sysdeps/generic/siglist.h:51 msgid "File size limit exceeded" msgstr "����������� �� ���� �������� �������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:52 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:53 msgid "File table overflow" msgstr "����������� ������ �������" #. TRANS File too big; the size of a file would be larger than allowed by the system. -#: stdio-common/../sysdeps/gnu/errlist.c:202 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:56 +#: stdio-common/../sysdeps/gnu/errlist.c:203 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:57 msgid "File too large" msgstr "���� ������ ������" -#: nis/nis_error.c:37 +#: intl/tst-gettext2.c:36 +msgid "First string for testing." +msgstr "" + +#: nis/nis_error.c:38 msgid "First/next chain broken" msgstr "� �����/������� ������� ������" -#: stdio-common/../sysdeps/unix/siglist.c:33 sysdeps/generic/siglist.h:35 -#: sysdeps/gnu/siglist.h:29 +#: stdio-common/../sysdeps/unix/siglist.c:34 sysdeps/generic/siglist.h:35 msgid "Floating point exception" msgstr "�������� ������� ������������" -#: nis/nis_error.c:67 +#: elf/ldconfig.c:136 +msgid "Format to use: new, old or compat (default)" +msgstr "" + +#: nis/nis_error.c:68 msgid "Full resync required for directory" msgstr "��������� ������ ����������������� ��� �� ��������" @@ -1326,20 +1979,24 @@ msgstr "��������� ������ ����������������� ��� �� ��������" #. 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:575 +#: stdio-common/../sysdeps/gnu/errlist.c:576 msgid "Function not implemented" msgstr "� ���������� ��� ���� ����������" -#: nis/nis_print.c:114 +#: nis/nis_print.c:115 msgid "GROUP\n" msgstr "�����\n" -#: argp/argp-help.c:231 +#: argp/argp-help.c:230 #, c-format msgid "Garbage in ARGP_HELP_FMT: %s" msgstr "��������� ��� ARGP_HELP_FMT: %s" -#: catgets/gencat.c:116 +#: malloc/memusagestat.c:64 +msgid "Generate graphic from memory profiling data" +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" @@ -1347,51 +2004,59 @@ msgstr "" "���������� ��������� ���������.\\v�� �� ������-������� ����� -, �������� ��� ��� �������� ������. ��\n" "�� ������-������ ����� -, ���� � ������ ��������� ���� �������� �����.\n" -#: nis/nis_error.c:36 +#: malloc/memusagestat.c:55 +msgid "Generate output linear to time (default is linear to number of function calls)" +msgstr "" + +#: elf/ldconfig.c:128 +#, fuzzy +msgid "Generate verbose messages" +msgstr "�������� ������������ ���������" + +#: nis/nis_error.c:37 msgid "Generic system error" msgstr "������ ������ ����������" -#: locale/programs/locale.c:75 +#: locale/programs/locale.c:77 msgid "Get locale-specific information." msgstr "���� ����������� ������� ���������." -#: argp/argp-parse.c:88 +#: argp/argp-parse.c:94 msgid "Give a short usage message" msgstr "�� ����� ������� ������ ������" -#: argp/argp-parse.c:87 +#: argp/argp-parse.c:93 msgid "Give this help list" msgstr "�� ����� ���� � ����� ��������" #. TRANS This error code has no purpose. -#: stdio-common/../sysdeps/gnu/errlist.c:636 +#: stdio-common/../sysdeps/gnu/errlist.c:637 msgid "Gratuitous error" msgstr "������������� �����" -#: nis/nis_print.c:319 +#: nis/nis_print.c:320 #, c-format msgid "Group : %s\n" msgstr "����� : %s\n" -#: nis/nis_print.c:248 +#: nis/nis_print.c:249 msgid "Group Flags :" msgstr "������� ������ :" -#: nis/nis_print_group_entry.c:113 +#: nis/nis_print_group_entry.c:115 #, c-format msgid "Group entry for \"%s.%s\" group:\n" msgstr "���������� ������ ��� ��� ����� \"%s.%s\":\n" -#: argp/argp-parse.c:91 +#: argp/argp-parse.c:97 msgid "Hang for SECS seconds (default 3600)" msgstr "������� ��� ����. ������������ (�� ������� 3600)" -#: stdio-common/../sysdeps/unix/siglist.c:26 sysdeps/generic/siglist.h:29 -#: sysdeps/gnu/siglist.h:23 +#: stdio-common/../sysdeps/unix/siglist.c:27 sysdeps/generic/siglist.h:29 msgid "Hangup" msgstr "��������" -#: nscd/grpcache.c:251 +#: nscd/grpcache.c:253 #, c-format msgid "Haven't found \"%d\" in group cache!" msgstr "�� ������� �� \"%d\" ���� ���������� ����� ������!" @@ -1401,13 +2066,13 @@ msgstr "�� ������� �� \"%d\" ���� ���������� ����� ������!" msgid "Haven't found \"%d\" in password cache!" msgstr "�� ������� �� \"%d\" ���� ���������� ����� �������!" -#: nscd/grpcache.c:212 +#: nscd/grpcache.c:214 #, c-format msgid "Haven't found \"%s\" in group cache!" msgstr "�� ������� �� \"%s\" ���� ���������� ����� ������!" -#: nscd/hstcache.c:291 nscd/hstcache.c:333 nscd/hstcache.c:378 -#: nscd/hstcache.c:422 +#: 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\" ���� ���������� ����� ����������!" @@ -1418,63 +2083,56 @@ msgid "Haven't found \"%s\" in password cache!" msgstr "�� ������� �� \"%s\" ���� ���������� ����� �������!" #. TRANS The remote host for a requested network connection is down. -#: stdio-common/../sysdeps/gnu/errlist.c:469 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:176 +#: stdio-common/../sysdeps/gnu/errlist.c:470 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:177 msgid "Host is down" msgstr "�� ������� �� ����������" -#: resolv/herror.c:75 +#: resolv/herror.c:69 msgid "Host name lookup failure" msgstr "�������� ���������� �������� ����������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:34 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:35 msgid "I/O error" msgstr "������ �������/������" -#: stdio-common/../sysdeps/unix/siglist.c:48 sysdeps/generic/siglist.h:49 -#: sysdeps/gnu/siglist.h:43 +#: stdio-common/../sysdeps/unix/siglist.c:49 sysdeps/generic/siglist.h:49 msgid "I/O possible" msgstr "������ � �������/������" -#: db2/makedb.c:71 -msgid "" -"INPUT-FILE OUTPUT-FILE\n" -"-o OUTPUT-FILE INPUT-FILE\n" -"-u INPUT-FILE" -msgstr "" -"������-������� ������-������\n" -"-o ������-������ ������-�������\n" -"-u ������-�������" - -#: stdio-common/../sysdeps/unix/siglist.c:31 +#: stdio-common/../sysdeps/unix/siglist.c:32 msgid "IOT trap" msgstr "IOT ������" -#: nis/nis_print.c:35 +#: nis/nis_print.c:36 msgid "IVY" msgstr "IVY" -#: stdio-common/../sysdeps/gnu/errlist.c:644 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:65 +#: 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/unix/sysv/sysv4/solaris2/sparc/errlist.c:117 +#: elf/ldconfig.c:525 +#, c-format +msgid "Ignored file %s since it is not a regular file." +msgstr "" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:118 msgid "Illegal byte sequence" msgstr "���������� ��������� byte" -#: stdio-common/../sysdeps/unix/siglist.c:29 sysdeps/generic/siglist.h:32 -#: sysdeps/gnu/siglist.h:26 +#: stdio-common/../sysdeps/unix/siglist.c:30 sysdeps/generic/siglist.h:32 msgid "Illegal instruction" msgstr "���������� ������" -#: nis/nis_error.c:61 +#: nis/nis_error.c:62 msgid "Illegal object type for operation" msgstr "���������� ����� ������������ ��� �� ����������" #. TRANS Invalid seek operation (such as on a pipe). -#: stdio-common/../sysdeps/gnu/errlist.c:213 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:58 +#: stdio-common/../sysdeps/gnu/errlist.c:214 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:59 msgid "Illegal seek" msgstr "�������� ���������" @@ -1483,14 +2141,14 @@ msgstr "�������� ���������" #. 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:556 +#: stdio-common/../sysdeps/gnu/errlist.c:557 msgid "Inappropriate file type or format" 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:188 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:54 +#: 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 ��� �������" @@ -1500,41 +2158,45 @@ msgstr "���������� ioctl ��� �������" #. 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:607 +#: stdio-common/../sysdeps/gnu/errlist.c:608 msgid "Inappropriate operation for background process" msgstr "���������� ���������� ��� ��������� �����������" -#: sysdeps/generic/siglist.h:69 sysdeps/gnu/siglist.h:63 +#: sysdeps/generic/siglist.h:69 msgid "Information request" msgstr "������ �����������" -#: iconv/iconv_prog.c:57 +#: iconv/iconv_prog.c:58 msgid "Information:" msgstr "����������:" -#: locale/programs/localedef.c:90 +#: locale/programs/localedef.c:92 msgid "Input Files:" msgstr "������ �������:" -#: iconv/iconv_prog.c:54 +#: elf/ldconfig.c:698 elf/readlib.c:92 +#, fuzzy, c-format +msgid "Input file %s not found.\n" +msgstr "�� ������ ������ ����������� `%s' �� �������" + +#: iconv/iconv_prog.c:55 msgid "Input/Output format specification:" msgstr "���������� ������ �������/������:" #. TRANS Input/output error; usually used for physical read or write errors. -#: stdio-common/../sysdeps/gnu/errlist.c:52 +#: stdio-common/../sysdeps/gnu/errlist.c:53 msgid "Input/output error" msgstr "������ �������/������" -#: nis/ypclnt.c:785 +#: nis/ypclnt.c:798 msgid "Internal NIS error" msgstr "��������� ������ NIS" -#: nis/ypclnt.c:849 +#: nis/ypclnt.c:862 msgid "Internal ypbind error" msgstr "��������� ������ ypbind" -#: stdio-common/../sysdeps/unix/siglist.c:27 sysdeps/generic/siglist.h:30 -#: sysdeps/gnu/siglist.h:24 +#: stdio-common/../sysdeps/unix/siglist.c:28 sysdeps/generic/siglist.h:30 msgid "Interrupt" msgstr "�������" @@ -1545,256 +2207,263 @@ msgstr "�������" #. 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:47 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:33 +#: 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/gnu/errlist.c:684 +#: stdio-common/../sysdeps/gnu/errlist.c:685 msgid "Interrupted system call should be restarted" 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:164 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:51 +#: stdio-common/../sysdeps/gnu/errlist.c:165 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:52 msgid "Invalid argument" msgstr "�� ������ ����������" -#: posix/regex.c:1034 +#: posix/regex.c:1102 msgid "Invalid back reference" msgstr "�� ������ ����-���������" -#: posix/regex.c:1028 +#: posix/regex.c:1096 msgid "Invalid character class name" msgstr "�� ������� ���������� �������� ������" -#: sunrpc/clnt_perr.c:331 +#: sunrpc/clnt_perr.c:332 msgid "Invalid client credential" msgstr "�� ������ �������������� ���������������" -#: sunrpc/clnt_perr.c:339 +#: sunrpc/clnt_perr.c:340 msgid "Invalid client verifier" msgstr "�� ������� �����������(verifier) ���������������" -#: posix/regex.c:1025 +#: posix/regex.c:1093 msgid "Invalid collation character" msgstr "�� ������� ���������� ���������" -#: posix/regex.c:1046 +#: posix/regex.c:1114 msgid "Invalid content of \\{\\}" 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:141 +#: stdio-common/../sysdeps/gnu/errlist.c:142 msgid "Invalid cross-device link" msgstr "�� ������� ��������� ������ ��������" -#: stdio-common/../sysdeps/gnu/errlist.c:720 +#: stdio-common/../sysdeps/gnu/errlist.c:721 msgid "Invalid exchange" msgstr "�� ������ ���������" -#: nis/nis_error.c:44 +#: nis/nis_error.c:45 msgid "Invalid object for operation" 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:597 +#: stdio-common/../sysdeps/gnu/errlist.c:598 msgid "Invalid or incomplete multibyte or wide character" msgstr "�� ������ � ����������� multibyte � ������ ����������" -#: posix/regex.c:1055 +#: posix/regex.c:1123 msgid "Invalid preceding regular expression" msgstr "�� ������ ������������� �������� �������" -#: posix/regex.c:1049 +#: posix/regex.c:1117 msgid "Invalid range end" msgstr "�� ������ ����� ������" -#: posix/regex.c:1022 +#: posix/regex.c:1090 msgid "Invalid regular expression" msgstr "�� ������ �������� �������" -#: stdio-common/../sysdeps/gnu/errlist.c:736 +#: stdio-common/../sysdeps/gnu/errlist.c:737 msgid "Invalid request code" msgstr "�� ������� ������� �������" -#: stdio-common/../sysdeps/gnu/errlist.c:724 +#: stdio-common/../sysdeps/gnu/errlist.c:725 msgid "Invalid request descriptor" msgstr "�� ������� ����������� �������" -#: sunrpc/clnt_perr.c:351 +#: sunrpc/clnt_perr.c:352 msgid "Invalid server verifier" msgstr "�� ������� �����������(verifier) ����������" -#: stdio-common/../sysdeps/gnu/errlist.c:740 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:84 +#: stdio-common/../sysdeps/gnu/errlist.c:741 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:85 msgid "Invalid slot" msgstr "�� ������ ���" -#: nscd/nscd.c:88 +#: nscd/nscd.c:91 msgid "Invalidate the specified cache" 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:158 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:50 +#: 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:168 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:169 msgid "Is a name file" msgstr "����� ��� ����� �������" -#: stdio-common/../sysdeps/gnu/errlist.c:824 +#: stdio-common/../sysdeps/gnu/errlist.c:825 msgid "Is a named type file" msgstr "����� ��� ������� ����� �������" -#: nis/nis_print.c:187 +#: nis/nis_print.c:188 msgid "Kerberos.\n" msgstr "��������.\n" -#: stdio-common/../sysdeps/unix/siglist.c:34 sysdeps/generic/siglist.h:36 -#: sysdeps/gnu/siglist.h:30 +#: stdio-common/../sysdeps/unix/siglist.c:35 sysdeps/generic/siglist.h:36 msgid "Killed" msgstr "���������" -#: nis/nis_print.c:123 +#: nis/nis_print.c:124 msgid "LINK\n" msgstr "���������\n" -#: nis/nis_local_names.c:125 +#: nis/nis_local_names.c:126 #, c-format msgid "LOCAL entry for UID %d in directory %s not unique\n" msgstr "� ������ ���������� ��� ��� ����. %d ��� �������� %s ��� ����� ��������\n" -#: stdio-common/../sysdeps/gnu/errlist.c:716 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:73 +#: 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/gnu/errlist.c:692 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:67 +#: 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/gnu/errlist.c:696 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:68 +#: 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/gnu/errlist.c:700 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:69 +#: 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/gnu/errlist.c:656 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:96 +#: 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/gnu/errlist.c:704 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:70 +#: 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 "� ������� ��������� ����� ��� ��� �� ����" -#: nis/nis_error.c:53 +#: nis/nis_error.c:54 msgid "Link points to illegal name" msgstr "������� ������� �� �� �������� �����" -#: nis/nis_print.c:282 +#: nis/nis_print.c:283 msgid "Linked Object Type : " msgstr "����� ������������ ������������ : " -#: nis/nis_print.c:284 +#: nis/nis_print.c:285 #, c-format msgid "Linked to : %s\n" msgstr "����������� �� : %s\n" -#: nis/ypclnt.c:797 +#: nis/ypclnt.c:810 msgid "Local domain name not set" msgstr "��� ���� ������� �� ����� ������� �����" -#: nis/ypclnt.c:787 +#: nis/ypclnt.c:800 msgid "Local resource allocation failure" msgstr "�������� ��������� ������� �����" -#: stdio-common/../sysdeps/gnu/errlist.c:752 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:93 +#: 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 "�� �������� ��� ����� ��� ������" -#: nis/nis_error.c:45 +#: nis/nis_error.c:46 msgid "Malformed name, or illegal name" msgstr "���������������� ����� � ���������� �����" -#: argp/argp-help.c:1186 +#: argp/argp-help.c:1185 msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." msgstr "����������� � ����������� �������� �� ������ �������� ����� ������ ����������� � ����������� �� ���� ����������� �������� ��������." -#: nis/nis_print.c:168 +#: elf/ldconfig.c:135 +msgid "Manually link individual libraries." +msgstr "" + +#: nis/nis_print.c:169 msgid "Master Server :\n" msgstr "������ ������������ :\n" -#: nis/nis_error.c:75 +#: nis/nis_error.c:76 msgid "Master server busy, full dump rescheduled." msgstr "� ������ ������������ ����� �������������, � ������ ��������� �� �����������������." -#: posix/../sysdeps/posix/gai_strerror.c:35 +#: posix/../sysdeps/posix/gai_strerror.c:36 msgid "Memory allocation failure" msgstr "�������� ��������� ������" -#: posix/regex.c:1052 +#: posix/regex.c:1120 msgid "Memory exhausted" msgstr "� ����� �����������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:81 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:82 msgid "Message tables full" msgstr "�� ������� ��������� ����� �������" #. TRANS The size of a message sent on a socket was larger than the supported #. TRANS maximum size. -#: stdio-common/../sysdeps/gnu/errlist.c:317 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:126 +#: stdio-common/../sysdeps/gnu/errlist.c:318 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:127 msgid "Message too long" msgstr "���������� ������ ������" -#: nis/nis_error.c:57 +#: nis/nis_error.c:58 msgid "Missing or malformed attribute" msgstr "������� � ���������������� ��������" -#: nis/nis_print.c:327 +#: nis/nis_print.c:328 #, c-format msgid "Mod. Time : %s" msgstr "������ ����. : %s" -#: nis/nis_error.c:50 +#: nis/nis_error.c:51 msgid "Modification failed" msgstr "� ����������� �������" -#: nis/nis_error.c:63 +#: nis/nis_error.c:64 msgid "Modify operation failed" msgstr "� ���������� ������������ �������" -#: locale/programs/locale.c:68 +#: locale/programs/locale.c:70 msgid "Modify output format:" msgstr "����� ������ ������������:" -#: stdio-common/../sysdeps/gnu/errlist.c:648 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:103 +#: stdio-common/../sysdeps/gnu/errlist.c:649 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:104 msgid "Multihop attempted" msgstr "���������� multihop" -#: catgets/gencat.c:107 catgets/gencat.c:111 db2/makedb.c:59 -#: locale/programs/localedef.c:112 nscd/nscd.c:80 +#: nscd/nscd_conf.c:182 +msgid "Must specify user name for server-user option" +msgstr "" + +#: catgets/gencat.c:111 catgets/gencat.c:115 locale/programs/localedef.c:115 +#: nscd/nscd.c:83 msgid "NAME" msgstr "�����" -#: locale/programs/locale.c:78 +#: locale/programs/locale.c:80 msgid "" "NAME\n" "[-a|-m]" @@ -1802,173 +2471,198 @@ msgstr "" "�����\n" "[-a|-m]" -#: nis/nis_print.c:31 +#: nis/nis_print.c:32 msgid "NIS" msgstr "NIS" -#: nis/ypclnt.c:801 +#: nis/ypclnt.c:814 msgid "NIS client/server version mismatch - can't supply service" msgstr "" "������������� ������� ���������/��������������� NIS - ��� ���������\n" "� ��������" -#: nis/ypclnt.c:799 +#: nis/ypclnt.c:812 msgid "NIS map database is bad" msgstr "� ���� ��������� ����� NIS ����� ����������" -#: nis/nis_error.c:68 +#: nis/nis_error.c:69 msgid "NIS+ operation failed" msgstr "� ���������� NIS+ �������" -#: nis/nis_error.c:33 +#: nis/nis_error.c:34 msgid "NIS+ servers unreachable" msgstr "�� ������������ NIS+ ��� ����� �������������" -#: nis/nis_error.c:69 +#: nis/nis_error.c:70 msgid "NIS+ service is unavailable or not installed" msgstr "� �������� NIS+ ��� ����� ��������� � ��� ���� ������������" -#: nis/nis_print.c:108 +#: nis/nis_print.c:109 msgid "NO OBJECT\n" msgstr "������ �����������\n" -#: nscd/nscd.c:84 +#: nscd/nscd.c:87 msgid "NUMBER" msgstr "�������" -#: nis/nis_print.c:162 +#: nis/nis_print.c:163 #, c-format msgid "Name : `%s'\n" msgstr "����� : `%s'\n" -#: nscd/nscd.c:94 +#: nscd/nscd.c:97 msgid "Name Service Cache Daemon." msgstr "���������� �������� ������������ ������������ ��������." -#: nis/nis_error.c:40 +#: nis/nis_error.c:41 msgid "Name not served by this server" msgstr "�� ����� ���� �� ����������� ��� ����� �� �����������" -#: stdio-common/../sysdeps/gnu/errlist.c:776 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:109 +#: 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 "�� ����� ��� ����� �������� ��� ������" -#: posix/../sysdeps/posix/gai_strerror.c:37 +#: posix/../sysdeps/posix/gai_strerror.c:38 msgid "Name or service not known" msgstr "�� ����� � � �������� ��� ����� ������" -#: nis/nis_error.c:49 +#: malloc/memusagestat.c:53 +#, fuzzy +msgid "Name output file" +msgstr "������ ������" + +#: nis/nis_error.c:50 msgid "Name/entry isn't unique" msgstr "�����/���������� ��� ����� ��������" -#: nis/nis_error.c:58 +#: nis/nis_error.c:59 msgid "Named object is not searchable" msgstr "�� ������� ����������� ��� ����� �����������" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:566 +#: stdio-common/../sysdeps/gnu/errlist.c:567 msgid "Need authenticator" msgstr "���������� ������������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:158 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:159 msgid "Network dropped connection because of reset" msgstr "�� ������ ����� ��� ������� ���� �������������" #. TRANS A network connection was reset because the remote host crashed. -#: stdio-common/../sysdeps/gnu/errlist.c:389 +#: stdio-common/../sysdeps/gnu/errlist.c:390 msgid "Network dropped connection on reset" msgstr "�� ������ ����� ��� ������� ���� ��� ���������" #. TRANS A socket operation failed because the network was down. -#: stdio-common/../sysdeps/gnu/errlist.c:378 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:156 +#: stdio-common/../sysdeps/gnu/errlist.c:379 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:157 msgid "Network is down" msgstr "�� ������ �� ����������" #. TRANS A socket operation failed because the subnet containing the remote host #. TRANS was unreachable. -#: stdio-common/../sysdeps/gnu/errlist.c:384 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:157 +#: stdio-common/../sysdeps/gnu/errlist.c:385 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:158 msgid "Network is unreachable" msgstr "�� ������ ��� ����� ������������" -#: stdio-common/../sysdeps/gnu/errlist.c:712 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:72 +#: 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 ����(structure)" -#: stdio-common/../sysdeps/gnu/errlist.c:820 +#: stdio-common/../sysdeps/gnu/errlist.c:821 msgid "No XENIX semaphores available" msgstr "��� ����� ���������� �� XENIX ���������" -#: posix/../sysdeps/posix/gai_strerror.c:36 +#: posix/../sysdeps/posix/gai_strerror.c:37 msgid "No address associated with hostname" msgstr "����� ��������� �� ��������� �� �� ����� ����������" -#: resolv/herror.c:77 +#: resolv/herror.c:71 msgid "No address associated with name" msgstr "����� ��������� ��� ��������� �� �� �����" -#: stdio-common/../sysdeps/gnu/errlist.c:732 +#: stdio-common/../sysdeps/gnu/errlist.c:733 msgid "No anode" msgstr "������ anode" #. 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:408 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:161 +#: stdio-common/../sysdeps/gnu/errlist.c:409 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:162 msgid "No buffer space available" msgstr "��� ������� ���������� ����� �����������" +#: locale/programs/ld-ctype.c:425 +#, fuzzy +msgid "No character set name specified in charmap" +msgstr "� ���������� <SP> ��� �������� ���� ����� ����������" + #. 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:89 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:39 +#: stdio-common/../sysdeps/gnu/errlist.c:90 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:40 msgid "No child processes" msgstr "����� ��������� ���������" -#: stdio-common/../sysdeps/gnu/errlist.c:652 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:90 +#: stdio-common/../sysdeps/gnu/errlist.c:653 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:91 msgid "No data available" msgstr "��� �������� ��������� ��������" -#: nis/nis_error.c:73 +#: locale/programs/ld-address.c:131 locale/programs/ld-collate.c:1500 +#: locale/programs/ld-ctype.c:407 locale/programs/ld-identification.c:132 +#: locale/programs/ld-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 +#, fuzzy, c-format +msgid "No definition for %s category found" +msgstr "�� ������� ���� ���������� ��� ������" + +#: nis/nis_error.c:74 msgid "No file space on server" msgstr "��� ������� ��������� ����� ���� �����������" +#: elf/ldconfig.c:532 +#, c-format +msgid "No link created since soname could not be found for %s" +msgstr "" + #. 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:547 +#: stdio-common/../sysdeps/gnu/errlist.c:548 msgid "No locks available" msgstr "��� �������� ��������� ����������" -#: posix/regex.c:1019 +#: posix/regex.c:1087 msgid "No match" msgstr "������ ���������" -#: stdio-common/../sysdeps/gnu/errlist.c:832 +#: stdio-common/../sysdeps/gnu/errlist.c:833 msgid "No medium found" msgstr "��� ������� ����" -#: stdio-common/../sysdeps/gnu/errlist.c:660 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:64 +#: 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 "������ ������ ���������� �����" -#: nis/ypclnt.c:789 +#: nis/ypclnt.c:802 msgid "No more records in map database" msgstr "��� �������� ����� ������������ ��� ����� ��� ����� ���������" -#: posix/regex.c:5569 +#: posix/regex.c:5955 msgid "No previous regular expression" msgstr "��� ������� ����������� �������� �������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:75 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:76 msgid "No record locks available" msgstr "��� �������� ��������� ���������� ��������" @@ -1977,107 +2671,113 @@ msgid "No remote programs registered.\n" msgstr "������ ������������� ��������� ��� ��������.\n" #. TRANS The remote host for a requested network connection is not reachable. -#: stdio-common/../sysdeps/gnu/errlist.c:474 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:177 +#: stdio-common/../sysdeps/gnu/errlist.c:475 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:178 msgid "No route to host" 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:208 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:57 +#: 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 "��� ������ ������� ����� ��� �������" #. 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:147 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:48 +#: stdio-common/../sysdeps/gnu/errlist.c:148 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:49 msgid "No such device" msgstr "��� ������� ������ �������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:35 +#. 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 "��� ������� ������ ������� � ���������" #. 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:31 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:31 +#: 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 "��� ������� ������ ������ � ���������" -#: nis/ypclnt.c:783 +#: nis/ypclnt.c:796 msgid "No such key in map" msgstr "��� ������� ������ ������ ��� �����" -#: nis/ypclnt.c:781 +#: nis/ypclnt.c:794 msgid "No such map in server's domain" msgstr "��� ������� ������� ������ ���� ����� ��� ����������" #. TRANS No process matches the specified process ID. -#: stdio-common/../sysdeps/gnu/errlist.c:36 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:32 +#: stdio-common/../sysdeps/gnu/errlist.c:37 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:33 msgid "No such process" msgstr "��� ������� ������ ���������" -#: nis/nis_error.c:60 +#: nis/nis_error.c:61 msgid "Non NIS+ namespace encountered" msgstr "�� �������� ����� �������� NIS+" -#: posix/../sysdeps/posix/gai_strerror.c:33 +#: posix/../sysdeps/posix/gai_strerror.c:34 msgid "Non-recoverable failure in name resolution" msgstr "��-�������������� ������ ���� ��� ������� ��������" -#: nis/nis_print.c:176 +#: nis/nis_print.c:177 msgid "None.\n" msgstr "������.\n" -#: stdio-common/../sysdeps/gnu/errlist.c:816 +#: stdio-common/../sysdeps/gnu/errlist.c:817 msgid "Not a XENIX named type file" msgstr "��� ����� XENIX ����� �������� �������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:106 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:107 msgid "Not a data message" msgstr "��� ����� ������ ���������" #. TRANS A file that isn't a directory was specified when a directory is required. -#: stdio-common/../sysdeps/gnu/errlist.c:152 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:49 +#: stdio-common/../sysdeps/gnu/errlist.c:153 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:50 msgid "Not a directory" msgstr "��� ����� ���������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:166 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:167 msgid "Not a name file" msgstr "��� ����� ������� ������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:89 +#: 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:167 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:168 msgid "Not available" msgstr "��� ����� ���������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:41 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:42 msgid "Not enough space" msgstr "��� ������� ������� �����" -#: nis/nis_error.c:30 +#: nis/nis_error.c:31 msgid "Not found" msgstr "�� �������" -#: nis/nis_error.c:48 +#: nis/nis_error.c:49 msgid "Not found, no such name" msgstr "�� �������, ������ ������ �����" -#: nis/nis_error.c:43 +#: nis/nis_error.c:44 msgid "Not master server for this domain" msgstr "��� ������� ������ ������������ ��� ����� ��� �����" -#: nis/nis_error.c:39 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:30 +#: nis/nis_error.c:40 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:31 msgid "Not owner" msgstr "��� ����� ����������" @@ -2093,47 +2793,47 @@ msgstr "��� ����� ����������" #. 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:591 +#: stdio-common/../sysdeps/gnu/errlist.c:592 msgid "Not supported" msgstr "��� �������������" -#: nis/nis_print.c:263 +#: nis/nis_print.c:264 #, c-format msgid "Number of Columns : %d\n" msgstr "������� ������ :%d\n" -#: nis/nis_print.c:362 +#: nis/nis_print.c:363 #, c-format msgid "Number of objects : %u\n" msgstr "������� ������������: %u\n" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:119 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:120 msgid "Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS" msgstr "� ������� ���������� ��������� ��� �������� ��� �������� ���������� ���������� �� MAXSYMLINKS" #. 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:240 +#: stdio-common/../sysdeps/gnu/errlist.c:241 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:246 +#: stdio-common/../sysdeps/gnu/errlist.c:247 msgid "Numerical result out of range" msgstr "�� ���������� ���������� ����� ��� ��� �� �����" -#: nis/nis_print.c:366 +#: nis/nis_print.c:367 #, c-format msgid "Object #%d:\n" msgstr "����������� #%d:\n" -#: nis/nis_print.c:316 +#: nis/nis_print.c:317 #, c-format msgid "Object Name : %s\n" msgstr "����� ������������ : %s\n" -#: nis/nis_print.c:328 +#: nis/nis_print.c:329 msgid "Object Type : " msgstr "����� ������������ :" @@ -2141,41 +2841,45 @@ msgstr "����� ������������ :" #. 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:514 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:95 +#: stdio-common/../sysdeps/gnu/errlist.c:515 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:96 msgid "Object is remote" msgstr "�� ����������� ����� �������������" -#: nis/nis_error.c:42 +#: nis/nis_error.c:43 msgid "Object with same name exists" msgstr "������� ����������� �� �� ���� �����" -#: timezone/zic.c:2023 +#: timezone/zic.c:2022 msgid "Odd number of quotation marks" msgstr "�������� ������� �����������" -#: nscd/nscd.c:191 nscd/nscd.c:211 nscd/nscd.c:217 +#: elf/ldconfig.c:134 +msgid "Only process directories specified on the command line. Don't build cache." +msgstr "" + +#: nscd/nscd.c:200 nscd/nscd.c:220 nscd/nscd.c:226 msgid "Only root is allowed to use this option!" msgstr "���� � ������������ ���������� �� �������������� ����� ��� �������!" #. TRANS An operation is already in progress on an object that has non-blocking #. TRANS mode selected. -#: stdio-common/../sysdeps/gnu/errlist.c:306 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:178 +#: stdio-common/../sysdeps/gnu/errlist.c:307 +#: 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:76 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:77 msgid "Operation canceled" msgstr "� ���������� ���������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:118 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:119 msgid "Operation not applicable" 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:24 +#: stdio-common/../sysdeps/gnu/errlist.c:25 msgid "Operation not permitted" msgstr "� ���������� ��� �����������" @@ -2185,12 +2889,12 @@ msgstr "� ���������� ��� �����������" #. 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:350 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:77 +#: stdio-common/../sysdeps/gnu/errlist.c:351 +#: 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:151 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:152 msgid "Operation not supported on transport endpoint" msgstr "� ���������� ��� ������������� ���� ���� ���� ��� ��������� ���������" @@ -2202,8 +2906,8 @@ msgstr "� ���������� ��� ������������� ���� ���� ���� ��� ��������� ���������" #. 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:300 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:179 +#: stdio-common/../sysdeps/gnu/errlist.c:301 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:180 msgid "Operation now in progress" msgstr "� ���������� ��������� ���� �� ��������" @@ -2212,23 +2916,28 @@ msgstr "� ���������� ��������� ���� �� ��������" #. TRANS #. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a #. TRANS separate error code. -#: stdio-common/../sysdeps/gnu/errlist.c:288 +#: stdio-common/../sysdeps/gnu/errlist.c:289 msgid "Operation would block" msgstr "� ���������� �� ������ �� ������(block)" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:128 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:129 msgid "Option not supported by protocol" msgstr "� ���������� ��� ������������� ��� �� ����������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:92 +#: locale/programs/localedef.c:103 +#, fuzzy +msgid "Optional output file prefix" +msgstr "�������� ���������� ������� ������" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:93 msgid "Out of stream resources" msgstr "��� ��������� ����� ����(stream)" -#: stdio-common/../sysdeps/gnu/errlist.c:664 +#: stdio-common/../sysdeps/gnu/errlist.c:665 msgid "Out of streams resources" msgstr "��� ��������� ����� ����(streams)" -#: iconv/iconv_prog.c:59 locale/programs/localedef.c:98 +#: iconv/iconv_prog.c:60 locale/programs/localedef.c:99 msgid "Output control:" msgstr "������� ������:" @@ -2236,237 +2945,240 @@ msgstr "������� ������:" msgid "Output selection:" msgstr "������� ������:" -#: nis/nis_print.c:318 +#: nis/nis_print.c:319 #, c-format msgid "Owner : %s\n" msgstr "���������� : %s\n" -#: nis/nis_print.c:126 +#: nis/nis_print.c:127 msgid "PRIVATE\n" msgstr "��������\n" -#: stdio-common/../sysdeps/gnu/errlist.c:756 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:94 +#: stdio-common/../sysdeps/gnu/errlist.c:757 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:95 msgid "Package not installed" msgstr "�� ������ ��� �������������" -#: nscd/nscd_conf.c:82 +#: nscd/nscd_conf.c:83 #, c-format msgid "Parse error: %s" msgstr "������ ������������: %s" -#: nis/nis_error.c:54 +#: nis/nis_error.c:55 msgid "Partial success" msgstr "������ ��������" -#: nis/nis_error.c:62 +#: nis/nis_error.c:63 msgid "Passed object is not the same object on server" msgstr "�� ��������� ����������� ��� ����� �� ���� ����������� ���� �����������" +#: elf/ldconfig.c:287 +#, c-format +msgid "Path `%s' given more than once" +msgstr "" + #. TRANS Permission denied; the file permissions do not allow the attempted operation. -#: nis/nis_error.c:38 nis/ypclnt.c:803 -#: stdio-common/../sysdeps/gnu/errlist.c:108 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:42 +#: nis/nis_error.c:39 nis/ypclnt.c:816 +#: stdio-common/../sysdeps/gnu/errlist.c:109 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:43 msgid "Permission denied" msgstr "������ ���������" -#: sysdeps/generic/siglist.h:71 sysdeps/gnu/siglist.h:65 +#: sysdeps/generic/siglist.h:71 msgid "Power failure" msgstr "�������� �����������" -#: posix/regex.c:1058 +#: posix/regex.c:1126 msgid "Premature end of regular expression" msgstr "������ ����� ��� ��������� ��������" -#: db2/makedb.c:63 -msgid "Print content of database file, one entry a line" -msgstr "�������� ��� ������������ ��� ������� �����, ��� ���������� �� ����" +#: elf/ldconfig.c:127 +msgid "Print cache" +msgstr "" -#: nscd/nscd.c:86 +#: nscd/nscd.c:89 msgid "Print current configuration statistic" msgstr "�������� ����������� ��� ��������� ���������" -#: locale/programs/localedef.c:104 +#: locale/programs/localedef.c:107 msgid "Print more messages" msgstr "�������� ������������ ���������" -#: argp/argp-parse.c:148 +#: argp/argp-parse.c:154 msgid "Print program version" msgstr "�������� ������� ������������" -#: nis/nis_error.c:29 +#: nis/nis_error.c:30 msgid "Probable success" msgstr "������ ��������" -#: nis/nis_error.c:31 +#: nis/nis_error.c:32 msgid "Probably not found" msgstr "������� �� �������" -#: stdio-common/../sysdeps/unix/siglist.c:52 sysdeps/generic/siglist.h:53 -#: sysdeps/gnu/siglist.h:47 +#: stdio-common/../sysdeps/unix/siglist.c:53 sysdeps/generic/siglist.h:53 msgid "Profiling timer expired" msgstr "� ������������� ��������������� �����" -#: stdio-common/../sysdeps/gnu/errlist.c:708 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:71 +#: stdio-common/../sysdeps/gnu/errlist.c:709 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:72 msgid "Protocol driver not attached" msgstr "� ������ ����������� ��� ���� ������������" -#: stdio-common/../sysdeps/gnu/errlist.c:676 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:100 +#: stdio-common/../sysdeps/gnu/errlist.c:677 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:101 msgid "Protocol error" msgstr "������ �����������" #. TRANS The socket communications protocol family you requested is not supported. -#: stdio-common/../sysdeps/gnu/errlist.c:355 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:152 +#: stdio-common/../sysdeps/gnu/errlist.c:356 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:153 msgid "Protocol family not supported" 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:328 +#: stdio-common/../sysdeps/gnu/errlist.c:329 msgid "Protocol not available" msgstr "��� ����� ��������� �� ����������" #. 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:335 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:149 +#: stdio-common/../sysdeps/gnu/errlist.c:336 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:150 msgid "Protocol not supported" msgstr "�� ���������� ��� �������������" #. TRANS The socket type does not support the requested communications protocol. -#: stdio-common/../sysdeps/gnu/errlist.c:322 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:127 +#: 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 "����� ����� ���������� ��� ��� �������(socket)" -#: nis/nis_error.c:64 +#: nis/nis_error.c:65 msgid "Query illegal for named table" msgstr "�� �������� ��������� ��� �� ������� ������" -#: stdio-common/../sysdeps/unix/siglist.c:28 sysdeps/generic/siglist.h:31 -#: sysdeps/gnu/siglist.h:25 +#: stdio-common/../sysdeps/unix/siglist.c:29 sysdeps/generic/siglist.h:31 msgid "Quit" msgstr "������" -#: stdio-common/../sysdeps/gnu/errlist.c:772 +#: stdio-common/../sysdeps/gnu/errlist.c:773 msgid "RFS specific error" msgstr "������������ �� RFS ������" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:539 +#: stdio-common/../sysdeps/gnu/errlist.c:540 msgid "RPC bad procedure for program" msgstr "RPC ���� ���������� ��� ���������" -#: nis/ypclnt.c:777 +#: nis/ypclnt.c:790 msgid "RPC failure on NIS operation" msgstr "�������� RPC �� ���������� ��� NIS" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:529 +#: stdio-common/../sysdeps/gnu/errlist.c:530 msgid "RPC program not available" msgstr "�� ��������� RPC ��� ����� ���������" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:534 +#: stdio-common/../sysdeps/gnu/errlist.c:535 msgid "RPC program version wrong" msgstr "� ������ ��� RPC ������������ ��� ����� �����" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:519 +#: stdio-common/../sysdeps/gnu/errlist.c:520 msgid "RPC struct is bad" msgstr "� RPC ���� ��� ����� �����" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:524 +#: stdio-common/../sysdeps/gnu/errlist.c:525 msgid "RPC version wrong" msgstr "� ������ ��� RPC ��� ����� �����" -#: sunrpc/clnt_perr.c:270 +#: sunrpc/clnt_perr.c:271 msgid "RPC: (unknown error code)" msgstr "RPC: (�������� ������� ���������)" -#: sunrpc/clnt_perr.c:189 +#: sunrpc/clnt_perr.c:190 msgid "RPC: Authentication error" msgstr "RPC: ������ ������������" -#: sunrpc/clnt_perr.c:169 +#: sunrpc/clnt_perr.c:170 msgid "RPC: Can't decode result" msgstr "RPC: ��� ����� ������� �� ���������������� �� ����������" -#: sunrpc/clnt_perr.c:165 +#: sunrpc/clnt_perr.c:166 msgid "RPC: Can't encode arguments" msgstr "RPC: ��� ����� ������� �� �������������� �� ����������" -#: sunrpc/clnt_perr.c:229 +#: sunrpc/clnt_perr.c:230 msgid "RPC: Failed (unspecified error)" msgstr "RPC: �������� (�� ����������� ������)" -#: sunrpc/clnt_perr.c:185 +#: sunrpc/clnt_perr.c:186 msgid "RPC: Incompatible versions of RPC" msgstr "RPC: �� �������� �������� ��� RPC" -#: sunrpc/clnt_perr.c:221 +#: sunrpc/clnt_perr.c:222 msgid "RPC: Port mapper failure" msgstr "RPC: �������� ����������� �����" -#: sunrpc/clnt_perr.c:201 +#: sunrpc/clnt_perr.c:202 msgid "RPC: Procedure unavailable" msgstr "RPC: �� ��������� ����������" -#: sunrpc/clnt_perr.c:225 +#: sunrpc/clnt_perr.c:226 msgid "RPC: Program not registered" msgstr "RPC: �� ��������� ��� ���� �����������" -#: sunrpc/clnt_perr.c:193 +#: sunrpc/clnt_perr.c:194 msgid "RPC: Program unavailable" msgstr "RPC: �� ��������� ���������" -#: sunrpc/clnt_perr.c:197 +#: sunrpc/clnt_perr.c:198 msgid "RPC: Program/version mismatch" msgstr "RPC: �������������� ������������/�������" -#: sunrpc/clnt_perr.c:209 +#: sunrpc/clnt_perr.c:210 msgid "RPC: Remote system error" msgstr "RPC: ������ ��������������� ����������" -#: sunrpc/clnt_perr.c:205 +#: sunrpc/clnt_perr.c:206 msgid "RPC: Server can't decode arguments" msgstr "RPC: � ����������� ��� ������ �� ���������������� ��� �����������" -#: sunrpc/clnt_perr.c:162 +#: sunrpc/clnt_perr.c:163 msgid "RPC: Success" msgstr "RPC: ��������" -#: sunrpc/clnt_perr.c:181 +#: sunrpc/clnt_perr.c:182 msgid "RPC: Timed out" msgstr "RPC: ���� ������" -#: sunrpc/clnt_perr.c:177 +#: sunrpc/clnt_perr.c:178 msgid "RPC: Unable to receive" msgstr "RPC: �������� �����" -#: sunrpc/clnt_perr.c:173 +#: sunrpc/clnt_perr.c:174 msgid "RPC: Unable to send" msgstr "RPC: �������� ���������" -#: sunrpc/clnt_perr.c:213 +#: sunrpc/clnt_perr.c:214 msgid "RPC: Unknown host" msgstr "RPC: ������� ����� ����������" -#: sunrpc/clnt_perr.c:217 +#: sunrpc/clnt_perr.c:218 msgid "RPC: Unknown protocol" msgstr "RPC: ������� ���������" -#: nis/nis_print.c:184 +#: nis/nis_print.c:185 #, c-format msgid "RSA (%d bits)\n" msgstr "RSA (%d bit)\n" -#: elf/dlsym.c:59 elf/dlvsym.c:62 +#: elf/dl-sym.c:68 elf/dl-sym.c:125 msgid "RTLD_NEXT used in code not dynamically loaded" msgstr "�� RTLD_NEXT ��� ��������������� ���� ������ ��� ��������� ��������" @@ -2474,71 +3186,77 @@ msgstr "�� RTLD_NEXT ��� ��������������� ���� ������ ��� ��������� ��������" msgid "Read and display shared object profiling data" msgstr "�������� ��� �������� ��������� ������ ��������������� ������������" -#: nscd/nscd.c:81 +#: nscd/nscd.c:84 msgid "Read configuration data from NAME" msgstr "�������� ��������� �������� ��� �� �����" #. TRANS An attempt was made to modify something on a read-only file system. -#: stdio-common/../sysdeps/gnu/errlist.c:218 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:59 +#: stdio-common/../sysdeps/gnu/errlist.c:219 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:60 msgid "Read-only file system" msgstr "����������-���� ������� �������" -#: string/strsignal.c:66 +#: string/strsignal.c:67 #, c-format msgid "Real-time signal %d" msgstr "���� �����������-������ %d" -#: posix/regex.c:1061 +#: posix/regex.c:1129 msgid "Regular expression too big" msgstr "���� ������ �������� �������" -#: stdio-common/../sysdeps/gnu/errlist.c:828 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:169 +#: stdio-common/../sysdeps/gnu/errlist.c:829 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:170 msgid "Remote I/O error" msgstr "������������� ������ �������/������" -#: stdio-common/../sysdeps/gnu/errlist.c:784 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:111 +#: stdio-common/../sysdeps/gnu/errlist.c:785 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:112 msgid "Remote address changed" msgstr "� ������������� ��������� ������" -#: inet/ruserpass.c:177 +#: inet/ruserpass.c:182 msgid "Remove password or make file unreadable by others." msgstr "������������ �� ����������� � ����� �� ������ ��-���������� ��� ���� ������." -#: elf/sprof.c:533 +#: elf/cache.c:394 +#, fuzzy, c-format +msgid "Renaming of %s to %s failed" +msgstr "�������� ������������� ��������� ��������" + +#: elf/sprof.c:532 #, c-format msgid "Reopening shared object `%s' failed" msgstr "�������� ���������� ���� ��� ��������������� ������������ `%s'" -#: nis/nis_print.c:170 +#: nis/nis_print.c:171 msgid "Replicate :\n" msgstr "����������� :\n" -#: argp/argp-help.c:1640 +#: argp/argp-help.c:1639 #, c-format msgid "Report bugs to %s.\n" msgstr "��������� �������� ��� %s.\n" -#: catgets/gencat.c:224 db2/makedb.c:229 iconv/iconv_prog.c:280 -#: locale/programs/locale.c:254 locale/programs/localedef.c:386 +#: catgets/gencat.c:233 debug/pcprofiledump.c:181 iconv/iconv_prog.c:337 +#: locale/programs/locale.c:256 locale/programs/localedef.c:297 +#: malloc/memusagestat.c:602 msgid "Report bugs using the `glibcbug' script to <bugs@gnu.org>.\n" msgstr "��������� �������� ��������������� �� `glibcbug' ��������� ��� <bugs@gnu.org>.\n" -#: nis/ypclnt.c:775 +#: nis/ypclnt.c:788 msgid "Request arguments bad" msgstr "���� ������ ����������" -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:170 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:171 msgid "Reserved for future use" msgstr "������������� ��� ���������� �����" -#: resolv/herror.c:73 +#: resolv/herror.c:67 msgid "Resolver Error 0 (no error)" msgstr "������ ������� ����������� 0 (������ ������)" -#: resolv/herror.c:117 +#: resolv/herror.c:107 msgid "Resolver internal error" msgstr "��������� ������ ��� ������� �����������" @@ -2546,12 +3264,11 @@ msgstr "��������� ������ ��� ������� �����������" #. 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:97 +#: stdio-common/../sysdeps/gnu/errlist.c:98 msgid "Resource deadlock avoided" msgstr "����������� �������� ������ �����" -#: stdio-common/../sysdeps/unix/siglist.c:54 sysdeps/generic/siglist.h:74 -#: sysdeps/gnu/siglist.h:68 +#: stdio-common/../sysdeps/unix/siglist.c:55 sysdeps/generic/siglist.h:74 msgid "Resource lost" msgstr "� ����� ������" @@ -2584,16 +3301,16 @@ msgstr "� ����� ������" #. 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:279 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:40 +#: stdio-common/../sysdeps/gnu/errlist.c:280 +#: 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:63 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:64 msgid "Result too large" msgstr "�� ���������� ����� ���� ������" -#: nis/nis_error.c:47 +#: nis/nis_error.c:48 msgid "Results sent to callback proc" msgstr "�� ������������ ��������� ��� ���������� ���������" @@ -2601,67 +3318,66 @@ msgstr "�� ������������ ��������� ��� ���������� ���������" msgid "SHOBJ [PROFDATA]" msgstr "SHOBJ [PROFDATA]" -#: nis/nis_print.c:33 +#: nis/nis_print.c:34 msgid "SUNYP" msgstr "SUNYP" -#: nis/nis_print.c:265 +#: nis/nis_print.c:266 #, c-format msgid "Search Path : %s\n" msgstr "�������� ����������: %s\n" -#: stdio-common/../sysdeps/unix/siglist.c:36 sysdeps/generic/siglist.h:38 -#: sysdeps/gnu/siglist.h:32 +#: stdio-common/../sysdeps/unix/siglist.c:37 sysdeps/generic/siglist.h:38 msgid "Segmentation fault" msgstr "������ ���������� (segmentation fault)" -#: nis/nis_error.c:35 +#: nis/nis_error.c:36 msgid "Server busy, try again" msgstr "� ������������ ����� �������������, ��������� ����" -#: nis/nis_error.c:41 +#: nis/nis_error.c:42 msgid "Server out of memory" msgstr "� ����� ��� ����������� �����������" -#: sunrpc/clnt_perr.c:335 +#: sunrpc/clnt_perr.c:336 msgid "Server rejected credential" msgstr "� ����������� �������� ��������������" -#: sunrpc/clnt_perr.c:343 +#: sunrpc/clnt_perr.c:344 msgid "Server rejected verifier" msgstr "� ����������� �������� ����������" -#: posix/../sysdeps/posix/gai_strerror.c:38 +#: posix/../sysdeps/posix/gai_strerror.c:39 msgid "Servname not supported for ai_socktype" msgstr "�� servname ��� ������������� ��� �� ai_socktype" -#: argp/argp-parse.c:89 +#: argp/argp-parse.c:95 msgid "Set the program name" msgstr "������� �������� ������������" -#: nscd/nscd.c:85 +#: nscd/nscd.c:88 msgid "Shut the server down" msgstr "������� ��� ����������� ��� �����������" -#: stdio-common/../sysdeps/unix/siglist.c:25 +#: stdio-common/../sysdeps/unix/siglist.c:26 msgid "Signal 0" msgstr "���� 0" #. TRANS A file that isn't a socket was specified when a socket is required. -#: stdio-common/../sysdeps/gnu/errlist.c:311 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:124 +#: 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 "���������� �������� �� ��-�������" #. TRANS The socket type is not supported. -#: stdio-common/../sysdeps/gnu/errlist.c:340 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:150 +#: stdio-common/../sysdeps/gnu/errlist.c:341 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:151 msgid "Socket type not supported" msgstr "� ����� ��� �������� ��� �������������" #. TRANS A network connection was aborted locally. -#: stdio-common/../sysdeps/gnu/errlist.c:394 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:159 +#: stdio-common/../sysdeps/gnu/errlist.c:395 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:160 msgid "Software caused connection abort" msgstr "�� ��������� ��������� ������� ��������" @@ -2669,16 +3385,16 @@ msgstr "�� ��������� ��������� ������� ��������" msgid "Sorry. You are not root\n" msgstr "��������. ��� ����� ������������\n" -#: locale/programs/localedef.c:94 +#: locale/programs/localedef.c:95 msgid "Source definitions are found in FILE" msgstr "�� ������� ���� ���������� ��� ������" -#: stdio-common/../sysdeps/gnu/errlist.c:764 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:98 +#: stdio-common/../sysdeps/gnu/errlist.c:765 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:99 msgid "Srmount error" msgstr "������ srmount" -#: sysdeps/generic/siglist.h:66 sysdeps/gnu/siglist.h:60 +#: sysdeps/generic/siglist.h:66 msgid "Stack fault" msgstr "������ �������" @@ -2686,75 +3402,75 @@ msgstr "������ �������" #. 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:506 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:180 +#: 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 ��������� �������" -#: nscd/nscd.c:84 +#: nscd/nscd.c:87 msgid "Start NUMBER threads" msgstr "������ ������� �������" -#: nis/nis_print.c:361 +#: nis/nis_print.c:362 #, c-format msgid "Status : %s\n" msgstr "��������� : %s\n" -#: stdio-common/../sysdeps/unix/siglist.c:43 sysdeps/generic/siglist.h:44 -#: sysdeps/gnu/siglist.h:38 +#: stdio-common/../sysdeps/unix/siglist.c:44 sysdeps/generic/siglist.h:44 msgid "Stopped" msgstr "���������" -#: stdio-common/../sysdeps/unix/siglist.c:42 sysdeps/generic/siglist.h:43 -#: sysdeps/gnu/siglist.h:37 +#: stdio-common/../sysdeps/unix/siglist.c:43 sysdeps/generic/siglist.h:43 msgid "Stopped (signal)" msgstr "��������� (����)" -#: stdio-common/../sysdeps/unix/siglist.c:46 sysdeps/generic/siglist.h:47 -#: sysdeps/gnu/siglist.h:41 +#: stdio-common/../sysdeps/unix/siglist.c:47 sysdeps/generic/siglist.h:47 msgid "Stopped (tty input)" msgstr "��������� (������� tty)" -#: stdio-common/../sysdeps/unix/siglist.c:47 sysdeps/generic/siglist.h:48 -#: sysdeps/gnu/siglist.h:42 +#: stdio-common/../sysdeps/unix/siglist.c:48 sysdeps/generic/siglist.h:48 msgid "Stopped (tty output)" msgstr "��������� (������ tty)" -#: stdio-common/../sysdeps/gnu/errlist.c:808 +#: stdio-common/../sysdeps/gnu/errlist.c:809 msgid "Streams pipe error" msgstr "������ ��������� ����" -#: stdio-common/../sysdeps/gnu/errlist.c:812 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:164 +#: stdio-common/../sysdeps/gnu/errlist.c:813 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:165 msgid "Structure needs cleaning" msgstr "� ���� ���������� ���������" -#: nis/nis_error.c:28 nis/ypclnt.c:773 nis/ypclnt.c:847 posix/regex.c:1016 -#: stdio-common/../sysdeps/gnu/errlist.c:19 +#: nis/nis_error.c:29 nis/ypclnt.c:786 nis/ypclnt.c:860 posix/regex.c:1084 +#: stdio-common/../sysdeps/gnu/errlist.c:20 msgid "Success" msgstr "��������" -#: locale/programs/localedef.c:103 +#: nss/getent.c:703 +msgid "Supported databases:" +msgstr "" + +#: locale/programs/localedef.c:106 msgid "Suppress warnings and information messages" msgstr "���������� �������������� ��� ��������� ������������" -#: locale/programs/localedef.c:92 +#: locale/programs/localedef.c:94 msgid "Symbolic character names defined in FILE" msgstr "�� ��������� ������� ���������� ��������� ��� ������" -#: posix/../sysdeps/posix/gai_strerror.c:40 +#: posix/../sysdeps/posix/gai_strerror.c:41 msgid "System error" msgstr "������ ����������" -#: locale/programs/locale.c:63 +#: locale/programs/locale.c:65 msgid "System information:" msgstr "����������� ����������:" -#: nis/ypclnt.c:853 +#: nis/ypclnt.c:866 msgid "System resource allocation failure" msgstr "�������� ��������� ����� ����������" -#: locale/programs/localedef.c:381 +#: locale/programs/localedef.c:292 #, c-format msgid "" "System's directory for character maps : %s\n" @@ -2767,29 +3483,28 @@ msgstr "" " �������� ������� ���������: %s\n" "%s" -#: nscd/nscd.c:87 +#: nscd/nscd.c:90 msgid "TABLE" msgstr "�������" -#: nis/nis_print.c:117 +#: nis/nis_print.c:118 msgid "TABLE\n" msgstr "�������\n" -#: nscd/nscd.c:89 +#: nscd/nscd.c:92 msgid "TABLE,yes" msgstr "�������,���" -#: nis/nis_print.c:262 +#: nis/nis_print.c:263 #, c-format msgid "Table Type : %s\n" msgstr "����� ������ : %s\n" -#: posix/../sysdeps/posix/gai_strerror.c:31 +#: posix/../sysdeps/posix/gai_strerror.c:32 msgid "Temporary failure in name resolution" msgstr "��������� �������� ���� ��� ������� ��������" -#: stdio-common/../sysdeps/unix/siglist.c:40 sysdeps/generic/siglist.h:41 -#: sysdeps/gnu/siglist.h:35 +#: stdio-common/../sysdeps/unix/siglist.c:41 sysdeps/generic/siglist.h:41 msgid "Terminated" msgstr "������������" @@ -2798,20 +3513,18 @@ msgstr "������������" #. 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:197 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:55 +#: stdio-common/../sysdeps/gnu/errlist.c:198 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:56 msgid "Text file busy" msgstr "������ �������� �� �����" -#: iconv/iconv_prog.c:578 +#: iconv/iconv_prog.c:627 +#, fuzzy 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" -" Some of the names are no plain strings but instead regular expressions and\n" -"they match a variety of names which can be given as parameters to the\n" -"program.\n" "\n" " " msgstr "" @@ -2825,30 +3538,38 @@ msgstr "" "\n" " " -#: nis/nis_print.c:223 +#: sunrpc/rpc_main.c:1364 +msgid "This implementation doesn't support newstyle or MT-safe code!\n" +msgstr "" + +#: nis/nis_print.c:224 msgid "Time to live : " msgstr "������ ���� :" -#: stdio-common/../sysdeps/gnu/errlist.c:680 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:91 +#: stdio-common/../sysdeps/gnu/errlist.c:681 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:92 msgid "Timer expired" msgstr "� ������������� �����" -#: nis/nis_error.c:55 +#: malloc/memusagestat.c:54 +msgid "Title string used in output graphic" +msgstr "" + +#: nis/nis_error.c:56 msgid "Too many attributes" 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:457 +#: stdio-common/../sysdeps/gnu/errlist.c:458 msgid "Too many levels of symbolic links" 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:225 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:60 +#: stdio-common/../sysdeps/gnu/errlist.c:226 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:61 msgid "Too many links" msgstr "���������� ������ ���������" @@ -2859,58 +3580,57 @@ msgstr "���������� ������ ���������" #. 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:175 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:53 +#: stdio-common/../sysdeps/gnu/errlist.c:176 +#: 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:182 +#: stdio-common/../sysdeps/gnu/errlist.c:183 msgid "Too many open files in system" 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:487 +#: stdio-common/../sysdeps/gnu/errlist.c:488 msgid "Too many processes" msgstr "���������� ������ ����������" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:439 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:173 +#: 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 "���������� ������ ������������ �������� ����������" +msgstr "���������� ������ �����������: �������� ����������" #. 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:493 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:123 +#: stdio-common/../sysdeps/gnu/errlist.c:494 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:124 msgid "Too many users" msgstr "���������� ������ �������" -#: stdio-common/../sysdeps/unix/siglist.c:30 sysdeps/generic/siglist.h:33 -#: sysdeps/gnu/siglist.h:27 +#: stdio-common/../sysdeps/unix/siglist.c:31 sysdeps/generic/siglist.h:33 msgid "Trace/breakpoint trap" msgstr "������ Trace/breakpoint" -#: posix/regex.c:1031 +#: posix/regex.c:1099 msgid "Trailing backslash" 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:614 +#: stdio-common/../sysdeps/gnu/errlist.c:615 msgid "Translator died" msgstr "� ����������� ������" #. TRANS You tried to connect a socket that is already connected. #. TRANS @xref{Connecting}. -#: stdio-common/../sysdeps/gnu/errlist.c:414 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:162 +#: 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 "� ���� ��������� ����� ��� �����������" @@ -2918,140 +3638,139 @@ msgstr "� ���� ��������� ����� ��� �����������" #. 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:422 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:163 +#: 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 "� ���� ��������� ��� ����� �����������" -#: argp/argp-help.c:1612 +#: argp/argp-help.c:1611 #, c-format msgid "Try `%s --help' or `%s --usage' for more information.\n" msgstr "��������� `%s --help' � `%s --usage' ��� ������������ �����������.\n" -#: inet/rcmd.c:150 -#, c-format -msgid "Trying %s...\n" -msgstr "����������� %s...\n" - -#: nis/nis_print.c:163 +#: nis/nis_print.c:164 #, c-format msgid "Type : %s\n" msgstr "�����: %s\n" -#: nis/nis_print.c:47 +#: nis/nis_print.c:48 msgid "UNKNOWN" msgstr "�������" -#: nis/nis_error.c:72 +#: nis/nis_error.c:73 msgid "Unable to authenticate NIS+ client" msgstr "������� � ��������������� ��� ������ NIS+" -#: nis/nis_error.c:71 +#: nis/nis_error.c:72 msgid "Unable to authenticate NIS+ server" msgstr "������� � ��������������� ��� ����������� NIS+" -#: nis/nis_error.c:46 +#: nis/nis_error.c:47 msgid "Unable to create callback" msgstr "������� � ���������� ����������� ���������" -#: nis/nis_error.c:74 +#: nis/nis_error.c:75 msgid "Unable to create process on server" msgstr "������� � ���������� ���������� ���� �����������" -#: nis/nis_print.c:190 +#: nis/nis_print.c:191 #, c-format msgid "Unknown (type = %d, bits = %d)\n" msgstr "������� (����� = %d, bit = %d)\n" -#: inet/ruserpass.c:263 +#: inet/ruserpass.c:274 #, c-format msgid "Unknown .netrc keyword %s" msgstr "������� .netrc ������� %s" -#: nis/ypclnt.c:807 +#: elf/../sysdeps/generic/readelflib.c:69 +#, c-format +msgid "Unknown ELFCLASS in file %s.\n" +msgstr "" + +#: nis/ypclnt.c:820 msgid "Unknown NIS error code" msgstr "�������� ������� ��������� NIS" -#: nss/getent.c:512 +#: nss/getent.c:771 #, c-format msgid "Unknown database: %s\n" msgstr "������� ���� ���������: %s\n" -#: posix/../sysdeps/posix/gai_strerror.c:51 +#: posix/../sysdeps/posix/gai_strerror.c:52 msgid "Unknown error" msgstr "������� ������" #: string/../sysdeps/generic/_strerror.c:48 -#: string/../sysdeps/mach/_strerror.c:87 -#: sysdeps/mach/hurd/mips/dl-machine.c:82 +#: string/../sysdeps/mach/_strerror.c:88 +#: sysdeps/mach/hurd/mips/dl-machine.c:83 msgid "Unknown error " msgstr "������� ������ " -#: resolv/herror.c:74 +#: resolv/herror.c:68 msgid "Unknown host" msgstr "������� ����� ����������" -#: nis/nis_error.c:34 +#: nis/nis_error.c:35 msgid "Unknown object" msgstr "������� �����������" -#: nscd/nscd_conf.c:179 +#: nscd/nscd_conf.c:187 #, c-format msgid "Unknown option: %s %s %s" msgstr "������� �������: %s %s %s" -#: resolv/herror.c:120 +#: resolv/herror.c:110 msgid "Unknown resolver error" msgstr "������� ������ ������� �����������" -#: resolv/herror.c:76 +#: resolv/herror.c:70 msgid "Unknown server error" msgstr "������� ������ ����������" -#: string/strsignal.c:70 +#: string/strsignal.c:71 #, c-format msgid "Unknown signal %d" msgstr "������� ���� %d" -#: misc/error.c:107 timezone/zic.c:386 +#: misc/error.c:114 timezone/zic.c:384 msgid "Unknown system error" msgstr "������� ������ ����������" -#: nis/ypclnt.c:855 +#: nis/ypclnt.c:868 msgid "Unknown ypbind error" msgstr "������� ������ ypbind" -#: posix/regex.c:1040 +#: posix/regex.c:1108 msgid "Unmatched ( or \\(" msgstr "���������� ( � \\(" -#: posix/regex.c:1064 +#: posix/regex.c:1132 msgid "Unmatched ) or \\)" msgstr "���������� ) � \\)" -#: posix/regex.c:1037 +#: posix/regex.c:1105 msgid "Unmatched [ or [^" msgstr "���������� [ � [^" -#: posix/regex.c:1043 +#: posix/regex.c:1111 msgid "Unmatched \\{" msgstr "���������� \\{" -#: posix/getconf.c:692 +#: posix/getconf.c:819 #, c-format msgid "Unrecognized variable `%s'" msgstr "�� ������������ ��������� `%s'" -#: stdio-common/../sysdeps/unix/siglist.c:41 sysdeps/generic/siglist.h:42 -#: sysdeps/gnu/siglist.h:36 +#: stdio-common/../sysdeps/unix/siglist.c:42 sysdeps/generic/siglist.h:42 msgid "Urgent I/O condition" msgstr "��������� ��������� �������/������" -#: argp/argp-help.c:1569 +#: argp/argp-help.c:1568 msgid "Usage:" msgstr "�����:" -#: posix/getconf.c:604 +#: posix/getconf.c:731 #, c-format msgid "Usage: %s variable_name [pathname]\n" msgstr "�����: %s �����_���������� [�����_���������]\n" @@ -3060,234 +3779,306 @@ msgstr "�����: %s �����_���������� [�����_���������]\n" msgid "Usage: rpcinfo [ -n portnum ] -u host prognum [ versnum ]\n" msgstr "�����: rpcinfo [ -n �����. ����� ] -u ������� �����. �������. [ �����. ������� ]\n" -#: nscd/nscd.c:89 +#: elf/ldconfig.c:132 +msgid "Use CACHE as cache file" +msgstr "" + +#: elf/ldconfig.c:133 +msgid "Use CONF as configuration file" +msgstr "" + +#: nscd/nscd.c:92 msgid "Use separate cache for each user" msgstr "����� ���������� ����������� ������ ��� ���� ������" -#: stdio-common/../sysdeps/unix/siglist.c:55 sysdeps/generic/siglist.h:55 -#: sysdeps/gnu/siglist.h:49 +#: stdio-common/../sysdeps/unix/siglist.c:56 sysdeps/generic/siglist.h:55 msgid "User defined signal 1" msgstr "������������ ��� ��� ������ ���� 1" -#: stdio-common/../sysdeps/unix/siglist.c:56 sysdeps/generic/siglist.h:56 -#: sysdeps/gnu/siglist.h:50 +#: stdio-common/../sysdeps/unix/siglist.c:57 sysdeps/generic/siglist.h:56 msgid "User defined signal 2" msgstr "������������ ��� ��� ������ ���� 2" -#: stdio-common/../sysdeps/gnu/errlist.c:672 -#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:108 +#: 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 "� ���� ����� ���� ������ ��� ����������� ���� ���������" -#: stdio-common/../sysdeps/unix/siglist.c:51 sysdeps/generic/siglist.h:52 -#: sysdeps/gnu/siglist.h:46 +#: stdio-common/../sysdeps/unix/siglist.c:52 sysdeps/generic/siglist.h:52 msgid "Virtual timer expired" msgstr "� ��������� ������������� �����" -#: timezone/zic.c:1927 +#: timezone/zic.c:1926 msgid "Wild result from command execution" msgstr "����� ���������� ��� ��� �������� ��� �������" -#: stdio-common/../sysdeps/unix/siglist.c:53 sysdeps/generic/siglist.h:54 -#: sysdeps/gnu/siglist.h:48 +#: stdio-common/../sysdeps/unix/siglist.c:54 sysdeps/generic/siglist.h:54 msgid "Window changed" msgstr "�� �������� ������" -#: locale/programs/locale.c:67 +#: locale/programs/locale.c:69 msgid "Write names of available charmaps" msgstr "������� �������� ����� ����������� ������� ����������" -#: locale/programs/locale.c:65 +#: locale/programs/locale.c:67 msgid "Write names of available locales" msgstr "������� �������� ��� ���������� ������� ���������" -#: locale/programs/locale.c:69 +#: locale/programs/locale.c:71 msgid "Write names of selected categories" msgstr "������� �������� ��� ����������� ����������" -#: locale/programs/locale.c:70 +#: locale/programs/locale.c:72 msgid "Write names of selected keywords" msgstr "������� �������� ��� ����������� ������-��������" -#: catgets/gencat.c:111 db2/makedb.c:59 +#: catgets/gencat.c:115 msgid "Write output to file NAME" msgstr "������� ������ ��� ������ �����" -#: catgets/gencat.c:242 db2/makedb.c:247 elf/sprof.c:361 -#: iconv/iconv_prog.c:299 locale/programs/locale.c:272 -#: locale/programs/localedef.c:405 nscd/nscd.c:282 nscd/nscd_nischeck.c:95 -#: nss/getent.c:71 posix/getconf.c:629 +#: elf/cache.c:366 elf/cache.c:375 elf/cache.c:379 +msgid "Writing of cache data failed" +msgstr "" + +#: elf/cache.c:383 +msgid "Writing of cache data failed." +msgstr "" + +#: catgets/gencat.c:251 elf/ldconfig.c:269 elf/sprof.c:361 +#: iconv/iconv_prog.c:356 locale/programs/locale.c:274 +#: locale/programs/localedef.c:316 nscd/nscd.c:292 nscd/nscd_nischeck.c:95 +#: nss/getent.c:68 posix/getconf.c:756 #, c-format msgid "Written by %s.\n" msgstr "��������� ��� %s.\n" -#: stdio-common/../sysdeps/gnu/errlist.c:836 +#: stdio-common/../sysdeps/gnu/errlist.c:837 msgid "Wrong medium type" msgstr "��������� ����� �����" -#: nis/nis_print.c:39 +#: nis/nis_print.c:40 msgid "X500" msgstr "X500" -#: nis/nis_print.c:43 +#: nis/nis_print.c:44 msgid "XCHS" msgstr "XCHS" -#: nis/ypclnt.c:171 +#: nis/ypclnt.c:174 #, c-format msgid "YPBINDPROC_DOMAIN: %s\n" msgstr "YPBINDPROC_DOMAIN: %s\n" -#: nis/nis_error.c:70 +#: nis/nis_error.c:71 msgid "Yes, 42 is the meaning of life" msgstr "���, � ������ ��� ���� ����� 42." #. TRANS You did @strong{what}? -#: stdio-common/../sysdeps/gnu/errlist.c:626 +#: stdio-common/../sysdeps/gnu/errlist.c:627 msgid "You really blew it this time" msgstr "���������� ��� ������ ���� �� ����" -#: timezone/zic.c:1089 +#: timezone/zic.c:1088 msgid "Zone continuation line end time is not after end time of previous line" msgstr "� ������ ������ ��� ������� ��������� ��� ����� ��� ����� ���� ��� �� ����� ������ ��� ������������ �������" -#: iconv/iconv_prog.c:70 +#: iconv/iconv_prog.c:73 msgid "[FILE...]" msgstr "[������...]" -#: sunrpc/pmap_clnt.c:71 +#: debug/pcprofiledump.c:59 +#, fuzzy +msgid "[FILE]" +msgstr "������" + +#: sunrpc/pmap_clnt.c:72 msgid "__get_myaddress: ioctl (get interface configuration)" msgstr "__get_myaddress: ioctl (���� ����������� �����������)" -#: locale/programs/charmap.c:480 locale/programs/locfile.c:477 -#: locale/programs/repertoire.c:290 +#: locale/programs/ld-collate.c:417 +#, c-format +msgid "`%.*s' already defined as collating element" +msgstr "" + +#: locale/programs/ld-collate.c:410 +#, c-format +msgid "`%.*s' already defined as collating symbol" +msgstr "" + +#: locale/programs/ld-collate.c:394 +#, c-format +msgid "`%.*s' already defined in charmap" +msgstr "" + +#: locale/programs/ld-collate.c:403 +#, c-format +msgid "`%.*s' already defined in repertoire" +msgstr "" + +#: locale/programs/charmap.c:599 locale/programs/locfile.h:96 +#: locale/programs/repertoire.c:314 #, c-format msgid "`%1$s' definition does not end with `END %1$s'" msgstr "� ������� `%1$s' ��� ��������� �� `END %1$s'" +#: locale/programs/ld-collate.c:1268 locale/programs/ld-ctype.c:1454 +#, fuzzy, c-format +msgid "`%s' and `%.*s' are no valid names for symbolic range" +msgstr "�� <%s> ��� <%s> ����� �� �������� ������� ��� ����" + #: elf/sprof.c:762 #, c-format msgid "`%s' is no correct profile data file for `%s'" msgstr "�� `%s' ��� ����� �� ����� ������ ��������� ������ ��� �� `%s'" -#: locale/programs/ld-monetary.c:369 locale/programs/ld-numeric.c:193 -#, c-format -msgid "`-1' must be last entry in `%s' field in `%s' category" -msgstr "`-1' ������ �� ����� � ��������� ���������� ��� `%s' ����� ��� `%s' ���������" - -#: locale/programs/ld-collate.c:1670 -msgid "`...' must only be used in `...' and `UNDEFINED' entries" -msgstr "�� `...' ������ �� ��������������� ���� �� `...' ��� `UNDEFINED' ������������" - -#: locale/programs/locfile.c:674 -msgid "`from' expected after first argument to `collating-element'" -msgstr "���������� `from' ���� ��� ����� ��������� ��� `collating-element'" - -#: locale/programs/ld-collate.c:1122 -msgid "`from' string in collation element declaration contains unknown character" +#: locale/programs/ld-ctype.c:691 +msgid "`digit' category has not entries in groups of ten" msgstr "" -"� ������� ���������� `from' ��� ������ ��� ��������� ��������� ��������\n" -"������� ���������" -#: posix/../sysdeps/posix/gai_strerror.c:34 +#: posix/../sysdeps/posix/gai_strerror.c:35 msgid "ai_family not supported" msgstr "�� ai_family ��� �������������" -#: posix/../sysdeps/posix/gai_strerror.c:39 +#: posix/../sysdeps/posix/gai_strerror.c:40 msgid "ai_socktype not supported" msgstr "�� ai_socktype ��� �������������" -#: nscd/nscd.c:127 +#: nscd/nscd.c:130 msgid "already running" msgstr "��������� ���" -#: locale/programs/charmap.c:352 locale/programs/repertoire.c:164 +#: locale/programs/charmap.c:434 locale/programs/repertoire.c:184 #, c-format msgid "argument to <%s> must be a single character" msgstr "� ���������� ��� <%s> ������ �� ����� ���� ����� ����������" -#: locale/programs/locfile.c:240 +#: locale/programs/locfile.c:124 #, c-format msgid "argument to `%s' must be a single character" msgstr "� ���������� ��� `%s' ������ �� ����� ���� ����� ����������" -#: sunrpc/auth_unix.c:310 +#: sunrpc/auth_unix.c:311 msgid "auth_none.c - Fatal marshalling problem" msgstr "auth_none.c - ������� ����� ���������" -#: sunrpc/auth_unix.c:105 sunrpc/auth_unix.c:111 sunrpc/auth_unix.c:141 +#: 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" -#: locale/programs/charmap.c:297 locale/programs/locfile.c:234 -#: locale/programs/locfile.c:261 locale/programs/repertoire.c:156 +#: locale/programs/charmap.c:364 locale/programs/locfile.c:118 +#: locale/programs/locfile.c:145 locale/programs/repertoire.c:176 msgid "bad argument" msgstr "���� ������" -#: inet/rcmd.c:326 +#: inet/rcmd.c:424 msgid "bad owner" msgstr "����� ����������" -#: timezone/zic.c:1211 +#: timezone/zic.c:1210 msgid "blank FROM field on Link line" msgstr "����� ����� FROM �� ������ Link" -#: timezone/zic.c:1215 +#: timezone/zic.c:1214 msgid "blank TO field on Link line" msgstr "����� ����� TO �� ������ Link" -#: malloc/mcheck.c:208 +#: malloc/mcheck.c:291 msgid "block freed twice\n" msgstr "�� ����� ������������ ��� �����\n" -#: malloc/mcheck.c:211 +#: malloc/mcheck.c:294 msgid "bogus mcheck_status, library is buggy\n" msgstr "�������� mcheck_status, � ���������� ����� ������������\n" -#: sunrpc/pmap_rmt.c:185 +#: sunrpc/pmap_rmt.c:186 msgid "broadcast: ioctl (get interface configuration)" msgstr "broadcast: ioctl (���� ��������� �����������)" -#: sunrpc/pmap_rmt.c:194 +#: sunrpc/pmap_rmt.c:195 msgid "broadcast: ioctl (get interface flags)" msgstr "broadcast: ioctl (���� ��������� ��������)" -#: login/programs/request.c:167 -msgid "buffer overflow" -msgstr "����������� ����������" - -#: sunrpc/svc_udp.c:446 +#: sunrpc/svc_udp.c:528 msgid "cache_set: could not allocate new rpc_buffer" msgstr "cache_set: �������� ��������� ���� rpc_buffer" -#: sunrpc/svc_udp.c:440 +#: sunrpc/svc_udp.c:522 msgid "cache_set: victim alloc failed" msgstr "cache_set: � �������� ������� �������" -#: sunrpc/svc_udp.c:429 +#: sunrpc/svc_udp.c:511 msgid "cache_set: victim not found" msgstr "cache_set: �� ���� ��� �������" -#: timezone/zic.c:1752 +#: timezone/zic.c:1751 msgid "can't determine time zone abbreviation to use just after until time" msgstr "" "��� ����� ������� �� ���������� � ���������� ��� ����� ���� ���\n" "�� �������������� ������ ���� �� 'until time'" -#: sunrpc/svc_simple.c:75 -#, c-format -msgid "can't reassign procedure number %d\n" +#: sunrpc/svc_simple.c:76 +#, fuzzy, c-format +msgid "can't reassign procedure number %ld\n" msgstr "��� ����� ������� �� ��������� � ������� ����������� %d\n" -#: locale/programs/localedef.c:276 +#: elf/dl-reloc.c:152 +msgid "can't restore segment prot after reloc" +msgstr "" + +#: locale/programs/localedef.c:487 #, c-format -msgid "cannot `stat' locale file `%s'" -msgstr "��� ����� ������� �� ����� `stat' �� locale ������ `%s'" +msgid "cannot add already read locale `%s' a second time" +msgstr "" + +#: elf/dl-deps.c:470 +#, fuzzy +msgid "cannot allocate dependency list" +msgstr "�������� ��������� ��������� ��������" + +#: elf/dl-load.c:1031 +#, fuzzy +msgid "cannot allocate memory for program header" +msgstr "��� ����� ������ �� ��������� �����" + +#: elf/dl-load.c:339 +#, fuzzy +msgid "cannot allocate name record" +msgstr "��� ����� ������ �� ��������� �����" -#: elf/sprof.c:931 elf/sprof.c:983 +#: elf/sprof.c:930 elf/sprof.c:982 msgid "cannot allocate symbol data" msgstr "�������� ��������� ��������� ��������" +#: elf/dl-deps.c:501 +#, fuzzy +msgid "cannot allocate symbol search list" +msgstr "�������� ��������� ��������� ��������" + +#: elf/dl-version.c:291 +#, fuzzy +msgid "cannot allocate version reference table" +msgstr "�������� ��������� ��������� ��������" + +#: elf/dl-load.c:1000 +#, fuzzy +msgid "cannot change memory protections" +msgstr "�������� ������������ ��� ������������ ������" + +#: elf/dl-load.c:533 +msgid "cannot create RUNPATH/RPATH copy" +msgstr "" + +#: elf/dl-load.c:418 elf/dl-load.c:518 elf/dl-load.c:546 elf/dl-load.c:593 +#: elf/dl-load.c:685 +#, fuzzy +msgid "cannot create cache for search path" +msgstr "��� ����� ������ � ���������� �������� ��� ������� rpc" + +#: elf/dl-support.c:191 +#, fuzzy +msgid "cannot create capability list" +msgstr "�������� �������� ��� ������" + #: elf/sprof.c:715 elf/sprof.c:773 msgid "cannot create internal descriptor" msgstr "�������� ����������� ���������� ����������" @@ -3296,44 +4087,72 @@ msgstr "�������� ����������� ���������� ����������" msgid "cannot create internal descriptors" msgstr "�������� ����������� ���������� �����������" +#: elf/dl-load.c:583 +#, fuzzy +msgid "cannot create search path array" +msgstr "�������� ����������� ���������� ����������" + +#: elf/dl-load.c:1137 +#, fuzzy +msgid "cannot create searchlist" +msgstr "�������� ��������� ��� ��� ������" + +#: elf/dl-load.c:822 elf/dl-load.c:1682 +#, fuzzy +msgid "cannot create shared object descriptor" +msgstr "�������� ����������� ���������� ����������" + +#: catgets/gencat.c:1316 +#, fuzzy +msgid "cannot determine escape character" +msgstr "�������� ����������� ���������� ����������" + +#: elf/dl-load.c:950 +msgid "cannot dynamically load executable" +msgstr "" + #: nscd/connections.c:183 #, c-format msgid "cannot enable socket to accept connections: %s" msgstr "������� � ������������ �������� ��� ������� ���������: %s" -#: sunrpc/rpc_main.c:341 +#: elf/dl-open.c:121 +msgid "cannot extend global scope" +msgstr "" + +#: sunrpc/rpc_main.c:343 #, c-format msgid "cannot find C preprocessor: %s \n" msgstr "�� ������� � ��������������� C: %s \n" -#: sunrpc/rpc_main.c:349 +#: sunrpc/rpc_main.c:351 msgid "cannot find any C preprocessor (cpp)\n" msgstr "�� ������� ������� ��������������� C (cpp)\n" -#: nscd/connections.c:224 +#: nscd/connections.c:225 #, c-format msgid "cannot handle old request version %d; current version is %d" msgstr "�� ������ �� ������������ � ������ ������� ������� %d� � �������� ������ ����� %d" -#: locale/programs/ld-collate.c:1328 -#, c-format -msgid "cannot insert collation element `%.*s'" -msgstr "�������� ��������� �������� ��������� `%.*s'" +#: elf/sprof.c:670 +msgid "cannot load profiling data" +msgstr "������� � ������� ��������� ������" -#: locale/programs/ld-collate.c:1507 locale/programs/ld-collate.c:1514 -msgid "cannot insert into result table" -msgstr "�������� ��������� ���� ������ �������������" +#: elf/dl-deps.c:586 +#, fuzzy +msgid "cannot load shared object file" +msgstr "�������� �������� ��������������� ������������ `%s'" -#: locale/programs/ld-collate.c:1179 locale/programs/ld-collate.c:1222 -#, c-format -msgid "cannot insert new collating symbol definition: %s" -msgstr "�������� ��������� ���� ������� �������� ���������: %s" +#: elf/dl-reloc.c:63 +msgid "cannot make segment writable for relocation" +msgstr "" -#: elf/sprof.c:670 -msgid "cannot load profiling data" +#: elf/dl-load.c:1016 +#, fuzzy +msgid "cannot map zero-fill pages" msgstr "������� � ������� ��������� ������" -#: inet/rcmd.c:322 +#: inet/rcmd.c:420 msgid "cannot open" msgstr "�������� ����������" @@ -3342,45 +4161,52 @@ msgstr "�������� ����������" msgid "cannot open `%s'" msgstr "�������� ���������� ��� `%s'" -#: db2/makedb.c:146 -#, c-format -msgid "cannot open database file `%s': %s" -msgstr "�������� ���������� ������� ������ ��������� `%s': %s" +#: debug/pcprofiledump.c:96 +#, fuzzy +msgid "cannot open input file" +msgstr "�������� ���������� ������� ������� `%s'" -#: catgets/gencat.c:273 db2/makedb.c:167 iconv/iconv_prog.c:177 +#: catgets/gencat.c:288 iconv/iconv_prog.c:225 #, c-format msgid "cannot open input file `%s'" msgstr "�������� ���������� ������� ������� `%s'" -#: locale/programs/localedef.c:195 +#: 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 "�������� ���������� ������� ������� locale `%s'" -#: iconv/iconv_prog.c:155 +#: iconv/iconv_prog.c:194 msgid "cannot open output file" msgstr "�������� ���������� ������� ������" -#: catgets/gencat.c:780 catgets/gencat.c:821 db2/makedb.c:181 +#: catgets/gencat.c:944 catgets/gencat.c:985 #, c-format msgid "cannot open output file `%s'" msgstr "�������� ���������� ������� ������ `%s'" -#: locale/programs/locfile.c:1135 +#: locale/programs/locfile.c:381 #, c-format msgid "cannot open output file `%s' for category `%s'" msgstr "�������� ���������� ������� ����� `%s' ��� ��� ��������� `%s'" +#: elf/dl-load.c:1695 +#, fuzzy +msgid "cannot open shared object file" +msgstr "�������� ���������� ������� ������" + #: nscd/connections.c:165 #, c-format msgid "cannot open socket: %s" msgstr "�������� ���������� ��������: %s" -#: locale/programs/ld-collate.c:1374 -msgid "cannot process order specification" -msgstr "�������� ������������ ��� ������������ ������" +#: elf/dl-load.c:814 +#, fuzzy +msgid "cannot open zero fill device" +msgstr "�������� ���������� ������� ������" -#: locale/programs/locale.c:449 +#: locale/programs/charmap-dir.c:61 #, c-format msgid "cannot read character map directory `%s'" msgstr "�������� ��������� ��������� ��� ����� ���������� `%s'" @@ -3389,280 +4215,256 @@ msgstr "�������� ��������� ��������� ��� ����� ���������� `%s'" msgid "cannot read configuration file; this is fatal" msgstr "�������� ��������� ������� ���������� ���� ����� �������" -#: login/programs/request.c:91 -msgid "cannot read from client" -msgstr "�������� ��������� ��� ��� ������" +#: elf/dl-load.c:838 elf/dl-load.c:1244 +#, fuzzy +msgid "cannot read file data" +msgstr "������� � ������� ��������� ������" + +#: debug/pcprofiledump.c:102 +#, fuzzy +msgid "cannot read header" +msgstr "�������� ��������� ��������� ��� �� `%s'" #: sysdeps/unix/sysv/linux/lddlibc4.c:68 #, c-format msgid "cannot read header from `%s'" msgstr "�������� ��������� ��������� ��� �� `%s'" -#: locale/programs/locale.c:306 +#: locale/programs/locale.c:308 #, c-format msgid "cannot read locale directory `%s'" msgstr "�������� ��������� ��������� locale `%s'" -#: locale/programs/localedef.c:300 -#, c-format -msgid "cannot read locale file `%s'" -msgstr "�������� ��������� ������� locale `%s'" +#: nscd/nscd_stat.c:128 +msgid "cannot read statistics data" +msgstr "������� � �������� ��������� �����������" -#: locale/programs/locfile.c:289 locale/programs/locfile.c:308 -#: locale/programs/locfile.c:327 locale/programs/locfile.c:346 -#: locale/programs/locfile.c:365 locale/programs/locfile.c:384 -#, c-format -msgid "cannot read repertoire map `%s'" +#: locale/programs/repertoire.c:331 +#, fuzzy +msgid "cannot safe new repertoire map" msgstr "�������� ��������� ������ ����������� `%s'" -#: nscd/nscd_stat.c:127 -msgid "cannot read statistics data" -msgstr "������� � �������� ��������� �����������" +#: elf/dl-load.c:776 +#, fuzzy +msgid "cannot stat shared object" +msgstr "�������� �������� ��������������� ������������ `%s'" #: nscd/cache.c:150 nscd/connections.c:151 #, c-format msgid "cannot stat() file `%s': %s" msgstr "�������� �����������(stat()) ������� `%s': %s" -#: locale/programs/localedef.c:325 +#: locale/programs/localedef.c:230 #, c-format msgid "cannot write output files to `%s'" msgstr "�������� �������� ������� ������ ��� `%s'" -#: nscd/connections.c:260 nscd/connections.c:281 +#: nscd/connections.c:261 nscd/connections.c:282 #, c-format msgid "cannot write result: %s" msgstr "�������� �������� �������������: %s" -#: nscd/nscd_stat.c:86 +#: nscd/nscd_stat.c:87 #, c-format msgid "cannot write statistics: %s" msgstr "�������� �������� �����������: %s" -#: login/programs/request.c:120 -msgid "cannot write to client" -msgstr "�������� �������� ��� ������" - -#: locale/programs/localedef.c:439 -msgid "category data requested more than once: should not happen" -msgstr "�� �������� ���������� ��������� ���� ��� ��� ����: ��� �� ������ �� ������" - -#: locale/programs/ld-ctype.c:278 +#: locale/programs/ld-ctype.c:509 #, c-format msgid "character '%s' in class `%s' must be in class `%s'" msgstr "� ���������� '%s' ���� ����� `%s' ������ �� ����� ���� ����� `%s'" -#: locale/programs/ld-ctype.c:303 +#: locale/programs/ld-ctype.c:524 #, c-format msgid "character '%s' in class `%s' must not be in class `%s'" msgstr "� ���������� '%s' ���� ����� `%s' ��� ������ �� ����� ���� ����� `%s'" -#: locale/programs/ld-ctype.c:405 +#: locale/programs/ld-ctype.c:579 msgid "character <SP> not defined in character map" msgstr "� ���������� <SP> ��� �������� ���� ����� ����������" -#: locale/programs/ld-ctype.c:355 -#, c-format -msgid "character L'%s' (index %Zd) in class `%s' must be in class `%s'" -msgstr "� ���������� L'%s' (������� %Zd) ���� ����� `%s' ������ �� ����� ���� ����� `%s'" +#: locale/programs/ld-ctype.c:453 +#, fuzzy, c-format +msgid "character L'\\u%0*x' in class `%s' must be in class `%s'" +msgstr "� ���������� '%s' ���� ����� `%s' ������ �� ����� ���� ����� `%s'" -#: locale/programs/ld-ctype.c:380 -#, c-format -msgid "character L'%s' (index %Zd) in class `%s' must not be in class `%s'" -msgstr "� ���������� L'%s' (������� %Zd) ���� ����� `%s' ��� ������ �� ����� ���� ����� `%s'" +#: locale/programs/ld-ctype.c:467 +#, fuzzy, c-format +msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'" +msgstr "� ���������� '%s' ���� ����� `%s' ��� ������ �� ����� ���� ����� `%s'" -#: locale/programs/ld-ctype.c:1107 locale/programs/ld-ctype.c:1183 -#: locale/programs/ld-ctype.c:1196 locale/programs/ld-ctype.c:1209 -#: locale/programs/ld-ctype.c:1222 locale/programs/ld-ctype.c:1235 -#: locale/programs/ld-ctype.c:1248 locale/programs/ld-ctype.c:1279 -#: locale/programs/ld-ctype.c:1292 locale/programs/ld-ctype.c:1343 -#: locale/programs/ld-ctype.c:1374 locale/programs/ld-ctype.c:1386 +#: locale/programs/ld-ctype.c:3030 #, c-format msgid "character `%s' not defined while needed as default value" msgstr "� ���������� `%s' ��� �������� ��� ���������� ��� �������������� ����" -#: locale/programs/ld-ctype.c:967 +#: locale/programs/ld-ctype.c:1215 #, c-format msgid "character class `%s' already defined" msgstr "� ����� ���������� `%s' �������� ���" -#: locale/programs/ld-ctype.c:999 +#: locale/programs/ld-ctype.c:1247 #, c-format msgid "character map `%s' already defined" msgstr "� ������ ���������� `%s' �������� ���" -#: locale/programs/charmap.c:83 +#: locale/programs/charmap.c:249 +#, c-format +msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n" +msgstr "" + +#: locale/programs/charmap.c:135 #, c-format msgid "character map file `%s' not found" msgstr "�� ������ ����� ���������� `%s' ��� �������" -#: sunrpc/clnt_raw.c:110 +#: locale/programs/charmap.c:460 +msgid "character sets with locking states are not supported" +msgstr "" + +#: locale/programs/localedef.c:482 +msgid "circular dependencies between locale definitions" +msgstr "" + +#: sunrpc/clnt_raw.c:111 msgid "clnt_raw.c - Fatal header serialization error." msgstr "clnt_raw.c - ������� ������ ��������������� ������������" -#: sunrpc/clnt_tcp.c:125 sunrpc/clnt_tcp.c:133 +#: sunrpc/clnt_tcp.c:126 sunrpc/clnt_tcp.c:134 msgid "clnttcp_create: out of memory\n" msgstr "clnttcp_create: � ����� �����������\n" -#: sunrpc/clnt_udp.c:125 sunrpc/clnt_udp.c:135 +#: sunrpc/clnt_udp.c:131 sunrpc/clnt_udp.c:141 msgid "clntudp_create: out of memory\n" msgstr "clntudp_create: � ����� �����������\n" -#: sunrpc/clnt_unix.c:123 sunrpc/clnt_unix.c:131 +#: sunrpc/clnt_unix.c:124 sunrpc/clnt_unix.c:132 msgid "clntunix_create: out of memory\n" msgstr "clntunix_create: � ����� �����������\n" -#: locale/programs/ld-collate.c:1343 -#, c-format -msgid "collation element `%.*s' appears more than once: ignore line" -msgstr "" -"�� �������� ��������� `%.*s' ����������� ������������ ��� ��� �����:\n" -"��������� � ������" - -#: locale/programs/ld-collate.c:1361 -#, c-format -msgid "collation symbol `%.*s' appears more than once: ignore line" -msgstr "" -"�� ������� ��������� `%.*s' ����������� ������������ ��� ��� �����:\n" -"��������� � ������" - -#: locale/programs/locfile.c:658 -#, c-format -msgid "collation symbol expected after `%s'" -msgstr "���������� ������� ��������� ���� �� `%s'" - -#: inet/rcmd.c:143 -#, c-format -msgid "connect to address %s: " -msgstr "������� ��� ��������� %s: " - -#: sunrpc/rpc_scan.c:115 +#: sunrpc/rpc_scan.c:116 msgid "constant or identifier expected" msgstr "���������� ������� � �������������" -#: iconv/iconv_prog.c:144 +#: iconv/iconv_prog.c:182 #, c-format msgid "conversion from `%s' to `%s' not supported" msgstr "� ��������� ��� `%s' �� `%s' ��� ������������" -#: iconv/iconv_prog.c:328 iconv/iconv_prog.c:353 +#: catgets/gencat.c:1290 +#, fuzzy +msgid "conversion modules not available" +msgstr "�� ��������� %lu ������� %lu ��� ����� ���������\n" + +#: locale/programs/ld-monetary.c:900 +msgid "conversion rate value cannot be zero" +msgstr "" + +#: iconv/iconv_prog.c:385 iconv/iconv_prog.c:410 msgid "conversion stopped due to problem in writing the output" msgstr "� ��������� ��������� ���� ����������� ���� ������� ��� ������" -#: sunrpc/svc_simple.c:83 +#: sunrpc/svc_simple.c:84 msgid "couldn't create an rpc server\n" msgstr "�������� ����������� rpc ����������\n" -#: sunrpc/svc_simple.c:91 -#, c-format -msgid "couldn't register prog %d vers %d\n" +#: sunrpc/svc_simple.c:92 +#, fuzzy, c-format +msgid "couldn't register prog %ld vers %ld\n" msgstr "�������� ����������� �����. %d ���. %d\n" -#: nss/getent.c:50 +#: nss/getent.c:51 msgid "database [key ...]" msgstr "����_��������� [������ ...]" -#: locale/programs/charmap.c:170 +#: locale/programs/charmap.c:192 #, c-format msgid "default character map file `%s' not found" msgstr "�� �������������� ������ ����� ���������� `%s' ��� �������" -#: locale/programs/ld-time.c:163 -#, c-format -msgid "direction flag in string %d in `era' field in category `%s' is not '+' nor '-'" -msgstr "" -"� ������������� ������ ��� ������������� %d ��� ����� `era' ����\n" -"��������� `%s' ��� ����� '+' ���� '-'" - -#: locale/programs/ld-time.c:174 -#, c-format -msgid "direction flag in string %d in `era' field in category `%s' is not a single character" -msgstr "" -"� ������������� ������ ��� ������������� %d ��� ����� `era' ����\n" -"��������� `%s' ��� ����� ���� ����������" - -#: locale/programs/charset.c:64 locale/programs/charset.c:118 -#, c-format -msgid "duplicate character name `%s'" -msgstr "����� ����� ��������� `%s'" - -#: locale/programs/ld-collate.c:1154 -msgid "duplicate collating element definition" -msgstr "������ ������� ��������� ���������" +#: locale/programs/charmap.c:392 +#, fuzzy, c-format +msgid "duplicate definition of <%s>" +msgstr "������ ������� �������" -#: locale/programs/ld-collate.c:1301 -#, c-format -msgid "duplicate definition for character `%.*s'" +#: locale/programs/ld-collate.c:3043 +#, fuzzy, c-format +msgid "duplicate definition of script `%s'" msgstr "������ ������� ��� ��� ��������� `%.*s'" -#: db2/makedb.c:328 -msgid "duplicate key" -msgstr "����� ������" - -#: catgets/gencat.c:389 +#: catgets/gencat.c:430 msgid "duplicate set definition" msgstr "������ ������� �������" -#: timezone/zic.c:1004 +#: timezone/zic.c:1003 #, c-format msgid "duplicate zone name %s (file \"%s\", line %d)" msgstr "����� ����� ����� %s (������ \"%s\", ������ %d)" -#: catgets/gencat.c:556 +#: locale/programs/ld-ctype.c:2557 +#, fuzzy, c-format +msgid "duplicated definition for mapping `%s'" +msgstr "������ ������� ��� ��� ��������� `%.*s'" + +#: catgets/gencat.c:631 msgid "duplicated message identifier" msgstr "������ ������������� ���������" -#: catgets/gencat.c:528 +#: catgets/gencat.c:603 msgid "duplicated message number" msgstr "������ ������� ���������" -#: sunrpc/rpc_scan.c:382 +#: locale/programs/ld-ctype.c:2368 +msgid "ellipsis range must be marked by two operands of same type" +msgstr "" + +#: sunrpc/rpc_scan.c:383 msgid "empty char string" msgstr "���� �������������" -#: locale/programs/ld-collate.c:1714 -msgid "empty weight name: line ignored" -msgstr "����� �������� ��������: ������ ���������" +#: elf/dl-open.c:223 +msgid "empty dynamic string token substitution" +msgstr "" -#: sunrpc/svc_udp.c:372 +#: sunrpc/svc_udp.c:454 msgid "enablecache: cache already enabled" msgstr "enablecache: � ���������� ����� ����� ��� ��������������" -#: sunrpc/svc_udp.c:378 +#: sunrpc/svc_udp.c:460 msgid "enablecache: could not allocate cache" msgstr "enablecache: �������� ��������� ����������� ������" -#: sunrpc/svc_udp.c:386 +#: sunrpc/svc_udp.c:468 msgid "enablecache: could not allocate cache data" msgstr "enablecache: �������� ��������� ��������� ����������� ������" -#: sunrpc/svc_udp.c:393 +#: sunrpc/svc_udp.c:475 msgid "enablecache: could not allocate cache fifo" msgstr "enablecache: �������� ��������� fifo ����������� ������" -#: iconv/iconv_prog.c:56 +#: iconv/iconv_prog.c:57 msgid "encoding for output" msgstr "������������ ��� �����" -#: iconv/iconv_prog.c:55 +#: iconv/iconv_prog.c:56 msgid "encoding of original text" msgstr "������������ ��� �� ������ �������" -#: locale/programs/ld-collate.c:1433 -msgid "end point of ellipsis range is bigger then start" -msgstr "�� ������ ������ ��� ������ ��� �������� ����� ���������� ��� �� ������" - -#: nscd/connections.c:357 nscd/connections.c:444 +#: nscd/connections.c:361 nscd/connections.c:453 #, c-format msgid "error getting callers id: %s" msgstr "������ ��� ���� ��� ���������� ����� ��� ������: %s" -#: iconv/iconv_prog.c:193 +#: locale/programs/ld-collate.c:3013 +msgid "error while adding equivalent collating symbol" +msgstr "" + +#: iconv/iconv_prog.c:242 #, c-format msgid "error while closing input `%s'" msgstr "������ ���� �� �������� ��� ������� `%s'" -#: iconv/iconv_prog.c:239 +#: iconv/iconv_prog.c:288 msgid "error while closing output file" msgstr "������ ���� �� �������� ��� ������� ������" @@ -3670,23 +4472,15 @@ msgstr "������ ���� �� �������� ��� ������� ������" msgid "error while closing the profiling data file" msgstr "������ ���� �� �������� ��� ������� ��������� ������" -#: locale/programs/ld-collate.c:1162 -msgid "error while inserting collation element into hash table" -msgstr "������ ���� ��� �������� ��������� ��������� ���� hash ������" - -#: locale/programs/ld-collate.c:1174 -msgid "error while inserting to hash table" -msgstr "������ ���� ��� �������� ���� hash ������" - -#: iconv/iconv_prog.c:417 iconv/iconv_prog.c:448 +#: iconv/iconv_prog.c:474 iconv/iconv_prog.c:505 msgid "error while reading the input" msgstr "������ ���� ��� �������� ��� �������" -#: locale/programs/locfile.c:601 +#: locale/programs/locfile.h:59 msgid "expect string argument for `copy'" msgstr "���������� ������� ���������� ��� `copy'" -#: timezone/zic.c:894 +#: timezone/zic.c:893 msgid "expected continuation line not found" msgstr "���������� ������ ��������� ��� ��� �������" @@ -3699,71 +4493,52 @@ msgstr "�������� �������� ��������������� ������������ `%s'" msgid "failed to load symbol data" msgstr "�������� �������� ��������� ��������" +#: elf/dl-load.c:763 +#, fuzzy +msgid "failed to map segment from shared object" +msgstr "�������� �������� ��������������� ������������ `%s'" + #: elf/sprof.c:698 msgid "failed to mmap the profiling data file" msgstr "�������� ��� ���������� mmap ��� �� ������ ��������� ������" -#: iconv/iconv_prog.c:147 +#: iconv/iconv_prog.c:186 msgid "failed to start conversion processing" msgstr "�������� ���� ������ ��� ������������ ����������" -#: locale/programs/locfile.c:1160 +#: locale/programs/locfile.c:406 #, c-format msgid "failure while writing data for category `%s'" msgstr "�������� ���� ��� ������� ��������� ��� ��� ��������� `%s'" -#: nis/nis_call.c:155 +#: nis/nis_call.c:156 msgid "fcntl: F_SETFD" msgstr "fcntl: F_SETFD" -#: locale/programs/ld-messages.c:86 locale/programs/ld-messages.c:110 -#: locale/programs/ld-monetary.c:163 locale/programs/ld-numeric.c:98 -#, c-format -msgid "field `%s' in category `%s' undefined" -msgstr "�� ����� `%s' ���� ��������� `%s' ��� ��������" - -#: sunrpc/rpc_main.c:1146 +#. TRANS: the file will not be removed; this is an +#. TRANS: informative message. +#: sunrpc/rpc_main.c:1150 #, c-format msgid "file `%s' already exists and may be overwritten\n" msgstr "�� ������ `%s' ������� ��� ��� ������ �� �����������\n" -#: locale/programs/locfile.c:683 -msgid "from-value of `collating-element' must be a string" -msgstr "� ���� from ��� `��������� ���������' ������ �� ����� �������������" +#: elf/dl-load.c:1244 +#, fuzzy +msgid "file too short" +msgstr "���� ������ ������" -#: inet/rcmd.c:324 +#: inet/rcmd.c:422 msgid "fstat failed" msgstr "�� fstat �������" -#: locale/programs/linereader.c:333 +#: locale/programs/linereader.c:383 msgid "garbage at end of character code specification" msgstr "��������� ��� ����� ��� ��������������� ��� ������ ����������" -#: locale/programs/linereader.c:219 +#: locale/programs/linereader.c:271 msgid "garbage at end of number" msgstr "��������� ��� ����� ��� �������" -#: locale/programs/ld-time.c:195 -#, c-format -msgid "garbage at end of offset value in string %d in `era' field in category `%s'" -msgstr "" -"��������� ��� ����� ����������������(offset) ����� ��� ������������� %d\n" -"��� ����� `era' ���� ��������� `%s'" - -#: locale/programs/ld-time.c:252 -#, c-format -msgid "garbage at end of starting date in string %d in `era' field in category `%s'" -msgstr "" -"��������� ��� ����� ��� ����������� ������� ��� ������������� %d\n" -"��� ����� `era' ���� ��������� `%s'" - -#: locale/programs/ld-time.c:328 -#, c-format -msgid "garbage at end of stopping date in string %d in `era' field in category `%s'" -msgstr "" -"��������� ��� ����� ��� ����������� ����������� ��� ������������� %d\n" -"��� ����� `era' ���� ��������� `%s'" - #: elf/sprof.c:77 msgid "generate call graph" msgstr "���������� ������ �������" @@ -3772,210 +4547,245 @@ msgstr "���������� ������ �������" msgid "generate flat profile with counts and ticks" msgstr "���������� ������� ������ �� ���������" -#: sunrpc/get_myaddr.c:77 +#: sunrpc/get_myaddr.c:78 msgid "get_myaddress: ioctl (get interface configuration)" msgstr "get_myaddress: ioctl (���� ����������� ��������)" -#: nss/getent.c:54 +#: nss/getent.c:702 msgid "getent - get entries from administrative database." msgstr "getent - ���� ������������ ��� ������������� ����." -#: nscd/connections.c:219 +#: nscd/connections.c:220 #, c-format msgid "handle_request: request received (Version = %d)" msgstr "handle_request: ���� ������� (������ = %d)" -#: timezone/zic.c:638 +#: timezone/zic.c:637 msgid "hard link failed, symbolic link used" msgstr "� �������� ��������� �������, �� �������������� ���������� ���������" -#: inet/rcmd.c:330 +#: inet/rcmd.c:428 msgid "hard linked somewhere" msgstr "������� ����������� �����" -#: timezone/zic.c:1188 +#: locale/programs/charmap.c:981 locale/programs/repertoire.c:430 +msgid "hexadecimal range format should use only capital characters" +msgstr "" + +#: timezone/zic.c:1187 msgid "illegal CORRECTION field on Leap line" msgstr "�� ������ CORRECTION ����� ��� ������ ���������� (Leap)" -#: timezone/zic.c:1192 +#: timezone/zic.c:1191 msgid "illegal Rolling/Stationary field on Leap line" msgstr "�� ������ Rolling/Stationary ����� ��� ������ ���������� (Leap)" -#: locale/programs/ld-collate.c:1786 -msgid "illegal character constant in string" -msgstr "�� ������� �������� ���������� ��� �������������" - -#: sunrpc/rpc_scan.c:311 +#: sunrpc/rpc_scan.c:312 msgid "illegal character in file: " msgstr "�� ������� ���������� ��� ������: " -#: locale/programs/ld-collate.c:1129 -msgid "illegal collation element" -msgstr "�� ������ �������� ���������" - -#: locale/programs/charmap.c:281 -msgid "illegal definition" -msgstr "�� ������� �������" - -#: locale/programs/charmap.c:434 -msgid "illegal encoding given" -msgstr "������ �� ������ ������������" - -#: locale/programs/linereader.c:551 +#: locale/programs/linereader.c:595 msgid "illegal escape sequence at end of string" msgstr "�� ������ ���������� �������� ��� ����� ��� ��������������" -#: iconv/iconv_prog.c:370 +#: iconv/iconv_prog.c:427 #, c-format msgid "illegal input sequence at position %ld" msgstr "�� ������ ��������� ������� ��� ���� %ld" -#: locale/programs/charset.c:78 -msgid "illegal names for character range" -msgstr "�� ������ ������� ��� �� ����� ����������" - -#: sunrpc/rpc_main.c:461 +#: sunrpc/rpc_main.c:463 #, c-format msgid "illegal nettype :`%s'\n" msgstr "����������� ����� ������� :`%s'\n" -#: locale/programs/ld-time.c:187 -#, c-format -msgid "illegal number for offset in string %d in `era' field in category `%s'" -msgstr "�� ������� ������� ��� ������������ ��o ������������� %d ��� ����� `era' ���� ��������� `%s'" - -#: catgets/gencat.c:362 catgets/gencat.c:439 +#: catgets/gencat.c:403 catgets/gencat.c:480 msgid "illegal set number" msgstr "�� ������� ������� ���" -#: locale/programs/ld-time.c:243 -#, c-format -msgid "illegal starting date in string %d in `era' field in category `%s'" -msgstr "�� ������ ���������� ������� ��� ������������� %d ��� ����� `era'���� ��������� `%s'" - -#: locale/programs/ld-time.c:319 -#, c-format -msgid "illegal stopping date in string %d in `era' field in category `%s'" -msgstr "�� ������ ���������� ����������� ��� ������������� %d ��� ����� `era'���� ��������� `%s'" - -#: locale/programs/ld-ctype.c:973 -#, c-format -msgid "implementation limit: no more than %d character classes allowed" +#: locale/programs/ld-ctype.c:1221 +#, fuzzy, c-format +msgid "implementation limit: no more than %Zd character classes allowed" msgstr "���� ����������: ��� ������������ ���� ��� %d ������� ����������" -#: locale/programs/ld-ctype.c:1005 +#: locale/programs/ld-ctype.c:1253 #, c-format msgid "implementation limit: no more than %d character maps allowed" msgstr "���� ����������: ��� ������������ ���� ��� %d ������ ����������" -#: iconv/iconv_prog.c:374 +#: iconv/iconv_prog.c:431 msgid "incomplete character or shift sequence at end of buffer" msgstr "�� ������ ���������� � ���������� ���������� ��� ����� ��� ����������" -#: db2/makedb.c:148 -msgid "incorrectly formatted file" -msgstr "������ ����� ������������" - -#: timezone/zic.c:851 +#: timezone/zic.c:850 msgid "input line of unknown type" msgstr "������ ��������� �������� �����" -#: iconv/iconv_prog.c:378 +#: elf/dl-load.c:1291 +#, fuzzy +msgid "internal error" +msgstr "��������� ������ NIS" + +#: iconv/iconv_prog.c:435 msgid "internal error (illegal descriptor)" msgstr "��������� ������ (����������� �����������)" -#: timezone/zic.c:1814 +#: timezone/zic.c:1813 msgid "internal error - addtype called with bad isdst" msgstr "��������� ������ - ������� � addtype �� ���� isdst" -#: timezone/zic.c:1822 +#: timezone/zic.c:1821 msgid "internal error - addtype called with bad ttisgmt" msgstr "��������� ������ - ������� � addtype �� ���� ttisgmt" -#: timezone/zic.c:1818 +#: timezone/zic.c:1817 msgid "internal error - addtype called with bad ttisstd" msgstr "��������� ������ - ������� � addtype �� ���� ttisstd" -#: locale/programs/ld-ctype.c:315 locale/programs/ld-ctype.c:392 +#: locale/programs/ld-ctype.c:480 locale/programs/ld-ctype.c:536 #, c-format msgid "internal error in %s, line %u" msgstr "��������� ������ ��� %s, ������ %u" -#: timezone/zic.c:1060 +#: elf/dl-load.c:1264 +#, fuzzy +msgid "invalid ELF header" +msgstr "�� ������� ������ �����" + +#: timezone/zic.c:1059 msgid "invalid UTC offset" msgstr "�� ������ ���������� UTC" -#: timezone/zic.c:1063 +#: timezone/zic.c:1062 msgid "invalid abbreviation format" msgstr "�� ������ ���������� �����������" -#: timezone/zic.c:1153 timezone/zic.c:1365 timezone/zic.c:1379 +#: catgets/gencat.c:687 +#, fuzzy +msgid "invalid character: message ignored" +msgstr "�� ������� ���������� �������� ������" + +#: timezone/zic.c:1152 timezone/zic.c:1364 timezone/zic.c:1378 msgid "invalid day of month" msgstr "�� ������ ���� ��� ����" -#: timezone/zic.c:1317 +#: locale/programs/charmap.c:347 +#, fuzzy +msgid "invalid definition" +msgstr "�� ������� �������" + +#: locale/programs/charmap.c:542 +#, fuzzy +msgid "invalid encoding given" +msgstr "������ �� ������ ������������" + +#: timezone/zic.c:1316 msgid "invalid ending year" msgstr "�� ������� ������ �����" -#: timezone/zic.c:1125 +#: catgets/gencat.c:1147 locale/programs/linereader.c:533 +#, fuzzy +msgid "invalid escape sequence" +msgstr "�� ������ ������� ���" + +#: timezone/zic.c:1124 msgid "invalid leaping year" msgstr "�� ������� ������ ��������" -#: elf/dl-open.c:223 +#: catgets/gencat.c:726 +#, fuzzy +msgid "invalid line" +msgstr "�� ������� ������ ��������" + +#: elf/dl-open.c:371 msgid "invalid mode for dlopen()" msgstr "�� ������ ��������� ��� ��� dlopen()" -#: timezone/zic.c:1140 timezone/zic.c:1243 +#: timezone/zic.c:1139 timezone/zic.c:1242 msgid "invalid month name" msgstr "�� ������ ����� ����" -#: timezone/zic.c:959 +#: locale/programs/charmap.c:969 locale/programs/ld-collate.c:2869 +#: locale/programs/repertoire.c:418 +#, fuzzy +msgid "invalid names for character range" +msgstr "�� ������ ������� ��� �� ����� ����������" + +#: debug/pcprofiledump.c:166 +#, fuzzy +msgid "invalid pointer size" +msgstr "�� ������ ����� ����" + +#: catgets/gencat.c:549 +#, fuzzy +msgid "invalid quote character" +msgstr "�� ������� ���������� ���������" + +#: timezone/zic.c:958 msgid "invalid saved time" msgstr "�� ������ ������� ���" -#: timezone/zic.c:1292 +#: timezone/zic.c:1291 msgid "invalid starting year" msgstr "�� ������� ������ �������" -#: timezone/zic.c:1169 timezone/zic.c:1272 +#: timezone/zic.c:1168 timezone/zic.c:1271 msgid "invalid time of day" msgstr "�� ������ ��� ��� �����" -#: timezone/zic.c:1370 +#: timezone/zic.c:1369 msgid "invalid weekday name" msgstr "�� ������ ����� ���������" -#: nscd/connections.c:460 -#, c-format -msgid "key length in request too long: %Zd" +#: nscd/connections.c:470 +#, fuzzy, c-format +msgid "key length in request too long: %d" msgstr "�� ����� �������� ���� ������ ����� ���� ������: %Zd" -#: locale/programs/ld-collate.c:1426 -msgid "line after ellipsis must contain character definition" -msgstr "� ������ ���� ��� ������� ������ �� �������� ������ ���������" +#: elf/ldconfig.c:738 +#, c-format +msgid "libc4 library %s in wrong directory" +msgstr "" + +#: elf/ldconfig.c:732 +#, c-format +msgid "libc5 library %s in wrong directory" +msgstr "" + +#: elf/ldconfig.c:735 +#, c-format +msgid "libc6 library %s in wrong directory" +msgstr "" -#: locale/programs/ld-collate.c:1405 -msgid "line before ellipsis does not contain definition for character constant" -msgstr "� ������ ���� ��� ������� ��� �������� ������ ��� ������� ���������" +#: elf/ldconfig.c:765 +#, c-format +msgid "libraries %s and %s in directory %s have same soname but different type." +msgstr "" -#: timezone/zic.c:831 +#: timezone/zic.c:830 msgid "line too long" msgstr "���� ������ ������" -#: iconv/iconv_prog.c:58 +#: iconv/iconv_prog.c:59 msgid "list all known coded character sets" msgstr "����� �� ��� �� ������ ������ ����������" -#: locale/programs/localedef.c:270 -#, c-format -msgid "locale file `%s', used in `copy' statement, not found" -msgstr "�� locale ������ `%s', ��� ��������������� ���� `copy' ������ ��� �������" +#: locale/programs/locfile.h:63 +msgid "locale name should consist only of portable characters" +msgstr "" -#: inet/rcmd.c:315 +#: inet/rcmd.c:413 msgid "lstat failed" msgstr "�� lstat �������" -#: catgets/gencat.c:625 +#: malloc/memusagestat.c:59 +msgid "make output graphic VALUE pixel high" +msgstr "" + +#: malloc/memusagestat.c:58 +msgid "make output graphic VALUE pixel wide" +msgstr "" + +#: catgets/gencat.c:780 msgid "malformed line ignored" msgstr "���������������� ������ ���������" @@ -3987,96 +4797,86 @@ msgstr "�������� ������������� ������ �������������� ��������� ��������" msgid "mapping of section headers failed" msgstr "�������� ������������� ��������� ��������" -#: malloc/mcheck.c:202 +#: malloc/mcheck.c:285 msgid "memory clobbered before allocated block\n" msgstr "� ����� ���������� ���� ��� �� ���������� �����\n" -#: malloc/mcheck.c:205 +#: malloc/mcheck.c:288 msgid "memory clobbered past end of allocated block\n" msgstr "� ����� ���������� ���� �� ����� ��� ����������� �����\n" -#: locale/programs/ld-collate.c:170 locale/programs/ld-collate.c:176 -#: locale/programs/ld-collate.c:180 locale/programs/ld-collate.c:1453 -#: locale/programs/ld-collate.c:1482 locale/programs/locfile.c:1088 -#: locale/programs/xmalloc.c:70 login/programs/database.c:62 -#: login/programs/database.c:79 login/programs/database.c:95 -#: malloc/obstack.c:471 posix/getconf.c:682 +#: locale/programs/locfile.c:334 locale/programs/xmalloc.c:70 +#: malloc/obstack.c:477 posix/getconf.c:809 msgid "memory exhausted" msgstr "� ����� �����������" -#: malloc/mcheck.c:199 +#: malloc/mcheck.c:282 msgid "memory is consistent, library is buggy\n" msgstr "� ����� ����� �������, � ���������� ���� ��������\n" -#: locale/programs/ld-time.c:373 -#, c-format -msgid "missing era format in string %d in `era' field in category `%s'" -msgstr "������ � ���������� ������ ��� ������������� %d ��� `era' ��������� ��������� `%s'" +#: elf/cache.c:120 +#, fuzzy +msgid "mmap of cache file failed.\n" +msgstr "�������� ������������� ��������� ��������" -#: locale/programs/ld-time.c:358 -#, c-format -msgid "missing era name in string %d in `era' field in category `%s'" -msgstr "������ �� ����� ��� ������ ��� ������������� %d ��� `era' ��������� ��������� `%s'" +#: elf/../sysdeps/generic/readelflib.c:108 +msgid "more than one dynamic segment\n" +msgstr "" -#: timezone/zic.c:954 +#: timezone/zic.c:953 msgid "nameless rule" msgstr "������� ����� �����" -#: iconv/iconv_prog.c:133 +#: iconv/iconv_prog.c:139 msgid "neither original nor target encoding specified" msgstr "��� ���� ������� ���� ������ ���� ������ ������������" -#: nis/nss_nisplus/nisplus-publickey.c:280 -#: nis/nss_nisplus/nisplus-publickey.c:286 -#: nis/nss_nisplus/nisplus-publickey.c:345 -#: nis/nss_nisplus/nisplus-publickey.c:354 +#: 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+): %s\n" -#: nis/nss_nisplus/nisplus-publickey.c:299 +#: nis/nss_nisplus/nisplus-publickey.c:300 #, c-format msgid "netname2user: DES entry for %s in directory %s not unique" msgstr "netname2user: � ���������� DES ��� �� %s ��� �������� %s ��� ����� ��������" -#: nis/nss_nisplus/nisplus-publickey.c:367 +#: nis/nss_nisplus/nisplus-publickey.c:368 #, c-format msgid "netname2user: LOCAL entry for %s in directory %s not unique" msgstr "netname2user: � ������ ���������� ��� �� %s ��� �������� %s ��� ����� ��������" -#: nis/nss_nisplus/nisplus-publickey.c:206 +#: nis/nss_nisplus/nisplus-publickey.c:207 #, c-format msgid "netname2user: missing group id list in `%s'." msgstr "netname2user: ��� ������� ����� ���������� ������ ��� `%s'." -#: nis/nss_nisplus/nisplus-publickey.c:317 +#: nis/nss_nisplus/nisplus-publickey.c:318 #, c-format msgid "netname2user: principal name `%s' too long" msgstr "netname2user: �� ����� ����� `%s' ����� ���� ������" -#: nis/nss_nisplus/nisplus-publickey.c:374 +#: nis/nss_nisplus/nisplus-publickey.c:375 msgid "netname2user: should not have uid 0" msgstr "netname2user: �� �� ������ �� ���� ��������� ������ 0" -#: sunrpc/svc_simple.c:158 +#: sunrpc/svc_simple.c:159 #, c-format msgid "never registered prog %d\n" msgstr "���� ��� �������� �� ��������� %d\n" -#: locale/programs/repertoire.c:250 +#: locale/programs/repertoire.c:272 msgid "no <Uxxxx> or <Uxxxxxxxx> value given" msgstr "�� ������ ���� <Uxxxx> � <Uxxxxxxxx>" -#: locale/programs/ld-messages.c:101 locale/programs/ld-messages.c:125 -#, c-format -msgid "no correct regular expression for field `%s' in category `%s': %s" -msgstr "�� ����� �������� ������� ��� �� ����� `%s' ���� ��������� `%s': %s" - -#: timezone/zic.c:2143 +#: timezone/zic.c:2142 msgid "no day in month matches rule" msgstr "����� ���� ��� ���� ��� �������� �� ��� ������" -#: locale/programs/ld-collate.c:267 +#: locale/programs/ld-collate.c:1757 msgid "no definition of `UNDEFINED'" msgstr "������� ������� ��� `UNDEFINED'" @@ -4085,40 +4885,49 @@ msgstr "������� ������� ��� `UNDEFINED'" msgid "no filename for profiling data given and shared object `%s' has no soname" msgstr "�� ������ ����� ������� ��� �� �������� ������ ��� �� �������������� ����������� `%s' ��� ���� ��������� �����" -#: locale/programs/locfile.c:615 +#: locale/programs/ld-ctype.c:739 +msgid "no input digits defined and none of the standard names in the charmap" +msgstr "" + +#: locale/programs/locfile.h:82 msgid "no other keyword shall be specified when `copy' is used" msgstr "����� ���� ���� ������ ��� �� ������ �� ����������� ���� ��������������� �� `copy'" -#: locale/programs/localedef.c:331 +#: locale/programs/ld-ctype.c:3349 +msgid "no output digits defined and none of the standard names in the charmap" +msgstr "" + +#: locale/programs/localedef.c:236 msgid "no output file produced because warning were issued" msgstr "��� ��������� ������ ������ ������ ��������� ���������������" -#: locale/programs/locfile.c:283 locale/programs/locfile.c:302 -#: locale/programs/locfile.c:321 locale/programs/locfile.c:340 -#: locale/programs/locfile.c:359 locale/programs/locfile.c:378 -msgid "no repertoire map specified: cannot proceed" -msgstr "��� �������� ������� �����������: � �������� ����� �������" - -#: locale/programs/charmap.c:400 locale/programs/charmap.c:549 -#: locale/programs/charmap.c:628 locale/programs/repertoire.c:211 +#: locale/programs/charmap.c:488 locale/programs/charmap.c:668 +#: locale/programs/charmap.c:764 locale/programs/repertoire.c:231 msgid "no symbolic name given" msgstr "��� ������ ��������� �����" -#: locale/programs/charmap.c:464 locale/programs/charmap.c:595 -#: locale/programs/charmap.c:661 locale/programs/repertoire.c:273 +#: locale/programs/charmap.c:575 locale/programs/charmap.c:723 +#: locale/programs/charmap.c:806 locale/programs/repertoire.c:297 msgid "no symbolic name given for end of range" msgstr "��� ������ ��������� ����� ��� �� ����� ������" -#: locale/programs/ld-collate.c:249 -#, c-format -msgid "no weight defined for symbol `%s'" -msgstr "��� �������� �������� ��� �� ������� `%s'" +#: locale/programs/linereader.c:641 +msgid "non-symbolic character value should not be used" +msgstr "" + +#: locale/programs/ld-ctype.c:804 +msgid "not all characters used in `outdigit' are available in the charmap" +msgstr "" -#: inet/rcmd.c:317 +#: locale/programs/ld-ctype.c:821 +msgid "not all characters used in `outdigit' are available in the repertoire" +msgstr "" + +#: inet/rcmd.c:415 msgid "not regular file" msgstr "��� ����� �������� ������" -#: nscd/nscd_stat.c:130 +#: nscd/nscd_stat.c:131 #, c-format msgid "" "nscd configuration:\n" @@ -4129,47 +4938,74 @@ msgstr "" "\n" "%15d ������� ������������� �����������\n" -#: nscd/nscd_stat.c:104 +#: nscd/nscd_stat.c:105 msgid "nscd not running!\n" msgstr "�� nscd ��� ���������!\n" -#: locale/programs/charmap.c:513 +#: elf/dl-load.c:1051 +msgid "object file has no dynamic section" +msgstr "" + +#: iconv/iconv_prog.c:61 +#, fuzzy +msgid "omit invalid characters from output" +msgstr "�� ������� ���������� �������� ������" + +#: elf/dl-load.c:1311 +msgid "only ET_DYN and ET_EXEC can be loaded" +msgstr "" + +#: locale/programs/charmap.c:632 msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" msgstr "���� ������� WIDTH ������������ �� ���������� ��� CHARMAP ������" -#: iconv/iconv_prog.c:135 +#: locale/programs/ld-collate.c:1005 locale/programs/ld-collate.c:1175 +#, fuzzy, c-format +msgid "order for `%.*s' already defined at %s:%Zu" +msgstr "� ������ ���������� `%s' �������� ���" + +#: iconv/iconv_prog.c:141 msgid "original encoding not specified using `-f'" msgstr "� ������ ������������ ��� ���� ������� �� `-f'" -#: iconv/iconv_prog.c:60 +#: inet/ruserpass.c:167 inet/ruserpass.c:190 +#, fuzzy +msgid "out of memory" +msgstr "� ����� ��� ����������� �����������" + +#: iconv/iconv_prog.c:62 msgid "output file" msgstr "������ ������" -#: sunrpc/pm_getmaps.c:73 +#: sunrpc/pm_getmaps.c:74 msgid "pmap_getmaps rpc problem" msgstr "�������� rpc pmap_getmaps" -#: inet/rcmd.c:186 +#: inet/rcmd.c:233 msgid "poll: protocol failure in circuit setup\n" msgstr "poll: �������� ���������� ��� ������� ����������\n" -#: sunrpc/rpc_scan.c:523 sunrpc/rpc_scan.c:533 +#: locale/programs/ld-ctype.c:1949 locale/programs/ld-ctype.c:2000 +#, fuzzy +msgid "premature end of `translit_ignore' definition" +msgstr "������ ����� ��� ��������� ��������" + +#: sunrpc/rpc_scan.c:524 sunrpc/rpc_scan.c:534 msgid "preprocessor error" msgstr "������ ��������������" +#: locale/programs/ld-ctype.c:2731 +msgid "previous definition was here" +msgstr "" + #: elf/sprof.c:74 msgid "print list of count paths and their number of use" msgstr "�������� ����� �� �������� ���������� ��� ��� ������ ������ ����" -#: iconv/iconv_prog.c:61 +#: iconv/iconv_prog.c:64 msgid "print progress information" msgstr "�������� ����������� �������" -#: db2/makedb.c:345 -#, c-format -msgid "problems while reading `%s'" -msgstr "���������� ���� ��� �������� ��� `%s'" - #: elf/sprof.c:687 #, c-format msgid "profiling data file `%s' does not match shared object `%s'" @@ -4192,38 +5028,47 @@ msgstr "�� ��������� %lu ������� %lu ��� ����� ���������\n" msgid "program %lu version %lu ready and waiting\n" msgstr "�� ��������� %lu ������� %lu ������ ��� ��������\n" -#: inet/rcmd.c:183 +#: inet/rcmd.c:270 +#, c-format +msgid "rcmd: %s: short read" +msgstr "" + +#: inet/rcmd.c:230 #, c-format msgid "rcmd: poll (setting up stderr): %m\n" msgstr "rcmd: poll (������� ��� stderr): %m\n" -#: inet/rcmd.c:117 +#: inet/rcmd.c:158 msgid "rcmd: socket: All ports in use\n" msgstr "rcmd: socket: ���� �� ����� �� �����\n" -#: inet/rcmd.c:173 +#: inet/rcmd.c:220 #, c-format msgid "rcmd: write (setting up stderr): %m\n" msgstr "rcmd: write (������� ��� stderr): %m\n" -#: sunrpc/svc_simple.c:98 +#: sunrpc/svc_simple.c:99 msgid "registerrpc: out of memory\n" msgstr "registerrpc: � ����� �����������\n" -#: timezone/zic.c:1875 +#: timezone/zic.c:1874 msgid "repeated leap second moment" msgstr "repeated leap second moment" -#: locale/programs/repertoire.c:107 +#: locale/programs/repertoire.c:342 #, c-format msgid "repertoire map file `%s' not found" msgstr "�� ������ ������ ����������� `%s' �� �������" -#: sunrpc/rpc_main.c:1115 +#: locale/programs/charmap.c:1063 +msgid "resulting bytes for range not representable." +msgstr "" + +#: sunrpc/rpc_main.c:1117 msgid "rpcgen: arglist coding error\n" msgstr "rpcgen: ������ ��� ������ �������\n" -#: sunrpc/rpc_main.c:1103 +#: sunrpc/rpc_main.c:1105 msgid "rpcgen: too many defines\n" msgstr "rpcgen: ���� ������ �������\n" @@ -4251,404 +5096,331 @@ msgstr "rpcinfo: ������� �������: %s\n" msgid "rpcinfo: can't contact portmapper" msgstr "rpcinfo: �������� ������������ �� ����������� �����" -#: timezone/zic.c:744 timezone/zic.c:746 +#: timezone/zic.c:743 timezone/zic.c:745 msgid "same rule name in multiple files" msgstr "� ����� ������� �� �������� ������" -#: nscd/connections.c:472 +#: elf/dl-load.c:1116 +msgid "shared object cannot be dlopen()ed" +msgstr "" + +#: elf/dl-close.c:63 +#, fuzzy +msgid "shared object not open" +msgstr "�� ������ ����������� ��� ����������" + +#: nscd/connections.c:482 #, c-format msgid "short read while reading request key: %s" msgstr "������� �������� ���� ��� �������� ��� �������� �������: %s" -#: nscd/connections.c:430 +#: nscd/connections.c:436 #, c-format msgid "short read while reading request: %s" msgstr "������� �������� ���� ��� ������ ���������: %s" -#: nscd/grpcache.c:191 nscd/hstcache.c:270 nscd/pwdcache.c:189 +#: nscd/grpcache.c:193 nscd/hstcache.c:278 nscd/pwdcache.c:189 #, c-format msgid "short write in %s: %s" msgstr "������� �������� ��� %s: %s" -#: inet/rcmd.c:204 +#: inet/rcmd.c:260 msgid "socket: protocol failure in circuit setup\n" msgstr "socket: �������� ���������� ��� ������� ����������\n" -#: locale/programs/locfile.c:736 -msgid "sorting order `forward' and `backward' are mutually exclusive" -msgstr "�� ������������ ����������� `forward' ��� `backward' ����� �������� �������������" - -#: locale/programs/ld-collate.c:1586 locale/programs/ld-collate.c:1632 -msgid "specification of sorting weight for collation symbol does not make sense" -msgstr "�� �������������� ��� ��������� ����������� ��� ������� ��������� ��� ������ �����" - -#: timezone/zic.c:815 +#: timezone/zic.c:814 msgid "standard input" msgstr "�������� �������" -#: timezone/zdump.c:268 +#: timezone/zdump.c:269 msgid "standard output" msgstr "�������� ������" -#: locale/programs/ld-time.c:272 -#, c-format -msgid "starting date is illegal in string %d in `era' field in category `%s'" -msgstr "� ���������� ������� ��� ����� ������ ��� ������������� %d ��� ����� `era' ���� ��������� `%s'" +#: locale/programs/ld-ctype.c:1680 +msgid "start and end character sequence of range must have the same length" +msgstr "" -#: timezone/zic.c:1326 +#: timezone/zic.c:1325 msgid "starting year greater than ending year" msgstr "�� ���� ������� ����� ����������� �� ���� �����������" -#: timezone/zic.c:1298 timezone/zic.c:1323 +#: timezone/zic.c:1297 timezone/zic.c:1322 msgid "starting year too high to be represented" msgstr "� ������ ������� ����� ���� ������� ��� �� �������������" -#: timezone/zic.c:1296 timezone/zic.c:1321 +#: timezone/zic.c:1295 timezone/zic.c:1320 msgid "starting year too low to be represented" msgstr "� ������ ������� ����� ���� ������ ��� �� �������������" -#: locale/programs/ld-time.c:348 -#, c-format -msgid "stopping date is illegal in string %d in `era' field in category `%s'" -msgstr "� ���������� ����������� ��� ����� ������ ���� ������� %d ��� ����� `era' ���� ��������� `%s'" +#: iconv/iconv_prog.c:63 +msgid "suppress warnings" +msgstr "" -#: sunrpc/svc_run.c:81 -msgid "svc_run: - select failed" +#: sunrpc/svc_run.c:76 +#, fuzzy +msgid "svc_run: - poll failed" msgstr "svc_run: - �������� ��� select" -#: sunrpc/svc_tcp.c:160 +#: sunrpc/svc_tcp.c:161 msgid "svc_tcp.c - cannot getsockname or listen" msgstr "svc_tcp.c - �������� getsockname � listen" -#: sunrpc/svc_tcp.c:145 +#: sunrpc/svc_tcp.c:146 msgid "svc_tcp.c - tcp socket creation problem" msgstr "svc_tcp.c - �������� ����������� �������� tcp" -#: sunrpc/svc_tcp.c:209 sunrpc/svc_tcp.c:215 +#: sunrpc/svc_tcp.c:210 sunrpc/svc_tcp.c:216 msgid "svc_tcp: makefd_xprt: out of memory\n" msgstr "svc_tcp: makefd_xprt: � ����� �����������\n" -#: sunrpc/svc_unix.c:135 +#: sunrpc/svc_unix.c:137 msgid "svc_unix.c - AF_UNIX socket creation problem" msgstr "svc_unix.c - �������� ����������� �������� AF_UNIX" -#: sunrpc/svc_unix.c:151 +#: sunrpc/svc_unix.c:153 msgid "svc_unix.c - cannot getsockname or listen" msgstr "svc_unix.c - �������� getsockname � listen" -#: sunrpc/svc_unix.c:201 sunrpc/svc_unix.c:207 +#: sunrpc/svc_unix.c:203 sunrpc/svc_unix.c:209 msgid "svc_unix: makefd_xprt: out of memory\n" msgstr "svc_unix: makefd_xprt: � ����� �����������\n" -#: sunrpc/svc_tcp.c:168 sunrpc/svc_tcp.c:176 +#: sunrpc/svc_tcp.c:169 sunrpc/svc_tcp.c:177 msgid "svctcp_create: out of memory\n" msgstr "svctcp_create: � ����� �����������\n" -#: sunrpc/svc_udp.c:135 +#: sunrpc/svc_udp.c:141 msgid "svcudp_create - cannot getsockname" msgstr "svcudp_create - �������� getsockname" -#: sunrpc/svc_udp.c:143 sunrpc/svc_udp.c:149 sunrpc/svc_udp.c:155 +#: 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" -#: sunrpc/svc_udp.c:121 +#: sunrpc/svc_udp.c:127 msgid "svcudp_create: socket creation problem" msgstr "svcudp_create - �������� ����������� ��������" -#: sunrpc/svc_unix.c:160 sunrpc/svc_unix.c:168 +#: sunrpc/svc_udp.c:177 +msgid "svcudp_create: xp_pad is too small for IP_PKTINFO\n" +msgstr "" + +#: sunrpc/svc_unix.c:162 sunrpc/svc_unix.c:170 msgid "svcunix_create: out of memory\n" msgstr "svcunix_create: � ����� �����������\n" -#: locale/programs/ld-collate.c:1077 locale/programs/ld-collate.c:1205 -#, c-format -msgid "symbol for multicharacter collating element `%.*s' duplicates element definition" -msgstr "������� ��� ������������� ��������� ��������� `%.*s' ����������� ��� ��������� ���������" +#: locale/programs/linereader.c:745 +#, fuzzy, c-format +msgid "symbol `%.*s' not in charmap" +msgstr "������� ������� `%.*s': ������ ���������" -#: locale/programs/ld-collate.c:1214 -#, c-format -msgid "symbol for multicharacter collating element `%.*s' duplicates other symbol definition" -msgstr "������� ��� ������������� ��������� ��������� `%.*s' ����������� ���� ��������������" +#: locale/programs/linereader.c:766 +#, fuzzy, c-format +msgid "symbol `%.*s' not in repertoire map" +msgstr "������� ������� `%.*s': ������ ���������" -#: locale/programs/ld-collate.c:1086 +#: locale/programs/ld-collate.c:1617 locale/programs/ld-collate.c:1716 #, c-format -msgid "symbol for multicharacter collating element `%.*s' duplicates symbol definition" -msgstr "������� ��� ������������� ��������� ��������� `%.*s' ����������� ��� ��������� ��������" +msgid "symbol `%s'" +msgstr "" -#: locale/programs/ld-collate.c:1068 locale/programs/ld-collate.c:1196 +#: locale/programs/ld-collate.c:1614 locale/programs/ld-collate.c:1713 #, c-format -msgid "symbol for multicharacter collating element `%.*s' duplicates symbolic name in charset" -msgstr "������� ��� ������������� ��������� ��������� `%.*s' ����������� �� �������������� ��� charset" +msgid "symbol `%s' has the same encoding as" +msgstr "" + +#: locale/programs/ld-collate.c:1539 +#, fuzzy, c-format +msgid "symbol `%s' not defined" +msgstr "������� ������� `%.*s': ������ ���������" + +#: locale/programs/ld-ctype.c:1955 locale/programs/ld-ctype.c:2006 +#: locale/programs/ld-ctype.c:2048 +#, fuzzy +msgid "syntax error" +msgstr "������ ���� ������(bus)" -#: locale/programs/charmap.c:399 locale/programs/charmap.c:433 -#: locale/programs/charmap.c:462 locale/programs/charmap.c:548 -#: locale/programs/charmap.c:594 locale/programs/charmap.c:627 -#: locale/programs/charmap.c:659 +#: locale/programs/charmap.c:487 locale/programs/charmap.c:541 +#: locale/programs/charmap.c:573 locale/programs/charmap.c:667 +#: locale/programs/charmap.c:722 locale/programs/charmap.c:763 +#: locale/programs/charmap.c:804 #, c-format msgid "syntax error in %s definition: %s" msgstr "���������� ������ ��� ������ ��� %s: %s" -#: locale/programs/locfile.c:756 -msgid "syntax error in `order_start' directive" -msgstr "���������� ������ ���� `order_start' ������������� ������" - -#: locale/programs/locfile.c:498 -msgid "syntax error in character class definition" -msgstr "���������� ������ ���� ������ ������ ����������" - -#: locale/programs/locfile.c:556 -msgid "syntax error in character conversion definition" -msgstr "���������� ������ ���� ������ ���������� ����������" - -#: locale/programs/locfile.c:798 -msgid "syntax error in collating order definition" -msgstr "���������� ������ ���� �������� ����� �������" - -#: locale/programs/locfile.c:648 -msgid "syntax error in collation definition" -msgstr "���������� ������ ���� �������� �������" - -#: locale/programs/locfile.c:471 -msgid "syntax error in definition of LC_CTYPE category" -msgstr "���������� ������ ���� ������ ��� LC_TYPE ����������" - -#: locale/programs/locfile.c:414 -msgid "syntax error in definition of new character class" -msgstr "���������� ������ ���� ������ ��� ���� ������ ����������" - -#: locale/programs/locfile.c:424 -msgid "syntax error in definition of new character map" -msgstr "���������� ������ ���� ������ ��� ��� ����� ����������" - -#: locale/programs/locfile.c:1009 -msgid "syntax error in message locale definition" -msgstr "���������� ������ ���� ������� locale ���������" - -#: locale/programs/locfile.c:920 -msgid "syntax error in monetary locale definition" -msgstr "���������� ������ ���� ������ ������������ locale" - -#: locale/programs/locfile.c:947 -msgid "syntax error in numeric locale definition" -msgstr "���������� ������ ���� ������ ����������� locale" - -#: locale/programs/locfile.c:858 -msgid "syntax error in order specification" -msgstr "���������� ������ ���� ��������� ������" - -#: locale/programs/charmap.c:280 locale/programs/charmap.c:296 -#: locale/programs/repertoire.c:155 +#: locale/programs/charmap.c:346 locale/programs/charmap.c:363 +#: locale/programs/repertoire.c:175 #, c-format msgid "syntax error in prolog: %s" msgstr "���������� ������ ���� �������: %s" -#: locale/programs/repertoire.c:210 locale/programs/repertoire.c:249 -#: locale/programs/repertoire.c:272 +#: 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" -#: locale/programs/locfile.c:985 -msgid "syntax error in time locale definition" -msgstr "���������� ������ ���� ������ locale ����" - -#: locale/programs/locfile.c:391 +#: locale/programs/locfile.c:243 msgid "syntax error: not inside a locale definition section" msgstr "���������� ������: ��� ����� ���� �� ����� locale �������" -#: iconv/iconv_prog.c:137 +#: iconv/iconv_prog.c:143 msgid "target encoding not specified using `-t'" msgstr "� ������ ������������ ��� ���� ������� �� `-t'" -#: catgets/gencat.c:391 catgets/gencat.c:530 catgets/gencat.c:559 +#: catgets/gencat.c:432 catgets/gencat.c:605 catgets/gencat.c:634 msgid "this is the first definition" msgstr "����� ����� � ������ �������" -#: timezone/zic.c:1158 +#: timezone/zic.c:1157 msgid "time before zero" msgstr "��� ���� �� �����" -#: timezone/zic.c:1166 timezone/zic.c:2043 timezone/zic.c:2062 +#: timezone/zic.c:1165 timezone/zic.c:2042 timezone/zic.c:2061 msgid "time overflow" msgstr "����������� ����" -#: locale/programs/charmap.c:443 +#: locale/programs/ld-ctype.c:1553 locale/programs/ld-ctype.c:2029 +#, c-format +msgid "to-value <U%0*X> of range is smaller than from-value <U%0*X>" +msgstr "" + +#: locale/programs/ld-ctype.c:1687 +msgid "to-value character sequence is smaller than from-value sequence" +msgstr "" + +#: locale/programs/charmap.c:551 msgid "too few bytes in character encoding" msgstr "���� ���� bytes ���� ������������ ���������" -#: locale/programs/charmap.c:445 +#: locale/programs/charmap.c:553 msgid "too many bytes in character encoding" msgstr "���������� ����� bytes ���� ������������ ���������" -#: locale/programs/locales.h:92 -msgid "too many character classes defined" -msgstr "��������� ������ ������� ����������" - -#: timezone/zic.c:1869 +#: timezone/zic.c:1868 msgid "too many leap seconds" msgstr "���������� ����� ������������ ����������" -#: timezone/zic.c:1841 +#: timezone/zic.c:1840 msgid "too many local time types" msgstr "���������� ������ ����� ������� ����" -#: timezone/zic.c:1795 +#: timezone/zic.c:1794 msgid "too many transitions?!" msgstr "���������� ������ ����������;!" -#: locale/programs/ld-collate.c:1641 -msgid "too many weights" -msgstr "���������� ����� ����" - -#: timezone/zic.c:2166 +#: timezone/zic.c:2165 msgid "too many, or too long, time zone abbreviations" msgstr "���������� ������, � ���� ������, ������������ ����� ����" -#: locale/programs/linereader.h:146 +#: locale/programs/linereader.h:157 msgid "trailing garbage at end of line" msgstr "���������� ��������� ��� ����� ��� �������" -#: sunrpc/svc_simple.c:150 +#: sunrpc/svc_simple.c:151 #, c-format msgid "trouble replying to prog %d\n" msgstr "�������� ���� ��� �������� ��� ��������� %d\n" -#: locale/programs/ld-collate.c:1397 -msgid "two lines in a row containing `...' are not allowed" -msgstr "��� ����������� ��� ����������� ������� �� ��������� `...'" - -#: timezone/zic.c:1333 +#: timezone/zic.c:1332 msgid "typed single year" msgstr "�������� ����� ������" -#: iconv/iconv_prog.c:434 +#: iconv/iconv_prog.c:491 msgid "unable to allocate buffer for input" msgstr "������� � �������� ���������� ��� ��� ������" -#: nis/nis_callback.c:187 +#: nis/nis_callback.c:189 msgid "unable to free arguments" msgstr "������� � ������������ ����������" -#: posix/getconf.c:654 posix/getconf.c:670 +#: posix/getconf.c:781 posix/getconf.c:797 msgid "undefined" msgstr "�������" -#: locale/programs/charmap.c:700 locale/programs/charmap.c:711 +#: locale/programs/charmap.c:856 locale/programs/charmap.c:867 #, c-format msgid "unknown character `%s'" msgstr "�������� ���������� `%s'" -#: locale/programs/ld-messages.c:202 locale/programs/ld-messages.c:213 -#: locale/programs/ld-messages.c:224 locale/programs/ld-messages.c:235 -#: locale/programs/ld-time.c:700 -#, c-format -msgid "unknown character in field `%s' of category `%s'" -msgstr "�������� ���������� ��� ����� `%s' ��� ���������� `%s'" - -#: locale/programs/locfile.c:721 -msgid "unknown collation directive" -msgstr "������� ������� ���������" - -#: catgets/gencat.c:488 +#: catgets/gencat.c:562 #, c-format msgid "unknown directive `%s': line ignored" msgstr "������o ������� `%s': ������ ���������" -#: iconv/iconv_prog.c:381 +#: iconv/iconv_prog.c:438 #, c-format msgid "unknown iconv() error %d" msgstr "������� ������ iconv() %d" -#: catgets/gencat.c:467 +#: catgets/gencat.c:508 #, c-format msgid "unknown set `%s'" msgstr "������� ��� `%s'" -#: locale/programs/ld-collate.c:1381 locale/programs/ld-collate.c:1576 -#: locale/programs/ld-collate.c:1751 -#, c-format -msgid "unknown symbol `%.*s': line ignored" -msgstr "������� ������� `%.*s': ������ ���������" - -#: timezone/zic.c:787 +#: timezone/zic.c:786 msgid "unruly zone" msgstr "������ ����" -#: catgets/gencat.c:977 +#: catgets/gencat.c:1169 msgid "unterminated message" msgstr "�� ������������� ������" -#: locale/programs/linereader.c:520 locale/programs/linereader.c:555 +#: locale/programs/linereader.c:599 locale/programs/linereader.c:784 msgid "unterminated string" msgstr "�� ������������o �������������" -#: sunrpc/rpc_scan.c:350 sunrpc/rpc_scan.c:376 +#: sunrpc/rpc_scan.c:351 sunrpc/rpc_scan.c:377 msgid "unterminated string constant" msgstr "�� ������������ ������������� ��������" -#: locale/programs/linereader.c:390 +#: locale/programs/linereader.c:469 msgid "unterminated symbolic name" msgstr "�� ������������� ��������� �����" -#: locale/programs/ld-collate.c:1703 -msgid "unterminated weight name" -msgstr "�� ������������� ����� ������" +#: locale/programs/charmap.c:1005 +#, fuzzy +msgid "upper limit in range is not higher then lower limit" +msgstr "�� ����� ���� ��� ����� ��� ����� ��������� ��� ���� �����" -#: locale/programs/charset.c:104 +#: locale/programs/repertoire.c:455 msgid "upper limit in range is not smaller then lower limit" msgstr "�� ����� ���� ��� ����� ��� ����� ��������� ��� ���� �����" -#: sunrpc/rpc_main.c:1413 +#: sunrpc/rpc_main.c:1424 #, c-format msgid "usage: %s infile\n" msgstr "�����: %s ������_�������\n" -#: timezone/zic.c:2109 +#: timezone/zic.c:2108 msgid "use of 2/29 in non leap-year" msgstr "����� ��� 2/29 �� ����� �� �������" -#: locale/programs/charmap.c:521 locale/programs/charmap.c:575 +#: locale/programs/charmap.c:640 locale/programs/charmap.c:703 #, c-format msgid "value for %s must be an integer" msgstr "� ���� ��� �� %s ������ �� ����� ��������" -#: locale/programs/charmap.c:318 -#, c-format -msgid "value for <%s> must lie between 1 and 4" -msgstr "� ���� ��� <%s> ������ �� ��������� ������ 1 ��� 4" - -#: locale/programs/ld-monetary.c:157 locale/programs/ld-numeric.c:92 -#, c-format -msgid "value for field `%s' in category `%s' must not be the empty string" -msgstr "� ���� ��� �� ����� `%s' ���� ��������� `%s' ��� ������ �� ����� ���� �������������" +#: locale/programs/charmap.c:399 +#, fuzzy, c-format +msgid "value for <%s> must be 1 or greater" +msgstr "� ���� ��� �� %s ������ �� ����� ��������" -#: locale/programs/charmap.c:330 -msgid "value of <mb_cur_max> must be greater than the value of <mb_cur_min>" +#: locale/programs/charmap.c:411 +#, fuzzy, c-format +msgid "value of <%s> must be greater or equal than the value of <%s>" msgstr "� ���� ��� <mb_cur_max> ������ �� ����� ���������� ��� ����� ��� <mb_cur_min>" -#: locale/programs/ld-monetary.c:147 -msgid "value of field `int_curr_symbol' in category `LC_MONETARY' does not correspond to a valid name in ISO 4217" -msgstr "� ���� ��� ������ `int_curr_symbol' ���� ��������� `LC_MONETARY' ����������� �� ������ ����� ������� �� �� ISO 4217" - -#: locale/programs/ld-monetary.c:139 -msgid "value of field `int_curr_symbol' in category `LC_MONETARY' has wrong length" -msgstr "� ���� ��� ������ `int_curr_symbol' ���� ��������� `LC_MONETARY' ���� ����� �����" - -#: locale/programs/ld-monetary.c:383 locale/programs/ld-numeric.c:207 -#, c-format -msgid "values for field `%s' in category `%s' must be smaller than 127" -msgstr "�� ����� ��� �� ����� `%s' ���� ��������� `%s' ������ �� ����� ���������� ��� 127" - -#: timezone/zic.c:435 +#: timezone/zic.c:433 msgid "warning: " msgstr "�������������: " -#: nscd/connections.c:421 +#: nscd/connections.c:427 #, c-format msgid "while accepting connection: %s" msgstr "���� ��� ������� ��������: %s" -#: nscd/grpcache.c:149 nscd/hstcache.c:168 nscd/pwdcache.c:143 +#: nscd/grpcache.c:150 nscd/hstcache.c:165 nscd/pwdcache.c:143 msgid "while allocating cache entry" msgstr "���� ��� �������� ������ ��� ���������� ��� ���������� �����" @@ -4656,78 +5428,297 @@ msgstr "���� ��� �������� ������ ��� ���������� ��� ���������� �����" msgid "while allocating hash table entry" msgstr "���� �� �������� ��� ����������� ������ hash" -#: nscd/grpcache.c:99 nscd/hstcache.c:111 nscd/pwdcache.c:106 +#: nscd/grpcache.c:100 nscd/hstcache.c:108 nscd/pwdcache.c:106 msgid "while allocating key copy" msgstr "���� ��� �������� ������ ��� �� ��������� ��������" -#: catgets/gencat.c:1007 +#: catgets/gencat.c:1199 msgid "while opening old catalog file" msgstr "���� �� ������� ������ ������� ���������" -#: locale/programs/locale.c:346 +#: locale/programs/locale.c:361 msgid "while preparing output" msgstr "���� ��� ������������ ������" -#: db2/makedb.c:365 db2/makedb.c:382 -msgid "while reading database" -msgstr "���� ��� �������� ������ ���������" - #: elf/sprof.c:679 msgid "while stat'ing profiling data file" msgstr "���� ��� ���������� (stat) ��� ������� ��������� ������" -#: db2/makedb.c:334 -msgid "while writing database file" -msgstr "���� ��� ������� ������� ������ ���������" +#: locale/programs/ld-ctype.c:2392 +msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" +msgstr "" + +#: locale/programs/ld-ctype.c:2406 +msgid "with character code range values one must use the absolute ellipsis `...'" +msgstr "" + +#: locale/programs/ld-ctype.c:2377 +msgid "with symbolic name range values the absolute ellipsis `...' must not be used" +msgstr "" -#: nscd/nscd_stat.c:115 +#: nscd/nscd_stat.c:116 msgid "write incomplete" msgstr "�� ������ �������" -#: inet/rcmd.c:328 +#: inet/rcmd.c:426 msgid "writeable by other than owner" msgstr "�� ������ ����� ��������� ��� ��� ������ ����� ��� ���������" -#: db2/makedb.c:124 nscd/nscd.c:120 nscd/nscd_nischeck.c:64 nss/getent.c:399 +#: nscd/nscd.c:123 nscd/nscd_nischeck.c:64 nss/getent.c:761 msgid "wrong number of arguments" msgstr "����� ������� ����������" -#: timezone/zic.c:1116 +#: timezone/zic.c:1115 msgid "wrong number of fields on Leap line" msgstr "����� ������� ������ ��� ������ Leap" -#: timezone/zic.c:1207 +#: timezone/zic.c:1206 msgid "wrong number of fields on Link line" msgstr "����� ������� ������ ��� ������ Link" -#: timezone/zic.c:950 +#: timezone/zic.c:949 msgid "wrong number of fields on Rule line" msgstr "����� ������� ������ ��� ������ Rule" -#: timezone/zic.c:1020 +#: timezone/zic.c:1019 msgid "wrong number of fields on Zone continuation line" msgstr "����� ������� ������ ��� ������ ��������� Zone" -#: timezone/zic.c:978 +#: timezone/zic.c:977 msgid "wrong number of fields on Zone line" msgstr "����� ������� ������ ��� ������ Zone" -#: sunrpc/xdr_ref.c:84 +#: sunrpc/xdr_ref.c:85 msgid "xdr_reference: out of memory\n" msgstr "xdr_reference: � ����� �����������\n" -#: sunrpc/xdr_rec.c:150 sunrpc/xdr_rec.c:165 +#: sunrpc/xdr_rec.c:151 sunrpc/xdr_rec.c:166 msgid "xdrrec_create: out of memory\n" msgstr "xdrrec_create: � ����� �����������\n" -#: nis/ypclnt.c:894 +#: nis/ypclnt.c:907 msgid "yp_update: cannot convert host to netname\n" msgstr "yp_update: �������� ���������� �������� ���������� �� ����� �������\n" -#: nis/ypclnt.c:906 +#: nis/ypclnt.c:919 msgid "yp_update: cannot get server address\n" msgstr "yp_update: �������� ����� ���������� ����������\n" +#~ msgid "" +#~ "\t\tKerberos.\n" +#~ "Access Rights : " +#~ msgstr "" +#~ "\t\t��������.\n" +#~ "���������� ����������� : " + +#~ msgid " done\n" +#~ msgstr " �����\n" + +#~ msgid "%s: cannot get modification time" +#~ msgstr "%s: �������� ����� ������ ������������" + +#~ msgid "Computing table size for character classes might take a while..." +#~ msgstr "" +#~ "����������� �������� ������ ��� ������� ����������, ������ ��\n" +#~ "������������ ����..." + +#~ msgid "Computing table size for collation information might take a while..." +#~ msgstr "" +#~ "����������� �������� ������ ��� ��� ����������� ���������, ������ ��\n" +#~ "������������ ����..." + +#~ msgid "Convert key to lower case" +#~ msgstr "��������� �������� �� ����" + +#~ msgid "Create simple DB database from textual input." +#~ msgstr "���������� ����� ����� �� ��� �������� ��������." + +#~ msgid "Device not configured" +#~ msgstr "� ������� ��� ���� �����������" + +#~ msgid "Do not print messages while building database" +#~ msgstr "�� �� ������������ �������� ���� ��� ��������� ��� ����� ���������" + +#~ msgid "" +#~ "INPUT-FILE OUTPUT-FILE\n" +#~ "-o OUTPUT-FILE INPUT-FILE\n" +#~ "-u INPUT-FILE" +#~ msgstr "" +#~ "������-������� ������-������\n" +#~ "-o ������-������ ������-�������\n" +#~ "-u ������-�������" + +#~ msgid "Print content of database file, one entry a line" +#~ msgstr "�������� ��� ������������ ��� ������� �����, ��� ���������� �� ����" + +#~ msgid "Trying %s...\n" +#~ msgstr "����������� %s...\n" + +#~ msgid "`...' must only be used in `...' and `UNDEFINED' entries" +#~ msgstr "�� `...' ������ �� ��������������� ���� �� `...' ��� `UNDEFINED' ������������" + +#~ msgid "`from' expected after first argument to `collating-element'" +#~ msgstr "���������� `from' ���� ��� ����� ��������� ��� `collating-element'" + +#~ msgid "`from' string in collation element declaration contains unknown character" +#~ msgstr "" +#~ "� ������� ���������� `from' ��� ������ ��� ��������� ��������� ��������\n" +#~ "������� ���������" + +#~ msgid "buffer overflow" +#~ msgstr "����������� ����������" + +#~ msgid "cannot `stat' locale file `%s'" +#~ msgstr "��� ����� ������� �� ����� `stat' �� locale ������ `%s'" + +#~ msgid "cannot insert collation element `%.*s'" +#~ msgstr "�������� ��������� �������� ��������� `%.*s'" + +#~ msgid "cannot insert into result table" +#~ msgstr "�������� ��������� ���� ������ �������������" + +#~ msgid "cannot insert new collating symbol definition: %s" +#~ msgstr "�������� ��������� ���� ������� �������� ���������: %s" + +#~ msgid "cannot open database file `%s': %s" +#~ msgstr "�������� ���������� ������� ������ ��������� `%s': %s" + +#~ msgid "category data requested more than once: should not happen" +#~ msgstr "�� �������� ���������� ��������� ���� ��� ��� ����: ��� �� ������ �� ������" + +#~ msgid "character L'%s' (index %Zd) in class `%s' must be in class `%s'" +#~ msgstr "� ���������� L'%s' (������� %Zd) ���� ����� `%s' ������ �� ����� ���� ����� `%s'" + +#~ msgid "character L'%s' (index %Zd) in class `%s' must not be in class `%s'" +#~ msgstr "� ���������� L'%s' (������� %Zd) ���� ����� `%s' ��� ������ �� ����� ���� ����� `%s'" + +#~ msgid "collation element `%.*s' appears more than once: ignore line" +#~ msgstr "" +#~ "�� �������� ��������� `%.*s' ����������� ������������ ��� ��� �����:\n" +#~ "��������� � ������" + +#~ msgid "collation symbol `%.*s' appears more than once: ignore line" +#~ msgstr "" +#~ "�� ������� ��������� `%.*s' ����������� ������������ ��� ��� �����:\n" +#~ "��������� � ������" + +#~ msgid "collation symbol expected after `%s'" +#~ msgstr "���������� ������� ��������� ���� �� `%s'" + +#~ msgid "connect to address %s: " +#~ msgstr "������� ��� ��������� %s: " + +#~ msgid "duplicate character name `%s'" +#~ msgstr "����� ����� ��������� `%s'" + +#~ msgid "duplicate key" +#~ msgstr "����� ������" + +#~ msgid "end point of ellipsis range is bigger then start" +#~ msgstr "�� ������ ������ ��� ������ ��� �������� ����� ���������� ��� �� ������" + +#~ msgid "error while inserting collation element into hash table" +#~ msgstr "������ ���� ��� �������� ��������� ��������� ���� hash ������" + +#~ msgid "error while inserting to hash table" +#~ msgstr "������ ���� ��� �������� ���� hash ������" + +#~ msgid "from-value of `collating-element' must be a string" +#~ msgstr "� ���� from ��� `��������� ���������' ������ �� ����� �������������" + +#~ msgid "illegal character constant in string" +#~ msgstr "�� ������� �������� ���������� ��� �������������" + +#~ msgid "illegal collation element" +#~ msgstr "�� ������ �������� ���������" + +#~ msgid "incorrectly formatted file" +#~ msgstr "������ ����� ������������" + +#~ msgid "line after ellipsis must contain character definition" +#~ msgstr "� ������ ���� ��� ������� ������ �� �������� ������ ���������" + +#~ msgid "line before ellipsis does not contain definition for character constant" +#~ msgstr "� ������ ���� ��� ������� ��� �������� ������ ��� ������� ���������" + +#~ msgid "locale file `%s', used in `copy' statement, not found" +#~ msgstr "�� locale ������ `%s', ��� ��������������� ���� `copy' ������ ��� �������" + +#~ msgid "no repertoire map specified: cannot proceed" +#~ msgstr "��� �������� ������� �����������: � �������� ����� �������" + +#~ msgid "no weight defined for symbol `%s'" +#~ msgstr "��� �������� �������� ��� �� ������� `%s'" + +#~ msgid "problems while reading `%s'" +#~ msgstr "���������� ���� ��� �������� ��� `%s'" + +#~ msgid "symbol for multicharacter collating element `%.*s' duplicates other symbol definition" +#~ msgstr "������� ��� ������������� ��������� ��������� `%.*s' ����������� ���� ��������������" + +#~ msgid "symbol for multicharacter collating element `%.*s' duplicates symbol definition" +#~ msgstr "������� ��� ������������� ��������� ��������� `%.*s' ����������� ��� ��������� ��������" + +#~ msgid "symbol for multicharacter collating element `%.*s' duplicates symbolic name in charset" +#~ msgstr "������� ��� ������������� ��������� ��������� `%.*s' ����������� �� �������������� ��� charset" + +#~ msgid "syntax error in `order_start' directive" +#~ msgstr "���������� ������ ���� `order_start' ������������� ������" + +#~ msgid "syntax error in character class definition" +#~ msgstr "���������� ������ ���� ������ ������ ����������" + +#~ msgid "syntax error in collating order definition" +#~ msgstr "���������� ������ ���� �������� ����� �������" + +#~ msgid "syntax error in collation definition" +#~ msgstr "���������� ������ ���� �������� �������" + +#~ msgid "syntax error in definition of LC_CTYPE category" +#~ msgstr "���������� ������ ���� ������ ��� LC_TYPE ����������" + +#~ msgid "syntax error in message locale definition" +#~ msgstr "���������� ������ ���� ������� locale ���������" + +#~ msgid "syntax error in monetary locale definition" +#~ msgstr "���������� ������ ���� ������ ������������ locale" + +#~ msgid "syntax error in numeric locale definition" +#~ msgstr "���������� ������ ���� ������ ����������� locale" + +#~ msgid "syntax error in order specification" +#~ msgstr "���������� ������ ���� ��������� ������" + +#~ msgid "syntax error in time locale definition" +#~ msgstr "���������� ������ ���� ������ locale ����" + +#~ msgid "too many character classes defined" +#~ msgstr "��������� ������ ������� ����������" + +#~ msgid "too many weights" +#~ msgstr "���������� ����� ����" + +#~ msgid "two lines in a row containing `...' are not allowed" +#~ msgstr "��� ����������� ��� ����������� ������� �� ��������� `...'" + +#~ msgid "unknown character in field `%s' of category `%s'" +#~ msgstr "�������� ���������� ��� ����� `%s' ��� ���������� `%s'" + +#~ msgid "unknown collation directive" +#~ msgstr "������� ������� ���������" + +#~ msgid "unterminated weight name" +#~ msgstr "�� ������������� ����� ������" + +#~ msgid "value for <%s> must lie between 1 and 4" +#~ msgstr "� ���� ��� <%s> ������ �� ��������� ������ 1 ��� 4" + +#~ msgid "while reading database" +#~ msgstr "���� ��� �������� ������ ���������" + +#~ msgid "while writing database file" +#~ msgstr "���� ��� ������� ������� ������ ���������" + #~ msgid "%s: Error writing standard output " #~ msgstr "%s: ������ ���� ��� ������� ���� �������� ����� " @@ -4852,9 +5843,6 @@ msgstr "yp_update: �������� ����� ���������� ����������\n" #~ " -c, --category-name ��������� �� �������� ��� ����������� ����������\n" #~ " -k, --keyword-name ��������� �� ������� ��� ����������� ������-��������\n" -#~ msgid "field `%s' in category `%s' not defined" -#~ msgstr "�� ����� `%s' ���� ��������� `%s' ��� ��������" - #~ msgid "memory exhausted\n" #~ msgstr "� ����� �����������\n" @@ -1,86 +1,86 @@ # GNU libc message catalog for swedish -# Copyright � 1996, 1998 Free Software Foundation, Inc. -# Jan Dj�rv <Jan.Djarv@mbox200.swipnet.se>, 1996, 1998. -# Revision: 1.26 +# Copyright � 1996, 1998, 2001 Free Software Foundation, Inc. +# Jan Dj�rv <Jan.Djarv@mbox200.swipnet.se>, 1996, 1998, 2001. +# Revision: 1.29 # msgid "" msgstr "" -"Project-Id-Version: libc 2.1\n" -"POT-Creation-Date: 1998-11-28 09:29-0800\n" -"PO-Revision-Date: 2001-01-21 15:52+0100\n" +"Project-Id-Version: libc 2.2.3\n" +"POT-Creation-Date: 2001-01-21 08:03-0800\n" +"PO-Revision-Date: 2001-05-22 18:58+0200\n" "Last-Translator: Jan Dj�rv <Jan.Djarv@mbox200.swipnet.se>\n" "Language-Team: Swedish <sv@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: nis/nis_print.c:273 +#: nis/nis_print.c:274 msgid "\t\tAccess Rights : " -msgstr "\t\tAccessr�ttigheter : " +msgstr "\t\t�tkomstr�ttigheter: " -#: nis/nis_print.c:271 +#: nis/nis_print.c:272 msgid "\t\tAttributes : " msgstr "\t\tAttribut : " -#: sunrpc/rpc_main.c:1416 +#: sunrpc/rpc_main.c:1425 #, c-format msgid "\t%s [-abkCLNTM][-Dname[=value]] [-i size] [-I [-K seconds]] [-Y path] infile\n" msgstr "\t%s [-abkCLNTM][-Dnamn[=v�rde]] [-i storlek] [-I [-K sekunder]] [-Y s�kv�g] infil\n" -#: sunrpc/rpc_main.c:1418 +#: sunrpc/rpc_main.c:1427 #, 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 utfil] [infil]\n" -#: sunrpc/rpc_main.c:1421 +#: sunrpc/rpc_main.c:1430 #, c-format msgid "\t%s [-n netid]* [-o outfile] [infile]\n" msgstr "\t%s [-n n�tid]* [-o utfil] [infil]\n" -#: sunrpc/rpc_main.c:1420 +#: sunrpc/rpc_main.c:1429 #, c-format msgid "\t%s [-s nettype]* [-o outfile] [infile]\n" msgstr "\t%s [-s n�ttyp]* [-o utfil] [infil]\n" -#: nis/nis_print.c:235 +#: nis/nis_print.c:236 msgid "\tAccess rights: " msgstr "\t�tkomstr�ttigheter: " -#: nis/nis_print.c:293 +#: nis/nis_print.c:294 #, c-format msgid "\tEntry data of type %s\n" msgstr "\tPostdata av typ %s\n" -#: nis/nis_print.c:171 +#: nis/nis_print.c:172 #, c-format msgid "\tName : %s\n" msgstr "\tNamn : %s\n" -#: nis/nis_print.c:172 +#: nis/nis_print.c:173 msgid "\tPublic Key : " -msgstr "\tPublik nyckel : " +msgstr "\tPublik nyckel: " -#: nis/nis_print.c:234 +#: nis/nis_print.c:235 #, c-format msgid "\tType : %s\n" msgstr "\tTyp : %s\n" -#: nis/nis_print.c:201 +#: nis/nis_print.c:202 #, c-format msgid "\tUniversal addresses (%u)\n" msgstr "\tUniversella adresser (%u)\n" -#: nis/nis_print.c:269 +#: nis/nis_print.c:270 #, c-format msgid "\t[%d]\tName : %s\n" msgstr "\t[%d]\tNamn : %s\n" -#: nis/nis_print.c:296 +#: nis/nis_print.c:297 #, c-format msgid "\t[%u] - [%u bytes] " msgstr "\t[%u] - [%u byte] " -#: nscd/nscd_stat.c:153 +#: nscd/nscd_stat.c:154 msgid "" "\n" "%s cache:\n" @@ -110,11 +110,11 @@ msgstr "" "%15ld%% cache tr�ffprocent\n" "%15s kontrollera /etc/%s f�r �ndringar\n" -#: nis/nis_print.c:251 +#: nis/nis_print.c:252 msgid "\nGroup Members :\n" -msgstr "\nGuppmedlemmar :\n" +msgstr "\nGuppmedlemmar:\n" -#: nis/nis_print.c:320 +#: nis/nis_print.c:323 msgid "\nTime to Live : " msgstr "\nLivsl�ngd : " @@ -134,60 +134,60 @@ msgstr " rpcinfo -p [ v�rd ]\n" msgid " rpcinfo [ -n portnum ] -t host prognum [ versnum ]\n" msgstr " rpcinfo [ -n portnr ] -t v�rd prognr [ versnr ]\n" -#: nscd/nscd_stat.c:145 nscd/nscd_stat.c:147 +#: nscd/nscd_stat.c:146 nscd/nscd_stat.c:148 msgid " no" msgstr " nej" -#: nscd/nscd_stat.c:145 nscd/nscd_stat.c:147 +#: nscd/nscd_stat.c:146 nscd/nscd_stat.c:148 msgid " yes" msgstr " ja" -#: nis/nis_print.c:344 +#: nis/nis_print.c:349 #, c-format msgid " Data Length = %u\n" msgstr " Datal�ngd = %u\n" -#: nis/nis_print_group_entry.c:121 +#: nis/nis_print_group_entry.c:123 msgid " Explicit members:\n" msgstr " Explicita medlemmar:\n" -#: nis/nis_print_group_entry.c:145 nis/nis_print_group_entry.c:161 +#: nis/nis_print_group_entry.c:147 nis/nis_print_group_entry.c:163 msgid " Explicit nonmembers:\n" msgstr " Explicit icke-medlemmar:\n" -#: nis/nis_print_group_entry.c:129 +#: nis/nis_print_group_entry.c:131 msgid " Implicit members:\n" msgstr " Implicita medlemmar:\n" -#: nis/nis_print_group_entry.c:153 +#: nis/nis_print_group_entry.c:155 msgid " Implicit nonmembers:\n" msgstr " Implicita icke-medlemmar:\n" -#: nis/nis_print_group_entry.c:126 +#: nis/nis_print_group_entry.c:128 msgid " No explicit members\n" msgstr " Inga explicita medlemmar\n" -#: nis/nis_print_group_entry.c:150 +#: nis/nis_print_group_entry.c:152 msgid " No explicit nonmembers\n" msgstr " Inga explicita icke-medlemmar\n" -#: nis/nis_print_group_entry.c:134 +#: nis/nis_print_group_entry.c:136 msgid " No implicit members\n" msgstr " Inga implicita medlemmar\n" -#: nis/nis_print_group_entry.c:158 +#: nis/nis_print_group_entry.c:160 msgid " No implicit nonmembers\n" msgstr " Inga implicita icke-medlemmar\n" -#: nis/nis_print_group_entry.c:142 +#: nis/nis_print_group_entry.c:144 msgid " No recursive members\n" msgstr " Inga rekursiva medlemmar\n" -#: nis/nis_print_group_entry.c:166 +#: nis/nis_print_group_entry.c:168 msgid " No recursive nonmembers\n" msgstr " Inga rekursiva icke-medlemmar\n" -#: nis/nis_print_group_entry.c:137 +#: nis/nis_print_group_entry.c:139 msgid " Recursive members:\n" msgstr " Rekursiva medlemmar:\n" @@ -195,138 +195,198 @@ msgstr " Rekursiva medlemmar:\n" msgid " program vers proto port\n" msgstr " program vers proto port\n" -#: argp/argp-help.c:1571 +#: argp/argp-help.c:1572 msgid " or: " msgstr " eller: " +#: elf/ldconfig.c:448 +msgid " (SKIPPED)\n" +msgstr " (HOPPAR �VER)\n" + +#: elf/ldconfig.c:446 +msgid " (changed)\n" +msgstr " (�ndrad)\n" + #: timezone/zic.c:421 #, c-format msgid " (rule from \"%s\", line %d)" msgstr " (regel fr�n \"%s\", rad %d)" -#: argp/argp-help.c:1583 +#: argp/argp-help.c:1584 msgid " [OPTION...]" msgstr " [FLAGGA...]" -#: locale/programs/ld-collate.c:370 locale/programs/ld-ctype.c:1291 -msgid " done\n" -msgstr " klar\n" - #: timezone/zic.c:418 #, c-format msgid "\"%s\", line %d: %s" msgstr "\"%s\", rad %d: %s" -#: timezone/zic.c:958 +#: timezone/zic.c:983 #, c-format msgid "\"Zone %s\" line and -l option are mutually exclusive" msgstr "\"Zone %s\"-rad och flaggan -l �r �msesidigt uteslutande" -#: timezone/zic.c:966 +#: timezone/zic.c:991 #, c-format msgid "\"Zone %s\" line and -p option are mutually exclusive" msgstr "\"Zone %s\"-rad och flaggan -p �r �msesidigt uteslutande" -#: sunrpc/rpc_main.c:1401 +#: sunrpc/rpc_main.c:1410 msgid "\"infile\" is required for template generation flags.\n" msgstr "\"infil\" �r obligatorisk f�r mallgenereringsflaggor.\n" -#: argp/argp-help.c:210 +#: argp/argp-help.c:209 #, c-format msgid "%.*s: ARGP_HELP_FMT parameter requires a value" msgstr "%.*s: parameter till ARGP_HELP_FMT kr�ver ett v�rde" -#: argp/argp-help.c:219 +#: argp/argp-help.c:218 #, c-format msgid "%.*s: Unknown ARGP_HELP_FMT parameter" msgstr "%.*s: Parameter till ARGP_HELP_FMT ok�nd" -#: timezone/zic.c:768 +#: locale/programs/ld-address.c:576 locale/programs/ld-collate.c:2593 +#: locale/programs/ld-collate.c:3719 locale/programs/ld-ctype.c:2110 +#: locale/programs/ld-ctype.c:2847 locale/programs/ld-identification.c:440 +#: locale/programs/ld-measurement.c:232 locale/programs/ld-messages.c:326 +#: locale/programs/ld-monetary.c:934 locale/programs/ld-name.c:300 +#: locale/programs/ld-numeric.c:370 locale/programs/ld-paper.c:233 +#: locale/programs/ld-telephone.c:308 locale/programs/ld-time.c:1172 +#, c-format +msgid "%1$s: definition does not end with `END %1$s'" +msgstr "%1$s: definition slutar inte med \"END %1$s\"" + +#: elf/cache.c:165 elf/cache.c:175 +#, c-format +msgid "%d libs found in cache `%s'\n" +msgstr "%d bibliotek hittades i cache \"%s\"\n" + +#: timezone/zic.c:793 #, c-format msgid "%s in ruleless zone" msgstr "%s i zon utan regler" -#: assert/assert.c:51 +#: elf/../sysdeps/generic/readelflib.c:65 +#, c-format +msgid "%s is a 32 bit ELF file.\n" +msgstr "%s �r en 32-bitars ELF-fil.\n" + +#: elf/../sysdeps/generic/readelflib.c:67 +#, c-format +msgid "%s is a 64 bit ELF file.\n" +msgstr "%s �r en 64-bitars ELF-fil.\n" + +#: elf/../sysdeps/unix/sysv/linux/i386/readelflib.c:48 +#, c-format +msgid "%s is for unknown machine %d.\n" +msgstr "%s �r f�r en ok�nd maskin %d.\n" + +#: elf/ldconfig.c:329 +#, c-format +msgid "%s is not a known library type" +msgstr "%s �r inte en k�nd bibliotekstyp" + +#: elf/../sysdeps/generic/readelflib.c:76 +#, c-format +msgid "%s is not a shared object file (Type: %d).\n" +msgstr "%s �r inte en delad objektfil (typ: %d).\n" + +#: elf/ldconfig.c:415 +#, c-format +msgid "%s is not a symbolic link\n" +msgstr "%s �r inte en symbolisk l�nk\n" + +#: elf/readlib.c:157 +#, c-format +msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n" +msgstr "%s �r inte en ELF-fil, den har inte r�tt magiskt tal i b�rjan.\n" + +#: assert/assert.c:52 #, c-format msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" msgstr "%s%s%s:%u: %s%sF�rs�kran \"%s\" falsk.\n" -#: assert/assert-perr.c:52 +#: assert/assert-perr.c:54 #, c-format msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n" msgstr "%s%s%s:%u: %s%sOv�ntat fel: %s.\n" -#: stdio-common/psignal.c:47 +#: stdio-common/psignal.c:48 #, c-format msgid "%s%sUnknown signal %d\n" msgstr "%s%sOk�nd signal %d\n" -#: timezone/zic.c:2201 +#: timezone/zic.c:2228 #, c-format msgid "%s: %d did not sign extend correctly\n" msgstr "%s: %d teckenexpanderades inte korrekt\n" -#: locale/programs/charmap.c:261 +#: locale/programs/charmap.c:326 #, c-format msgid "%s: <mb_cur_max> must be greater than <mb_cur_min>\n" msgstr "%s: <mb_cur_max> m�ste vara st�rre �n <mb_cur_min>\n" -#: sunrpc/rpc_main.c:422 +#: sunrpc/rpc_main.c:423 #, c-format msgid "%s: C preprocessor failed with exit code %d\n" msgstr "%s: C preprocessorn avslutades med kod %d\n" -#: sunrpc/rpc_main.c:419 +#: sunrpc/rpc_main.c:420 #, c-format msgid "%s: C preprocessor failed with signal %d\n" msgstr "%s: C preprocessorn avslutades med signal %d\n" -#: timezone/zic.c:1469 +#: timezone/zic.c:1494 #, c-format msgid "%s: Can't create %s: %s\n" msgstr "%s: Kan inte skapa %s: %s\n" -#: timezone/zic.c:2179 +#: timezone/zic.c:2206 #, c-format msgid "%s: Can't create directory %s: %s\n" msgstr "%s: Kan inte skapa katalog %s: %s\n" -#: timezone/zic.c:620 +#: timezone/zic.c:645 #, c-format msgid "%s: Can't link from %s to %s: %s\n" msgstr "%s: Kan inte l�nka fr�n %s till %s: %s\n" -#: timezone/zic.c:794 +#: timezone/zic.c:819 #, c-format msgid "%s: Can't open %s: %s\n" msgstr "%s: Kan inte �ppna %s: %s\n" -#: timezone/zic.c:1459 +#: timezone/zic.c:1484 #, c-format msgid "%s: Can't remove %s: %s\n" msgstr "%s: Kan inte ta bort %s: %s\n" -#: timezone/zic.c:863 +#: timezone/zic.c:630 +#, c-format +msgid "%s: Can't unlink %s: %s\n" +msgstr "%s: Kan inte ta bort (unlink) %s: %s\n" + +#: timezone/zic.c:888 #, c-format msgid "%s: Error closing %s: %s\n" msgstr "%s: Fel vid st�ngning av %s: %s\n" -#: timezone/zic.c:856 +#: timezone/zic.c:881 #, c-format msgid "%s: Error reading %s\n" msgstr "%s: Fel vid l�sning fr�n %s\n" -#: timezone/zic.c:1535 +#: timezone/zdump.c:267 #, c-format -msgid "%s: Error writing %s\n" -msgstr "%s: Fel vid skrivning till %s\n" +msgid "%s: Error writing " +msgstr "%s: Fel vid skrivning " -#: timezone/zdump.c:266 +#: timezone/zic.c:1560 #, c-format -msgid "%s: Error writing standard output " -msgstr "%s: Fel vid skrivning till standard ut " +msgid "%s: Error writing %s\n" +msgstr "%s: Fel vid skrivning till %s\n" -#: timezone/zic.c:841 +#: timezone/zic.c:866 #, c-format msgid "%s: Leap line in non leap seconds file %s\n" msgstr "%s: \"Leap\"-rad i fil %s som inte �r skottsekundsfil\n" @@ -336,122 +396,551 @@ msgstr "%s: \"Leap\"-rad i fil %s som inte �r skottsekundsfil\n" msgid "%s: Memory exhausted: %s\n" msgstr "%s: Minnet slut: %s\n" -#: timezone/zic.c:524 +#: timezone/zic.c:525 #, c-format msgid "%s: More than one -L option specified\n" msgstr "%s: Flaggan -L given mer �n en g�ng\n" -#: timezone/zic.c:484 +#: timezone/zic.c:485 #, c-format msgid "%s: More than one -d option specified\n" msgstr "%s: Flaggan -d given mer �n en g�ng\n" -#: timezone/zic.c:494 +#: timezone/zic.c:495 #, c-format msgid "%s: More than one -l option specified\n" msgstr "%s: Flaggan -l given mer �n en g�ng\n" -#: timezone/zic.c:504 +#: timezone/zic.c:505 #, c-format msgid "%s: More than one -p option specified\n" msgstr "%s: Flaggan -p given mer �n en g�ng\n" -#: timezone/zic.c:514 +#: timezone/zic.c:515 #, c-format msgid "%s: More than one -y option specified\n" msgstr "%s: Flaggan -y given mer �n en g�ng\n" -#: argp/argp-parse.c:640 +#: argp/argp-parse.c:646 #, c-format msgid "%s: Too many arguments\n" msgstr "%s: F�r m�nga argument\n" -#: login/programs/database.c:129 +#: locale/programs/ld-collate.c:457 locale/programs/ld-collate.c:483 +#: locale/programs/ld-collate.c:499 #, c-format -msgid "%s: cannot get modification time" -msgstr "%s: kan inte h�mta modifieringstid" +msgid "%s: `%s' mentioned more than once in definition of weight %d" +msgstr "%s: \"%s\" �r n�mnd fler �n en g�ng i definitionen av vikt %d" -#: timezone/zic.c:1900 +#: locale/programs/ld-collate.c:1323 +#, c-format +msgid "%s: `%s' must be a character" +msgstr "%s: \"%s\" m�ste vara ett enskilt tecken" + +#: locale/programs/ld-address.c:248 locale/programs/ld-address.c:276 +#: locale/programs/ld-address.c:309 locale/programs/ld-address.c:321 +#, c-format +msgid "%s: `%s' value does not match `%s' value" +msgstr "%s: v�rdet p� \"%s\" st�mmer inte med v�rdet p� \"%s\"" + +#: locale/programs/ld-monetary.c:835 locale/programs/ld-numeric.c:313 +#, c-format +msgid "%s: `-1' must be last entry in `%s' field" +msgstr "%s: \"-1\" m�ste vara sista post i f�lt \"%s\"" + +#: locale/programs/ld-collate.c:447 locale/programs/ld-collate.c:473 +#, c-format +msgid "%s: `forward' and `backward' are mutually excluding each other" +msgstr "%s: sorteringsordning \"forward\" och \"backward\" �r �msesidigt uteslutande" + +#: locale/programs/ld-collate.c:1515 +#, c-format +msgid "%s: `position' must be used for a specific level in all sections or none" +msgstr "%s: \"position\" m�ste anv�ndas f�r en given niv� i alla sektioner eller inte alls" + +#: locale/programs/ld-ctype.c:2635 locale/programs/ld-ctype.c:2775 +#, c-format +msgid "%s: `translit_start' section does not end with `translit_end'" +msgstr "%s: sektion \"translit_start\" avslutas inte med \"translit_end\"" + +#: locale/programs/ld-collate.c:1123 +#, c-format +msgid "%s: byte sequence of first character of sequence is not lower than that of the last character" +msgstr "%s: bytesekvens f�r f�rsta tecknet �r inte mindre �n den f�r sista tecknet" + +#: locale/programs/ld-collate.c:1081 +#, c-format +msgid "%s: byte sequences of first and last character must have the same length" +msgstr "%s: bytesekvens f�r f�rsta och sista tecknet m�ste ha samma l�ngd" + +#: locale/programs/ld-collate.c:3642 +#, c-format +msgid "%s: cannot have `%s' as end of ellipsis range" +msgstr "%s: kan inte ha \"%s\" som �ndpunkt p� ellips" + +#: locale/programs/ld-collate.c:3308 +#, c-format +msgid "%s: cannot reorder after %.*s: symbol not known" +msgstr "%s: kan inte byta ordning efter %.*s: ok�nd symbol" + +#: locale/programs/ld-ctype.c:2910 locale/programs/ld-ctype.c:2994 +#: locale/programs/ld-ctype.c:3014 locale/programs/ld-ctype.c:3035 +#: locale/programs/ld-ctype.c:3056 locale/programs/ld-ctype.c:3077 +#: locale/programs/ld-ctype.c:3098 locale/programs/ld-ctype.c:3138 +#: locale/programs/ld-ctype.c:3159 locale/programs/ld-ctype.c:3226 +#, c-format +msgid "%s: character `%s' in charmap not representable with one byte" +msgstr "%s: tecken \"%s\" i teckenupps�ttning kan inte representeras med en byte" + +#: locale/programs/ld-ctype.c:3270 locale/programs/ld-ctype.c:3295 +#, c-format +msgid "%s: character `%s' needed as default value not representable with one byte" +msgstr "%s: tecken \"%s\" som beh�vs som standardv�rde kan inte representeras med en byte" + +#: locale/programs/ld-ctype.c:2905 +#, c-format +msgid "%s: character `%s' not defined in charmap while needed as default value" +msgstr "%s: tecken \"%s\" inte definierat i teckenupps�ttningen men beh�vs som standardv�rde" + +#: locale/programs/ld-ctype.c:2989 locale/programs/ld-ctype.c:3009 +#: locale/programs/ld-ctype.c:3051 locale/programs/ld-ctype.c:3072 +#: locale/programs/ld-ctype.c:3093 locale/programs/ld-ctype.c:3133 +#: locale/programs/ld-ctype.c:3154 locale/programs/ld-ctype.c:3221 +#: locale/programs/ld-ctype.c:3263 locale/programs/ld-ctype.c:3288 +#, c-format +msgid "%s: character `%s' not defined while needed as default value" +msgstr "%s: tecken \"%s\" inte definierat men beh�vs som standardv�rde" + +#: timezone/zic.c:1927 #, c-format msgid "%s: command was '%s', result was %d\n" msgstr "%s: kommandot var \"%s\", resultatet blev %d\n" -#: locale/programs/charmap.c:677 locale/programs/locfile.c:1008 +#: locale/programs/ld-time.c:225 +#, c-format +msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'" +msgstr "%s: riktningsflagga i str�ng %Zd i \"era\"-f�lt �r varken \"+\" eller \"-\"" + +#: locale/programs/ld-time.c:237 +#, c-format +msgid "%s: direction flag in string %Zd in `era' field is not a single character" +msgstr "%s: riktningsflagga i str�ng %Zd i \"era\"-f�lt �r inte ett enskilt tecken" + +#: locale/programs/ld-ctype.c:2727 +#, c-format +msgid "%s: duplicate `default_missing' definition" +msgstr "%s: dubbla definitioner av \"default_missing\"" + +#: locale/programs/ld-identification.c:423 +#, c-format +msgid "%s: duplicate category version definition" +msgstr "%s: dubbla definitioner av kategori" + +#: locale/programs/ld-collate.c:2711 +#, c-format +msgid "%s: duplicate declaration of section `%s'" +msgstr "%s: dubbla deklarationer f�r sektion \"%s\"" + +#: locale/programs/ld-collate.c:2675 +#, c-format +msgid "%s: duplicate definition of `%s'" +msgstr "%s: dubbla definitioner av \"%s\"" + +#: locale/programs/ld-collate.c:3691 +#, c-format +msgid "%s: empty category description not allowed" +msgstr "%s: tom kategoribeskrivning �r inte till�tet" + +#: locale/programs/ld-collate.c:755 +#, c-format +msgid "%s: empty weight string not allowed" +msgstr "%s: tomt viktnamn �r inte till�tet" + +#: locale/programs/charmap.c:831 #, c-format msgid "%s: error in state machine" msgstr "%s: fel i tillst�ndsmaskin" -#: posix/getopt.c:784 +#: locale/programs/ld-ctype.c:2483 +#, c-format +msgid "%s: field `%s' declared more than once" +msgstr "%s: f�lt \"%s\" �r deklarerad mer �n en g�ng" + +#: locale/programs/ld-ctype.c:1525 locale/programs/ld-ctype.c:1650 +#: locale/programs/ld-ctype.c:1756 locale/programs/ld-ctype.c:2346 +#: locale/programs/ld-ctype.c:3329 +#, c-format +msgid "%s: field `%s' does not contain exactly ten entries" +msgstr "%s: f�lt \"%s\" inneh�ller inte exakt tio poster" + +#: 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 +#, c-format +msgid "%s: field `%s' must not be empty" +msgstr "%s: f�lt \"%s\" kan inte vara tomt" + +#: locale/programs/ld-address.c:142 locale/programs/ld-address.c:197 +#: locale/programs/ld-address.c:224 locale/programs/ld-address.c:284 +#: locale/programs/ld-address.c:303 locale/programs/ld-address.c:315 +#: locale/programs/ld-measurement.c:104 locale/programs/ld-monetary.c:244 +#: locale/programs/ld-monetary.c:260 locale/programs/ld-name.c:104 +#: locale/programs/ld-numeric.c:113 locale/programs/ld-numeric.c:127 +#: locale/programs/ld-paper.c:101 locale/programs/ld-paper.c:109 +#: locale/programs/ld-telephone.c:105 +#, c-format +msgid "%s: field `%s' not defined" +msgstr "%s: f�lt \"%s\" �r inte definierat" + +#: locale/programs/ld-messages.c:115 locale/programs/ld-messages.c:148 +#, c-format +msgid "%s: field `%s' undefined" +msgstr "%s: f�lt \"%s\" �r odefinierat" + +#: locale/programs/ld-time.c:258 +#, c-format +msgid "%s: garbage at end of offset value in string %Zd in `era' field" +msgstr "%s: skr�p i slutet av till�ggsv�rde i str�ng %Zd i \"era\"-f�lt" + +#: locale/programs/ld-time.c:318 +#, c-format +msgid "%s: garbage at end of starting date in string %Zd in `era' field " +msgstr "%s: skr�p i slutet av startdatum i str�ng %Zd i \"era\"-f�lt" + +#: locale/programs/ld-time.c:395 +#, c-format +msgid "%s: garbage at end of stopping date in string %Zd in `era' field" +msgstr "%s: skr�p i slutet av slutdatum i str�ng %Zd i \"era\"-f�lt" + +#: posix/getopt.c:795 #, c-format msgid "%s: illegal option -- %c\n" msgstr "%s: otill�ten flagga -- %c\n" -#: posix/getopt.c:787 +#: locale/programs/ld-address.c:573 locale/programs/ld-collate.c:3717 +#: locale/programs/ld-ctype.c:2844 locale/programs/ld-identification.c:437 +#: locale/programs/ld-measurement.c:229 locale/programs/ld-messages.c:324 +#: locale/programs/ld-monetary.c:932 locale/programs/ld-name.c:298 +#: locale/programs/ld-numeric.c:368 locale/programs/ld-paper.c:231 +#: locale/programs/ld-telephone.c:306 locale/programs/ld-time.c:1170 +#, c-format +msgid "%s: incomplete `END' line" +msgstr "%s: ofullst�ndig \"END\"-rad" + +#: locale/programs/ld-address.c:166 +msgid "%s: invalid escape `%%%c' sequence in field `%s'" +msgstr "%s: ogiltig kontrollsekvens \"%%%c\" i f�lt \"%s\" " + +#: locale/programs/ld-name.c:127 locale/programs/ld-telephone.c:126 +#: locale/programs/ld-telephone.c:150 +#, c-format +msgid "%s: invalid escape sequence in field `%s'" +msgstr "%s: ogiltig kontrollsekvens i f�lt \"%s\"" + +#: locale/programs/ld-time.c:250 +#, c-format +msgid "%s: invalid number for offset in string %Zd in `era' field" +msgstr "%s: ogiltigt tal f�r till�ggsv�rde i str�ng %Zd i \"era\"-f�lt" + +#: locale/programs/ld-collate.c:3143 +#, c-format +msgid "%s: invalid number of sorting rules" +msgstr "%s: ogiltigt antal sorteringsregler" + +#: posix/getopt.c:798 #, c-format msgid "%s: invalid option -- %c\n" msgstr "%s: ogiltig flagga -- %c\n" -#: posix/getopt.c:707 +#: locale/programs/ld-time.c:309 +#, c-format +msgid "%s: invalid starting date in string %Zd in `era' field" +msgstr "%s: ogiltigt startdatum i str�ng %Zd i \"era\"-f�lt" + +#: locale/programs/ld-time.c:386 +#, c-format +msgid "%s: invalid stopping date in string %Zd in `era' field" +msgstr "%s: ogiltigt slutdatum i str�ng %Zd i \"era\"-f�lt" + +#: locale/programs/ld-measurement.c:112 +#, c-format +msgid "%s: invalid value for field `%s'" +msgstr "%s: ogiltigt v�rde f�r f�lt \"%s\"" + +#: locale/programs/ld-address.c:242 locale/programs/ld-address.c:270 +#, c-format +msgid "%s: language abbreviation `%s' not defined" +msgstr "%s: spr�kf�rkortning \"%s\" inte definierad" + +#: locale/programs/ld-collate.c:3223 locale/programs/ld-collate.c:3346 +#: locale/programs/ld-collate.c:3695 +#, c-format +msgid "%s: missing `order_end' keyword" +msgstr "%s: nyckelord \"order_end\" saknas" + +#: locale/programs/ld-collate.c:3360 locale/programs/ld-collate.c:3707 +#, c-format +msgid "%s: missing `reorder-end' keyword" +msgstr "%s: nyckelord \"reorder-end\" saknas" + +#: locale/programs/ld-collate.c:3710 +#, c-format +msgid "%s: missing `reorder-sections-end' keyword" +msgstr "%s: nyckelord \"reorder-sections-end\" saknas" + +#: locale/programs/ld-time.c:435 +#, c-format +msgid "%s: missing era format in string %Zd in `era' field" +msgstr "%s: eraformat i str�ng %Zd i \"era\"-f�lt saknas" + +#: locale/programs/ld-time.c:423 +#, c-format +msgid "%s: missing era name in string %Zd in `era' field" +msgstr "%s: eranamn i str�ng %Zd i \"era\"-f�lt saknas" + +#: locale/programs/ld-collate.c:3119 +#, c-format +msgid "%s: multiple order definitions for section `%s'" +msgstr "%s: dubbla definitioner av ordningsf�ljd i sektion \"%s\"" + +#: locale/programs/ld-collate.c:3169 +#, c-format +msgid "%s: multiple order definitions for unnamed section" +msgstr "%s: flera definitioner av ordningsf�ljd i namnl�s sektion" + +#: locale/programs/ld-messages.c:137 locale/programs/ld-messages.c:170 +#, c-format +msgid "%s: no correct regular expression for field `%s': %s" +msgstr "%s: felaktigt regulj�rt uttryck f�r f�lt \"%s\": %s" + +#: locale/programs/ld-identification.c:169 +#, c-format +msgid "%s: no identification for category `%s'" +msgstr "%s: ingen idenitifikation f�r kategori \"%s\"" + +#: locale/programs/ld-ctype.c:2753 +#, c-format +msgid "%s: no representable `default_missing' definition found" +msgstr "%s: ingen representerbar definition av \"default_missing\" hittades" + +#: locale/programs/ld-collate.c:591 +#, c-format +msgid "%s: not enough sorting rules" +msgstr "%s: inte tillr�ckligt med sorteringsregler" + +#: locale/programs/ld-address.c:295 +#, c-format +msgid "%s: numeric country code `%d' not valid" +msgstr "%s: numerisk landkod \"%d\" �r inte giltig" + +#: posix/getopt.c:718 #, c-format msgid "%s: option `%c%s' doesn't allow an argument\n" msgstr "%s: flaggan \"%c%s\" tar inget argument\n" -#: posix/getopt.c:677 +#: posix/getopt.c:688 #, c-format msgid "%s: option `%s' is ambiguous\n" msgstr "%s: flaggan \"%s\" �r tvetydig\n" -#: posix/getopt.c:725 posix/getopt.c:898 +#: posix/getopt.c:736 posix/getopt.c:909 #, c-format msgid "%s: option `%s' requires an argument\n" msgstr "%s: flaggan \"%s\" beh�ver ett argument\n" -#: posix/getopt.c:702 +#: posix/getopt.c:713 #, c-format msgid "%s: option `--%s' doesn't allow an argument\n" msgstr "%s: flaggan \"--%s\" tar inget argument\n" -#: posix/getopt.c:882 +#: posix/getopt.c:893 #, c-format msgid "%s: option `-W %s' doesn't allow an argument\n" msgstr "%s: flaggan \"-W %s\" tar inget argument\n" -#: posix/getopt.c:864 +#: posix/getopt.c:875 #, c-format msgid "%s: option `-W %s' is ambiguous\n" msgstr "%s: flaggan \"-W %s\" �r tvetydig\n" -#: posix/getopt.c:817 posix/getopt.c:947 +#: posix/getopt.c:828 posix/getopt.c:958 #, c-format msgid "%s: option requires an argument -- %c\n" msgstr "%s: flaggan beh�ver ett argument -- %c\n" -#: sunrpc/rpc_main.c:287 +#: locale/programs/ld-collate.c:1314 locale/programs/ld-collate.c:3654 +#, c-format +msgid "%s: order for `%.*s' already defined at %s:%Zu" +msgstr "%s: ordningsf�ljd f�r \"%.*s\" redan definierad i %s:%Zu" + +#: locale/programs/ld-collate.c:3297 +#, c-format +msgid "%s: order for collating element %.*s not yet defined" +msgstr "%s: ordningsf�ljd f�r kollationselement %.*s �r inte definierad �nnu" + +#: locale/programs/ld-collate.c:3281 +#, c-format +msgid "%s: order for collating symbol %.*s not yet defined" +msgstr "%s: ordningsf�ljd f�r kollationssymbol %.*s �r inte definierad �nnu" + +#: sunrpc/rpc_main.c:289 #, c-format msgid "%s: output would overwrite %s\n" msgstr "%s: utdata skulle skriva �ver %s\n" -#: timezone/zic.c:848 timezone/zic.c:1262 timezone/zic.c:1287 +#: timezone/zic.c:873 timezone/zic.c:1287 timezone/zic.c:1312 #, c-format msgid "%s: panic: Invalid l_value %d\n" msgstr "%s: panik: ogiltigt l_value %d\n" -#: locale/programs/charmap.c:684 locale/programs/repertoire.c:289 +#: locale/programs/charmap.c:838 locale/programs/ld-address.c:592 +#: locale/programs/ld-collate.c:2590 locale/programs/ld-collate.c:3735 +#: locale/programs/ld-ctype.c:2107 locale/programs/ld-ctype.c:2864 +#: locale/programs/ld-identification.c:456 +#: locale/programs/ld-measurement.c:248 locale/programs/ld-messages.c:342 +#: locale/programs/ld-monetary.c:950 locale/programs/ld-name.c:316 +#: locale/programs/ld-numeric.c:386 locale/programs/ld-paper.c:249 +#: locale/programs/ld-telephone.c:324 locale/programs/ld-time.c:1188 +#: locale/programs/locfile.h:103 locale/programs/repertoire.c:325 #, c-format msgid "%s: premature end of file" msgstr "%s: f�r tidigt filslut" -#: sunrpc/rpc_main.c:294 +#: locale/programs/ld-collate.c:3394 locale/programs/ld-collate.c:3580 +#, c-format +msgid "%s: section `%.*s' not known" +msgstr "%s: sektion \"%.*s\" ok�nd" + +#: locale/programs/ld-time.c:337 +#, c-format +msgid "%s: starting date is invalid in string %Zd in `era' field" +msgstr "%s: startdatum �r ogiltigt i str�ng %Zd i \"era\"-f�lt" + +#: locale/programs/ld-time.c:414 +#, c-format +msgid "%s: stopping date is invalid in string %Zd in `era' field" +msgstr "%s: slutdatum �r ogiltigt i str�ng %Zd i \"era\"-f�lt" + +#: locale/programs/ld-collate.c:1248 #, c-format -msgid "%s: unable to open " -msgstr "%s: kan inte �ppna " +msgid "%s: symbolic range ellipsis must not be direct followed by `order_end'" +msgstr "%s: symboliskt intervall kan inte omedelbart f�ljas av \"order_end\"" -#: posix/getopt.c:758 +#: locale/programs/ld-collate.c:1244 +#, c-format +msgid "%s: symbolic range ellipsis must not directly follow `order_start'" +msgstr "%s: symboliskt intervall kan inte vara omedelbart efter \"order_start\"" + +#: locale/programs/ld-address.c:583 locale/programs/ld-collate.c:518 +#: locale/programs/ld-collate.c:570 locale/programs/ld-collate.c:865 +#: locale/programs/ld-collate.c:878 locale/programs/ld-collate.c:2581 +#: locale/programs/ld-collate.c:3726 locale/programs/ld-ctype.c:1840 +#: locale/programs/ld-ctype.c:2098 locale/programs/ld-ctype.c:2673 +#: locale/programs/ld-ctype.c:2855 locale/programs/ld-identification.c:447 +#: locale/programs/ld-measurement.c:239 locale/programs/ld-messages.c:333 +#: locale/programs/ld-monetary.c:941 locale/programs/ld-name.c:307 +#: locale/programs/ld-numeric.c:377 locale/programs/ld-paper.c:240 +#: locale/programs/ld-telephone.c:315 locale/programs/ld-time.c:1179 +#, c-format +msgid "%s: syntax error" +msgstr "%s: syntaxfel" + +#: locale/programs/ld-ctype.c:2178 +#, c-format +msgid "%s: syntax error in definition of new character class" +msgstr "%s: syntaxfel i definition av ny teckenklass" + +#: locale/programs/ld-ctype.c:2193 +#, c-format +msgid "%s: syntax error in definition of new character map" +msgstr "%s: syntaxfel i definition av ny teckenupps�ttning" + +#: locale/programs/ld-ctype.c:3735 +#, c-format +msgid "%s: table for class \"%s\": %lu bytes\n" +msgstr "%s: tabell f�r klass \"%s\": %lu byte\n" + +#: locale/programs/ld-ctype.c:3803 +#, c-format +msgid "%s: table for map \"%s\": %lu bytes\n" +msgstr "%s: tabell f�r \"%s\": %lu byte\n" + +#: locale/programs/ld-ctype.c:3935 +#, c-format +msgid "%s: table for width: %lu bytes\n" +msgstr "%s: tabell f�r teckenstorlek: %lu byte\n" + +#: locale/programs/ld-address.c:216 +#, c-format +msgid "%s: terminology language code `%s' not defined" +msgstr "%s: terminologilandskod \"%s\" inte definierad" + +#: locale/programs/ld-collate.c:1054 +#, c-format +msgid "%s: the start and the end symbol of a range must stand for characters" +msgstr "%s: start- och slut-symbol i ett intervall m�ste representera tecken" + +#: locale/programs/ld-time.c:464 +#, c-format +msgid "%s: third operand for value of field `%s' must not be larger than %d" +msgstr "%s: tredje operanden f�r v�rdet av f�lt \"%s\" kan inte vara st�rre �n %d" + +#: locale/programs/ld-collate.c:555 +#, c-format +msgid "%s: too many rules; first entry only had %d" +msgstr "%s: f�r m�nga regler, f�rsta delen hade bara %d" + +#: locale/programs/ld-collate.c:906 +#, c-format +msgid "%s: too many values" +msgstr "%s: f�r m�nga v�rden" + +#: locale/programs/ld-ctype.c:3639 +#, c-format +msgid "%s: transliteration data from locale `%s' not available" +msgstr "%s: transkriberingsdata f�r lokal \"%s\" �r inte tillg�nglig" + +#: sunrpc/rpc_main.c:296 +#, c-format +msgid "%s: unable to open %s: %m\n" +msgstr "%s: kan inte �ppna %s: %m\n" + +#: locale/programs/ld-collate.c:2849 +#, c-format +msgid "%s: unknown character in collating symbol name" +msgstr "%s: ok�nt tecken i namn f�r kollationssymbol" + +#: locale/programs/ld-collate.c:2981 +#, c-format +msgid "%s: unknown character in equivalent definition name" +msgstr "%s: ok�nt tecken i namnet i ekvivalensdefinitionen" + +#: locale/programs/ld-collate.c:2994 +#, c-format +msgid "%s: unknown character in equivalent definition value" +msgstr "%s: ok�nt tecken i v�rdet i ekvivalensdefinitionen" + +#: locale/programs/ld-time.c:1040 +#, c-format +msgid "%s: unknown character in field `%s'" +msgstr "%s: ok�nt tecken i f�lt \"%s\"" + +#: locale/programs/ld-collate.c:3091 +#, c-format +msgid "%s: unknown section name `%s'" +msgstr "%s: ok�nt sektionsnamn \"%s\"" + +#: locale/programs/ld-collate.c:3004 +#, c-format +msgid "%s: unknown symbol `%s' in equivalent definition" +msgstr "%s: ok�nd symbol \"%s\" i ekvivalensdefinition" + +#: posix/getopt.c:769 #, c-format msgid "%s: unrecognized option `%c%s'\n" msgstr "%s: ok�nd flagga \"%c%s\"\n" -#: posix/getopt.c:754 +#: posix/getopt.c:765 #, c-format msgid "%s: unrecognized option `--%s'\n" msgstr "%s: ok�nd flagga \"--%s\"\n" @@ -459,35 +948,75 @@ msgstr "%s: ok�nd flagga \"--%s\"\n" #: timezone/zic.c:443 #, c-format msgid "" -"%s: usage is %s [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] [ -d directory ]\n" -"\t[ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" +"%s: usage is %s [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n" +"\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" msgstr "" -"%s: anv�ndning �r %s [ -s ] [ -v ] [ -l lokaltid ] [ -p posixregler ] [ -d katalog ]\n" -"\t[ -L skottsekunder ] [ -y �rkontrollprogram ] [ filnamn ... ]\n" +"%s: anv�ndning �r %s [ -s ] [ -v ] [ -l lokaltid ] [ -p posixregler ] \\\n" +"\t[ -d katalog ] [ -L skottsekunder ] [ -y �rkontrollprogram ] [ filnamn ... ]\n" -#: timezone/zdump.c:174 +#: timezone/zdump.c:175 #, c-format msgid "%s: usage is %s [ -v ] [ -c cutoff ] zonename ...\n" msgstr "%s: anv�ndning �r %s [ -v ] [ -c gr�ns ] zonnamn ...\n" -#: sunrpc/rpc_main.c:307 +#: 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: v�rde p� f�lt \"%s\" f�r inte vara en tom str�ng" + +#: 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: v�rde p� f�lt \"%s\" f�r inte vara tom str�ng" + +#: 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: v�rdet p� f�lt \"int_curr_symbol\" st�mmer inte med giltiga namn i ISO 4217" + +#: locale/programs/ld-monetary.c:224 +#, c-format +msgid "%s: value of field `int_curr_symbol' has wrong length" +msgstr "%s: v�rdet p� f�lt \"int_curr_symbol\" har fel l�ngd" + +#: locale/programs/ld-monetary.c:857 locale/programs/ld-numeric.c:334 +#, c-format +msgid "%s: values for field `%s' must be smaller than 127" +msgstr "%s: v�rden p� f�lt \"%s\" m�ste vara mindre �n 127" + +#: locale/programs/ld-time.c:488 +#, c-format +msgid "%s: values for field `%s' must not be larger than %d" +msgstr "%s: v�rden p� f�lt \"%s\" f�r inte vara st�rre �n %d" + +#: locale/programs/ld-time.c:472 locale/programs/ld-time.c:480 +#, c-format +msgid "%s: values of field `%s' must not be larger than %d" +msgstr "%s: v�rden p� f�lt \"%s\" f�r inte vara st�rre �n %d" + +#: locale/programs/ld-collate.c:850 +#, c-format +msgid "%s: weights must use the same ellipsis symbol as the name" +msgstr "%s: vikter m�ste anv�nda samma intervallsymbol som namn" + +#: sunrpc/rpc_main.c:308 #, c-format -msgid "%s: while writing output: " -msgstr "%s: n�r resultatet skrevs: " +msgid "%s: while writing output %s: %m" +msgstr "%s: n�r resultatet %s skrevs: %m" -#: argp/argp-parse.c:164 +#: argp/argp-parse.c:170 msgid "(PROGRAM ERROR) No version known!?" msgstr "(PROGRAMFEL) Ingen version k�nd!?" -#: argp/argp-parse.c:781 +#: argp/argp-parse.c:787 msgid "(PROGRAM ERROR) Option should have been recognized!?" msgstr "(PROGRAMFEL) Flagga skulle k�nts igen!?" -#: nis/nis_print.c:129 +#: nis/nis_print.c:130 msgid "(Unknown object)\n" msgstr "(Ok�nt objekt)\n" -#: sunrpc/clnt_perr.c:124 +#: sunrpc/clnt_perr.c:125 #, c-format msgid "(unknown authentication error - %d)" msgstr "(ok�nt fel vid �kthetskontroll - %d)" @@ -496,16 +1025,16 @@ msgstr "(ok�nt fel vid �kthetskontroll - %d)" msgid "(unknown)" msgstr "(ok�nt)" -#: elf/sprof.c:574 +#: elf/sprof.c:570 #, c-format msgid "*** The file `%s' is stripped: no detailed analysis possible\n" msgstr "*** Filen \"%s\" �r strippad: ingen detaljerad analys �r m�jlig\n" -#: catgets/gencat.c:266 +#: catgets/gencat.c:282 msgid "*standard input*" msgstr "*standard in*" -#: catgets/gencat.c:120 +#: catgets/gencat.c:125 msgid "" "-o OUTPUT-FILE [INPUT-FILE]...\n" "[OUTPUT-FILE [INPUT-FILE]...]" @@ -513,30 +1042,36 @@ msgstr "" "-o UTFIL [INFIL]...\n" "[UTFIL [INFIL]...]" -#: stdio-common/../sysdeps/gnu/errlist.c:778 +#: 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 ".lib-sektion i a.out korrupt" -#: sunrpc/clnt_perr.c:110 sunrpc/clnt_perr.c:131 +#: sunrpc/clnt_perr.c:111 sunrpc/clnt_perr.c:132 #, c-format msgid "; low version = %lu, high version = %lu" msgstr "; undre version = %lu, �vre version = %lu" -#: sunrpc/clnt_perr.c:117 +#: sunrpc/clnt_perr.c:118 msgid "; why = " msgstr "; varf�r = " -#: locale/programs/charset.c:98 +#: locale/programs/charmap.c:999 #, c-format msgid "<%s> and <%s> are illegal names for range" msgstr "<%s> och <%s> �r otill�tna namn f�r intervall" -#: locale/programs/ld-ctype.c:342 +#: locale/programs/repertoire.c:448 +#, c-format +msgid "<%s> and <%s> are invalid names for range" +msgstr "<%s> och <%s> �r ogiltiga namn f�r intervall" + +#: locale/programs/ld-ctype.c:565 locale/programs/ld-ctype.c:600 #, c-format msgid "<SP> character must not be in class `%s'" msgstr "<SP>-tecknet f�r inte vara i klass \"%s\"" -#: locale/programs/ld-ctype.c:330 +#: locale/programs/ld-ctype.c:553 locale/programs/ld-ctype.c:589 #, c-format msgid "<SP> character not in class `%s'" msgstr "<SP>-tecknet �r inte i klass \"%s\"" @@ -544,102 +1079,149 @@ msgstr "<SP>-tecknet �r inte i klass \"%s\"" #. 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:603 +#: stdio-common/../sysdeps/gnu/errlist.c:622 msgid "?" msgstr "?" -#: sysdeps/unix/sysv/linux/siglist.h:27 +#: sysdeps/generic/siglist.h:34 msgid "Aborted" msgstr "Avbruten (SIGABRT)" -#: nis/nis_print.c:318 +#: nis/nis_print.c:321 msgid "Access Rights : " -msgstr "�tkomstr�ttigheter : " +msgstr "�tkomstr�ttigheter: " -#: stdio-common/../sysdeps/gnu/errlist.c:774 +#: 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 "�ppnar ett korrupt delat bibliotek" #. TRANS The requested socket address is already in use. @xref{Socket Addresses}. -#: stdio-common/../sysdeps/gnu/errlist.c:366 +#: stdio-common/../sysdeps/gnu/errlist.c:367 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:155 msgid "Address already in use" msgstr "Adressen upptagen" -#: posix/../sysdeps/posix/gai_strerror.c:30 +#: posix/../sysdeps/posix/gai_strerror.c:31 msgid "Address family for hostname not supported" -msgstr "Adressfamilj f�r v�rdnamn st�ds inte" +msgstr "Adressfamilj f�r v�rdnamn st�ds ej" #. 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:361 +#: stdio-common/../sysdeps/gnu/errlist.c:362 msgid "Address family not supported by protocol" msgstr "Adressfamiljen st�ds inte av protokollet" -#: stdio-common/../sysdeps/gnu/errlist.c:742 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:154 +msgid "Address family not supported by protocol family" +msgstr "Adressfamiljen st�ds inte av protokollfamiljen" + +#: stdio-common/../sysdeps/gnu/errlist.c:761 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:98 msgid "Advertise error" msgstr "Annonseringsfel" -#: stdio-common/../sysdeps/unix/siglist.c:39 -#: sysdeps/unix/sysv/linux/siglist.h:33 +#: stdio-common/../sysdeps/unix/siglist.c:40 sysdeps/generic/siglist.h:40 msgid "Alarm clock" msgstr "Alarmklocka" +#: malloc/memusagestat.c:57 +msgid "Also draw graph for total memory consumption" +msgstr "Visa ocks� en graf av totala minnes�tg�ngen" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:83 +msgid "Anode table overflow" +msgstr "\"Anode\"-tabell fl�dar �ver" + +#: intl/tst-gettext2.c:37 +msgid "Another string for testing." +msgstr "En till str�ng f�r test." + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:37 +msgid "Arg list too long" +msgstr "Argumentlistan f�r l�ng" + #. 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:69 +#: stdio-common/../sysdeps/gnu/errlist.c:70 msgid "Argument list too long" msgstr "Argumentlistan f�r l�ng" -#: nis/nis_error.c:65 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:63 +msgid "Argument out of domain" +msgstr "Argument utanf�r giltigt omr�de" + +#: nis/nis_error.c:66 msgid "Attempt to remove a non-empty table" msgstr "F�rs�k att ta bort en tabell som inte �r tom" -#: stdio-common/../sysdeps/gnu/errlist.c:782 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:116 +msgid "Attempting to link in more shared libraries than system limit" +msgstr "F�rs�k att l�nka in fler delade bibliotek �n systemgr�nsen" + +#: stdio-common/../sysdeps/gnu/errlist.c:801 msgid "Attempting to link in too many shared libraries" -msgstr "F�rs�k att l�nka in f�r m�nga delade bibliotek" +msgstr "F�rs�ker att l�nka in f�r m�nga delade bibliotek" -#: sunrpc/clnt_perr.c:273 +#: sunrpc/clnt_perr.c:329 msgid "Authentication OK" msgstr "�kthetskontroll OK" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:561 +#: stdio-common/../sysdeps/gnu/errlist.c:562 msgid "Authentication error" msgstr "�kthetskontroll misslyckades" -#: nis/nis_print.c:105 +#: nis/nis_print.c:106 msgid "BOGUS OBJECT\n" msgstr "SKENOBJEKT\n" #. 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:114 +#: stdio-common/../sysdeps/gnu/errlist.c:115 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:44 msgid "Bad address" msgstr "Felaktig adress" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:80 +msgid "Bad exchange descriptor" +msgstr "Felaktig \"exchange\"-deskriptor" + #. 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:82 +#: stdio-common/../sysdeps/gnu/errlist.c:83 msgid "Bad file descriptor" msgstr "Felaktig filidentifierare" -#: stdio-common/../sysdeps/gnu/errlist.c:730 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:39 +msgid "Bad file number" +msgstr "Felaktig filidentifierare" + +#: stdio-common/../sysdeps/gnu/errlist.c:749 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:87 msgid "Bad font file format" msgstr "Felaktigt format p� typsnittsfil" -#: stdio-common/../sysdeps/gnu/errlist.c:622 +#: stdio-common/../sysdeps/gnu/errlist.c:641 msgid "Bad message" msgstr "Felaktigt meddelande" -#: stdio-common/../sysdeps/unix/siglist.c:37 -#: sysdeps/unix/sysv/linux/siglist.h:56 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:84 +msgid "Bad request code" +msgstr "Ogiltig �tkomstkod" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:81 +msgid "Bad request descriptor" +msgstr "Ogiltig fr�gedeskriptor" + +#: stdio-common/../sysdeps/unix/siglist.c:38 sysdeps/generic/siglist.h:63 msgid "Bad system call" msgstr "Felaktigt systemanrop" -#: posix/../sysdeps/posix/gai_strerror.c:32 +#: posix/../sysdeps/posix/gai_strerror.c:33 msgid "Bad value for ai_flags" msgstr "Otill�tet v�rde f�r ai_flags" @@ -647,18 +1229,19 @@ msgstr "Otill�tet v�rde f�r ai_flags" msgid "Be strictly POSIX conform" msgstr "Var strikt POSIX-konform" -#: nis/nis_print.c:301 +#: nis/nis_print.c:302 msgid "Binary data\n" msgstr "Bin�rdata\n" #. 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:121 +#: stdio-common/../sysdeps/gnu/errlist.c:122 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:45 msgid "Block device required" msgstr "Blockspecialfil kr�vs" -#: sunrpc/pmap_rmt.c:347 +#: sunrpc/pmap_rmt.c:348 msgid "Broadcast poll problem" msgstr "Problem med poll vid uts�ndning" @@ -667,135 +1250,223 @@ msgstr "Problem med poll vid uts�ndning" #. 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:234 -#: stdio-common/../sysdeps/unix/siglist.c:38 -#: sysdeps/unix/sysv/linux/siglist.h:32 +#: 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 "Brutet r�r" -#: stdio-common/../sysdeps/unix/siglist.c:35 -#: sysdeps/unix/sysv/linux/siglist.h:30 +#: stdio-common/../sysdeps/unix/siglist.c:36 sysdeps/generic/siglist.h:37 msgid "Bus error" msgstr "Bussfel" -#: nis/nis_print.c:45 +#: nis/nis_print.c:46 msgid "CDS" msgstr "CDS" -#: stdio-common/../sysdeps/unix/siglist.c:49 -#: sysdeps/unix/sysv/linux/siglist.h:43 +#: stdio-common/../sysdeps/unix/siglist.c:50 sysdeps/generic/siglist.h:50 msgid "CPU time limit exceeded" msgstr "Begr�nsning av CPU-tid �verskriden" -#: nis/nis_error.c:32 +#: nis/nis_error.c:33 msgid "Cache expired" msgstr "Cache gick ur tiden" -#: stdio-common/../sysdeps/gnu/errlist.c:770 +#: 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 "Kan inte komma �t ett n�dv�ndigt delat bibliotek" -#: nis/ypclnt.c:769 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:117 +msgid "Can not exec a shared library directly" +msgstr "Kan inte k�ra ett delat bibliotek direkt" + +#: nis/ypclnt.c:792 msgid "Can't bind to server which serves this domain" msgstr "Kan inte ansluta till servern som betj�nar denna dom�n" -#: nis/ypclnt.c:781 +#: elf/ldconfig.c:934 +msgid "Can't chdir to /" +msgstr "Kan inte byta katalog till /" + +#: nis/ypclnt.c:804 msgid "Can't communicate with portmapper" msgstr "Kan inte kommunicera med portmapper" -#: nis/ypclnt.c:783 +#: nis/ypclnt.c:806 msgid "Can't communicate with ypbind" msgstr "Kan inte kommunicera med ypbind" -#: nis/ypclnt.c:785 +#: nis/ypclnt.c:808 msgid "Can't communicate with ypserv" msgstr "Kan inte kommunicera med ypserv" +#: elf/cache.c:359 +#, c-format +msgid "Can't create temporary cache file %s" +msgstr "Kan inte skapa tempor�r cache-fil \"%s\"" + +#: elf/ldconfig.c:502 +#, c-format +msgid "Can't find %s" +msgstr "Kan inte hitta %s" + +#: elf/ldconfig.c:440 +#, c-format +msgid "Can't link %s to %s" +msgstr "Kan inte l�nka %s till %s" + +#: elf/ldconfig.c:518 elf/ldconfig.c:672 +#, c-format +msgid "Can't lstat %s" +msgstr "Kan inte ta status (lstat) p� %s" + +#: elf/cache.c:108 elf/ldconfig.c:955 +#, c-format +msgid "Can't open cache file %s\n" +msgstr "Kan inte �ppna cache-fil \"%s\"\n" + +#: elf/ldconfig.c:976 +#, c-format +msgid "Can't open cache file directory %s\n" +msgstr "Kan inte l�sa cache-filkatalog \"%s\"\n" + +#: elf/ldconfig.c:865 +#, c-format +msgid "Can't open configuration file %s" +msgstr "Kan inte �ppna konfigurationsfil \"%s\"" + +#: elf/ldconfig.c:621 +#, c-format +msgid "Can't open directory %s" +msgstr "Kan inte �ppna katalog %s" + +#: elf/cache.c:353 +#, c-format +msgid "Can't remove old temporary cache file %s" +msgstr "Kan inte ta bort gammal tempor�r cache-fil %s" + +#: elf/ldconfig.c:405 +#, c-format +msgid "Can't stat %s\n" +msgstr "Kan inte ta status p� %s\n" + +#: elf/ldconfig.c:434 +#, c-format +msgid "Can't unlink %s" +msgstr "Kan inte ta bort (unlink) %s" + #. TRANS No memory available. The system cannot allocate more virtual memory #. TRANS because its capacity is full. -#: stdio-common/../sysdeps/gnu/errlist.c:103 +#: stdio-common/../sysdeps/gnu/errlist.c:104 msgid "Cannot allocate memory" msgstr "Kan inte allokera minne" #. 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:373 +#: stdio-common/../sysdeps/gnu/errlist.c:374 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:156 msgid "Cannot assign requested address" msgstr "Kan inte tilldela beg�rd adress" -#: sunrpc/pmap_rmt.c:264 +#: sunrpc/pmap_rmt.c:265 msgid "Cannot create socket for broadcast rpc" msgstr "Kan inte skapa uttag (socket) f�r uts�ndnings-rpc" -#: stdio-common/../sysdeps/gnu/errlist.c:786 +#: stdio-common/../sysdeps/gnu/errlist.c:805 msgid "Cannot exec a shared library directly" msgstr "Kan inte k�ra ett delat bibliotek direkt" -#: sunrpc/rpc_main.c:1406 +#: elf/readlib.c:98 +#, c-format +msgid "Cannot fstat file %s.\n" +msgstr "Kan inte ta status (fstat) p� fil %s.\n" + +#: sunrpc/rpc_main.c:1415 msgid "Cannot have more than one file generation flag!\n" msgstr "Kan inte ha mer �n en filgenereringsflagga!\n" -#: sunrpc/pmap_rmt.c:360 +#: elf/readlib.c:117 +#, c-format +msgid "Cannot mmap file %s.\n" +msgstr "Kan inte minnesmappa (mmap) fil %s.\n" + +#: sunrpc/pmap_rmt.c:361 msgid "Cannot receive reply to broadcast" msgstr "Kan inte ta emot svar p� uts�ndning" -#: sunrpc/pmap_clnt.c:74 +#: sunrpc/pmap_clnt.c:136 msgid "Cannot register service" msgstr "Kan inte registrera tj�nst" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:173 +msgid "Cannot send after socket shutdown" +msgstr "Kan inte skicka efter att uttaget (socket) st�ngts" + #. TRANS The socket has already been shut down. -#: stdio-common/../sysdeps/gnu/errlist.c:434 +#: stdio-common/../sysdeps/gnu/errlist.c:435 msgid "Cannot send after transport endpoint shutdown" msgstr "Kan inte skicka efter att transportslutpunkten st�ngts" -#: sunrpc/pmap_rmt.c:322 +#: sunrpc/pmap_rmt.c:323 msgid "Cannot send broadcast packet" msgstr "Kan inte skicka uts�ndningspaket" -#: sunrpc/pmap_rmt.c:271 +#: sunrpc/pmap_rmt.c:272 msgid "Cannot set socket option SO_BROADCAST" msgstr "Kan inte s�tta uttagsflaggan (socket option) SO_BROADCAST" -#: sunrpc/rpc_main.c:1193 +#: sunrpc/rpc_main.c:1195 msgid "Cannot specify more than one input file!\n" msgstr "Kan inte ange mer �n en infil!\n" -#: sunrpc/rpc_main.c:1363 +#: sunrpc/rpc_main.c:1372 msgid "Cannot use netid flag with inetd flag!\n" msgstr "Kan inte ange netid-flaggan tillsammans med inetd-flaggan!\n" -#: sunrpc/rpc_main.c:1375 +#: sunrpc/rpc_main.c:1384 msgid "Cannot use netid flag without TIRPC!\n" msgstr "Kan inte ange netid-flaggan utan TIRPC!\n" -#: sunrpc/rpc_main.c:1382 +#: sunrpc/rpc_main.c:1391 msgid "Cannot use table flags with newstyle!\n" msgstr "Kan inte ange tabellflaggor med ny stil\n" -#: stdio-common/../sysdeps/gnu/errlist.c:670 +#: elf/ldconfig.c:131 +msgid "Change to and use ROOT as root directory" +msgstr "Byt till och anv�nd ROOT som rotkatalog" + +#: elf/cache.c:390 +#, c-format +msgid "Changing access rights of %s to 0644 failed" +msgstr "Misslyckades med att byta �tkomstr�ttigheter f�r %s till 0644" + +#: 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 "Kanalnummer utanf�r giltigt intervall" -#: nis/nis_print.c:264 +#: nis/nis_print.c:265 #, c-format msgid "Character Separator : %c\n" -msgstr "Teckenseparator : %c\n" +msgstr "Teckenseparator: %c\n" -#: stdio-common/../sysdeps/unix/siglist.c:45 -#: sysdeps/unix/sysv/linux/siglist.h:39 +#: stdio-common/../sysdeps/unix/siglist.c:46 sysdeps/generic/siglist.h:46 msgid "Child exited" msgstr "Barnprocess avslutad" -#: sunrpc/clnt_perr.c:283 +#: sunrpc/clnt_perr.c:348 msgid "Client credential too weak" msgstr "Klientens referenser �r f�r svaga" -#: nis/nis_print.c:266 +#: nis/nis_print.c:267 msgid "Columns :\n" msgstr "Kolumner :\n" -#: stdio-common/../sysdeps/gnu/errlist.c:750 +#: stdio-common/../sysdeps/gnu/errlist.c:769 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:100 msgid "Communication error on send" msgstr "Kommunikationsfel vid s�ndning" @@ -804,54 +1475,48 @@ msgid "Compile locale specification" msgstr "Kompilera lokalspecifikation" #. TRANS Go home and have a glass of warm, dairy-fresh milk. -#: stdio-common/../sysdeps/gnu/errlist.c:613 +#: stdio-common/../sysdeps/gnu/errlist.c:632 msgid "Computer bought the farm" msgstr "Datorn packade ihop" -#: locale/programs/ld-ctype.c:1253 -msgid "Computing table size for character classes might take a while..." -msgstr "Att ber�kna tabellstorlek f�r teckenklasser kan ta ett tag..." - -#: locale/programs/ld-collate.c:336 -msgid "Computing table size for collation information might take a while..." -msgstr "Att ber�kna tabellstorlek f�r kollationeringsinformation kan ta ett tag..." +#: elf/ldconfig.c:141 +msgid "Configure Dynamic Linker Run Time Bindings." +msgstr "Konfigurera bindningar f�r den dynamiska l�nkaren." #. 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:451 +#: stdio-common/../sysdeps/gnu/errlist.c:452 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:176 msgid "Connection refused" msgstr "F�rbindelse v�gras" #. 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:401 +#: stdio-common/../sysdeps/gnu/errlist.c:402 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:161 msgid "Connection reset by peer" msgstr "F�rbindelse borttagen av partnern" #. TRANS A socket operation with a specified timeout received no response during #. TRANS the timeout period. -#: stdio-common/../sysdeps/gnu/errlist.c:445 +#: stdio-common/../sysdeps/gnu/errlist.c:446 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:175 msgid "Connection timed out" msgstr "F�rbindelsen dog ut (timeout)" -#: stdio-common/../sysdeps/unix/siglist.c:44 -#: sysdeps/unix/sysv/linux/siglist.h:38 +#: stdio-common/../sysdeps/unix/siglist.c:45 sysdeps/generic/siglist.h:45 msgid "Continued" msgstr "�terupptagen" -#: iconv/iconv_prog.c:66 +#: iconv/iconv_prog.c:69 msgid "Convert encoding of given files from one encoding to another." msgstr "Konvertera kodning i angivna infiler fr�n en kodning till en annan." -#: db2/makedb.c:58 -msgid "Convert key to lower case" -msgstr "Konvertera nyckel till gemener" - -#: catgets/gencat.c:236 db2/makedb.c:242 elf/sprof.c:359 -#: iconv/iconv_prog.c:294 locale/programs/locale.c:267 -#: locale/programs/localedef.c:403 nscd/nscd.c:223 nss/getent.c:65 -#: posix/getconf.c:624 +#: catgets/gencat.c:246 elf/ldconfig.c:264 elf/sprof.c:355 +#: iconv/iconv_prog.c:351 locale/programs/locale.c:269 +#: locale/programs/localedef.c:311 nscd/nscd.c:287 nscd/nscd_nischeck.c:90 +#: nss/getent.c:63 posix/getconf.c:751 #, c-format msgid "" "Copyright (C) %s Free Software Foundation, Inc.\n" @@ -863,167 +1528,353 @@ msgstr "" "INGEN garanti; inte ens f�r S�LJBARHET eller L�MPLIGHET F�R N�GOT SPECIELLT\n" "�NDAM�L.\n" -#: nscd/nscd_conf.c:167 +#: nscd/nscd_conf.c:166 #, c-format msgid "Could not create log file \"%s\"" msgstr "Kunde inte skapa loggfil \"%s\"" -#: catgets/gencat.c:107 +#: catgets/gencat.c:112 msgid "Create C header file NAME containing symbol definitions" msgstr "Skapa C-huvudfil NAMN inneh�llande symboldefinitioner" -#: locale/programs/localedef.c:103 +#: locale/programs/localedef.c:102 +msgid "Create old-style tables" +msgstr "Skapa tabeller i gammal stil" + +#: locale/programs/localedef.c:101 msgid "Create output even if warning messages were issued" msgstr "Skapa utfil �ven om varningsmeddelanden genererades" -#: db2/makedb.c:68 -msgid "Create simple DB database from textual input." -msgstr "Skapa enkel DB-databas fr�n textdata." - -#: nis/nis_print.c:322 +#: nis/nis_print.c:326 #, c-format msgid "Creation Time : %s" -msgstr "Skapad : %s" +msgstr "Skapad: %s" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:48 +msgid "Cross-device link" +msgstr "L�nk mellan �tskilda enheter" -#: nis/nss_nisplus/nisplus-publickey.c:89 -#: nis/nss_nisplus/nisplus-publickey.c:159 +#: malloc/memusagestat.c:67 +msgid "DATAFILE [OUTFILE]" +msgstr "DATAFIL [UTFIL]" + +#: 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 "DES-post f�r n�tnamn %s �r inte unikt\n" -#: nis/nis_print.c:111 +#: nis/nis_print.c:112 msgid "DIRECTORY\n" msgstr "KATALOG\n" -#: nis/nis_print.c:41 +#: nis/nis_print.c:42 msgid "DNANS" msgstr "DNANS" -#: nis/nis_print.c:37 +#: nis/nis_print.c:38 msgid "DNS" msgstr "DNS" -#: nis/nis_error.c:51 +#: elf/dl-open.c:189 +msgid "DST not allowed in SUID/SGID programs" +msgstr "DST inte till�ten i SUID/SGID-program" + +#: elf/dl-error.c:71 +msgid "DYNAMIC LINKER BUG!!!" +msgstr "FEL I DYNAMISK L�NKARE!!!" + +#: nis/nis_error.c:52 msgid "Database for table does not exist" msgstr "Databas f�r tabell existerar inte" -#: nis/ypclnt.c:795 +#: nis/ypclnt.c:818 msgid "Database is busy" msgstr "Databasen �r upptagen" -#: nis/nis_print.c:225 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:75 +msgid "Deadlock situation detected/avoided" +msgstr "Undvek/uppt�ckte d�dl�gessituation" + +#: nis/nis_print.c:226 msgid "Default Access rights :\n" -msgstr "Standard �tkomstr�ttigheter :\n" +msgstr "Standard �tkomstr�ttigheter:\n" #. 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:429 +#: stdio-common/../sysdeps/gnu/errlist.c:430 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:126 msgid "Destination address required" msgstr "Destination kr�vs" -#: stdio-common/../sysdeps/gnu/errlist.c:650 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:46 +msgid "Device busy" +msgstr "Enhet upptagen" + +#: stdio-common/../sysdeps/gnu/errlist.c:669 msgid "Device not a stream" msgstr "Enheten �r inte en stream" -#. 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:61 -msgid "Device not configured" -msgstr "Enheten �r inte konfigurerad" - #. 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:128 +#: stdio-common/../sysdeps/gnu/errlist.c:129 msgid "Device or resource busy" msgstr "Enhet eller resurs upptagen" -#: nis/nis_print.c:179 +#: nis/nis_print.c:180 #, c-format msgid "Diffie-Hellmann (%d bits)\n" msgstr "Diffie-Hellmann (%d bitar)\n" -#: nis/nis_print.c:315 +#: nis/nis_print.c:318 #, c-format msgid "Directory : %s\n" msgstr "Katalog : %s\n" #. 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:480 +#: stdio-common/../sysdeps/gnu/errlist.c:481 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:123 msgid "Directory not empty" msgstr "Katalog inte tom" -#. TRANS The user's disk quota was exceeded. -#: stdio-common/../sysdeps/gnu/errlist.c:498 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:79 msgid "Disc quota exceeded" msgstr "Diskkvot �verskriden" -#: nscd/nscd.c:80 +#. TRANS The user's disk quota was exceeded. +#: stdio-common/../sysdeps/gnu/errlist.c:499 +msgid "Disk quota exceeded" +msgstr "Diskkvot �verskriden" + +#: nscd/nscd.c:86 msgid "Do not fork and display messages on the current tty" msgstr "Skapa inte barnprocess, visa meddelanden p� nuvarande tty" -#: db2/makedb.c:61 -msgid "Do not print messages while building database" -msgstr "Skriv inte meddelanden medans databasen byggs" - -#: catgets/gencat.c:109 +#: catgets/gencat.c:114 msgid "Do not use existing catalog, force new output file" msgstr "Anv�nd inte existerande katalog, g�r en ny utfil" -#: nis/ypclnt.c:841 +#: nis/ypclnt.c:864 msgid "Domain not bound" msgstr "Dom�n inte bunden" -#: stdio-common/../sysdeps/unix/siglist.c:32 -#: sysdeps/unix/sysv/linux/siglist.h:53 +#: elf/ldconfig.c:129 +msgid "Don't build cache" +msgstr "Bygg inte cache" + +#: elf/ldconfig.c:130 +msgid "Don't generate links" +msgstr "Generera inte l�nkar" + +#: debug/pcprofiledump.c:56 +msgid "Dump information generated by PC profiling." +msgstr "Visa information genererad av PC-profilering." + +#: elf/dl-load.c:1290 +msgid "ELF file ABI version invalid" +msgstr "ELF-fil har felaktig version p� ABI" + +#: elf/dl-load.c:1287 +msgid "ELF file OS ABI invalid" +msgstr "ELF-fil har felaktig version p� OS-ABI" + +#: elf/dl-load.c:1296 +msgid "ELF file version does not match current one" +msgstr "ELF-filens version st�mmer inte med nuvarande" + +#: elf/dl-load.c:1283 +msgid "ELF file version ident does not match current one" +msgstr "ELF-filens versionsidentitet st�mmer inte med nuvarande" + +#: elf/dl-load.c:1307 +msgid "ELF file's phentsize not the expected size" +msgstr "ELF-filens v�rde p� \"phentsize\" �r inte den f�rv�ntade" + +#: elf/dl-load.c:876 +msgid "ELF load command address/offset not properly aligned" +msgstr "Address/position f�r ELF-laddkommando �r inte p� r�tt bytegr�ns" + +#: elf/dl-load.c:873 +msgid "ELF load command alignment not page-aligned" +msgstr "ELF-laddkommando �r inte p� sidgr�ns" + +#: stdio-common/../sysdeps/unix/siglist.c:33 sysdeps/generic/siglist.h:60 msgid "EMT trap" msgstr "Emulatorf�lla" -#: nis/nis_print.c:120 +#: nis/nis_print.c:121 msgid "ENTRY\n" msgstr "POST\n" -#: nis/nis_print.c:299 +#: nis/nis_print.c:300 msgid "Encrypted data\n" msgstr "Krypterat data\n" -#: nis/nis_error.c:52 -msgid "Entry/Table type mismatch" -msgstr "Post/Tabell-typer �r inkompatibila" +#: nis/nis_error.c:53 +msgid "Entry/table type mismatch" +msgstr "Post/tabell-typer �r inkompatibila" -#: nis/nis_error.c:56 +#: nss/getent.c:127 nss/getent.c:292 +#, c-format +msgid "Enumeration not supported on %s\n" +msgstr "Uppr�kning st�ds inte p� %s\n" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:30 +msgid "Error 0" +msgstr "Fel 0" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:130 +msgid "Error 100" +msgstr "Fel 100" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:131 +msgid "Error 101" +msgstr "Fel 101" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:132 +msgid "Error 102" +msgstr "Fel 102" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:133 +msgid "Error 103" +msgstr "Fel 103" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:134 +msgid "Error 104" +msgstr "Fel 104" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:135 +msgid "Error 105" +msgstr "Fel 105" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:136 +msgid "Error 106" +msgstr "Fel 106" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:137 +msgid "Error 107" +msgstr "Fel 107" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:138 +msgid "Error 108" +msgstr "Fel 108" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:139 +msgid "Error 109" +msgstr "Fel 109" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:140 +msgid "Error 110" +msgstr "Fel 110" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:141 +msgid "Error 111" +msgstr "Fel 111" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:142 +msgid "Error 112" +msgstr "Fel 112" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:143 +msgid "Error 113" +msgstr "Fel 113" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:144 +msgid "Error 114" +msgstr "Fel 114" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:145 +msgid "Error 115" +msgstr "Fel 115" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:146 +msgid "Error 116" +msgstr "Fel 116" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:147 +msgid "Error 117" +msgstr "Fel 117" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:148 +msgid "Error 118" +msgstr "Fel 118" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:149 +msgid "Error 119" +msgstr "Fel 119" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:166 +msgid "Error 136" +msgstr "Fel 136" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:172 +msgid "Error 142" +msgstr "Fel 142" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:88 +msgid "Error 58" +msgstr "Fel 58" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:89 +msgid "Error 59" +msgstr "Fel 59" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:102 +msgid "Error 72" +msgstr "Fel 72" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:103 +msgid "Error 73" +msgstr "Fel 73" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:105 +msgid "Error 75" +msgstr "Fel 75" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:106 +msgid "Error 76" +msgstr "Fel 76" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:121 +msgid "Error 91" +msgstr "Fel 91" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:122 +msgid "Error 92" +msgstr "Fel 92" + +#: nis/nis_error.c:57 msgid "Error in RPC subsystem" -msgstr "Fel i RPC delsystem" +msgstr "Fel i RPC-delsystem" -#: nis/nis_error.c:66 +#: nis/nis_error.c:67 msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" msgstr "Fel vid l�sande av NIS+ kallstartsfil. �r NIS+ installerad?" -#: string/../sysdeps/mach/_strerror.c:56 -#: sysdeps/mach/hurd/mips/dl-machine.c:67 +#: string/../sysdeps/mach/_strerror.c:58 +#: sysdeps/mach/hurd/mips/dl-machine.c:68 msgid "Error in unknown error system: " msgstr "Fel i ok�nt felsystem: " -#: nis/nis_error.c:59 +#: nis/nis_error.c:60 msgid "Error while talking to callback proc" msgstr "Fel vid kommunikation till �teranropsprocess" -#: inet/ruserpass.c:161 +#: inet/ruserpass.c:181 msgid "Error: .netrc file is readable by others." msgstr "Fel: .netrc kan l�sas av andra." -#: stdio-common/../sysdeps/gnu/errlist.c:710 +#: stdio-common/../sysdeps/gnu/errlist.c:729 msgid "Exchange full" msgstr "V�xeln full" #. 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:75 +#: stdio-common/../sysdeps/gnu/errlist.c:76 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:38 msgid "Exec format error" msgstr "Formatfel p� k�rbar fil" @@ -1031,75 +1882,113 @@ msgstr "Formatfel p� k�rbar fil" msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" msgstr "FATALT: systemet definierar inte \"_POSIX2_LOCALEDEF\"" -#: locale/programs/localedef.c:99 +#: locale/programs/localedef.c:97 msgid "FILE contains mapping from symbolic names to UCS4 values" msgstr "FIL inneh�ller avbildning fr�n symboliska namn till UCS4-v�rden" -#: sunrpc/clnt_perr.c:287 +#: sunrpc/clnt_perr.c:356 msgid "Failed (unspecified error)" msgstr "Misslyckades (ospecificerat fel)" -#: stdio-common/../sysdeps/gnu/errlist.c:762 +#: nscd/nscd.c:400 +#, c-format +msgid "Failed to look up user '%s' to run server as" +msgstr "Kunde inte hitta anv�ndaren \"%s\" att k�ra servern som" + +#: elf/readlib.c:108 +#, c-format +msgid "File %s is too small, not checked." +msgstr "Fil %s �r f�r liten, inte kontrollerad." + +#: 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 "Filidentifierare i felaktigt tillst�nd" #. 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:134 +#: stdio-common/../sysdeps/gnu/errlist.c:135 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:47 msgid "File exists" msgstr "Filen existerar" -#: stdio-common/../sysdeps/gnu/errlist.c:726 +#: elf/cache.c:124 elf/cache.c:134 +msgid "File is not a cache file.\n" +msgstr "Filen �r inte en cache-fil.\n" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:86 +msgid "File locking deadlock" +msgstr "Fill�sning gav d�dl�ge" + +#: stdio-common/../sysdeps/gnu/errlist.c:745 msgid "File locking deadlock error" msgstr "Fill�sning gav d�dl�ge" #. 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:464 +#: stdio-common/../sysdeps/gnu/errlist.c:465 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:108 msgid "File name too long" msgstr "Filnamn f�r l�ngt" -#: stdio-common/../sysdeps/unix/siglist.c:50 -#: sysdeps/unix/sysv/linux/siglist.h:44 +#: stdio-common/../sysdeps/unix/siglist.c:51 sysdeps/generic/siglist.h:51 msgid "File size limit exceeded" msgstr "Begr�nsning av filstorlek �verskriden" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:53 +msgid "File table overflow" +msgstr "Filtabell fl�dade �ver" + #. TRANS File too big; the size of a file would be larger than allowed by the system. -#: stdio-common/../sysdeps/gnu/errlist.c:202 +#: stdio-common/../sysdeps/gnu/errlist.c:203 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:57 msgid "File too large" msgstr "Fil f�r stor" -#: nis/nis_error.c:37 -msgid "First/Next chain broken" +#: intl/tst-gettext2.c:36 +msgid "First string for testing." +msgstr "F�rsta str�ngen f�r test." + +#: nis/nis_error.c:38 +msgid "First/next chain broken" msgstr "F�rsta/N�sta-kedja bruten" -#: stdio-common/../sysdeps/unix/siglist.c:33 -#: sysdeps/unix/sysv/linux/siglist.h:28 +#: stdio-common/../sysdeps/unix/siglist.c:34 sysdeps/generic/siglist.h:35 msgid "Floating point exception" msgstr "Aritmetiskt fel" -#: nis/nis_error.c:67 +#: elf/ldconfig.c:136 +msgid "Format to use: new, old or compat (default)" +msgstr "Format att anv�nda: \"new\", \"old\" eller \"compat\" (standardv�rde)" + +#: nis/nis_error.c:68 msgid "Full resync required for directory" msgstr "Fullst�ndig resynkronisering kr�vs f�r katalog" -#. TRANS Function not implemented. Some functions have commands or options defined -#. TRANS that might not be supported in all implementations, and this is the kind -#. TRANS of error you get if you request them and they are not supported. -#: stdio-common/../sysdeps/gnu/errlist.c:573 +#. 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 "Funktion inte implementerad" -#: nis/nis_print.c:114 +#: nis/nis_print.c:115 msgid "GROUP\n" msgstr "GRUPP\n" -#: argp/argp-help.c:231 +#: argp/argp-help.c:230 #, c-format msgid "Garbage in ARGP_HELP_FMT: %s" msgstr "Skr�p i ARGP_HELP_FMT: %s" -#: catgets/gencat.c:115 +#: malloc/memusagestat.c:64 +msgid "Generate graphic from memory profiling data" +msgstr "Generera grafik fr�n data fr�n minnesprofilering" + +#: 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" @@ -1107,123 +1996,134 @@ msgstr "" "Skapa meddelandekatalog.\\vOm INFIL �r - s� l�ses standard in. Om UTFIL\n" "�r - s� skrivs resultatet till standard ut.\n" -#: nis/nis_error.c:36 +#: malloc/memusagestat.c:55 +msgid "Generate output linear to time (default is linear to number of function calls)" +msgstr "Generera utdata linj�r i tiden (standardv�rde �r linj�r mot anta funktionsanrop)" + +#: elf/ldconfig.c:128 +msgid "Generate verbose messages" +msgstr "Anv�nd utf�rligare meddelanden" + +#: nis/nis_error.c:37 msgid "Generic system error" msgstr "Generiskt systemfel" -#: locale/programs/locale.c:75 +#: locale/programs/locale.c:77 msgid "Get locale-specific information." msgstr "H�mta lokal-specifik information" -#: argp/argp-parse.c:88 +#: argp/argp-parse.c:94 msgid "Give a short usage message" msgstr "Ge ett kort hj�lpmeddelande" -#: argp/argp-parse.c:87 +#: argp/argp-parse.c:93 msgid "Give this help list" msgstr "Skriv denna hj�lplista" #. TRANS This error code has no purpose. -#: stdio-common/../sysdeps/gnu/errlist.c:618 +#: stdio-common/../sysdeps/gnu/errlist.c:637 msgid "Gratuitous error" msgstr "Omotiverat fel" -#: nis/nis_print.c:317 +#: nis/nis_print.c:320 #, c-format msgid "Group : %s\n" msgstr "Grupp : %s\n" -#: nis/nis_print.c:248 +#: nis/nis_print.c:249 msgid "Group Flags :" -msgstr "Gruppflaggor : " +msgstr "Gruppflaggor: " -#: nis/nis_print_group_entry.c:113 +#: nis/nis_print_group_entry.c:115 #, c-format msgid "Group entry for \"%s.%s\" group:\n" msgstr "Grupppost f�r \"%s.%s\" grupp:\n" -#: argp/argp-parse.c:91 +#: argp/argp-parse.c:97 msgid "Hang for SECS seconds (default 3600)" msgstr "V�nta i SEK sekunder (standardv�rde 3600)" -#: stdio-common/../sysdeps/unix/siglist.c:26 -#: sysdeps/unix/sysv/linux/siglist.h:22 +#: stdio-common/../sysdeps/unix/siglist.c:27 sysdeps/generic/siglist.h:29 msgid "Hangup" msgstr "Avringd" -#: nscd/grpcache.c:238 +#: nscd/grpcache.c:253 #, c-format msgid "Haven't found \"%d\" in group cache!" msgstr "Hittar inte \"%d\" i gruppcache!" -#: nscd/pwdcache.c:235 +#: nscd/pwdcache.c:249 #, c-format msgid "Haven't found \"%d\" in password cache!" msgstr "Hittar inte \"%d\" i l�senordscache!" -#: nscd/grpcache.c:210 +#: nscd/grpcache.c:214 #, c-format msgid "Haven't found \"%s\" in group cache!" msgstr "Hittar inte \"%s\" i gruppcache!" -#: nscd/hstcache.c:297 nscd/hstcache.c:328 nscd/hstcache.c:359 -#: nscd/hstcache.c:390 +#: 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 "Hittar inte \"%s\" i v�rdcache!" -#: nscd/pwdcache.c:207 +#: nscd/pwdcache.c:210 #, c-format msgid "Haven't found \"%s\" in password cache!" msgstr "Hittar inte \"%s\" i l�senordscache!" #. TRANS The remote host for a requested network connection is down. -#: stdio-common/../sysdeps/gnu/errlist.c:469 +#: stdio-common/../sysdeps/gnu/errlist.c:470 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:177 msgid "Host is down" msgstr "V�rddator �r nere" -#: resolv/herror.c:75 +#: resolv/herror.c:69 msgid "Host name lookup failure" msgstr "Uppslagning av v�rdnamn misslyckades" -#: stdio-common/../sysdeps/unix/siglist.c:48 -#: sysdeps/unix/sysv/linux/siglist.h:42 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:35 +msgid "I/O error" +msgstr "I/O-fel" + +#: stdio-common/../sysdeps/unix/siglist.c:49 sysdeps/generic/siglist.h:49 msgid "I/O possible" msgstr "I/O m�jligt" -#: db2/makedb.c:71 -msgid "" -"INPUT-FILE OUTPUT-FILE\n" -"-o OUTPUT-FILE INPUT-FILE\n" -"-u INPUT-FILE" -msgstr "" -"INFIL UTFIL\n" -"-o UTFIL INFIL\n" -"-u INFIL" - -#: stdio-common/../sysdeps/unix/siglist.c:31 +#: stdio-common/../sysdeps/unix/siglist.c:32 msgid "IOT trap" msgstr "IOT-f�lla" -#: nis/nis_print.c:35 +#: nis/nis_print.c:36 msgid "IVY" msgstr "IVY" -#: stdio-common/../sysdeps/gnu/errlist.c:626 +#: stdio-common/../sysdeps/gnu/errlist.c:645 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:66 msgid "Identifier removed" msgstr "Identifierare borttagen" -#: stdio-common/../sysdeps/unix/siglist.c:29 -#: sysdeps/unix/sysv/linux/siglist.h:25 +#: elf/ldconfig.c:525 +#, c-format +msgid "Ignored file %s since it is not a regular file." +msgstr "Ignorerar fil %s eftersom den inte �r en vanlig fil" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:118 +msgid "Illegal byte sequence" +msgstr "Otill�ten bytesekvens" + +#: stdio-common/../sysdeps/unix/siglist.c:30 sysdeps/generic/siglist.h:32 msgid "Illegal instruction" msgstr "Otill�ten instruktion" -#: nis/nis_error.c:61 +#: nis/nis_error.c:62 msgid "Illegal object type for operation" msgstr "Otill�ten objekttyp f�r operationen" #. TRANS Invalid seek operation (such as on a pipe). -#: stdio-common/../sysdeps/gnu/errlist.c:213 +#: stdio-common/../sysdeps/gnu/errlist.c:214 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:59 msgid "Illegal seek" msgstr "Otill�ten s�kning" @@ -1232,13 +2132,14 @@ msgstr "Otill�ten s�kning" #. 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:556 +#: stdio-common/../sysdeps/gnu/errlist.c:557 msgid "Inappropriate file type or format" msgstr "Filtyp eller format ol�mplig" #. TRANS Inappropriate I/O control operation, such as trying to set terminal #. TRANS modes on an ordinary file. -#: stdio-common/../sysdeps/gnu/errlist.c:188 +#: stdio-common/../sysdeps/gnu/errlist.c:189 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:55 msgid "Inappropriate ioctl for device" msgstr "Ol�mplig \"ioctl\" f�r enhet" @@ -1248,41 +2149,45 @@ msgstr "Ol�mplig \"ioctl\" f�r enhet" #. 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:589 +#: stdio-common/../sysdeps/gnu/errlist.c:608 msgid "Inappropriate operation for background process" msgstr "Operation f�r bakgrundsprocess ol�mplig" -#: sysdeps/unix/sysv/linux/siglist.h:62 +#: sysdeps/generic/siglist.h:69 msgid "Information request" msgstr "Informationsbeg�ran" -#: iconv/iconv_prog.c:57 +#: iconv/iconv_prog.c:58 msgid "Information:" msgstr "Information:" -#: locale/programs/localedef.c:94 +#: locale/programs/localedef.c:92 msgid "Input Files:" msgstr "Infiler:" -#: iconv/iconv_prog.c:54 +#: elf/ldconfig.c:698 elf/readlib.c:92 +#, c-format +msgid "Input file %s not found.\n" +msgstr "Hittar inte infil %s.\n" + +#: iconv/iconv_prog.c:55 msgid "Input/Output format specification:" msgstr "In/ut formatspecifikation:" #. TRANS Input/output error; usually used for physical read or write errors. -#: stdio-common/../sysdeps/gnu/errlist.c:52 +#: stdio-common/../sysdeps/gnu/errlist.c:53 msgid "Input/output error" msgstr "In/ut-fel" -#: nis/ypclnt.c:775 +#: nis/ypclnt.c:798 msgid "Internal NIS error" msgstr "Internt NIS-fel" -#: nis/ypclnt.c:839 +#: nis/ypclnt.c:862 msgid "Internal ypbind error" msgstr "Internt ypbind-fel" -#: stdio-common/../sysdeps/unix/siglist.c:27 -#: sysdeps/unix/sysv/linux/siglist.h:23 +#: stdio-common/../sysdeps/unix/siglist.c:28 sysdeps/generic/siglist.h:30 msgid "Interrupt" msgstr "Avbruten (SIGINT)" @@ -1293,231 +2198,263 @@ msgstr "Avbruten (SIGINT)" #. 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:47 +#: stdio-common/../sysdeps/gnu/errlist.c:48 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:34 msgid "Interrupted system call" msgstr "Avbrutet systemanrop" -#: stdio-common/../sysdeps/gnu/errlist.c:666 +#: stdio-common/../sysdeps/gnu/errlist.c:685 msgid "Interrupted system call should be restarted" msgstr "Avbrutet systemanrop borde omstartas" -#: nis/nis_error.c:44 -msgid "Invalid Object for operation" -msgstr "Otill�tet objekt f�r operationen" - #. 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:164 +#: stdio-common/../sysdeps/gnu/errlist.c:165 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:52 msgid "Invalid argument" msgstr "Ogiltigt argument" -#: posix/regex.c:1018 +#: posix/regex.c:1102 msgid "Invalid back reference" msgstr "Ogiltig bak�treferens" -#: posix/regex.c:1016 +#: posix/regex.c:1096 msgid "Invalid character class name" msgstr "Ogiltigt teckenklassnamn" -#: sunrpc/clnt_perr.c:275 +#: sunrpc/clnt_perr.c:332 msgid "Invalid client credential" msgstr "Ogiltiga klientreferenser" -#: sunrpc/clnt_perr.c:279 +#: sunrpc/clnt_perr.c:340 msgid "Invalid client verifier" msgstr "Ogiltig klientverifierare" -#: posix/regex.c:1015 +#: posix/regex.c:1093 msgid "Invalid collation character" msgstr "Ogiltigt kollationeringstecken" -#: posix/regex.c:1022 +#: posix/regex.c:1114 msgid "Invalid content of \\{\\}" msgstr "Ogiltigt inneh�ll i \\{\\}" #. 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:141 +#: stdio-common/../sysdeps/gnu/errlist.c:142 msgid "Invalid cross-device link" msgstr "Ogiltig l�nk �ver skilda enheter" -#: stdio-common/../sysdeps/gnu/errlist.c:702 +#: stdio-common/../sysdeps/gnu/errlist.c:721 msgid "Invalid exchange" msgstr "Ogiltig v�xel" +#: nis/nis_error.c:45 +msgid "Invalid object for operation" +msgstr "Ogiltigt objekt f�r operationen" + #. 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:579 +#: stdio-common/../sysdeps/gnu/errlist.c:598 msgid "Invalid or incomplete multibyte or wide character" msgstr "Ogiltig eller inte komplett flerbyte- eller brett tecken" -#: posix/regex.c:1025 +#: posix/regex.c:1123 msgid "Invalid preceding regular expression" msgstr "Ogiltigt f�reg�ende regulj�rt uttryck" -#: posix/regex.c:1023 +#: posix/regex.c:1117 msgid "Invalid range end" msgstr "Ogiltigt intervallslut" -#: posix/regex.c:1014 +#: posix/regex.c:1090 msgid "Invalid regular expression" msgstr "Ogiltigt regulj�rt uttryck" -#: stdio-common/../sysdeps/gnu/errlist.c:718 +#: stdio-common/../sysdeps/gnu/errlist.c:737 msgid "Invalid request code" msgstr "Ogiltig �tkomstkod" -#: stdio-common/../sysdeps/gnu/errlist.c:706 +#: stdio-common/../sysdeps/gnu/errlist.c:725 msgid "Invalid request descriptor" msgstr "Ogiltig fr�gedeskriptor" -#: sunrpc/clnt_perr.c:285 +#: sunrpc/clnt_perr.c:352 msgid "Invalid server verifier" msgstr "Ogiltig serververifierare" -#: stdio-common/../sysdeps/gnu/errlist.c:722 +#: stdio-common/../sysdeps/gnu/errlist.c:741 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:85 msgid "Invalid slot" msgstr "Ogiltig plats" +#: nscd/nscd.c:91 +msgid "Invalidate the specified cache" +msgstr "Invalidera den angivna cachen" + #. 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:158 +#: stdio-common/../sysdeps/gnu/errlist.c:159 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:51 msgid "Is a directory" msgstr "�r en katalog" -#: stdio-common/../sysdeps/gnu/errlist.c:806 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:169 +msgid "Is a name file" +msgstr "�r en namnfil" + +#: stdio-common/../sysdeps/gnu/errlist.c:825 msgid "Is a named type file" -msgstr "�r en namngiven filtyp" +msgstr "�r av typ namnfil" -#: nis/nis_print.c:187 +#: nis/nis_print.c:188 msgid "Kerberos.\n" msgstr "Kerberos.\n" -#: stdio-common/../sysdeps/unix/siglist.c:34 -#: sysdeps/unix/sysv/linux/siglist.h:29 +#: stdio-common/../sysdeps/unix/siglist.c:35 sysdeps/generic/siglist.h:36 msgid "Killed" msgstr "D�dad" -#: nis/nis_print.c:123 +#: nis/nis_print.c:124 msgid "LINK\n" msgstr "L�NK\n" -#: nis/nis_local_names.c:125 +#: nis/nis_local_names.c:126 #, c-format msgid "LOCAL entry for UID %d in directory %s not unique\n" msgstr "LOCAL-post f�r UID %d i katalog %s �r inte unik\n" -#: stdio-common/../sysdeps/gnu/errlist.c:698 +#: stdio-common/../sysdeps/gnu/errlist.c:717 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:74 msgid "Level 2 halted" msgstr "Niv� 2 stannad" -#: stdio-common/../sysdeps/gnu/errlist.c:674 +#: stdio-common/../sysdeps/gnu/errlist.c:693 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:68 msgid "Level 2 not synchronized" msgstr "Niv� 2 inte synkroniserad" -#: stdio-common/../sysdeps/gnu/errlist.c:678 +#: stdio-common/../sysdeps/gnu/errlist.c:697 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:69 msgid "Level 3 halted" msgstr "Niv� 3 stannad" -#: stdio-common/../sysdeps/gnu/errlist.c:682 +#: stdio-common/../sysdeps/gnu/errlist.c:701 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:70 msgid "Level 3 reset" msgstr "Niv� 3 omstartad" -#: nis/nis_error.c:53 -msgid "Link Points to illegal name" -msgstr "L�nk pekar p� ett otill�tet namn" - -#: stdio-common/../sysdeps/gnu/errlist.c:638 +#: stdio-common/../sysdeps/gnu/errlist.c:657 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:97 msgid "Link has been severed" msgstr "L�nken har brutits" -#: stdio-common/../sysdeps/gnu/errlist.c:686 +#: 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 "L�nkantal utanf�r giltigt omr�de" -#: nis/nis_print.c:282 +#: nis/nis_error.c:54 +msgid "Link points to illegal name" +msgstr "L�nk pekar p� ett otill�tet namn" + +#: nis/nis_print.c:283 msgid "Linked Object Type : " -msgstr "L�nkad objekttyp : " +msgstr "L�nkad objekttyp: " -#: nis/nis_print.c:284 +#: nis/nis_print.c:285 #, c-format msgid "Linked to : %s\n" -msgstr "L�nkad till : %s\n" +msgstr "L�nkad till: %s\n" -#: nis/ypclnt.c:787 +#: nis/ypclnt.c:810 msgid "Local domain name not set" msgstr "Lokalt dom�nnamn inte satt" -#: nis/ypclnt.c:777 +#: nis/ypclnt.c:800 msgid "Local resource allocation failure" msgstr "Allokeringsfel f�r lokal resurs" -#: stdio-common/../sysdeps/gnu/errlist.c:734 +#: 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 "Maskinen finns inte p� n�tverket" -#: nis/nis_error.c:45 -msgid "Malformed Name, or illegal name" +#: nis/nis_error.c:46 +msgid "Malformed name, or illegal name" msgstr "Felaktigt namn eller otill�tet namn" -#: argp/argp-help.c:1182 +#: argp/argp-help.c:1185 msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." msgstr "Obligatoriska respektive valfria argument f�r l�nga flaggor �r obligatoriska repektive valfria �ven f�r korta." -#: nis/nis_print.c:168 +#: elf/ldconfig.c:135 +msgid "Manually link individual libraries." +msgstr "L�nka enskilda bibliotek manuellt." + +#: nis/nis_print.c:169 msgid "Master Server :\n" -msgstr "Huvudserver :\n" +msgstr "Huvudserver:\n" -#: nis/nis_error.c:75 +#: nis/nis_error.c:76 msgid "Master server busy, full dump rescheduled." msgstr "Huvudserver �r upptagen, full dump omskedulerad." -#: posix/../sysdeps/posix/gai_strerror.c:35 +#: posix/../sysdeps/posix/gai_strerror.c:36 msgid "Memory allocation failure" msgstr "Minnesallokeringsfel" -#: posix/regex.c:1024 +#: posix/regex.c:1120 msgid "Memory exhausted" msgstr "Minnet slut" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:82 +msgid "Message tables full" +msgstr "Meddelandetabell full" + #. TRANS The size of a message sent on a socket was larger than the supported #. TRANS maximum size. -#: stdio-common/../sysdeps/gnu/errlist.c:317 +#: stdio-common/../sysdeps/gnu/errlist.c:318 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:127 msgid "Message too long" msgstr "Meddelandet f�r l�ngt" -#: nis/nis_error.c:57 +#: nis/nis_error.c:58 msgid "Missing or malformed attribute" msgstr "Saknat eller felaktigt attribut" -#: nis/nis_print.c:323 +#: nis/nis_print.c:328 #, c-format msgid "Mod. Time : %s" msgstr "�ndr. tid : %s" -#: nis/nis_error.c:50 +#: nis/nis_error.c:51 msgid "Modification failed" msgstr "�ndring misslyckades" -#: nis/nis_error.c:63 +#: nis/nis_error.c:64 msgid "Modify operation failed" msgstr "�ndringsoperation misslyckades" -#: locale/programs/locale.c:68 +#: locale/programs/locale.c:70 msgid "Modify output format:" msgstr "�ndra utdataformat:" -#: stdio-common/../sysdeps/gnu/errlist.c:630 +#: stdio-common/../sysdeps/gnu/errlist.c:649 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:104 msgid "Multihop attempted" msgstr "Flerhopp f�rs�ktes" -#: catgets/gencat.c:106 catgets/gencat.c:110 db2/makedb.c:59 -#: locale/programs/localedef.c:115 nscd/nscd.c:77 +#: nscd/nscd_conf.c:182 +msgid "Must specify user name for server-user option" +msgstr "Anv�ndarnamn kr�vs f�r \"server-user\"-flaggan" + +#: catgets/gencat.c:111 catgets/gencat.c:115 locale/programs/localedef.c:115 +#: nscd/nscd.c:83 msgid "NAME" msgstr "NAMN" -#: locale/programs/locale.c:78 +#: locale/programs/locale.c:80 msgid "" "NAME\n" "[-a|-m]" @@ -1525,269 +2462,365 @@ msgstr "" "NAMN\n" "[-a|-m]" -#: nis/nis_print.c:31 +#: nis/nis_print.c:32 msgid "NIS" msgstr "NIS" -#: nis/ypclnt.c:791 +#: nis/ypclnt.c:814 msgid "NIS client/server version mismatch - can't supply service" msgstr "NIS versionsskillnad klient/server - kan inte betj�na" -#: nis/ypclnt.c:789 +#: nis/ypclnt.c:812 msgid "NIS map database is bad" msgstr "NIS tabelldatabas �r felaktig" -#: nis/nis_error.c:68 +#: nis/nis_error.c:69 msgid "NIS+ operation failed" msgstr "NIS+ operation misslyckades" -#: nis/nis_error.c:33 +#: nis/nis_error.c:34 msgid "NIS+ servers unreachable" msgstr "NIS+ servers kan inte n�s" -#: nis/nis_error.c:69 +#: nis/nis_error.c:70 msgid "NIS+ service is unavailable or not installed" msgstr "NIS+ service �r otillg�nglig eller inte installerad" -#: nis/nis_print.c:108 +#: nis/nis_print.c:109 msgid "NO OBJECT\n" msgstr "INGET OBJEKT\n" -#: nscd/nscd.c:81 +#: nscd/nscd.c:87 msgid "NUMBER" msgstr "ANTAL" -#: nis/nis_print.c:162 +#: nis/nis_print.c:163 #, c-format -msgid "Name : '%s'\n" -msgstr "Namn : \"%s\"\n" +msgid "Name : `%s'\n" +msgstr "Namn: \"%s\"\n" -#: nscd/nscd.c:88 +#: nscd/nscd.c:97 msgid "Name Service Cache Daemon." msgstr "Namntj�nst cache-demon" -#: nis/nis_error.c:40 +#: nis/nis_error.c:41 msgid "Name not served by this server" msgstr "Namn hanteras inte av denna server" -#: stdio-common/../sysdeps/gnu/errlist.c:758 +#: 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 "Namnet inte unikt i n�tverket" -#: posix/../sysdeps/posix/gai_strerror.c:37 +#: posix/../sysdeps/posix/gai_strerror.c:38 msgid "Name or service not known" msgstr "Namn eller tj�nst ok�nd" -#: nis/nis_error.c:49 +#: malloc/memusagestat.c:53 +msgid "Name output file" +msgstr "Namnresultatfil" + +#: nis/nis_error.c:50 msgid "Name/entry isn't unique" msgstr "Namn/post �r inte unik" -#: nis/nis_error.c:58 +#: nis/nis_error.c:59 msgid "Named object is not searchable" msgstr "Namngivet objekt �r inte s�kbart" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:566 +#: stdio-common/../sysdeps/gnu/errlist.c:567 msgid "Need authenticator" msgstr "Beh�ver �kthetsintygare" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:159 +msgid "Network dropped connection because of reset" +msgstr "N�tverket tog bort f�rbindelsen p.g.a. omstart" + #. TRANS A network connection was reset because the remote host crashed. -#: stdio-common/../sysdeps/gnu/errlist.c:389 +#: stdio-common/../sysdeps/gnu/errlist.c:390 msgid "Network dropped connection on reset" msgstr "N�tverket tog bort f�rbindelsen vid omstart" #. TRANS A socket operation failed because the network was down. -#: stdio-common/../sysdeps/gnu/errlist.c:378 +#: stdio-common/../sysdeps/gnu/errlist.c:379 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:157 msgid "Network is down" msgstr "N�tverket �r nere" #. TRANS A socket operation failed because the subnet containing the remote host #. TRANS was unreachable. -#: stdio-common/../sysdeps/gnu/errlist.c:384 +#: stdio-common/../sysdeps/gnu/errlist.c:385 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:158 msgid "Network is unreachable" msgstr "N�tverket kan inte n�s" -#: stdio-common/../sysdeps/gnu/errlist.c:694 +#: stdio-common/../sysdeps/gnu/errlist.c:713 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:73 msgid "No CSI structure available" msgstr "Inga CSI-strukturer tillg�ngliga" -#: stdio-common/../sysdeps/gnu/errlist.c:802 +#: stdio-common/../sysdeps/gnu/errlist.c:821 msgid "No XENIX semaphores available" msgstr "Inga XENIX-semaforer tillg�ngliga" -#: posix/../sysdeps/posix/gai_strerror.c:36 +#: posix/../sysdeps/posix/gai_strerror.c:37 msgid "No address associated with hostname" msgstr "Ingen adress associerad med v�rdnamn" -#: resolv/herror.c:77 +#: resolv/herror.c:71 msgid "No address associated with name" msgstr "Ingen adress associerad med namnet" -#: stdio-common/../sysdeps/gnu/errlist.c:714 +#: stdio-common/../sysdeps/gnu/errlist.c:733 msgid "No anode" msgstr "Ingen anod" #. 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:408 +#: stdio-common/../sysdeps/gnu/errlist.c:409 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:162 msgid "No buffer space available" msgstr "Ingen buffertplats tillg�nglig" +#: locale/programs/ld-ctype.c:425 +msgid "No character set name specified in charmap" +msgstr "Inget namn definierat i teckenupps�ttning" + #. 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:89 +#: stdio-common/../sysdeps/gnu/errlist.c:90 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:40 msgid "No child processes" msgstr "Inga barnprocesser" -#: stdio-common/../sysdeps/gnu/errlist.c:634 +#: stdio-common/../sysdeps/gnu/errlist.c:653 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:91 msgid "No data available" msgstr "Inga data tillg�ngliga" -#: nis/nis_error.c:73 +#: locale/programs/ld-address.c:131 locale/programs/ld-collate.c:1500 +#: locale/programs/ld-ctype.c:407 locale/programs/ld-identification.c:132 +#: locale/programs/ld-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 +#, c-format +msgid "No definition for %s category found" +msgstr "Hittade ingen definition f�r kategori %s" + +#: nis/nis_error.c:74 msgid "No file space on server" msgstr "Inget filutrymme hos servern" +#: elf/ldconfig.c:532 +#, c-format +msgid "No link created since soname could not be found for %s" +msgstr "Ingen l�nk skapad eftersom \"soname\" inte hittades f�r %s" + #. 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:547 +#: stdio-common/../sysdeps/gnu/errlist.c:548 msgid "No locks available" msgstr "Inga l�s tillg�ngliga" -#: posix/regex.c:1013 +#: posix/regex.c:1087 msgid "No match" msgstr "Ingen tr�ff" -#: stdio-common/../sysdeps/gnu/errlist.c:814 +#: stdio-common/../sysdeps/gnu/errlist.c:833 msgid "No medium found" msgstr "Inget medium funnet" -#: stdio-common/../sysdeps/gnu/errlist.c:642 +#: 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 "Inget meddelande av �nskad typ" -#: nis/ypclnt.c:779 +#: nis/ypclnt.c:802 msgid "No more records in map database" msgstr "Inga fler poster i tabelldatabasen" -#: posix/regex.c:5515 +#: posix/regex.c:5955 msgid "No previous regular expression" msgstr "Inget f�reg�ende regulj�rt uttryck" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:76 +msgid "No record locks available" +msgstr "Inga postl�s tillg�ngliga" + #: sunrpc/rpcinfo.c:570 msgid "No remote programs registered.\n" msgstr "Inga fj�rrprogram registrerade.\n" #. TRANS The remote host for a requested network connection is not reachable. -#: stdio-common/../sysdeps/gnu/errlist.c:474 +#: stdio-common/../sysdeps/gnu/errlist.c:475 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:178 msgid "No route to host" msgstr "Ingen v�g till v�rd" #. TRANS No space left on device; write operation on a file failed because the #. TRANS disk is full. -#: stdio-common/../sysdeps/gnu/errlist.c:208 +#: 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 "Enheten �r full" #. 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:147 +#: stdio-common/../sysdeps/gnu/errlist.c:148 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:49 msgid "No such device" msgstr "Enheten finns inte" +#. 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 "Enheten eller adressen finns inte" + #. 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:31 +#: 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 "Filen eller katalogen finns inte" -#: nis/ypclnt.c:773 +#: nis/ypclnt.c:796 msgid "No such key in map" msgstr "Ingen s�dan nyckel i tabellen" -#: nis/ypclnt.c:771 +#: nis/ypclnt.c:794 msgid "No such map in server's domain" msgstr "Ingen s�dan tabell i serverns dom�n" #. TRANS No process matches the specified process ID. -#: stdio-common/../sysdeps/gnu/errlist.c:36 +#: stdio-common/../sysdeps/gnu/errlist.c:37 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:33 msgid "No such process" msgstr "Processen finns inte" -#: nis/nis_error.c:60 +#: nis/nis_error.c:61 msgid "Non NIS+ namespace encountered" msgstr "Icke-NIS+ namnrymd p�tr�ffad" -#: posix/../sysdeps/posix/gai_strerror.c:33 +#: posix/../sysdeps/posix/gai_strerror.c:34 msgid "Non-recoverable failure in name resolution" msgstr "Oreparerbart fel i namnuppslagning" -#: nis/nis_print.c:176 +#: nis/nis_print.c:177 msgid "None.\n" msgstr "Ingen.\n" -#: nis/nis_error.c:48 -msgid "Not Found, no such name" -msgstr "Inte hittad, inget s�dant namn" - -#: stdio-common/../sysdeps/gnu/errlist.c:798 +#: stdio-common/../sysdeps/gnu/errlist.c:817 msgid "Not a XENIX named type file" msgstr "Inte en XENIX-namngiven fil" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:107 +msgid "Not a data message" +msgstr "Inte ett datameddelande" + #. TRANS A file that isn't a directory was specified when a directory is required. -#: stdio-common/../sysdeps/gnu/errlist.c:152 +#: stdio-common/../sysdeps/gnu/errlist.c:153 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:50 msgid "Not a directory" msgstr "Inte en katalog" -#: nis/nis_error.c:30 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:167 +msgid "Not a name file" +msgstr "Inte en namnfil" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:90 +msgid "Not a stream device" +msgstr "Inte en \"stream\"-enhet" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:168 +msgid "Not available" +msgstr "Inte tillg�nglig" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:42 +msgid "Not enough space" +msgstr "Otillr�ckligt utrymme" + +#: nis/nis_error.c:31 msgid "Not found" msgstr "Inte funnet" -#: nis/nis_error.c:43 +#: nis/nis_error.c:49 +msgid "Not found, no such name" +msgstr "Inte hittad, inget s�dant namn" + +#: nis/nis_error.c:44 msgid "Not master server for this domain" msgstr "Ingen huvudserver f�r denna dom�n" -#: nis/nis_error.c:39 +#: nis/nis_error.c:40 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:31 msgid "Not owner" msgstr "Inte �gare" -#: nis/nis_print.c:263 +#. 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 "St�ds ej" + +#: nis/nis_print.c:264 #, c-format msgid "Number of Columns : %d\n" msgstr "Antal kolumner : %d\n" -#: nis/nis_print.c:358 +#: nis/nis_print.c:363 #, c-format msgid "Number of objects : %u\n" msgstr "Antal objekt : %u\n" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:120 +msgid "Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS" +msgstr "Antal symboliska l�nkar p�tr�ffade vid s�kv�gsuppl�sning �versteg MAXSYMLINKS" + #. 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:240 +#: stdio-common/../sysdeps/gnu/errlist.c:241 msgid "Numerical argument out of domain" msgstr "Numeriskt argument �r utanf�r omr�det" #. 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:246 +#: stdio-common/../sysdeps/gnu/errlist.c:247 msgid "Numerical result out of range" msgstr "Numeriskt resultat �r utanf�r giltigt omr�de" -#: nis/nis_print.c:362 +#: nis/nis_print.c:367 #, c-format msgid "Object #%d:\n" msgstr "Objekt #%d:\n" -#: nis/nis_print.c:314 +#: nis/nis_print.c:317 #, c-format msgid "Object Name : %s\n" msgstr "Objektnamn : %s\n" -#: nis/nis_print.c:324 +#: nis/nis_print.c:329 msgid "Object Type : " msgstr "Objekttyp : " @@ -1795,31 +2828,45 @@ msgstr "Objekttyp : " #. 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:514 +#: stdio-common/../sysdeps/gnu/errlist.c:515 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:96 msgid "Object is remote" msgstr "�r ett fj�rrobjekt" -#: nis/nis_error.c:42 +#: nis/nis_error.c:43 msgid "Object with same name exists" msgstr "Objekt med samma namn existerar" -#: timezone/zic.c:1995 +#: timezone/zic.c:2022 msgid "Odd number of quotation marks" msgstr "Oj�mnt antal citationstecken" -#: nscd/nscd.c:185 +#: elf/ldconfig.c:134 +msgid "Only process directories specified on the command line. Don't build cache." +msgstr "Behandla endast kataloger givna som argument. Bygg inte cache." + +#: nscd/nscd.c:200 nscd/nscd.c:220 nscd/nscd.c:226 msgid "Only root is allowed to use this option!" msgstr "Bara root har till�telse att anv�nda denna operation!" #. TRANS An operation is already in progress on an object that has non-blocking #. TRANS mode selected. -#: stdio-common/../sysdeps/gnu/errlist.c:306 +#: stdio-common/../sysdeps/gnu/errlist.c:307 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:179 msgid "Operation already in progress" msgstr "Operationen p�g�r redan" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:77 +msgid "Operation canceled" +msgstr "Operationen avbruten" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:119 +msgid "Operation not applicable" +msgstr "Operationen inte tilll�mpbar" + #. 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:24 +#: stdio-common/../sysdeps/gnu/errlist.c:25 msgid "Operation not permitted" msgstr "Operationen inte till�ten" @@ -1829,9 +2876,14 @@ msgstr "Operationen inte till�ten" #. 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:350 +#: stdio-common/../sysdeps/gnu/errlist.c:351 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:78 msgid "Operation not supported" -msgstr "Operationen st�ds inte" +msgstr "Operationen st�ds ej" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:152 +msgid "Operation not supported on transport endpoint" +msgstr "Operationen st�ds inte p� transportslutpunkt" #. TRANS An operation that cannot complete immediately was initiated on an object #. TRANS that has non-blocking mode selected. Some functions that must always @@ -1841,7 +2893,8 @@ msgstr "Operationen st�ds inte" #. 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:300 +#: stdio-common/../sysdeps/gnu/errlist.c:301 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:180 msgid "Operation now in progress" msgstr "Operationen p�g�r nu" @@ -1850,67 +2903,86 @@ msgstr "Operationen p�g�r nu" #. TRANS #. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a #. TRANS separate error code. -#: stdio-common/../sysdeps/gnu/errlist.c:288 +#: stdio-common/../sysdeps/gnu/errlist.c:289 msgid "Operation would block" msgstr "Operationen skulle blockera" -#: stdio-common/../sysdeps/gnu/errlist.c:646 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:129 +msgid "Option not supported by protocol" +msgstr "Valet st�ds inte av protokollet" + +#: locale/programs/localedef.c:103 +msgid "Optional output file prefix" +msgstr "Valfri utfilsprefix" + +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:93 +msgid "Out of stream resources" +msgstr "Stream-resurserna �r slut" + +#: stdio-common/../sysdeps/gnu/errlist.c:665 msgid "Out of streams resources" msgstr "Stream-resurserna �r slut" -#: iconv/iconv_prog.c:59 locale/programs/localedef.c:101 +#: iconv/iconv_prog.c:60 locale/programs/localedef.c:99 msgid "Output control:" msgstr "Styr utdata:" -#: elf/sprof.c:76 +#: elf/sprof.c:72 msgid "Output selection:" msgstr "V�lj utdata:" -#: nis/nis_print.c:316 +#: nis/nis_print.c:319 #, c-format msgid "Owner : %s\n" msgstr "�gare : %s\n" -#: nis/nis_print.c:126 +#: nis/nis_print.c:127 msgid "PRIVATE\n" msgstr "PRIVAT\n" -#: stdio-common/../sysdeps/gnu/errlist.c:738 +#: stdio-common/../sysdeps/gnu/errlist.c:757 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:95 msgid "Package not installed" msgstr "Paketet �r inte installerat" -#: nscd/nscd_conf.c:84 +#: nscd/nscd_conf.c:83 #, c-format msgid "Parse error: %s" msgstr "Parsfel: %s" -#: nis/nis_error.c:54 -msgid "Partial Success" +#: nis/nis_error.c:55 +msgid "Partial success" msgstr "Delvis lyckat" -#: nis/nis_error.c:62 +#: nis/nis_error.c:63 msgid "Passed object is not the same object on server" msgstr "Skickat objekt �r inte samma objekt hos servern" +#: elf/ldconfig.c:287 +#, c-format +msgid "Path `%s' given more than once" +msgstr "S�kv�g \"%s\" given mer �n en g�ng" + #. TRANS Permission denied; the file permissions do not allow the attempted operation. -#: nis/nis_error.c:38 nis/ypclnt.c:793 -#: stdio-common/../sysdeps/gnu/errlist.c:108 +#: nis/nis_error.c:39 nis/ypclnt.c:816 +#: stdio-common/../sysdeps/gnu/errlist.c:109 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:43 msgid "Permission denied" msgstr "�tkomst nekas" -#: sysdeps/unix/sysv/linux/siglist.h:64 +#: sysdeps/generic/siglist.h:71 msgid "Power failure" msgstr "Str�mavbrott" -#: posix/regex.c:1026 +#: posix/regex.c:1126 msgid "Premature end of regular expression" msgstr "F�r tidigt slut p� regulj�rt uttryck" -#: db2/makedb.c:63 -msgid "Print content of database file, one entry a line" -msgstr "Skriv inneh�llet i databasen, en post per rad" +#: elf/ldconfig.c:127 +msgid "Print cache" +msgstr "Visa cache" -#: nscd/nscd.c:83 +#: nscd/nscd.c:89 msgid "Print current configuration statistic" msgstr "Skriv ut nuvarande konfigurationsstatistik" @@ -1918,245 +2990,261 @@ msgstr "Skriv ut nuvarande konfigurationsstatistik" msgid "Print more messages" msgstr "Skriv mer meddelanden" -#: argp/argp-parse.c:148 +#: argp/argp-parse.c:154 msgid "Print program version" msgstr "Skriv programversion" -#: nis/nis_error.c:29 +#: nis/nis_error.c:30 msgid "Probable success" msgstr "Troligtvis lyckat" -#: nis/nis_error.c:31 +#: nis/nis_error.c:32 msgid "Probably not found" msgstr "F�rmodligen inte funnen" -#: stdio-common/../sysdeps/unix/siglist.c:52 -#: sysdeps/unix/sysv/linux/siglist.h:46 +#: stdio-common/../sysdeps/unix/siglist.c:53 sysdeps/generic/siglist.h:53 msgid "Profiling timer expired" msgstr "Profileringsklocka" -#: stdio-common/../sysdeps/gnu/errlist.c:690 +#: stdio-common/../sysdeps/gnu/errlist.c:709 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:72 msgid "Protocol driver not attached" msgstr "Styrprogram f�r protokoll inte anslutet" -#: stdio-common/../sysdeps/gnu/errlist.c:658 +#: stdio-common/../sysdeps/gnu/errlist.c:677 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:101 msgid "Protocol error" msgstr "Protokollfel" #. TRANS The socket communications protocol family you requested is not supported. -#: stdio-common/../sysdeps/gnu/errlist.c:355 +#: stdio-common/../sysdeps/gnu/errlist.c:356 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:153 msgid "Protocol family not supported" msgstr "Protokollfamiljen st�ds ej" #. 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:328 +#: stdio-common/../sysdeps/gnu/errlist.c:329 msgid "Protocol not available" -msgstr "Protokollet ej tillg�ngligt" +msgstr "Protokollet inte tillg�ngligt" #. 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:335 +#: stdio-common/../sysdeps/gnu/errlist.c:336 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:150 msgid "Protocol not supported" msgstr "Protokollet st�ds ej" #. TRANS The socket type does not support the requested communications protocol. -#: stdio-common/../sysdeps/gnu/errlist.c:322 +#: 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 "Fel protokolltyp f�r uttag (socket)" -#: nis/nis_error.c:64 +#: nis/nis_error.c:65 msgid "Query illegal for named table" -msgstr "Fr�ga ogiltig f�r namngiven tabell" +msgstr "Fr�ga otill�ten f�r namngiven tabell" -#: stdio-common/../sysdeps/unix/siglist.c:28 -#: sysdeps/unix/sysv/linux/siglist.h:24 +#: stdio-common/../sysdeps/unix/siglist.c:29 sysdeps/generic/siglist.h:31 msgid "Quit" msgstr "L�mnad" -#: stdio-common/../sysdeps/gnu/errlist.c:754 +#: stdio-common/../sysdeps/gnu/errlist.c:773 msgid "RFS specific error" msgstr "RFS-specifikt fel" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:539 +#: stdio-common/../sysdeps/gnu/errlist.c:540 msgid "RPC bad procedure for program" msgstr "RPC d�lig procedur f�r program" -#: nis/ypclnt.c:767 +#: nis/ypclnt.c:790 msgid "RPC failure on NIS operation" msgstr "RPC-fel vid NIS-operation" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:529 +#: stdio-common/../sysdeps/gnu/errlist.c:530 msgid "RPC program not available" -msgstr "RPC programmet ej tillg�ngligt" +msgstr "RPC-programmet inte tillg�ngligt" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:534 +#: stdio-common/../sysdeps/gnu/errlist.c:535 msgid "RPC program version wrong" -msgstr "RPC fel programversion" +msgstr "RPC-programversion fel" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:519 +#: stdio-common/../sysdeps/gnu/errlist.c:520 msgid "RPC struct is bad" -msgstr "RPC struktur d�lig" +msgstr "RPC-struktur d�lig" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:524 +#: stdio-common/../sysdeps/gnu/errlist.c:525 msgid "RPC version wrong" -msgstr "RPC fel version" +msgstr "RPC-version fel" -#: sunrpc/clnt_perr.c:215 +#: sunrpc/clnt_perr.c:271 msgid "RPC: (unknown error code)" msgstr "RPC: (ok�nd felkod)" -#: sunrpc/clnt_perr.c:176 +#: sunrpc/clnt_perr.c:190 msgid "RPC: Authentication error" msgstr "RPC: Fel vid �kthetskontroll" -#: sunrpc/clnt_perr.c:166 +#: sunrpc/clnt_perr.c:170 msgid "RPC: Can't decode result" msgstr "RPC: Kan inte avkoda resultatet" -#: sunrpc/clnt_perr.c:164 +#: sunrpc/clnt_perr.c:166 msgid "RPC: Can't encode arguments" msgstr "RPC: Kan inte koda argumentet" -#: sunrpc/clnt_perr.c:196 +#: sunrpc/clnt_perr.c:230 msgid "RPC: Failed (unspecified error)" msgstr "RPC: Misslyckades (ospecificerat fel)" -#: sunrpc/clnt_perr.c:174 +#: sunrpc/clnt_perr.c:186 msgid "RPC: Incompatible versions of RPC" msgstr "RPC: Inkompatibla versioner av RPC" -#: sunrpc/clnt_perr.c:192 +#: sunrpc/clnt_perr.c:222 msgid "RPC: Port mapper failure" msgstr "RPC: Fel i port�vers�ttare" -#: sunrpc/clnt_perr.c:182 +#: sunrpc/clnt_perr.c:202 msgid "RPC: Procedure unavailable" msgstr "RPC: Procedur inte tillg�nglig" -#: sunrpc/clnt_perr.c:194 +#: sunrpc/clnt_perr.c:226 msgid "RPC: Program not registered" msgstr "RPC: Programmet inte registrerat" -#: sunrpc/clnt_perr.c:178 +#: sunrpc/clnt_perr.c:194 msgid "RPC: Program unavailable" msgstr "RPC: Programmet otillg�ngligt" -#: sunrpc/clnt_perr.c:180 +#: sunrpc/clnt_perr.c:198 msgid "RPC: Program/version mismatch" msgstr "RPC: Program/version-inkompatibilitet" -#: sunrpc/clnt_perr.c:186 +#: sunrpc/clnt_perr.c:210 msgid "RPC: Remote system error" msgstr "RPC: Fj�rrsystemsfel" -#: sunrpc/clnt_perr.c:184 +#: sunrpc/clnt_perr.c:206 msgid "RPC: Server can't decode arguments" msgstr "RPC: Server kan inte avkoda argumenten" -#: sunrpc/clnt_perr.c:162 +#: sunrpc/clnt_perr.c:163 msgid "RPC: Success" msgstr "RPC: Lyckat" -#: sunrpc/clnt_perr.c:172 +#: sunrpc/clnt_perr.c:182 msgid "RPC: Timed out" msgstr "RPC: Tiden l�pte ut" -#: sunrpc/clnt_perr.c:170 +#: sunrpc/clnt_perr.c:178 msgid "RPC: Unable to receive" msgstr "RPC: Kan inte ta emot" -#: sunrpc/clnt_perr.c:168 +#: sunrpc/clnt_perr.c:174 msgid "RPC: Unable to send" msgstr "RPC: Kan inte skicka" -#: sunrpc/clnt_perr.c:188 +#: sunrpc/clnt_perr.c:214 msgid "RPC: Unknown host" msgstr "RPC: Ok�nd v�rdmaskin" -#: sunrpc/clnt_perr.c:190 +#: sunrpc/clnt_perr.c:218 msgid "RPC: Unknown protocol" msgstr "RPC: Ok�nt protokoll" -#: nis/nis_print.c:184 +#: nis/nis_print.c:185 #, c-format msgid "RSA (%d bits)\n" msgstr "RSA (%d bitar)\n" -#: elf/dlsym.c:59 elf/dlvsym.c:62 +#: elf/dl-sym.c:68 elf/dl-sym.c:125 msgid "RTLD_NEXT used in code not dynamically loaded" msgstr "RTLD_NEXT anv�nds i kod som inte �r dynamiskt laddad" -#: elf/sprof.c:88 +#: elf/sprof.c:84 msgid "Read and display shared object profiling data" msgstr "L�s och visa profildata f�r delat objekt" -#: nscd/nscd.c:78 +#: nscd/nscd.c:84 msgid "Read configuration data from NAME" msgstr "L�s konfigurationsdata fr�n NAMN" #. TRANS An attempt was made to modify something on a read-only file system. -#: stdio-common/../sysdeps/gnu/errlist.c:218 +#: stdio-common/../sysdeps/gnu/errlist.c:219 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:60 msgid "Read-only file system" msgstr "Filsystemet endast l�sbart" -#: string/strsignal.c:66 +#: string/strsignal.c:67 #, c-format msgid "Real-time signal %d" msgstr "Realtidssignal %d" -#: posix/regex.c:1027 +#: posix/regex.c:1129 msgid "Regular expression too big" msgstr "Regulj�rt uttryck f�r stort" -#: stdio-common/../sysdeps/gnu/errlist.c:810 +#: 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-fel p� fj�rrmaskin" -#: stdio-common/../sysdeps/gnu/errlist.c:766 +#: stdio-common/../sysdeps/gnu/errlist.c:785 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:112 msgid "Remote address changed" msgstr "Fj�rradress �ndrades" -#: inet/ruserpass.c:162 +#: inet/ruserpass.c:182 msgid "Remove password or make file unreadable by others." msgstr "Ta bort l�senord eller g�r filen ol�sbar f�r andra" -#: elf/sprof.c:537 +#: elf/cache.c:394 +#, c-format +msgid "Renaming of %s to %s failed" +msgstr "Namnbyte p� %s till %s misslyckades" + +#: elf/sprof.c:532 #, c-format msgid "Reopening shared object `%s' failed" msgstr "�ppna delat object \"%s\" igen misslyckades" -#: nis/nis_print.c:170 +#: nis/nis_print.c:171 msgid "Replicate :\n" -msgstr "Replikerad :\n" +msgstr "Replikerad:\n" -#: argp/argp-help.c:1638 +#: argp/argp-help.c:1639 #, c-format msgid "Report bugs to %s.\n" msgstr "Rapportera fel till %s.\n" -#: catgets/gencat.c:223 db2/makedb.c:229 iconv/iconv_prog.c:280 -#: locale/programs/locale.c:254 locale/programs/localedef.c:389 +#: catgets/gencat.c:233 debug/pcprofiledump.c:181 iconv/iconv_prog.c:337 +#: locale/programs/locale.c:256 locale/programs/localedef.c:297 +#: malloc/memusagestat.c:602 msgid "Report bugs using the `glibcbug' script to <bugs@gnu.org>.\n" msgstr "" "Rapportera fel med programmet \"glibcbug\" till <bugs@gnu.org>.\n" "Rapportera fel p� �vers�ttningen till <sv@li.org>.\n" -#: nis/ypclnt.c:765 +#: nis/ypclnt.c:788 msgid "Request arguments bad" msgstr "Argument f�r f�rfr�gan felaktiga" -#: resolv/herror.c:73 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:171 +msgid "Reserved for future use" +msgstr "Reserverad f�r framtida anv�ndning" + +#: resolv/herror.c:67 msgid "Resolver Error 0 (no error)" msgstr "Resolver-fel 0 (inget fel)" -#: resolv/herror.c:117 +#: resolv/herror.c:107 msgid "Resolver internal error" msgstr "Internt fel i namnl�sare (resolver)" @@ -2164,11 +3252,11 @@ msgstr "Internt fel i namnl�sare (resolver)" #. 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:97 +#: stdio-common/../sysdeps/gnu/errlist.c:98 msgid "Resource deadlock avoided" msgstr "Resursd�dl�ge undveks" -#: stdio-common/../sysdeps/unix/siglist.c:54 +#: stdio-common/../sysdeps/unix/siglist.c:55 sysdeps/generic/siglist.h:74 msgid "Resource lost" msgstr "F�rlorad resurs" @@ -2201,76 +3289,83 @@ msgstr "F�rlorad resurs" #. 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:279 +#: stdio-common/../sysdeps/gnu/errlist.c:280 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:41 msgid "Resource temporarily unavailable" msgstr "Resursen tillf�lligt otillg�nglig" -#: nis/nis_error.c:47 -msgid "Results Sent to callback proc" -msgstr "Resultat skickat till �teranropsprocessen" +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:64 +msgid "Result too large" +msgstr "Resultat f�r stort" + +#: nis/nis_error.c:48 +msgid "Results sent to callback proc" +msgstr "Resultat �r skickade till �teranropsprocessen" -#: elf/sprof.c:91 +#: elf/sprof.c:87 msgid "SHOBJ [PROFDATA]" msgstr "SHOBJ [PROFDATA]" -#: nis/nis_print.c:33 +#: nis/nis_print.c:34 msgid "SUNYP" msgstr "SUNYP" -#: nis/nis_print.c:265 +#: nis/nis_print.c:266 #, c-format msgid "Search Path : %s\n" msgstr "S�kv�g : %s\n" -#: stdio-common/../sysdeps/unix/siglist.c:36 -#: sysdeps/unix/sysv/linux/siglist.h:31 +#: stdio-common/../sysdeps/unix/siglist.c:37 sysdeps/generic/siglist.h:38 msgid "Segmentation fault" msgstr "Segmenteringsfel" -#: nis/nis_error.c:35 +#: nis/nis_error.c:36 msgid "Server busy, try again" msgstr "Server upptagen, f�rs�k igen" -#: nis/nis_error.c:41 +#: nis/nis_error.c:42 msgid "Server out of memory" msgstr "Server har slut p� minne" -#: sunrpc/clnt_perr.c:277 +#: sunrpc/clnt_perr.c:336 msgid "Server rejected credential" msgstr "Server f�rkastade kreditiv" -#: sunrpc/clnt_perr.c:281 +#: sunrpc/clnt_perr.c:344 msgid "Server rejected verifier" msgstr "Server f�rkastade verifierare" -#: posix/../sysdeps/posix/gai_strerror.c:38 +#: posix/../sysdeps/posix/gai_strerror.c:39 msgid "Servname not supported for ai_socktype" msgstr "Servname st�ds inte f�r ai_socktype" -#: argp/argp-parse.c:89 +#: argp/argp-parse.c:95 msgid "Set the program name" msgstr "S�tt programnamnet" -#: nscd/nscd.c:82 +#: nscd/nscd.c:88 msgid "Shut the server down" msgstr "Avsluta servern" -#: stdio-common/../sysdeps/unix/siglist.c:25 +#: stdio-common/../sysdeps/unix/siglist.c:26 msgid "Signal 0" msgstr "Signal 0" #. TRANS A file that isn't a socket was specified when a socket is required. -#: stdio-common/../sysdeps/gnu/errlist.c:311 +#: 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 "Uttagsoperation p� icke-uttag (socket)" #. TRANS The socket type is not supported. -#: stdio-common/../sysdeps/gnu/errlist.c:340 +#: stdio-common/../sysdeps/gnu/errlist.c:341 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:151 msgid "Socket type not supported" -msgstr "Uttagstyp (socket) st�ds inte" +msgstr "Uttagstyp (socket) st�ds ej" #. TRANS A network connection was aborted locally. -#: stdio-common/../sysdeps/gnu/errlist.c:394 +#: stdio-common/../sysdeps/gnu/errlist.c:395 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:160 msgid "Software caused connection abort" msgstr "Mjukvara orsakade f�rbindelsebrott" @@ -2278,15 +3373,16 @@ msgstr "Mjukvara orsakade f�rbindelsebrott" msgid "Sorry. You are not root\n" msgstr "Tyv�rr, du �r inte root\n" -#: locale/programs/localedef.c:97 +#: locale/programs/localedef.c:95 msgid "Source definitions are found in FILE" msgstr "K�lldefinitioner finns i FILE" -#: stdio-common/../sysdeps/gnu/errlist.c:746 +#: stdio-common/../sysdeps/gnu/errlist.c:765 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:99 msgid "Srmount error" msgstr "Srmount-fel" -#: sysdeps/unix/sysv/linux/siglist.h:59 +#: sysdeps/generic/siglist.h:66 msgid "Stack fault" msgstr "Stackfel" @@ -2294,73 +3390,75 @@ msgstr "Stackfel" #. 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:506 +#: stdio-common/../sysdeps/gnu/errlist.c:507 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:181 msgid "Stale NFS file handle" msgstr "F�rlegat NFS-filhandtag" -#: nscd/nscd.c:81 +#: nscd/nscd.c:87 msgid "Start NUMBER threads" msgstr "Starta ANTAL tr�dar" -#: nis/nis_print.c:357 +#: nis/nis_print.c:362 #, c-format msgid "Status : %s\n" msgstr "Status : %s\n" -#: stdio-common/../sysdeps/unix/siglist.c:43 -#: sysdeps/unix/sysv/linux/siglist.h:37 +#: stdio-common/../sysdeps/unix/siglist.c:44 sysdeps/generic/siglist.h:44 msgid "Stopped" msgstr "Stoppad" -#: stdio-common/../sysdeps/unix/siglist.c:42 -#: sysdeps/unix/sysv/linux/siglist.h:36 +#: stdio-common/../sysdeps/unix/siglist.c:43 sysdeps/generic/siglist.h:43 msgid "Stopped (signal)" msgstr "Stoppad (signal)" -#: stdio-common/../sysdeps/unix/siglist.c:46 -#: sysdeps/unix/sysv/linux/siglist.h:40 +#: stdio-common/../sysdeps/unix/siglist.c:47 sysdeps/generic/siglist.h:47 msgid "Stopped (tty input)" msgstr "Stoppad (terminall�sning)" -#: stdio-common/../sysdeps/unix/siglist.c:47 -#: sysdeps/unix/sysv/linux/siglist.h:41 +#: stdio-common/../sysdeps/unix/siglist.c:48 sysdeps/generic/siglist.h:48 msgid "Stopped (tty output)" msgstr "Stoppad (terminalskrivning)" -#: stdio-common/../sysdeps/gnu/errlist.c:790 +#: stdio-common/../sysdeps/gnu/errlist.c:809 msgid "Streams pipe error" msgstr "Streams-r�rfel" -#: stdio-common/../sysdeps/gnu/errlist.c:794 +#: stdio-common/../sysdeps/gnu/errlist.c:813 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:165 msgid "Structure needs cleaning" msgstr "Strukturen beh�ver st�das" -#: nis/nis_error.c:28 nis/ypclnt.c:763 nis/ypclnt.c:837 posix/regex.c:1012 -#: stdio-common/../sysdeps/gnu/errlist.c:19 +#: nis/nis_error.c:29 nis/ypclnt.c:786 nis/ypclnt.c:860 posix/regex.c:1084 +#: stdio-common/../sysdeps/gnu/errlist.c:20 msgid "Success" msgstr "Lyckat" +#: nss/getent.c:703 +msgid "Supported databases:" +msgstr "Databaser som st�ds:" + #: locale/programs/localedef.c:106 msgid "Suppress warnings and information messages" msgstr "Undertryck varningar och informationsmeddelanden" -#: locale/programs/localedef.c:96 +#: locale/programs/localedef.c:94 msgid "Symbolic character names defined in FILE" msgstr "Symboliska teckennamn definierade i FILE" -#: posix/../sysdeps/posix/gai_strerror.c:40 +#: posix/../sysdeps/posix/gai_strerror.c:41 msgid "System error" msgstr "Systemfel" -#: locale/programs/locale.c:63 +#: locale/programs/locale.c:65 msgid "System information:" msgstr "Systeminformation:" -#: nis/ypclnt.c:843 +#: nis/ypclnt.c:866 msgid "System resource allocation failure" msgstr "Allokeringsfel f�r systemresurs" -#: locale/programs/localedef.c:384 +#: locale/programs/localedef.c:292 #, c-format msgid "" "System's directory for character maps : %s\n" @@ -2373,21 +3471,28 @@ msgstr "" " lokal-s�kv�g : %s\n" "%s" -#: nis/nis_print.c:117 +#: nscd/nscd.c:90 +msgid "TABLE" +msgstr "TABELL" + +#: nis/nis_print.c:118 msgid "TABLE\n" msgstr "TABELL\n" -#: nis/nis_print.c:262 +#: nscd/nscd.c:92 +msgid "TABLE,yes" +msgstr "TABELL,yes" + +#: nis/nis_print.c:263 #, c-format msgid "Table Type : %s\n" msgstr "Tabelltyp : %s\n" -#: posix/../sysdeps/posix/gai_strerror.c:31 +#: posix/../sysdeps/posix/gai_strerror.c:32 msgid "Temporary failure in name resolution" msgstr "Namnuppslagning misslyckades tempor�rt" -#: stdio-common/../sysdeps/unix/siglist.c:40 -#: sysdeps/unix/sysv/linux/siglist.h:34 +#: stdio-common/../sysdeps/unix/siglist.c:41 sysdeps/generic/siglist.h:41 msgid "Terminated" msgstr "Avslutad" @@ -2396,19 +3501,17 @@ msgstr "Avslutad" #. 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:197 +#: stdio-common/../sysdeps/gnu/errlist.c:198 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:56 msgid "Text file busy" msgstr "Kodfil upptagen" -#: iconv/iconv_prog.c:536 +#: iconv/iconv_prog.c:627 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" -" Some of the names are no plain strings but instead regular expressions and\n" -"they match a variety of names which can be given as parameters to the\n" -"program.\n" "\n" " " msgstr "" @@ -2416,33 +3519,41 @@ msgstr "" "betyder inte n�dv�ndigtvis att alla kombinationer av dessa namn kan ges\n" "som FR�N och TILL argument. En teckenupps�ttning kan ha flera olika namn\n" "(alias).\n" -" En del av namnen �r inte str�ngar utan regulj�ra uttryck och dessa\n" -"matchar varianter av namn som kan ges som argument till programmet.\n" "\n" " " -#: nis/nis_print.c:223 +#: sunrpc/rpc_main.c:1364 +msgid "This implementation doesn't support newstyle or MT-safe code!\n" +msgstr "Denna implementation st�djer inte \"newstyle\" eller tr�ds�ker kod!\n" + +#: nis/nis_print.c:224 msgid "Time to live : " -msgstr "Livsl�ngd : " +msgstr "Livsl�ngd: " -#: stdio-common/../sysdeps/gnu/errlist.c:662 +#: stdio-common/../sysdeps/gnu/errlist.c:681 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:92 msgid "Timer expired" msgstr "Klockan ringde" -#: nis/nis_error.c:55 -msgid "Too Many Attributes" +#: malloc/memusagestat.c:54 +msgid "Title string used in output graphic" +msgstr "Titelstr�ng att anv�nda i resultatgrafiken" + +#: nis/nis_error.c:56 +msgid "Too many attributes" msgstr "F�r m�nga attribut" #. 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:457 +#: stdio-common/../sysdeps/gnu/errlist.c:458 msgid "Too many levels of symbolic links" msgstr "F�r m�nga niv�er av symboliska l�nkar" #. 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:225 +#: stdio-common/../sysdeps/gnu/errlist.c:226 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:61 msgid "Too many links" msgstr "F�r m�nga l�nkar" @@ -2453,54 +3564,57 @@ msgstr "F�r m�nga l�nkar" #. 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:175 +#: stdio-common/../sysdeps/gnu/errlist.c:176 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:54 msgid "Too many open files" msgstr "F�r m�nga �ppna filer" #. 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:182 +#: stdio-common/../sysdeps/gnu/errlist.c:183 msgid "Too many open files in system" msgstr "F�r m�nga �ppna filer i systemet" #. 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:487 +#: stdio-common/../sysdeps/gnu/errlist.c:488 msgid "Too many processes" msgstr "F�r m�nga processer" #. TRANS ??? -#: stdio-common/../sysdeps/gnu/errlist.c:439 +#: 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 "F�r m�nga referenser: kan inte skarva" #. 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:493 +#: stdio-common/../sysdeps/gnu/errlist.c:494 +#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:124 msgid "Too many users" msgstr "F�r m�nga anv�ndare" -#: stdio-common/../sysdeps/unix/siglist.c:30 -#: sysdeps/unix/sysv/linux/siglist.h:26 +#: stdio-common/../sysdeps/unix/siglist.c:31 sysdeps/generic/siglist.h:33 msgid "Trace/breakpoint trap" msgstr "Sp�rningsf�lla" -#: posix/regex.c:1017 +#: posix/regex.c:1099 msgid "Trailing backslash" msgstr "Avslutande omv�nt snedstreck" #. 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:596 +#: stdio-common/../sysdeps/gnu/errlist.c:615 msgid "Translator died" msgstr "�vers�ttaren dog" #. TRANS You tried to connect a socket that is already connected. #. TRANS @xref{Connecting}. -#: stdio-common/../sysdeps/gnu/errlist.c:414 +#: 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 "Transportslutpunkten �r redan f�rbunden" @@ -2508,139 +3622,139 @@ msgstr "Transportslutpunkten �r redan f�rbunden" #. 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:422 +#: 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 "Transportslutpunkten �r inte f�rbunden" -#: argp/argp-help.c:1610 +#: argp/argp-help.c:1611 #, c-format msgid "Try `%s --help' or `%s --usage' for more information.\n" msgstr "F�rs�k med \"%s --help\" eller \"%s --usage\" f�r mer information\n" -#: inet/rcmd.c:143 -#, c-format -msgid "Trying %s...\n" -msgstr "Provar %s...\n" - -#: nis/nis_print.c:163 +#: nis/nis_print.c:164 #, c-format msgid "Type : %s\n" -msgstr "Typ : %s\n" +msgstr "Typ: %s\n" -#: nis/nis_print.c:47 +#: nis/nis_print.c:48 msgid "UNKNOWN" msgstr "OK�ND" -#: nis/nis_error.c:72 +#: nis/nis_error.c:73 msgid "Unable to authenticate NIS+ client" msgstr "Kan inte bevisa �kthet hos NIS+ klient" -#: nis/nis_error.c:71 +#: nis/nis_error.c:72 msgid "Unable to authenticate NIS+ server" msgstr "Kan inte bevisa �kthet hos NIS+ server" -#: nis/nis_error.c:46 +#: nis/nis_error.c:47 msgid "Unable to create callback" msgstr "Kan inte skapa �teranrop" -#: nis/nis_error.c:74 +#: nis/nis_error.c:75 msgid "Unable to create process on server" msgstr "Kan inte skapa process hos server" -#: nis/nis_print.c:190 +#: nis/nis_print.c:191 #, c-format msgid "Unknown (type = %d, bits = %d)\n" msgstr "Ok�nd (typ = %d, bitar = %d)\n" -#: inet/ruserpass.c:248 +#: inet/ruserpass.c:274 #, c-format msgid "Unknown .netrc keyword %s" msgstr "Ok�nt .netrc-nyckelord %s" -#: nis/ypclnt.c:797 +#: elf/../sysdeps/generic/readelflib.c:69 +#, c-format +msgid "Unknown ELFCLASS in file %s.\n" +msgstr "Ok�nd ELFCLASS in fil %s.\n" + +#: nis/ypclnt.c:820 msgid "Unknown NIS error code" msgstr "Ok�nd NIS-felkod" -#: nss/getent.c:505 +#: nss/getent.c:771 #, c-format msgid "Unknown database: %s\n" msgstr "Ok�nd databas: %s\n" -#: posix/../sysdeps/posix/gai_strerror.c:51 +#: posix/../sysdeps/posix/gai_strerror.c:52 msgid "Unknown error" msgstr "Ok�nt fel" #: string/../sysdeps/generic/_strerror.c:48 -#: string/../sysdeps/mach/_strerror.c:86 -#: sysdeps/mach/hurd/mips/dl-machine.c:82 +#: string/../sysdeps/mach/_strerror.c:88 +#: sysdeps/mach/hurd/mips/dl-machine.c:83 msgid "Unknown error " msgstr "Ok�nt fel " -#: resolv/herror.c:74 +#: resolv/herror.c:68 msgid "Unknown host" msgstr "Ok�nd v�rd" -#: nis/nis_error.c:34 +#: nis/nis_error.c:35 msgid "Unknown object" msgstr "Ok�nt objekt" -#: nscd/nscd_conf.c:181 +#: nscd/nscd_conf.c:187 #, c-format msgid "Unknown option: %s %s %s" msgstr "Ok�nd flagga: %s %s %s" -#: resolv/herror.c:120 +#: resolv/herror.c:110 msgid "Unknown resolver error" msgstr "Ok�nt fel hos namnl�sare (resolver)" -#: resolv/herror.c:76 +#: resolv/herror.c:70 msgid "Unknown server error" msgstr "Ok�nt fel hos server" -#: string/strsignal.c:70 +#: string/strsignal.c:71 #, c-format msgid "Unknown signal %d" msgstr "Ok�nd signal %d" -#: misc/error.c:107 +#: misc/error.c:114 timezone/zic.c:384 msgid "Unknown system error" msgstr "Ok�nt systemfel" -#: nis/ypclnt.c:845 +#: nis/ypclnt.c:868 msgid "Unknown ypbind error" msgstr "Ok�nt ypbind-fel" -#: posix/regex.c:1020 +#: posix/regex.c:1108 msgid "Unmatched ( or \\(" msgstr "Obalanserade ( eller \\(" -#: posix/regex.c:1028 +#: posix/regex.c:1132 msgid "Unmatched ) or \\)" msgstr "Obalanserade ) eller \\)" -#: posix/regex.c:1019 +#: posix/regex.c:1105 msgid "Unmatched [ or [^" msgstr "Obalanserade [ eller [^" -#: posix/regex.c:1021 +#: posix/regex.c:1111 msgid "Unmatched \\{" msgstr "Obalanserad \\{" -#: posix/getconf.c:692 +#: posix/getconf.c:819 #, c-format msgid "Unrecognized variable `%s'" msgstr "Ok�nd variabel \"%s\"" -#: stdio-common/../sysdeps/unix/siglist.c:41 -#: sysdeps/unix/sysv/linux/siglist.h:35 +#: stdio-common/../sysdeps/unix/siglist.c:42 sysdeps/generic/siglist.h:42 msgid "Urgent I/O condition" msgstr "Akut I/O-tillst�nd" -#: argp/argp-help.c:1567 +#: argp/argp-help.c:1568 msgid "Usage:" msgstr "Anv�ndning:" -#: posix/getconf.c:604 +#: posix/getconf.c:731 #, c-format msgid "Usage: %s variable_name [pathname]\n" msgstr "Anv�ndning: %s variabelnamn [s�kv�g]\n" @@ -2649,267 +3763,363 @@ msgstr "Anv�ndning: %s variabelnamn [s�kv�g]\n" msgid "Usage: rpcinfo [ -n portnum ] -u host prognum [ versnum ]\n" msgstr "Anv�ndning: rpcinfo [ -n portnr ] -u v�rd prognr [ versnr ]\n" -#: stdio-common/../sysdeps/unix/siglist.c:55 -#: sysdeps/unix/sysv/linux/siglist.h:48 +#: elf/ldconfig.c:132 +msgid "Use CACHE as cache file" +msgstr "Anv�nd CACHE som cache-fil" + +#: elf/ldconfig.c:133 +msgid "Use CONF as configuration file" +msgstr "Anv�nd CONF som konfigurationsfil" + +#: nscd/nscd.c:92 +msgid "Use separate cache for each user" +msgstr "Anv�nd separat cache f�r varje anv�ndare" + +#: stdio-common/../sysdeps/unix/siglist.c:56 sysdeps/generic/siglist.h:55 msgid "User defined signal 1" msgstr "Anv�ndarsignal 1" -#: stdio-common/../sysdeps/unix/siglist.c:56 -#: sysdeps/unix/sysv/linux/siglist.h:49 +#: stdio-common/../sysdeps/unix/siglist.c:57 sysdeps/generic/siglist.h:56 msgid "User defined signal 2" msgstr "Anv�ndarsignal 2" -#: stdio-common/../sysdeps/gnu/errlist.c:654 +#: 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 "V�rdet f�r stort f�r definierad datatyp" -#: stdio-common/../sysdeps/unix/siglist.c:51 -#: sysdeps/unix/sysv/linux/siglist.h:45 +#: stdio-common/../sysdeps/unix/siglist.c:52 sysdeps/generic/siglist.h:52 msgid "Virtual timer expired" msgstr "Alarmklocka - virtuell tid" -#: timezone/zic.c:1899 +#: timezone/zic.c:1926 msgid "Wild result from command execution" msgstr "Vilt resultat fr�n kommandok�rning" -#: stdio-common/../sysdeps/unix/siglist.c:53 -#: sysdeps/unix/sysv/linux/siglist.h:47 +#: stdio-common/../sysdeps/unix/siglist.c:54 sysdeps/generic/siglist.h:54 msgid "Window changed" msgstr "�ndrat f�nster" -#: locale/programs/locale.c:67 +#: locale/programs/locale.c:69 msgid "Write names of available charmaps" msgstr "Skriv namn p� tillg�ngliga teckenupps�ttningar" -#: locale/programs/locale.c:65 +#: locale/programs/locale.c:67 msgid "Write names of available locales" msgstr "Skriv namn p� tillg�ngliga lokaler" -#: locale/programs/locale.c:69 +#: locale/programs/locale.c:71 msgid "Write names of selected categories" msgstr "Skriv namn p� valda kategorier" -#: locale/programs/locale.c:70 +#: locale/programs/locale.c:72 msgid "Write names of selected keywords" msgstr "Skriv namn p� valda nyckelord" -#: catgets/gencat.c:110 db2/makedb.c:59 +#: catgets/gencat.c:115 msgid "Write output to file NAME" msgstr "Skriv resultatet till NAMN" -#: catgets/gencat.c:241 db2/makedb.c:247 elf/sprof.c:365 -#: iconv/iconv_prog.c:299 locale/programs/locale.c:272 -#: locale/programs/localedef.c:408 nscd/nscd.c:228 nss/getent.c:70 -#: posix/getconf.c:629 +#: elf/cache.c:366 elf/cache.c:375 elf/cache.c:379 +msgid "Writing of cache data failed" +msgstr "Skrivning av cache-data misslyckades" + +#: elf/cache.c:383 +msgid "Writing of cache data failed." +msgstr "Skrivning av cache-data misslyckades." + +#: catgets/gencat.c:251 elf/ldconfig.c:269 elf/sprof.c:361 +#: iconv/iconv_prog.c:356 locale/programs/locale.c:274 +#: locale/programs/localedef.c:316 nscd/nscd.c:292 nscd/nscd_nischeck.c:95 +#: nss/getent.c:68 posix/getconf.c:756 #, c-format msgid "Written by %s.\n" msgstr "Skriven av %s.\n" -#: stdio-common/../sysdeps/gnu/errlist.c:818 +#: stdio-common/../sysdeps/gnu/errlist.c:837 msgid "Wrong medium type" msgstr "Fel typ p� mediet" -#: nis/nis_print.c:39 +#: nis/nis_print.c:40 msgid "X500" msgstr "X500" -#: nis/nis_print.c:43 +#: nis/nis_print.c:44 msgid "XCHS" msgstr "XCHS" -#: nis/ypclnt.c:185 +#: nis/ypclnt.c:174 #, c-format msgid "YPBINDPROC_DOMAIN: %s\n" msgstr "YPBINDPROC_DOMAIN: %s\n" -#: nis/nis_error.c:70 +#: nis/nis_error.c:71 msgid "Yes, 42 is the meaning of life" msgstr "Ja, meningen med livet �r 42" #. TRANS You did @strong{what}? -#: stdio-common/../sysdeps/gnu/errlist.c:608 +#: stdio-common/../sysdeps/gnu/errlist.c:627 msgid "You really blew it this time" msgstr "Du strulade till det den h�r g�ngen" -#: timezone/zic.c:1063 +#: timezone/zic.c:1088 msgid "Zone continuation line end time is not after end time of previous line" msgstr "Zon-forts�ttningsradens sluttid �r inte efter sluttiden p� f�reg�ende rad" -#: iconv/iconv_prog.c:70 +#: iconv/iconv_prog.c:73 msgid "[FILE...]" msgstr "[FIL...]" -#: locale/programs/charmap.c:481 locale/programs/locfile.c:471 -#: locale/programs/repertoire.c:278 +#: debug/pcprofiledump.c:59 +msgid "[FILE]" +msgstr "[FIL]" + +#: sunrpc/pmap_clnt.c:72 +msgid "__get_myaddress: ioctl (get interface configuration)" +msgstr "__get_myaddress: ioctl (h�mta gr�nssnittskonfiguration)" + +#: locale/programs/ld-collate.c:417 #, c-format -msgid "`%1$s' definition does not end with `END %1$s'" -msgstr "\"%1$s\" definition slutar ej med \"END %1$s\"" +msgid "`%.*s' already defined as collating element" +msgstr "\"%.*s\" redan definierad som ett kollationselement" -#: elf/sprof.c:766 +#: locale/programs/ld-collate.c:410 #, c-format -msgid "`%s' is no correct profile data file for `%s'" -msgstr "\"%s\" �r inte en korrekt profildatafil f�r \"%s\"" +msgid "`%.*s' already defined as collating symbol" +msgstr "\"%.*s\" redan definierad som ett kollationssymbol" -#: locale/programs/ld-monetary.c:369 locale/programs/ld-numeric.c:193 +#: locale/programs/ld-collate.c:394 #, c-format -msgid "`-1' must be last entry in `%s' field in `%s' category" -msgstr "\"-1\" m�ste vara sista post i f�lt \"%s\" i kategori \"%s\"" +msgid "`%.*s' already defined in charmap" +msgstr "\"%.*s\" redan definerad i teckenupps�ttning" -#: locale/programs/ld-collate.c:1666 -msgid "`...' must only be used in `...' and `UNDEFINED' entries" -msgstr "\"...\" f�r endast anv�ndas f�r post \"...\" och post \"UNDEFINED\"" +#: locale/programs/ld-collate.c:403 +#, c-format +msgid "`%.*s' already defined in repertoire" +msgstr "\"%.*s\" redan definierad i repertoar" -#: locale/programs/locfile.c:668 -msgid "`from' expected after first argument to `collating-element'" -msgstr "\"from\" f�rv�ntades efter f�rsta argumentet till \"collating-element\"" +#: locale/programs/charmap.c:599 locale/programs/locfile.h:96 +#: locale/programs/repertoire.c:314 +#, c-format +msgid "`%1$s' definition does not end with `END %1$s'" +msgstr "definition av \"%1$s\" slutar inte med \"END %1$s\"" -#: locale/programs/ld-collate.c:1118 -msgid "`from' string in collation element declaration contains unknown character" -msgstr "\"fr�n\"-str�ng i deklaration av kollationeringselement inneh�ller ok�nt tecken" +#: locale/programs/ld-collate.c:1268 locale/programs/ld-ctype.c:1454 +#, c-format +msgid "`%s' and `%.*s' are no valid names for symbolic range" +msgstr "\"%s\" och \"%.*s\" �r otill�tna namn f�r symboliskt intervall" -#: posix/../sysdeps/posix/gai_strerror.c:34 +#: elf/sprof.c:762 +#, c-format +msgid "`%s' is no correct profile data file for `%s'" +msgstr "\"%s\" �r inte en korrekt profildatafil f�r \"%s\"" + +#: locale/programs/ld-ctype.c:691 +msgid "`digit' category has not entries in groups of ten" +msgstr "\"digit\"-kategori har inte poster i grupper av tio" + +#: posix/../sysdeps/posix/gai_strerror.c:35 msgid "ai_family not supported" msgstr "ai_family st�ds ej" -#: posix/../sysdeps/posix/gai_strerror.c:39 +#: posix/../sysdeps/posix/gai_strerror.c:40 msgid "ai_socktype not supported" -msgstr "ai_socktype st�ds inte" +msgstr "ai_socktype st�ds ej" -#: nscd/nscd.c:121 +#: nscd/nscd.c:130 msgid "already running" msgstr "k�r redan" -#: locale/programs/charmap.c:352 locale/programs/repertoire.c:152 +#: locale/programs/charmap.c:434 locale/programs/repertoire.c:184 #, c-format msgid "argument to <%s> must be a single character" msgstr "argumentet till <%s> m�ste vara ett enskilt tecken" -#: locale/programs/locfile.c:240 +#: locale/programs/locfile.c:124 #, c-format msgid "argument to `%s' must be a single character" msgstr "argumentet till \"%s\" m�ste vara ett enskilt tecken" -#: sunrpc/auth_unix.c:321 +#: sunrpc/auth_unix.c:311 msgid "auth_none.c - Fatal marshalling problem" msgstr "auth_none.c - Fatalt kodningsproblem" -#: sunrpc/auth_unix.c:116 sunrpc/auth_unix.c:122 sunrpc/auth_unix.c:151 +#: 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: minnet slut\n" -#: locale/programs/charmap.c:297 locale/programs/locfile.c:234 -#: locale/programs/locfile.c:261 locale/programs/repertoire.c:144 +#: locale/programs/charmap.c:364 locale/programs/locfile.c:118 +#: locale/programs/locfile.c:145 locale/programs/repertoire.c:176 msgid "bad argument" msgstr "d�ligt argument" -#: inet/rcmd.c:318 +#: inet/rcmd.c:424 msgid "bad owner" msgstr "ol�mplig �gare" -#: timezone/zic.c:1185 +#: timezone/zic.c:1210 msgid "blank FROM field on Link line" msgstr "tomt \"FROM\"-f�lt p� \"Link\"-rad" -#: timezone/zic.c:1189 +#: timezone/zic.c:1214 msgid "blank TO field on Link line" msgstr "tomt \"TO\"-f�lt p� \"Link\"-rad" -#: malloc/mcheck.c:208 +#: malloc/mcheck.c:291 msgid "block freed twice\n" msgstr "block frigjort tv� g�nger\n" -#: malloc/mcheck.c:211 +#: malloc/mcheck.c:294 msgid "bogus mcheck_status, library is buggy\n" msgstr "felaktig mcheck_status, biblioteket �r felaktigt\n" -#: sunrpc/pmap_rmt.c:185 +#: sunrpc/pmap_rmt.c:186 msgid "broadcast: ioctl (get interface configuration)" msgstr "uts�ndning: ioctl (h�mta gr�nssnittskonfiguration)" -#: sunrpc/pmap_rmt.c:194 +#: sunrpc/pmap_rmt.c:195 msgid "broadcast: ioctl (get interface flags)" msgstr "uts�ndning: ioctl (h�mta gr�nssnittsflaggor)" -#: login/programs/request.c:167 -msgid "buffer overflow" -msgstr "buffert fl�dar �ver" - -#: sunrpc/svc_udp.c:446 +#: sunrpc/svc_udp.c:528 msgid "cache_set: could not allocate new rpc_buffer" msgstr "cache_set: kunde inte allokera ny rpc-buffert" -#: sunrpc/svc_udp.c:440 +#: sunrpc/svc_udp.c:522 msgid "cache_set: victim alloc failed" msgstr "cache_set: offerallokering misslyckades" -#: sunrpc/svc_udp.c:429 +#: sunrpc/svc_udp.c:511 msgid "cache_set: victim not found" -msgstr "cache_set: offer hittades ej" +msgstr "cache_set: offer hittades inte" -#: timezone/zic.c:1726 +#: timezone/zic.c:1751 msgid "can't determine time zone abbreviation to use just after until time" msgstr "kan inte avg�ra tidszonsf�rkortning att anv�nda just efter \"until\"-tid" -#: sunrpc/svc_simple.c:75 +#: sunrpc/svc_simple.c:76 #, c-format -msgid "can't reassign procedure number %d\n" -msgstr "kan inte �ndra procedurnummer %d\n" +msgid "can't reassign procedure number %ld\n" +msgstr "kan inte �ndra procedurnummer %ld\n" -#: locale/programs/localedef.c:279 +#: elf/dl-reloc.c:152 +msgid "can't restore segment prot after reloc" +msgstr "kan inte �terst�lla segmentr�ttigheter efter relokering" + +#: locale/programs/localedef.c:487 #, c-format -msgid "cannot `stat' locale file `%s'" -msgstr "kan inte ta status p� lokalfil \"%s\"" +msgid "cannot add already read locale `%s' a second time" +msgstr "kan inte l�gga till en redan inl�st lokal \"%s\" en andra g�ng" + +#: elf/dl-deps.c:470 +msgid "cannot allocate dependency list" +msgstr "kan inte allokera beroendelista" + +#: elf/dl-load.c:1031 +msgid "cannot allocate memory for program header" +msgstr "Kan inte allokera minne f�r programhuvud" -#: elf/sprof.c:935 elf/sprof.c:987 +#: elf/dl-load.c:339 +msgid "cannot allocate name record" +msgstr "kan inte allokera namnpost" + +#: elf/sprof.c:930 elf/sprof.c:982 msgid "cannot allocate symbol data" msgstr "kan inte allokera symboldata" -#: elf/sprof.c:719 elf/sprof.c:777 +#: elf/dl-deps.c:501 +msgid "cannot allocate symbol search list" +msgstr "kan inte allokera s�klista f�r symboler" + +#: elf/dl-version.c:291 +msgid "cannot allocate version reference table" +msgstr "kan inte allokera tabell f�r versionsreferenser" + +#: elf/dl-load.c:1000 +msgid "cannot change memory protections" +msgstr "kan inte �ndra minnesskydd" + +#: elf/dl-load.c:533 +msgid "cannot create RUNPATH/RPATH copy" +msgstr "kan inte skapa kopia av RUNPATH/RPATH" + +#: elf/dl-load.c:418 elf/dl-load.c:518 elf/dl-load.c:546 elf/dl-load.c:593 +#: elf/dl-load.c:685 +msgid "cannot create cache for search path" +msgstr "kan inte skapa cache f�r s�kv�g" + +#: elf/dl-support.c:191 +msgid "cannot create capability list" +msgstr "kan inte skapa kapabilitetslista" + +#: elf/sprof.c:715 elf/sprof.c:773 msgid "cannot create internal descriptor" msgstr "kan inte skapa intern deskriptor" -#: elf/sprof.c:417 +#: elf/sprof.c:413 msgid "cannot create internal descriptors" msgstr "kan inte skapa interna deskriptorer" -#: nscd/connections.c:180 +#: elf/dl-load.c:583 +msgid "cannot create search path array" +msgstr "kan inte skapa s�kv�gslista" + +#: elf/dl-load.c:1137 +msgid "cannot create searchlist" +msgstr "kan inte skapa s�klista" + +#: elf/dl-load.c:822 elf/dl-load.c:1682 +msgid "cannot create shared object descriptor" +msgstr "kan inte skapa delad objektdeskriptor" + +#: catgets/gencat.c:1316 +msgid "cannot determine escape character" +msgstr "kan inte avg�ra kontrolltecken" + +#: elf/dl-load.c:950 +msgid "cannot dynamically load executable" +msgstr "kan inte ladda exekverbar fil dynamiskt" + +#: nscd/connections.c:183 #, c-format msgid "cannot enable socket to accept connections: %s" msgstr "kan inte f� uttag (socket) att acceptera f�rbindelser: %s" -#: sunrpc/rpc_main.c:342 +#: elf/dl-open.c:121 +msgid "cannot extend global scope" +msgstr "kan inte ut�ka globalt omr�de" + +#: sunrpc/rpc_main.c:343 #, c-format msgid "cannot find C preprocessor: %s \n" msgstr "kan inte hitta C preprocessor: %s \n" -#: sunrpc/rpc_main.c:350 +#: sunrpc/rpc_main.c:351 msgid "cannot find any C preprocessor (cpp)\n" msgstr "kan inte hitta n�gon C preprocessor (cpp)\n" -#: nscd/connections.c:205 +#: nscd/connections.c:225 #, c-format msgid "cannot handle old request version %d; current version is %d" msgstr "Kan inte hantera �ldre f�rfr�gansversion %d, nuvarande version �r %d" -#: locale/programs/ld-collate.c:1324 -#, c-format -msgid "cannot insert collation element `%.*s'" -msgstr "kan inte s�tta in kollationselement \"%.*s\"" +#: elf/sprof.c:670 +msgid "cannot load profiling data" +msgstr "kan inte l�sa profildata" -#: locale/programs/ld-collate.c:1503 locale/programs/ld-collate.c:1510 -msgid "cannot insert into result table" -msgstr "kan inte s�tta in i resultattabell" +#: elf/dl-deps.c:586 +msgid "cannot load shared object file" +msgstr "kan inte ladda delat objekt" -#: locale/programs/ld-collate.c:1175 locale/programs/ld-collate.c:1218 -#, c-format -msgid "cannot insert new collating symbol definition: %s" -msgstr "kan inte s�tta in ny kollationssymbolsdefinition: %s" +#: elf/dl-reloc.c:63 +msgid "cannot make segment writable for relocation" +msgstr "kan inte g�ra segment skrivbart f�r relokering" -#: elf/sprof.c:674 -msgid "cannot load profiling data" -msgstr "kan inte ladda profildata" +#: elf/dl-load.c:1016 +msgid "cannot map zero-fill pages" +msgstr "kan inte mappa nollfyllda sidor" -#: inet/rcmd.c:314 +#: inet/rcmd.c:420 msgid "cannot open" msgstr "kan inte �ppna" @@ -2918,762 +4128,752 @@ msgstr "kan inte �ppna" msgid "cannot open `%s'" msgstr "kan inte �ppna \"%s\"" -#: db2/makedb.c:146 -#, c-format -msgid "cannot open database file `%s': %s" -msgstr "kan inte �ppna databasfil \"%s\": %s" +#: debug/pcprofiledump.c:96 +msgid "cannot open input file" +msgstr "kan inte �ppna infil" -#: catgets/gencat.c:272 db2/makedb.c:167 iconv/iconv_prog.c:177 +#: catgets/gencat.c:288 iconv/iconv_prog.c:225 #, c-format msgid "cannot open input file `%s'" msgstr "kan inte �ppna infil \"%s\"" -#: locale/programs/localedef.c:198 +#: 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 "kan inte �ppna lokaldefinitionsfil \"%s\"" -#: iconv/iconv_prog.c:155 +#: iconv/iconv_prog.c:194 msgid "cannot open output file" msgstr "kan inte �ppna utfil" -#: catgets/gencat.c:774 catgets/gencat.c:815 db2/makedb.c:181 +#: catgets/gencat.c:944 catgets/gencat.c:985 #, c-format msgid "cannot open output file `%s'" msgstr "kan inte �ppna utfil \"%s\"" -#: locale/programs/locfile.c:1129 +#: locale/programs/locfile.c:381 #, c-format msgid "cannot open output file `%s' for category `%s'" msgstr "kan inte �ppna utfil \"%s\" f�r kategori \"%s\"" -#: nscd/connections.c:162 +#: elf/dl-load.c:1695 +msgid "cannot open shared object file" +msgstr "kan inte �ppna delad objektfil" + +#: nscd/connections.c:165 #, c-format msgid "cannot open socket: %s" msgstr "kan inte �ppna uttag (socket): %s" -#: locale/programs/ld-collate.c:1370 -msgid "cannot process order specification" -msgstr "kan inte bearbeta sorteringsspecifikation" +#: elf/dl-load.c:814 +msgid "cannot open zero fill device" +msgstr "kan inte �ppna nollfyllnadsenhet" -#: locale/programs/locale.c:449 +#: locale/programs/charmap-dir.c:61 #, c-format msgid "cannot read character map directory `%s'" msgstr "kan inte l�sa teckenupps�ttningskatalog \"%s\"" -#: nscd/connections.c:122 +#: nscd/connections.c:125 msgid "cannot read configuration file; this is fatal" msgstr "kan inte l�sa konfigurationsdata, detta �r fatalt" -#: login/programs/request.c:91 -msgid "cannot read from client" -msgstr "kan inte l�sa fr�n klient" +#: elf/dl-load.c:838 elf/dl-load.c:1244 +msgid "cannot read file data" +msgstr "kan inte l�sa fildata" + +#: debug/pcprofiledump.c:102 +msgid "cannot read header" +msgstr "kan inte l�sa huvud" #: sysdeps/unix/sysv/linux/lddlibc4.c:68 #, c-format msgid "cannot read header from `%s'" msgstr "kan inte l�sa huvud fr�n \"%s\"" -#: locale/programs/locale.c:306 +#: locale/programs/locale.c:308 #, c-format msgid "cannot read locale directory `%s'" msgstr "kan inte l�sa lokalkatalog \"%s\"" -#: locale/programs/localedef.c:303 -#, c-format -msgid "cannot read locale file `%s'" -msgstr "kan inte l�sa lokalfil \"%s\"" - -#: locale/programs/locfile.c:288 locale/programs/locfile.c:306 -#: locale/programs/locfile.c:324 locale/programs/locfile.c:342 -#: locale/programs/locfile.c:360 locale/programs/locfile.c:378 -#, c-format -msgid "cannot read repertoire map `%s'" -msgstr "kan inte l�sa repertoartabell \"%s\"" - -#: nscd/nscd_stat.c:127 +#: nscd/nscd_stat.c:128 msgid "cannot read statistics data" msgstr "kan inte l�sa statistikdata" -#: nscd/cache.c:141 nscd/connections.c:148 +#: locale/programs/repertoire.c:331 +msgid "cannot safe new repertoire map" +msgstr "kan inte s�kra repertoartabell" + +#: elf/dl-load.c:776 +msgid "cannot stat shared object" +msgstr "kan inte ta status p� delat objekt" + +#: nscd/cache.c:150 nscd/connections.c:151 #, c-format msgid "cannot stat() file `%s': %s" msgstr "kan inte ta status p� fil \"%s\": %s" -#: locale/programs/localedef.c:328 +#: locale/programs/localedef.c:230 #, c-format msgid "cannot write output files to `%s'" msgstr "kan inte skriva utfiler till \"%s\"" -#: nscd/connections.c:229 nscd/connections.c:250 +#: nscd/connections.c:261 nscd/connections.c:282 #, c-format msgid "cannot write result: %s" msgstr "kan inte skriva resultat: %s" -#: nscd/nscd_stat.c:86 +#: nscd/nscd_stat.c:87 #, c-format msgid "cannot write statistics: %s" msgstr "kan inte skriva statistik: %s" -#: login/programs/request.c:120 -msgid "cannot write to client" -msgstr "kan inte skriva till klient" - -#: locale/programs/localedef.c:442 -msgid "category data requested more than once: should not happen" -msgstr "kategoridata beg�rd mer �n en g�ng: borde inte intr�ffa" - -#: locale/programs/ld-ctype.c:269 +#: locale/programs/ld-ctype.c:509 #, c-format -msgid "character %s'%s' in class `%s' must be in class `%s'" -msgstr "tecknet %s\"%s\" i klass \"%s\" m�ste vara i klass \"%s\"" +msgid "character '%s' in class `%s' must be in class `%s'" +msgstr "tecken \"%s\" i klass \"%s\" m�ste vara i klass \"%s\"" -#: locale/programs/ld-ctype.c:294 +#: locale/programs/ld-ctype.c:524 #, c-format -msgid "character %s'%s' in class `%s' must not be in class `%s'" -msgstr "tecknet %s\"%s\" i klass \"%s\" f�r inte vara i klass \"%s\"" +msgid "character '%s' in class `%s' must not be in class `%s'" +msgstr "tecken \"%s\" i klass \"%s\" f�r inte vara i klass \"%s\"" -#: locale/programs/ld-ctype.c:320 +#: locale/programs/ld-ctype.c:579 msgid "character <SP> not defined in character map" -msgstr "tecknet <SP> inte definierat i teckenupps�ttning" +msgstr "tecken <SP> inte definierat i teckenupps�ttning" + +#: locale/programs/ld-ctype.c:453 +#, c-format +msgid "character L'\\u%0*x' in class `%s' must be in class `%s'" +msgstr "tecken L\"\\u%0*x\" i klass \"%s\" m�ste vara i klass \"%s\"" -#: locale/programs/ld-ctype.c:964 locale/programs/ld-ctype.c:1029 -#: locale/programs/ld-ctype.c:1040 locale/programs/ld-ctype.c:1051 -#: locale/programs/ld-ctype.c:1062 locale/programs/ld-ctype.c:1073 -#: locale/programs/ld-ctype.c:1084 locale/programs/ld-ctype.c:1113 -#: locale/programs/ld-ctype.c:1124 locale/programs/ld-ctype.c:1165 -#: locale/programs/ld-ctype.c:1194 locale/programs/ld-ctype.c:1206 +#: locale/programs/ld-ctype.c:467 +#, c-format +msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'" +msgstr "tecken L\"\\u%0*x\" i klass \"%s\" f�r inte vara i klass \"%s\"" + +#: locale/programs/ld-ctype.c:3030 #, c-format msgid "character `%s' not defined while needed as default value" -msgstr "tecknet \"%s\" inte definierat men beh�vs som standardv�rde" +msgstr "tecken \"%s\" inte definierat men beh�vs som standardv�rde" -#: locale/programs/ld-ctype.c:825 +#: locale/programs/ld-ctype.c:1215 #, c-format msgid "character class `%s' already defined" msgstr "teckenklass \"%s\" redan definierad" -#: locale/programs/ld-ctype.c:857 +#: locale/programs/ld-ctype.c:1247 #, c-format msgid "character map `%s' already defined" msgstr "teckenupps�ttning \"%s\" redan definierad" -#: locale/programs/charmap.c:83 +#: locale/programs/charmap.c:249 +#, c-format +msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n" +msgstr "teckenupps�ttning \"%s\" �r inte ASCII-kompatibel, lokal �r inte ISO C-kompatibel\n" + +#: locale/programs/charmap.c:135 #, c-format msgid "character map file `%s' not found" msgstr "teckenupps�ttningsfil \"%s\" finns inte" -#: sunrpc/clnt_raw.c:110 +#: locale/programs/charmap.c:460 +msgid "character sets with locking states are not supported" +msgstr "teckenupps�ttningar med l�sta tillst�nd st�ds ej" + +#: locale/programs/localedef.c:482 +msgid "circular dependencies between locale definitions" +msgstr "cirkul�rt beroende mellan lokaldefinitioner" + +#: sunrpc/clnt_raw.c:111 msgid "clnt_raw.c - Fatal header serialization error." msgstr "clnt_raw.c - Fatalt fel vid serialisering" -#: sunrpc/clnt_tcp.c:125 sunrpc/clnt_tcp.c:133 +#: sunrpc/clnt_tcp.c:126 sunrpc/clnt_tcp.c:134 msgid "clnttcp_create: out of memory\n" msgstr "clnttcp_create: minnet slut\n" -#: sunrpc/clnt_udp.c:124 sunrpc/clnt_udp.c:134 +#: sunrpc/clnt_udp.c:131 sunrpc/clnt_udp.c:141 msgid "clntudp_create: out of memory\n" msgstr "clntudp_create: minnet slut\n" -#: sunrpc/clnt_unix.c:123 sunrpc/clnt_unix.c:131 +#: sunrpc/clnt_unix.c:124 sunrpc/clnt_unix.c:132 msgid "clntunix_create: out of memory\n" msgstr "clntunix_create: minnet slut\n" -#: locale/programs/ld-collate.c:1339 -#, c-format -msgid "collation element `%.*s' appears more than once: ignore line" -msgstr "kollationselement \"%.*s\" finns mer �n en g�ng: rad ignorerad" - -#: locale/programs/ld-collate.c:1357 -#, c-format -msgid "collation symbol `%.*s' appears more than once: ignore line" -msgstr "kollationssymbol \"%.*s\" finns mer �n en g�ng: rad ignorerad" - -#: locale/programs/locfile.c:652 -#, c-format -msgid "collation symbol expected after `%s'" -msgstr "kollationssymbol f�rv�ntades efter \"%s\"" - -#: inet/rcmd.c:136 -#, c-format -msgid "connect to address %s: " -msgstr "koppla till adress %s: " - -#: sunrpc/rpc_scan.c:115 +#: sunrpc/rpc_scan.c:116 msgid "constant or identifier expected" msgstr "konstant eller identifierare f�rv�ntad" -#: iconv/iconv_prog.c:144 +#: iconv/iconv_prog.c:182 #, c-format msgid "conversion from `%s' to `%s' not supported" -msgstr "konvertering fr�n \"%s\" till \"%s\" st�djs inte" +msgstr "konvertering fr�n \"%s\" till \"%s\" st�ds ej" + +#: catgets/gencat.c:1290 +msgid "conversion modules not available" +msgstr "konverteringsmoduler inte tillg�ngliga" + +#: locale/programs/ld-monetary.c:900 +msgid "conversion rate value cannot be zero" +msgstr "omvandlingsv�rde kan inte vara noll" -#: iconv/iconv_prog.c:326 +#: iconv/iconv_prog.c:385 iconv/iconv_prog.c:410 msgid "conversion stopped due to problem in writing the output" msgstr "konvertering avslutades p� grund av problem med att skriva resultatet" -#: sunrpc/svc_simple.c:83 +#: sunrpc/svc_simple.c:84 msgid "couldn't create an rpc server\n" msgstr "kunde inte skapa en rpc-server\n" -#: sunrpc/svc_simple.c:91 +#: sunrpc/svc_simple.c:92 #, c-format -msgid "couldn't register prog %d vers %d\n" -msgstr "kunde inte registrera prog %d vers %d\n" +msgid "couldn't register prog %ld vers %ld\n" +msgstr "kunde inte registrera prog %ld vers %ld\n" -#: nss/getent.c:49 +#: nss/getent.c:51 msgid "database [key ...]" msgstr "databas [nyckel ...]" -#: locale/programs/charmap.c:170 +#: locale/programs/charmap.c:192 #, c-format msgid "default character map file `%s' not found" msgstr "standardteckenupps�ttningsfil \"%s\" inte hittad" -#: locale/programs/ld-time.c:163 +#: locale/programs/charmap.c:392 #, c-format -msgid "direction flag in string %d in `era' field in category `%s' is not '+' nor '-'" -msgstr "riktningsflagga i str�ng %d i \"era\"-f�lt i kategori \"%s\" �r varken \"+\" eller \"-\"" +msgid "duplicate definition of <%s>" +msgstr "dubblerad definition av <%s>" -#: locale/programs/ld-time.c:174 +#: locale/programs/ld-collate.c:3043 #, c-format -msgid "direction flag in string %d in `era' field in category `%s' is not a single character" -msgstr "riktningsflagga i str�ng %d i \"era\"-f�lt i kategori \"%s\" �r inte ett enskilt tecken" - -#: locale/programs/charset.c:64 locale/programs/charset.c:118 -#, c-format -msgid "duplicate character name `%s'" -msgstr "duplicerat teckennamn \"%s\"" - -#: locale/programs/ld-collate.c:1150 -msgid "duplicate collating element definition" -msgstr "dubbla definitioner av kollationselement" +msgid "duplicate definition of script `%s'" +msgstr "dubblerad definition f�r skript \"%s\"" -#: locale/programs/ld-collate.c:1297 -#, c-format -msgid "duplicate definition for character `%.*s'" -msgstr "dubbla definitioner f�r tecken \"%.*s\"" - -#: db2/makedb.c:328 -msgid "duplicate key" -msgstr "duplicerad nyckel" - -#: catgets/gencat.c:388 +#: catgets/gencat.c:430 msgid "duplicate set definition" -msgstr "duplicerad definition av m�ngd" +msgstr "dubblerad definition av m�ngd" -#: timezone/zic.c:978 +#: timezone/zic.c:1003 #, c-format msgid "duplicate zone name %s (file \"%s\", line %d)" -msgstr "duplicerat zonnamn %s (fil \"%s\", rad %d)" +msgstr "dubblerat zonnamn %s (fil \"%s\", rad %d)" -#: catgets/gencat.c:551 +#: locale/programs/ld-ctype.c:2557 +#, c-format +msgid "duplicated definition for mapping `%s'" +msgstr "dubblerad definition f�r mappning \"%s\"" + +#: catgets/gencat.c:631 msgid "duplicated message identifier" -msgstr "duplicerad meddelandeidentifierare" +msgstr "dubblerad meddelandeidentifierare" -#: catgets/gencat.c:524 +#: catgets/gencat.c:603 msgid "duplicated message number" -msgstr "duplicerat meddelandenummer" +msgstr "dubblerat meddelandenummer" + +#: locale/programs/ld-ctype.c:2368 +msgid "ellipsis range must be marked by two operands of same type" +msgstr "intervall m�ste markeras med tv� operander av samma typ" -#: sunrpc/rpc_scan.c:382 +#: sunrpc/rpc_scan.c:383 msgid "empty char string" msgstr "tom teckenstr�ng" -#: locale/programs/ld-collate.c:1710 -msgid "empty weight name: line ignored" -msgstr "tomt viktnamn: rad ignorerad" +#: elf/dl-open.c:223 +msgid "empty dynamic string token substitution" +msgstr "\"dynamic string token\" byttes mot tom str�ng" -#: sunrpc/svc_udp.c:372 +#: sunrpc/svc_udp.c:454 msgid "enablecache: cache already enabled" msgstr "enablecache: cache redan p�slagen" -#: sunrpc/svc_udp.c:378 +#: sunrpc/svc_udp.c:460 msgid "enablecache: could not allocate cache" msgstr "enablecache: kunde inte allokera cache" -#: sunrpc/svc_udp.c:386 +#: sunrpc/svc_udp.c:468 msgid "enablecache: could not allocate cache data" msgstr "enablecache: kunde inte allokera cache-data" -#: sunrpc/svc_udp.c:393 +#: sunrpc/svc_udp.c:475 msgid "enablecache: could not allocate cache fifo" msgstr "enablecache: kunde inte allokera cache-fifo" -#: iconv/iconv_prog.c:56 +#: iconv/iconv_prog.c:57 msgid "encoding for output" msgstr "kodning f�r resultatet" -#: iconv/iconv_prog.c:55 +#: iconv/iconv_prog.c:56 msgid "encoding of original text" msgstr "kodning av originaltexten" -#: locale/programs/ld-collate.c:1429 -msgid "end point of ellipsis range is bigger then start" -msgstr "slutpunkt f�r intervall �r st�rre �n startv�rdet" +#: nscd/connections.c:361 nscd/connections.c:453 +#, c-format +msgid "error getting callers id: %s" +msgstr "kunde inte h�mta anropandes identitet: %s" + +#: locale/programs/ld-collate.c:3013 +msgid "error while adding equivalent collating symbol" +msgstr "fel n�r ekvivalent kollationssymbol lades till" -#: iconv/iconv_prog.c:193 +#: iconv/iconv_prog.c:242 #, c-format msgid "error while closing input `%s'" msgstr "fel vid st�ngning av indata \"%s\"" -#: iconv/iconv_prog.c:239 +#: iconv/iconv_prog.c:288 msgid "error while closing output file" msgstr "fel vid st�ngning av utfilen" -#: elf/sprof.c:710 +#: elf/sprof.c:706 msgid "error while closing the profiling data file" msgstr "fel vid st�ngning av profildatafilen" -#: locale/programs/ld-collate.c:1158 -msgid "error while inserting collation element into hash table" -msgstr "fel vid ins�ttning av kollationselement i hashtabellen" - -#: locale/programs/ld-collate.c:1170 -msgid "error while inserting to hash table" -msgstr "fel vid ins�ttning i hashtabellen" - -#: iconv/iconv_prog.c:389 iconv/iconv_prog.c:420 +#: iconv/iconv_prog.c:474 iconv/iconv_prog.c:505 msgid "error while reading the input" msgstr "fel n�r indata l�stes" -#: locale/programs/locfile.c:595 +#: locale/programs/locfile.h:59 msgid "expect string argument for `copy'" msgstr "f�rv�ntar str�ngargument f�r \"copy\"" -#: timezone/zic.c:868 +#: timezone/zic.c:893 msgid "expected continuation line not found" -msgstr "f�rv�ntad forts�ttningsrad ej funnen" +msgstr "f�rv�ntad forts�ttningsrad inte funnen" -#: elf/sprof.c:408 +#: elf/sprof.c:404 #, c-format msgid "failed to load shared object `%s'" -msgstr "misslyckades att ladda delat objekt \"%s\"" +msgstr "misslyckades med att ladda delat objekt \"%s\"" -#: elf/sprof.c:604 +#: elf/sprof.c:600 msgid "failed to load symbol data" msgstr "misslyckades att ladda symboldata" -#: elf/sprof.c:702 +#: elf/dl-load.c:763 +msgid "failed to map segment from shared object" +msgstr "misslyckades att mappa segment fr�n delat objekt" + +#: elf/sprof.c:698 msgid "failed to mmap the profiling data file" msgstr "misslyckades att mappa (mmap) profildatafilen" -#: iconv/iconv_prog.c:147 +#: iconv/iconv_prog.c:186 msgid "failed to start conversion processing" msgstr "misslyckades att starta konverteringsprocessen" -#: locale/programs/locfile.c:1154 +#: locale/programs/locfile.c:406 #, c-format msgid "failure while writing data for category `%s'" msgstr "misslyckades skriva data f�r kategori \"%s\"" -#: nis/nis_call.c:155 +#: nis/nis_call.c:156 msgid "fcntl: F_SETFD" msgstr "fcntl_ F_SETFD" -#: locale/programs/ld-monetary.c:163 locale/programs/ld-numeric.c:98 -#, c-format -msgid "field `%s' in category `%s' not defined" -msgstr "f�lt \"%s\" i kategori \"%s\" inte definierat" - -#: locale/programs/ld-messages.c:86 locale/programs/ld-messages.c:110 -#, c-format -msgid "field `%s' in category `%s' undefined" -msgstr "f�lt \"%s\" i kategori \"%s\" odefinierat" - -#: sunrpc/rpc_main.c:1148 +#. TRANS: the file will not be removed; this is an +#. TRANS: informative message. +#: sunrpc/rpc_main.c:1150 #, c-format -msgid "file '%s' already exists and may be overwritten\n" +msgid "file `%s' already exists and may be overwritten\n" msgstr "fil \"%s\" finns redan och kan bli �verskriven\n" -#: locale/programs/locfile.c:677 -msgid "from-value of `collating-element' must be a string" -msgstr "fr�nv�rde f�r \"collating-element\" m�ste vara en str�ng" +#: elf/dl-load.c:1244 +msgid "file too short" +msgstr "fil f�r kort" -#: inet/rcmd.c:316 +#: inet/rcmd.c:422 msgid "fstat failed" msgstr "misslyckades ta status (fstat)" -#: locale/programs/linereader.c:333 +#: locale/programs/linereader.c:383 msgid "garbage at end of character code specification" msgstr "skr�p i slutet av teckenkodsspecifikation" -#: locale/programs/linereader.c:219 +#: locale/programs/linereader.c:271 msgid "garbage at end of number" msgstr "skr�p i slutet av nummer" -#: locale/programs/ld-time.c:195 -#, c-format -msgid "garbage at end of offset value in string %d in `era' field in category `%s'" -msgstr "skr�p i slutet av till�ggsv�rde i str�ng %d i \"era\"-f�lt i kategori \"%s\"" - -#: locale/programs/ld-time.c:252 -#, c-format -msgid "garbage at end of starting date in string %d in `era' field in category `%s'" -msgstr "skr�p i slutet av startdatum i str�ng %d i \"era\"-f�lt i kategori \"%s\"" - -#: locale/programs/ld-time.c:328 -#, c-format -msgid "garbage at end of stopping date in string %d in `era' field in category `%s'" -msgstr "skr�p i slutet av slutdatum i str�ng %d i \"era\"-f�lt i kategori \"%s\"" - -#: elf/sprof.c:81 +#: elf/sprof.c:77 msgid "generate call graph" msgstr "generera anropsgraf" -#: elf/sprof.c:80 +#: elf/sprof.c:76 msgid "generate flat profile with counts and ticks" msgstr "generera platt profil med antal och tider" -#: sunrpc/get_myaddr.c:77 +#: sunrpc/get_myaddr.c:78 msgid "get_myaddress: ioctl (get interface configuration)" msgstr "get_myaddress: ioctl (h�mta gr�nssnittskonfiguration)" -#: nss/getent.c:53 +#: nss/getent.c:702 msgid "getent - get entries from administrative database." msgstr "getent - h�mta poster fr�n administrativ databas" -#: nscd/connections.c:200 +#: nscd/connections.c:220 #, c-format msgid "handle_request: request received (Version = %d)" msgstr "handle_request: beg�ran mottagen (version = %d)" -#: timezone/zic.c:613 +#: timezone/zic.c:637 msgid "hard link failed, symbolic link used" msgstr "h�rd l�nk misslyckades, anv�nder symbolisk l�nk" -#: inet/rcmd.c:322 +#: inet/rcmd.c:428 msgid "hard linked somewhere" msgstr "h�rdl�nkad n�gonstans" -#: timezone/zic.c:1162 +#: locale/programs/charmap.c:981 locale/programs/repertoire.c:430 +msgid "hexadecimal range format should use only capital characters" +msgstr "hexadecimalt intervallformat b�r endast anv�nda versaler" + +#: timezone/zic.c:1187 msgid "illegal CORRECTION field on Leap line" msgstr "otill�tet \"CORRECTION\"-f�lt p� \"Leap\"-rad" -#: timezone/zic.c:1166 +#: timezone/zic.c:1191 msgid "illegal Rolling/Stationary field on Leap line" msgstr "otill�tet \"Rolling/Stationary\"-f�lt p� \"Leap\"-rad" -#: locale/programs/ld-collate.c:1782 -msgid "illegal character constant in string" -msgstr "otill�ten teckenkonstant i str�ng" - -#: sunrpc/rpc_scan.c:311 +#: sunrpc/rpc_scan.c:312 msgid "illegal character in file: " msgstr "otill�tet tecken i fil: " -#: locale/programs/ld-collate.c:1125 -msgid "illegal collation element" -msgstr "otill�tet kollationselement" - -#: locale/programs/charmap.c:281 -msgid "illegal definition" -msgstr "otill�ten definition" - -#: locale/programs/charmap.c:434 -msgid "illegal encoding given" -msgstr "otill�ten kodning given" - -#: locale/programs/linereader.c:551 +#: locale/programs/linereader.c:595 msgid "illegal escape sequence at end of string" msgstr "otill�ten teckensekvens vid str�ngslut" -#: iconv/iconv_prog.c:342 +#: iconv/iconv_prog.c:427 #, c-format msgid "illegal input sequence at position %ld" msgstr "otill�ten indatasekvens vid position %ld" -#: locale/programs/charset.c:78 -msgid "illegal names for character range" -msgstr "otill�tna namn f�r teckenintervall" - -#: sunrpc/rpc_main.c:462 +#: sunrpc/rpc_main.c:463 #, c-format -msgid "illegal nettype :'%s'\n" +msgid "illegal nettype :`%s'\n" msgstr "otill�ten n�ttyp: \"%s\"\n" -#: locale/programs/ld-time.c:187 -#, c-format -msgid "illegal number for offset in string %d in `era' field in category `%s'" -msgstr "otill�tet tal f�r till�ggsv�rde i str�ng %d i \"era\"-f�lt i kategori \"%s\"" - -#: catgets/gencat.c:361 catgets/gencat.c:438 +#: catgets/gencat.c:403 catgets/gencat.c:480 msgid "illegal set number" msgstr "otill�tet tal f�r m�ngd" -#: locale/programs/ld-time.c:243 -#, c-format -msgid "illegal starting date in string %d in `era' field in category `%s'" -msgstr "otill�tet startdatum i str�ng %d i \"era\"-f�lt i kategori \"%s\"" - -#: locale/programs/ld-time.c:319 +#: locale/programs/ld-ctype.c:1221 #, c-format -msgid "illegal stopping date in string %d in `era' field in category `%s'" -msgstr "otill�tet slutdatum i str�ng %d i \"era\"-f�lt i kategori \"%s\"" +msgid "implementation limit: no more than %Zd character classes allowed" +msgstr "implementationsbegr�nsning: inte fler �n %Zd teckenklasser till�tna" -#: locale/programs/ld-ctype.c:831 -#, c-format -msgid "implementation limit: no more than %d character classes allowed" -msgstr "implementationsbegr�nsning: inte fler �n %d teckenklasser till�tna" - -#: locale/programs/ld-ctype.c:863 +#: locale/programs/ld-ctype.c:1253 #, c-format msgid "implementation limit: no more than %d character maps allowed" msgstr "implementationsbegr�nsning: inte fler �n %d teckenupps�ttningar till�tet" -#: iconv/iconv_prog.c:346 +#: iconv/iconv_prog.c:431 msgid "incomplete character or shift sequence at end of buffer" msgstr "ofullst�ndigt tecken eller skift-sekvens i slutet p� buffert" -#: db2/makedb.c:148 -msgid "incorrectly formatted file" -msgstr "felaktigt formaterad rad" - -#: timezone/zic.c:825 +#: timezone/zic.c:850 msgid "input line of unknown type" msgstr "inrad av ok�nd typ" -#: iconv/iconv_prog.c:350 +#: elf/dl-load.c:1291 +msgid "internal error" +msgstr "internt fel" + +#: iconv/iconv_prog.c:435 msgid "internal error (illegal descriptor)" msgstr "internt fel (otill�ten deskriptor)" -#: timezone/zic.c:1788 +#: timezone/zic.c:1813 msgid "internal error - addtype called with bad isdst" msgstr "internt fel - addtype anropad med felaktig isdst" -#: timezone/zic.c:1796 +#: timezone/zic.c:1821 msgid "internal error - addtype called with bad ttisgmt" msgstr "internt fel - addtype anropad med felaktig ttisgmt" -#: timezone/zic.c:1792 +#: timezone/zic.c:1817 msgid "internal error - addtype called with bad ttisstd" msgstr "internt fel - addtype anropad med felaktig ttisstd" -#: locale/programs/ld-ctype.c:307 +#: locale/programs/ld-ctype.c:480 locale/programs/ld-ctype.c:536 #, c-format msgid "internal error in %s, line %u" msgstr "internt fel i %s, rad %u" -#: timezone/zic.c:1034 +#: elf/dl-load.c:1264 +msgid "invalid ELF header" +msgstr "ogiltigt ELF-huvud" + +#: timezone/zic.c:1059 msgid "invalid UTC offset" msgstr "ogiltigt UTC-till�gg" -#: timezone/zic.c:1037 +#: timezone/zic.c:1062 msgid "invalid abbreviation format" msgstr "ogiltigt f�rkortningsformat" -#: timezone/zic.c:1127 timezone/zic.c:1339 timezone/zic.c:1353 +#: catgets/gencat.c:687 +msgid "invalid character: message ignored" +msgstr "ogiltigt tecken: meddelandet ignorerat" + +#: timezone/zic.c:1152 timezone/zic.c:1364 timezone/zic.c:1378 msgid "invalid day of month" msgstr "ogiltig dag i m�naden" -#: timezone/zic.c:1291 +#: locale/programs/charmap.c:347 +msgid "invalid definition" +msgstr "ogiltig definition" + +#: locale/programs/charmap.c:542 +msgid "invalid encoding given" +msgstr "ogiltig kodning given" + +#: timezone/zic.c:1316 msgid "invalid ending year" msgstr "ogiltigt slut�r" -#: timezone/zic.c:1099 +#: catgets/gencat.c:1147 locale/programs/linereader.c:533 +msgid "invalid escape sequence" +msgstr "ogiltig kontrollsekvens" + +#: timezone/zic.c:1124 msgid "invalid leaping year" msgstr "ogiltigt skott�r" -#: elf/dl-open.c:159 +#: catgets/gencat.c:726 +msgid "invalid line" +msgstr "ogiltig rad" + +#: elf/dl-open.c:371 msgid "invalid mode for dlopen()" msgstr "ogiltiga flaggor f�r dlopen()" -#: timezone/zic.c:1114 timezone/zic.c:1217 +#: timezone/zic.c:1139 timezone/zic.c:1242 msgid "invalid month name" msgstr "ogiltigt m�nadsnamn" -#: timezone/zic.c:933 +#: locale/programs/charmap.c:969 locale/programs/ld-collate.c:2869 +#: locale/programs/repertoire.c:418 +msgid "invalid names for character range" +msgstr "ogiltiga namn f�r teckenintervall" + +#: debug/pcprofiledump.c:166 +msgid "invalid pointer size" +msgstr "ogiltig pekarstorlek" + +#: catgets/gencat.c:549 +msgid "invalid quote character" +msgstr "ogiltigt citattecken" + +#: timezone/zic.c:958 msgid "invalid saved time" msgstr "ogiltigt sparad tid" -#: timezone/zic.c:1266 +#: timezone/zic.c:1291 msgid "invalid starting year" msgstr "ogiltigt start�r" -#: timezone/zic.c:1143 timezone/zic.c:1246 +#: timezone/zic.c:1168 timezone/zic.c:1271 msgid "invalid time of day" msgstr "ogiltig tid p� dagen" -#: timezone/zic.c:1344 +#: timezone/zic.c:1369 msgid "invalid weekday name" msgstr "ogiltigt veckodagsnamn" -#: nscd/connections.c:375 +#: nscd/connections.c:470 +#, c-format +msgid "key length in request too long: %d" +msgstr "nyckell�ngd i beg�ran f�r l�ng: %d" + +#: elf/ldconfig.c:738 #, c-format -msgid "key length in request too long: %Zd" -msgstr "nyckell�ngd i beg�ran f�r l�ng: %Zd" +msgid "libc4 library %s in wrong directory" +msgstr "libc4-bibliotek %s i fel katalog" -#: locale/programs/ld-collate.c:1422 -msgid "line after ellipsis must contain character definition" -msgstr "rad efter ellips m�ste inneh�lla teckendefinition" +#: elf/ldconfig.c:732 +#, c-format +msgid "libc5 library %s in wrong directory" +msgstr "libc5-bibliotek %s i fel katalog" + +#: elf/ldconfig.c:735 +#, c-format +msgid "libc6 library %s in wrong directory" +msgstr "libc6-bibliotek %s i fel katalog" -#: locale/programs/ld-collate.c:1401 -msgid "line before ellipsis does not contain definition for character constant" -msgstr "rad f�re ellips inneh�ller inte definition f�r teckenkonstant" +#: elf/ldconfig.c:765 +#, c-format +msgid "libraries %s and %s in directory %s have same soname but different type." +msgstr "bibliotek %s och %s i katalog %s har samma \"soname\" men olika typ." -#: timezone/zic.c:805 +#: timezone/zic.c:830 msgid "line too long" msgstr "f�r l�ng rad" -#: iconv/iconv_prog.c:58 +#: iconv/iconv_prog.c:59 msgid "list all known coded character sets" msgstr "visa alla k�nda teckenupps�ttningar" -#: locale/programs/localedef.c:273 -#, c-format -msgid "locale file `%s', used in `copy' statement, not found" -msgstr "lokalfil \"%s\", anv�nd i \"copy\", inte funnen" +#: locale/programs/locfile.h:63 +msgid "locale name should consist only of portable characters" +msgstr "lokalnamn f�r endast best� av portabla tecken" -#: inet/rcmd.c:307 +#: inet/rcmd.c:413 msgid "lstat failed" msgstr "misslyckades ta status (lstat)" -#: catgets/gencat.c:619 +#: malloc/memusagestat.c:59 +msgid "make output graphic VALUE pixel high" +msgstr "g�r resultatgrafiken VALUE pixlar h�g" + +#: malloc/memusagestat.c:58 +msgid "make output graphic VALUE pixel wide" +msgstr "g�r resultatgrafiken VALUE pixlar bred" + +#: catgets/gencat.c:780 msgid "malformed line ignored" msgstr "felaktig rad ignorerad" -#: elf/sprof.c:554 +#: elf/sprof.c:550 msgid "mapping of section header string table failed" msgstr "mappning av sektionshuvuds str�ngtabell misslyckades" -#: elf/sprof.c:544 +#: elf/sprof.c:540 msgid "mapping of section headers failed" msgstr "mappning av sektionshuvud misslyckades" -#: malloc/mcheck.c:202 +#: malloc/mcheck.c:285 msgid "memory clobbered before allocated block\n" msgstr "minnet f�rst�rt f�re allokerat block\n" -#: malloc/mcheck.c:205 +#: malloc/mcheck.c:288 msgid "memory clobbered past end of allocated block\n" msgstr "minnet f�rst�rt efter slutet p� allokerat block\n" -#: locale/programs/ld-collate.c:170 locale/programs/ld-collate.c:176 -#: locale/programs/ld-collate.c:180 locale/programs/ld-collate.c:1449 -#: locale/programs/ld-collate.c:1478 locale/programs/locfile.c:1082 -#: locale/programs/xmalloc.c:70 login/programs/database.c:62 -#: login/programs/database.c:79 login/programs/database.c:95 -#: posix/getconf.c:682 +#: locale/programs/locfile.c:334 locale/programs/xmalloc.c:70 +#: malloc/obstack.c:477 posix/getconf.c:809 msgid "memory exhausted" msgstr "minne slut" -#: malloc/obstack.c:471 -msgid "memory exhausted\n" -msgstr "minnet slut\n" - -#: malloc/mcheck.c:199 +#: malloc/mcheck.c:282 msgid "memory is consistent, library is buggy\n" msgstr "minnet �r konsistent, biblioteket �r felaktigt\n" -#: locale/programs/ld-time.c:370 -#, c-format -msgid "missing era format in string %d in `era' field in category `%s'" -msgstr "eraformat i str�ng %d i \"era\"-f�lt i kategori \"%s\" saknas" +#: elf/cache.c:120 +msgid "mmap of cache file failed.\n" +msgstr "minnesmappning av cache-fil misslyckades.\n" -#: locale/programs/ld-time.c:358 -#, c-format -msgid "missing era name in string %d in `era' field in category `%s'" -msgstr "eranamn i str�ng %d i \"era\"-f�lt i kategori \"%s\" saknas" +#: elf/../sysdeps/generic/readelflib.c:108 +msgid "more than one dynamic segment\n" +msgstr "fler �n ett dynamiskt segment\n" -#: timezone/zic.c:928 +#: timezone/zic.c:953 msgid "nameless rule" msgstr "namnl�s regel" -#: iconv/iconv_prog.c:133 +#: iconv/iconv_prog.c:139 msgid "neither original nor target encoding specified" msgstr "varken original- eller m�lkodning angvet" -#: nis/nss_nisplus/nisplus-publickey.c:262 -#: nis/nss_nisplus/nisplus-publickey.c:268 -#: nis/nss_nisplus/nisplus-publickey.c:327 -#: nis/nss_nisplus/nisplus-publickey.c:336 +#: 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+ uppslagning) %s\n" -#: nis/nss_nisplus/nisplus-publickey.c:281 +#: nis/nss_nisplus/nisplus-publickey.c:300 #, c-format msgid "netname2user: DES entry for %s in directory %s not unique" msgstr "netname2user: DES-post f�r %s i katalog %s �r inte unik" -#: nis/nss_nisplus/nisplus-publickey.c:349 +#: nis/nss_nisplus/nisplus-publickey.c:368 #, c-format msgid "netname2user: LOCAL entry for %s in directory %s not unique" msgstr "netname2user: LOCAL-post f�r %s i katalog %s �r inte unik" -#: nis/nss_nisplus/nisplus-publickey.c:194 +#: nis/nss_nisplus/nisplus-publickey.c:207 #, c-format -msgid "netname2user: missing group id list in '%s'." -msgstr "netname2user: fattas grupp-id lista i \"%s\"." +msgid "netname2user: missing group id list in `%s'." +msgstr "netname2user: gruppid-lista saknas i \"%s\"." -#: nis/nss_nisplus/nisplus-publickey.c:299 +#: nis/nss_nisplus/nisplus-publickey.c:318 #, c-format -msgid "netname2user: principal name '%s' too long" +msgid "netname2user: principal name `%s' too long" msgstr "netname2user: principalnamn \"%s\" f�r l�ngt" -#: nis/nss_nisplus/nisplus-publickey.c:356 +#: nis/nss_nisplus/nisplus-publickey.c:375 msgid "netname2user: should not have uid 0" msgstr "netname2user: borde inte ha uid 0" -#: sunrpc/svc_simple.c:158 +#: sunrpc/svc_simple.c:159 #, c-format msgid "never registered prog %d\n" msgstr "aldrig registrerat prog %d\n" -#: locale/programs/repertoire.c:238 +#: locale/programs/repertoire.c:272 msgid "no <Uxxxx> or <Uxxxxxxxx> value given" msgstr "inget <Uxxxx> eller <Uxxxxxxxx> v�rde angivet" -#: locale/programs/ld-messages.c:101 locale/programs/ld-messages.c:125 -#, c-format -msgid "no correct regular expression for field `%s' in category `%s': %s" -msgstr "felaktigt regulj�rt uttryck f�r f�lt \"%s\" i kategori \"%s\": %s" - -#: timezone/zic.c:2115 +#: timezone/zic.c:2142 msgid "no day in month matches rule" msgstr "ingen dag i m�naden matchar regeln" -#: locale/programs/ld-collate.c:267 +#: locale/programs/ld-collate.c:1757 msgid "no definition of `UNDEFINED'" msgstr "ingen definition av \"UNDEFINED\"" -#: elf/sprof.c:276 +#: elf/sprof.c:272 #, c-format msgid "no filename for profiling data given and shared object `%s' has no soname" msgstr "inget filnam f�r profildata angivet och delat objekt \"%s\" saknar \"soname\"" -#: locale/programs/locfile.c:609 +#: locale/programs/ld-ctype.c:739 +msgid "no input digits defined and none of the standard names in the charmap" +msgstr "inga siffror f�r indata definierade och inga standardnamn finns i teckenupps�ttningen" + +#: locale/programs/locfile.h:82 msgid "no other keyword shall be specified when `copy' is used" -msgstr "inget annat nyckelord ska anges n�r \"copy\" anv�nds" +msgstr "inget annat nyckelord f�r anges n�r \"copy\" anv�nds" + +#: locale/programs/ld-ctype.c:3349 +msgid "no output digits defined and none of the standard names in the charmap" +msgstr "inga siffror f�r utdata definierade och inga standardnamn finns i teckenupps�ttningen" -#: locale/programs/localedef.c:334 +#: locale/programs/localedef.c:236 msgid "no output file produced because warning were issued" msgstr "ingen utfil skapad p� grund av varningar" -#: locale/programs/locfile.c:283 locale/programs/locfile.c:301 -#: locale/programs/locfile.c:319 locale/programs/locfile.c:337 -#: locale/programs/locfile.c:355 locale/programs/locfile.c:373 -msgid "no repertoire map specified: cannot proceed" -msgstr "ingen repertoarmap angiven: kan inte forts�tta" - -#: locale/programs/charmap.c:400 locale/programs/charmap.c:550 -#: locale/programs/charmap.c:629 locale/programs/repertoire.c:199 +#: locale/programs/charmap.c:488 locale/programs/charmap.c:668 +#: locale/programs/charmap.c:764 locale/programs/repertoire.c:231 msgid "no symbolic name given" msgstr "inget symboliskt namn givet" -#: locale/programs/charmap.c:465 locale/programs/charmap.c:596 -#: locale/programs/charmap.c:662 locale/programs/repertoire.c:261 +#: locale/programs/charmap.c:575 locale/programs/charmap.c:723 +#: locale/programs/charmap.c:806 locale/programs/repertoire.c:297 msgid "no symbolic name given for end of range" msgstr "inget symboliskt namn givet f�r slutet av intervallet" -#: locale/programs/ld-collate.c:249 -#, c-format -msgid "no weight defined for symbol `%s'" -msgstr "ingen vikt definierad f�r symbol \"%s\"" +#: locale/programs/linereader.c:641 +msgid "non-symbolic character value should not be used" +msgstr "icke-symboliskt teckenv�rde b�r inte anv�ndas" + +#: locale/programs/ld-ctype.c:804 +msgid "not all characters used in `outdigit' are available in the charmap" +msgstr "alla tecken i \"outdigit\" �r inte tillg�ngliga i teckenupps�ttningen" + +#: locale/programs/ld-ctype.c:821 +msgid "not all characters used in `outdigit' are available in the repertoire" +msgstr "alla tecken i \"outdigit\" �r inte tillg�ngliga i repertoaren" -#: inet/rcmd.c:309 +#: inet/rcmd.c:415 msgid "not regular file" msgstr "inte en normal fil" -#: nscd/nscd_stat.c:130 +#: nscd/nscd_stat.c:131 #, c-format msgid "" "nscd configuration:\n" @@ -3684,48 +4884,72 @@ msgstr "" "\n" "%15d servers fels�kningsl�ge\n" -#: nscd/nscd_stat.c:104 +#: nscd/nscd_stat.c:105 msgid "nscd not running!\n" msgstr "nscd k�r inte!\n" -#: locale/programs/charmap.c:514 +#: elf/dl-load.c:1051 +msgid "object file has no dynamic section" +msgstr "objektfilen har ingen dynamisk sektion" + +#: iconv/iconv_prog.c:61 +msgid "omit invalid characters from output" +msgstr "visa inte ogiltiga tecken i utdata" + +#: elf/dl-load.c:1311 +msgid "only ET_DYN and ET_EXEC can be loaded" +msgstr "bara ET_DYN och ET_EXEC kan laddas" + +#: locale/programs/charmap.c:632 msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" msgstr "endast definition av \"WIDTH\" f�r f�lja definitionen av \"CHARMAP\"" -#: iconv/iconv_prog.c:135 +#: locale/programs/ld-collate.c:1005 locale/programs/ld-collate.c:1175 +#, c-format +msgid "order for `%.*s' already defined at %s:%Zu" +msgstr "ordningsf�ljd f�r \"%.*s\" redan definierad vid %s:%Zu" + +#: iconv/iconv_prog.c:141 msgid "original encoding not specified using `-f'" msgstr "originalkodning inte angiven med \"-f\"" -#: iconv/iconv_prog.c:60 +#: inet/ruserpass.c:167 inet/ruserpass.c:190 +msgid "out of memory" +msgstr "slut p� minne" + +#: iconv/iconv_prog.c:62 msgid "output file" msgstr "resultatfil" -#: sunrpc/pm_getmaps.c:73 +#: sunrpc/pm_getmaps.c:74 msgid "pmap_getmaps rpc problem" msgstr "pmap_getmaps rpc problem" -#: inet/rcmd.c:179 +#: inet/rcmd.c:233 msgid "poll: protocol failure in circuit setup\n" msgstr "poll: protokollfel i f�rbindelseupps�ttning\n" -#: sunrpc/rpc_scan.c:523 sunrpc/rpc_scan.c:533 +#: locale/programs/ld-ctype.c:1949 locale/programs/ld-ctype.c:2000 +msgid "premature end of `translit_ignore' definition" +msgstr "f�r tidigt slut p� definition f�r \"translit_ignore\"" + +#: sunrpc/rpc_scan.c:524 sunrpc/rpc_scan.c:534 msgid "preprocessor error" msgstr "preprocessorfel" -#: elf/sprof.c:78 +#: locale/programs/ld-ctype.c:2731 +msgid "previous definition was here" +msgstr "f�reg�ende definition var h�r" + +#: elf/sprof.c:74 msgid "print list of count paths and their number of use" msgstr "skriv lista med r�knade v�gar och antal anv�ndningar" -#: iconv/iconv_prog.c:61 +#: iconv/iconv_prog.c:64 msgid "print progress information" msgstr "skriv information om k�rning" -#: db2/makedb.c:345 -#, c-format -msgid "problems while reading `%s'" -msgstr "problem l�sa \"%s\"" - -#: elf/sprof.c:691 +#: elf/sprof.c:687 #, c-format msgid "profiling data file `%s' does not match shared object `%s'" msgstr "profildatafil \"%s\" st�mmer inte f�r delat objekt \"%s\"" @@ -3747,33 +4971,42 @@ msgstr "program %lu version %lu �r inte tillg�ngligt\n" msgid "program %lu version %lu ready and waiting\n" msgstr "program %lu version %lu redo och v�ntar\n" -#: inet/rcmd.c:176 +#: inet/rcmd.c:270 +#, c-format +msgid "rcmd: %s: short read" +msgstr "rcmd: %s: l�sning gav f�r lite data" + +#: inet/rcmd.c:230 #, c-format msgid "rcmd: poll (setting up stderr): %m\n" msgstr "rcmd: poll (s�tter upp standard fel): %m\n" -#: inet/rcmd.c:110 +#: inet/rcmd.c:158 msgid "rcmd: socket: All ports in use\n" msgstr "rcmd: uttag (socket): Alla portar anv�nds\n" -#: inet/rcmd.c:166 +#: inet/rcmd.c:220 #, c-format msgid "rcmd: write (setting up stderr): %m\n" msgstr "rcmd: write: (s�tter upp standard fel): %m\n" -#: sunrpc/svc_simple.c:98 +#: sunrpc/svc_simple.c:99 msgid "registerrpc: out of memory\n" msgstr "registerrpc: minnet slut\n" -#: timezone/zic.c:1849 +#: timezone/zic.c:1874 msgid "repeated leap second moment" msgstr "upprepat skottsekundstillf�lle" -#: locale/programs/repertoire.c:95 +#: locale/programs/repertoire.c:342 #, c-format msgid "repertoire map file `%s' not found" msgstr "hittar inte repertoartabell \"%s\"" +#: locale/programs/charmap.c:1063 +msgid "resulting bytes for range not representable." +msgstr "resulterande byte f�r intervall �r inte representerbara." + #: sunrpc/rpc_main.c:1117 msgid "rpcgen: arglist coding error\n" msgstr "rpcgen: arglist kodningsfel\n" @@ -3806,475 +5039,395 @@ msgstr "rpcinfo: uts�ndning misslyckades: %s\n" msgid "rpcinfo: can't contact portmapper" msgstr "rpcinfo: kan inte kontakta portmapper" -#: timezone/zic.c:718 timezone/zic.c:720 +#: timezone/zic.c:743 timezone/zic.c:745 msgid "same rule name in multiple files" msgstr "samma regel i flera filer" -#: nscd/connections.c:387 +#: elf/dl-load.c:1116 +msgid "shared object cannot be dlopen()ed" +msgstr "delat objekt kan inte g�ras dlopen() p�" + +#: elf/dl-close.c:63 +msgid "shared object not open" +msgstr "delat objekt �r inte �ppnat" + +#: nscd/connections.c:482 #, c-format msgid "short read while reading request key: %s" msgstr "fattas data vid l�sning av beg�ransnyckel: %s" -#: nscd/connections.c:364 +#: nscd/connections.c:436 #, c-format msgid "short read while reading request: %s" msgstr "fattas data vid l�sning av beg�ran: %s" -#: nscd/grpcache.c:191 nscd/hstcache.c:278 nscd/pwdcache.c:188 +#: nscd/grpcache.c:193 nscd/hstcache.c:278 nscd/pwdcache.c:189 #, c-format msgid "short write in %s: %s" msgstr "ofullst�ndig skrivning i %s: %s" -#: inet/rcmd.c:197 +#: inet/rcmd.c:260 msgid "socket: protocol failure in circuit setup\n" msgstr "uttag (socket): protokollfel i f�rbindelseupps�ttning\n" -#: locale/programs/locfile.c:730 -msgid "sorting order `forward' and `backward' are mutually exclusive" -msgstr "sorteringsordning \"forward\" och \"backward\" �r �msesidigt uteslutande" - -#: locale/programs/ld-collate.c:1582 locale/programs/ld-collate.c:1628 -msgid "specification of sorting weight for collation symbol does not make sense" -msgstr "specifikation av sorteringsvikter f�r kollationssymbol verkar inte vettig" - -#: timezone/zic.c:789 +#: timezone/zic.c:814 msgid "standard input" msgstr "standard in" -#: timezone/zdump.c:268 +#: timezone/zdump.c:269 msgid "standard output" msgstr "standard ut" -#: locale/programs/ld-time.c:272 -#, c-format -msgid "starting date is illegal in string %d in `era' field in category `%s'" -msgstr "startdatum �r otill�tet i str�ng %d i \"era\"-f�lt i kategori \"%s\"" +#: locale/programs/ld-ctype.c:1680 +msgid "start and end character sequence of range must have the same length" +msgstr "start- och slutteckensekvens f�r intervall m�ste ha samma l�ngd" -#: timezone/zic.c:1300 +#: timezone/zic.c:1325 msgid "starting year greater than ending year" msgstr "start�r �r st�rre �n slut�r" -#: timezone/zic.c:1272 timezone/zic.c:1297 +#: timezone/zic.c:1297 timezone/zic.c:1322 msgid "starting year too high to be represented" msgstr "start�r f�r stort f�r att kunna representeras" -#: timezone/zic.c:1270 timezone/zic.c:1295 +#: timezone/zic.c:1295 timezone/zic.c:1320 msgid "starting year too low to be represented" msgstr "start�r f�r litet f�r att kunna representeras" -#: locale/programs/ld-time.c:348 -#, c-format -msgid "stopping date is illegal in string %d in `era' field in category `%s'" -msgstr "slutdatum �r otill�tet i str�ng %d i \"era\"-f�lt i kategori \"%s\"" +#: iconv/iconv_prog.c:63 +msgid "suppress warnings" +msgstr "utel�mna varningar" -#: sunrpc/svc_run.c:81 -msgid "svc_run: - select failed" -msgstr "svc_run: - select misslyckades" +#: sunrpc/svc_run.c:76 +msgid "svc_run: - poll failed" +msgstr "svc_run: - poll misslyckades" -#: sunrpc/svc_tcp.c:160 +#: sunrpc/svc_tcp.c:161 msgid "svc_tcp.c - cannot getsockname or listen" msgstr "svc_tcp.c - kan inte anropa getsockname eller listen" -#: sunrpc/svc_tcp.c:145 +#: sunrpc/svc_tcp.c:146 msgid "svc_tcp.c - tcp socket creation problem" msgstr "svc_tcp.c - problem att skapa tcp-uttag (socket)" -#: sunrpc/svc_tcp.c:209 sunrpc/svc_tcp.c:215 +#: sunrpc/svc_tcp.c:210 sunrpc/svc_tcp.c:216 msgid "svc_tcp: makefd_xprt: out of memory\n" msgstr "svc_tcp: makefd_xprt: minnet slut\n" -#: sunrpc/svc_unix.c:135 +#: sunrpc/svc_unix.c:137 msgid "svc_unix.c - AF_UNIX socket creation problem" msgstr "svc_unix.c - problem att skapa AF_UNIX uttag (socket)" -#: sunrpc/svc_unix.c:151 +#: sunrpc/svc_unix.c:153 msgid "svc_unix.c - cannot getsockname or listen" msgstr "svc_unix.c - kan inte anropa getsockname eller listen" -#: sunrpc/svc_unix.c:201 sunrpc/svc_unix.c:207 +#: sunrpc/svc_unix.c:203 sunrpc/svc_unix.c:209 msgid "svc_unix: makefd_xprt: out of memory\n" msgstr "svc_unix: makefd_xprt: minnet slut\n" -#: sunrpc/svc_tcp.c:168 sunrpc/svc_tcp.c:176 +#: sunrpc/svc_tcp.c:169 sunrpc/svc_tcp.c:177 msgid "svctcp_create: out of memory\n" msgstr "svctcp_create: minnet slut\n" -#: sunrpc/svc_udp.c:135 +#: sunrpc/svc_udp.c:141 msgid "svcudp_create - cannot getsockname" msgstr "svcudp_create - kan inte anropa getsockname" -#: sunrpc/svc_udp.c:143 sunrpc/svc_udp.c:149 sunrpc/svc_udp.c:155 +#: sunrpc/svc_udp.c:149 sunrpc/svc_udp.c:155 sunrpc/svc_udp.c:161 msgid "svcudp_create: out of memory\n" msgstr "svcudb_create: minnet slut\n" -#: sunrpc/svc_udp.c:121 +#: sunrpc/svc_udp.c:127 msgid "svcudp_create: socket creation problem" msgstr "svcudp_create: problem att skapa uttag (socket)" -#: sunrpc/svc_unix.c:160 sunrpc/svc_unix.c:168 +#: sunrpc/svc_udp.c:177 +msgid "svcudp_create: xp_pad is too small for IP_PKTINFO\n" +msgstr "svcudp_create: xp_pad �r f�r liten f�r IP_PKTINFO\n" + +#: sunrpc/svc_unix.c:162 sunrpc/svc_unix.c:170 msgid "svcunix_create: out of memory\n" msgstr "svcunix_create: minnet slut\n" -#: locale/programs/ld-collate.c:1201 +#: locale/programs/linereader.c:745 #, c-format -msgid "symbol for multicharacter collating element `%.*s' duplicates element definition" -msgstr "symbol f�r flerteckenskollationselement \"%.*s\" duplicerar elementdefinition" +msgid "symbol `%.*s' not in charmap" +msgstr "symbol \"%.*s\" finns inte i teckenupps�ttning" -#: locale/programs/ld-collate.c:1073 +#: locale/programs/linereader.c:766 #, c-format -msgid "symbol for multicharacter collating element `%.*s' duplicates other element definition" -msgstr "" -"symbol f�r flerteckenskollationselement \"%.*s\" duplicerar annan\n" -"elementdefinition" +msgid "symbol `%.*s' not in repertoire map" +msgstr "symbol \"%.*s\" finns inte i repertoartabell" -#: locale/programs/ld-collate.c:1210 +#: locale/programs/ld-collate.c:1617 locale/programs/ld-collate.c:1716 #, c-format -msgid "symbol for multicharacter collating element `%.*s' duplicates other symbol definition" -msgstr "" -"symbol f�r flerteckenskollationselement \"%.*s\" duplicerar annan\n" -"symboldefinition" +msgid "symbol `%s'" +msgstr "symbol \"%s\"" -#: locale/programs/ld-collate.c:1082 +#: locale/programs/ld-collate.c:1614 locale/programs/ld-collate.c:1713 #, c-format -msgid "symbol for multicharacter collating element `%.*s' duplicates symbol definition" -msgstr "symbol f�r flerteckenskollationselement \"%.*s\" duplicerar symboldefinition" +msgid "symbol `%s' has the same encoding as" +msgstr "symbol \"%s\" har samma v�rde som" -#: locale/programs/ld-collate.c:1064 locale/programs/ld-collate.c:1192 +#: locale/programs/ld-collate.c:1539 #, c-format -msgid "symbol for multicharacter collating element `%.*s' duplicates symbolic name in charset" -msgstr "" -"symbol f�r flerteckenskollationselement \"%.*s\" duplicerar symboliskt\n" -"namn i teckenupps�ttning" +msgid "symbol `%s' not defined" +msgstr "symbol \"%s\" inte definierad" -#: locale/programs/charmap.c:399 locale/programs/charmap.c:433 -#: locale/programs/charmap.c:463 locale/programs/charmap.c:549 -#: locale/programs/charmap.c:595 locale/programs/charmap.c:628 -#: locale/programs/charmap.c:660 +#: locale/programs/ld-ctype.c:1955 locale/programs/ld-ctype.c:2006 +#: locale/programs/ld-ctype.c:2048 +msgid "syntax error" +msgstr "syntaxfel" + +#: locale/programs/charmap.c:487 locale/programs/charmap.c:541 +#: locale/programs/charmap.c:573 locale/programs/charmap.c:667 +#: locale/programs/charmap.c:722 locale/programs/charmap.c:763 +#: locale/programs/charmap.c:804 #, c-format msgid "syntax error in %s definition: %s" msgstr "syntaxfel i definition av %s: %s" -#: locale/programs/locfile.c:750 -msgid "syntax error in `order_start' directive" -msgstr "syntaxfel i direktivet \"order_start\"" - -#: locale/programs/locfile.c:492 -msgid "syntax error in character class definition" -msgstr "syntaxfel i teckenklassdefinition" - -#: locale/programs/locfile.c:550 -msgid "syntax error in character conversion definition" -msgstr "syntaxfel i teckenkonverteringsdefinition" - -#: locale/programs/locfile.c:792 -msgid "syntax error in collating order definition" -msgstr "syntaxfel i kollationssorteringsdefinition" - -#: locale/programs/locfile.c:642 -msgid "syntax error in collation definition" -msgstr "syntaxfel i kollationsdefinition" - -#: locale/programs/locfile.c:465 -msgid "syntax error in definition of LC_CTYPE category" -msgstr "syntaxfel i definition av kategorin LC_CTYPE" - -#: locale/programs/locfile.c:408 -msgid "syntax error in definition of new character class" -msgstr "syntaxfel i definition av ny teckenklass" - -#: locale/programs/locfile.c:418 -msgid "syntax error in definition of new character map" -msgstr "syntaxfel i definition av ny teckenupps�ttning" - -#: locale/programs/locfile.c:1003 -msgid "syntax error in message locale definition" -msgstr "syntaxfel i definition av meddelandelokal" - -#: locale/programs/locfile.c:914 -msgid "syntax error in monetary locale definition" -msgstr "syntaxfel i definition av monet�rlokal" - -#: locale/programs/locfile.c:941 -msgid "syntax error in numeric locale definition" -msgstr "syntaxfel i definition av numerisk lokal" - -#: locale/programs/locfile.c:852 -msgid "syntax error in order specification" -msgstr "syntaxfel i sorteringsspecifikation" - -#: locale/programs/charmap.c:280 locale/programs/charmap.c:296 -#: locale/programs/repertoire.c:143 +#: locale/programs/charmap.c:346 locale/programs/charmap.c:363 +#: locale/programs/repertoire.c:175 #, c-format msgid "syntax error in prolog: %s" msgstr "syntaxfel i prolog: %s" -#: locale/programs/repertoire.c:198 locale/programs/repertoire.c:237 -#: locale/programs/repertoire.c:260 +#: 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 "syntaxfel i repertoartabellsdefinition: %s" -#: locale/programs/locfile.c:979 -msgid "syntax error in time locale definition" -msgstr "syntaxfel i definition av tidslokal" - -#: locale/programs/locfile.c:385 +#: locale/programs/locfile.c:243 msgid "syntax error: not inside a locale definition section" msgstr "syntaxfel: inte inne i en lokaldefinition" -#: iconv/iconv_prog.c:137 +#: iconv/iconv_prog.c:143 msgid "target encoding not specified using `-t'" -msgstr "m�lkodning ej angivet med flagga \"-t\"" +msgstr "m�lkodning inte angivet med flagga \"-t\"" -#: catgets/gencat.c:390 catgets/gencat.c:526 catgets/gencat.c:553 +#: catgets/gencat.c:432 catgets/gencat.c:605 catgets/gencat.c:634 msgid "this is the first definition" msgstr "detta �r den f�rsta definitionen" -#: timezone/zic.c:1132 +#: timezone/zic.c:1157 msgid "time before zero" msgstr "tid f�re noll" -#: timezone/zic.c:1140 timezone/zic.c:2015 timezone/zic.c:2034 +#: timezone/zic.c:1165 timezone/zic.c:2042 timezone/zic.c:2061 msgid "time overflow" msgstr "f�r stort tidsv�rde" -#: locale/programs/charmap.c:443 +#: locale/programs/ld-ctype.c:1553 locale/programs/ld-ctype.c:2029 +#, c-format +msgid "to-value <U%0*X> of range is smaller than from-value <U%0*X>" +msgstr "tillv�rdet <U%0*X> i intervallet �r mindre �n fr�nv�rdet <U%0*X>" + +#: locale/programs/ld-ctype.c:1687 +msgid "to-value character sequence is smaller than from-value sequence" +msgstr "tillv�rdets teckensekvens �r mindre �n fr�nv�rdets sekvens" + +#: locale/programs/charmap.c:551 msgid "too few bytes in character encoding" msgstr "f�r f� byte i teckenkodning" -#: locale/programs/charmap.c:445 +#: locale/programs/charmap.c:553 msgid "too many bytes in character encoding" msgstr "f�r m�nga tecken i teckenkodning" -#: locale/programs/locales.h:92 -msgid "too many character classes defined" -msgstr "f�r m�nga teckenklasser definierade" - -#: timezone/zic.c:1843 +#: timezone/zic.c:1868 msgid "too many leap seconds" msgstr "f�r m�nga skottsekunder" -#: timezone/zic.c:1815 +#: timezone/zic.c:1840 msgid "too many local time types" msgstr "f�r m�nga lokala tidstyper" -#: timezone/zic.c:1769 +#: timezone/zic.c:1794 msgid "too many transitions?!" msgstr "f�r m�nga �verg�ngar?!" -#: locale/programs/ld-collate.c:1637 -msgid "too many weights" -msgstr "f�r m�nga vikter" - -#: timezone/zic.c:2138 +#: timezone/zic.c:2165 msgid "too many, or too long, time zone abbreviations" msgstr "f�r m�nga eller f�r l�nga tidszonf�rkortningar" -#: locale/programs/linereader.h:146 +#: locale/programs/linereader.h:157 msgid "trailing garbage at end of line" msgstr "avslutande skr�p vid radslutet" -#: sunrpc/svc_simple.c:150 +#: sunrpc/svc_simple.c:151 #, c-format msgid "trouble replying to prog %d\n" msgstr "problem att svara till prog %d\n" -#: locale/programs/ld-collate.c:1393 -msgid "two lines in a row containing `...' are not allowed" -msgstr "tv� rader efter varann som har \"...\" �r inte till�tet" - -#: timezone/zic.c:1307 +#: timezone/zic.c:1332 msgid "typed single year" msgstr "satte typ p� endast ett �r" -#: iconv/iconv_prog.c:406 +#: iconv/iconv_prog.c:491 msgid "unable to allocate buffer for input" msgstr "kan inte allokera buffert f�r indata" -#: nis/nis_callback.c:187 +#: nis/nis_callback.c:189 msgid "unable to free arguments" msgstr "kan inte avallokera argument" -#: posix/getconf.c:654 posix/getconf.c:670 +#: posix/getconf.c:781 posix/getconf.c:797 msgid "undefined" msgstr "odefinierad" -#: locale/programs/charmap.c:701 locale/programs/charmap.c:712 +#: locale/programs/charmap.c:856 locale/programs/charmap.c:867 #, c-format msgid "unknown character `%s'" msgstr "ok�nt tecken \"%s\"" -#: locale/programs/ld-messages.c:202 locale/programs/ld-messages.c:213 -#: locale/programs/ld-messages.c:224 locale/programs/ld-messages.c:235 -#: locale/programs/ld-time.c:718 -#, c-format -msgid "unknown character in field `%s' of category `%s'" -msgstr "ok�nt tecken i f�lt \"%s\" i kategori \"%s\"" - -#: locale/programs/locfile.c:715 -msgid "unknown collation directive" -msgstr "ok�nt kollationsdirektiv" - -#: catgets/gencat.c:487 +#: catgets/gencat.c:562 #, c-format msgid "unknown directive `%s': line ignored" msgstr "ok�nt direktiv \"%s\": rad ignorerad" -#: iconv/iconv_prog.c:353 +#: iconv/iconv_prog.c:438 #, c-format msgid "unknown iconv() error %d" msgstr "ok�nt fel fr�n iconv() %d" -#: catgets/gencat.c:466 +#: catgets/gencat.c:508 #, c-format msgid "unknown set `%s'" msgstr "ok�nd m�ngd \"%s\"" -#: locale/programs/ld-collate.c:1377 locale/programs/ld-collate.c:1572 -#: locale/programs/ld-collate.c:1747 -#, c-format -msgid "unknown symbol `%.*s': line ignored" -msgstr "ok�nd symbol \"%.*s\": rad ignorerad" - -#: timezone/zic.c:761 +#: timezone/zic.c:786 msgid "unruly zone" msgstr "besv�rlig zon" -#: catgets/gencat.c:971 +#: catgets/gencat.c:1169 msgid "unterminated message" msgstr "oavslutat meddelande" -#: locale/programs/linereader.c:520 locale/programs/linereader.c:555 +#: locale/programs/linereader.c:599 locale/programs/linereader.c:784 msgid "unterminated string" msgstr "oavslutad str�ng" -#: sunrpc/rpc_scan.c:350 sunrpc/rpc_scan.c:376 +#: sunrpc/rpc_scan.c:351 sunrpc/rpc_scan.c:377 msgid "unterminated string constant" msgstr "oavslutad str�ngkonstant" -#: locale/programs/linereader.c:390 +#: locale/programs/linereader.c:469 msgid "unterminated symbolic name" msgstr "oavslutat symboliskt namn" -#: locale/programs/ld-collate.c:1699 -msgid "unterminated weight name" -msgstr "oavslutat viktnamn" +#: locale/programs/charmap.c:1005 +msgid "upper limit in range is not higher then lower limit" +msgstr "�vre gr�ns i intervall �r inte st�rre �n undre gr�ns" -#: locale/programs/charset.c:104 +#: locale/programs/repertoire.c:455 msgid "upper limit in range is not smaller then lower limit" msgstr "�vre gr�ns i intervall �r inte mindre �n undre gr�ns" -#: sunrpc/rpc_main.c:1415 +#: sunrpc/rpc_main.c:1424 #, c-format -msgid "usage: %s infile\n" +msgid "usage: %s infile\n" msgstr "anv�ndning: %s infil\n" -#: timezone/zic.c:2081 +#: timezone/zic.c:2108 msgid "use of 2/29 in non leap-year" msgstr "anv�nder 29/2 i icke-skott�r" -#: locale/programs/charmap.c:522 locale/programs/charmap.c:576 +#: locale/programs/charmap.c:640 locale/programs/charmap.c:703 #, c-format msgid "value for %s must be an integer" msgstr "v�rdet p� %s m�ste vara heltal" -#: locale/programs/charmap.c:318 +#: locale/programs/charmap.c:399 #, c-format -msgid "value for <%s> must lie between 1 and 4" -msgstr "v�rde p� <%s> m�ste vara mellan 1 och 4" +msgid "value for <%s> must be 1 or greater" +msgstr "v�rdet p� <%s> m�ste vara 1 eller st�rre" -#: locale/programs/ld-monetary.c:157 locale/programs/ld-numeric.c:92 +#: locale/programs/charmap.c:411 #, c-format -msgid "value for field `%s' in category `%s' must not be the empty string" -msgstr "v�rde p� f�lt \"%s\" i kategori \"%s\" f�r inte vara tom str�ng" - -#: locale/programs/charmap.c:330 -msgid "value of <mb_cur_max> must be greater than the value of <mb_cur_min>" -msgstr "v�rdet p� <mb_cur_max> m�ste vara st�rre �n v�rdet p� <mb_cur_min>" +msgid "value of <%s> must be greater or equal than the value of <%s>" +msgstr "v�rdet p� <%s> m�ste vara st�rre eller lika med v�rdet p� <%s>" -#: locale/programs/ld-monetary.c:147 -msgid "value of field `int_curr_symbol' in category `LC_MONETARY' does not correspond to a valid name in ISO 4217" -msgstr "v�rdet p� f�ltet \"int_curr_symbol\" i kategorin LC_MONETARY st�mmer inte med v�rden i ISO 4217" +#: timezone/zic.c:433 +msgid "warning: " +msgstr "varning: " -#: locale/programs/ld-monetary.c:139 -msgid "value of field `int_curr_symbol' in category `LC_MONETARY' has wrong length" -msgstr "v�rdet p� f�ltet \"int_curr_symbol\" i kategorin LC_MONETARY har fel l�ngd" - -#: locale/programs/ld-monetary.c:383 locale/programs/ld-numeric.c:207 -#, c-format -msgid "values for field `%s' in category `%s' must be smaller than 127" -msgstr "v�rden p� f�lt \"%s\" i kategorin \"%s\" m�ste vara mindre �n 127" - -#: nscd/connections.c:355 +#: nscd/connections.c:427 #, c-format msgid "while accepting connection: %s" msgstr "n�r f�rbindelse accepterades: %s" -#: nscd/grpcache.c:149 nscd/hstcache.c:168 nscd/pwdcache.c:142 +#: nscd/grpcache.c:150 nscd/hstcache.c:165 nscd/pwdcache.c:143 msgid "while allocating cache entry" msgstr "n�r cache-post allokerades" -#: nscd/cache.c:85 +#: nscd/cache.c:88 msgid "while allocating hash table entry" msgstr "n�r hashtabellspost allokerades" -#: nscd/grpcache.c:99 nscd/hstcache.c:109 nscd/pwdcache.c:105 +#: nscd/grpcache.c:100 nscd/hstcache.c:108 nscd/pwdcache.c:106 msgid "while allocating key copy" msgstr "n�r nyckelkopia allokerades" -#: catgets/gencat.c:1001 +#: catgets/gencat.c:1199 msgid "while opening old catalog file" msgstr "n�r gammal katalogfil �ppnades" -#: locale/programs/locale.c:346 +#: locale/programs/locale.c:361 msgid "while preparing output" msgstr "n�r utdata f�rbereddes" -#: db2/makedb.c:365 db2/makedb.c:382 -msgid "while reading database" -msgstr "n�r databasen l�stes" - -#: elf/sprof.c:683 +#: elf/sprof.c:679 msgid "while stat'ing profiling data file" msgstr "n�r status togs p� profildatafilen" -#: db2/makedb.c:334 -msgid "while writing database file" -msgstr "n�r databasfilen skrevs" +#: locale/programs/ld-ctype.c:2392 +msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" +msgstr "med UCS som intervallv�rden m�ste man anv�nda symboliska hexadecimala intervallet \"..\"" + +#: locale/programs/ld-ctype.c:2406 +msgid "with character code range values one must use the absolute ellipsis `...'" +msgstr "med teckenkoder som intervallv�rden m�ste man anv�nda absoluta intervallet \"...\"" + +#: locale/programs/ld-ctype.c:2377 +msgid "with symbolic name range values the absolute ellipsis `...' must not be used" +msgstr "med symboliska namn som intervallv�rden kan inte absoluta intervallet \"...\" anv�ndas" -#: nscd/nscd_stat.c:115 +#: nscd/nscd_stat.c:116 msgid "write incomplete" msgstr "ofullst�nding skrivning" -#: inet/rcmd.c:320 +#: inet/rcmd.c:426 msgid "writeable by other than owner" msgstr "skrivbar f�r andra �n �garen" -#: db2/makedb.c:124 nscd/nscd.c:114 nss/getent.c:392 +#: nscd/nscd.c:123 nscd/nscd_nischeck.c:64 nss/getent.c:761 msgid "wrong number of arguments" msgstr "fel antal argument" -#: timezone/zic.c:1090 +#: timezone/zic.c:1115 msgid "wrong number of fields on Leap line" msgstr "fel antal f�lt p� \"Leap\"-rad" -#: timezone/zic.c:1181 +#: timezone/zic.c:1206 msgid "wrong number of fields on Link line" msgstr "fel antal f�lt p� \"Link\"-rad" -#: timezone/zic.c:924 +#: timezone/zic.c:949 msgid "wrong number of fields on Rule line" msgstr "fel antal f�lt p� \"Rule\"-rad" -#: timezone/zic.c:994 +#: timezone/zic.c:1019 msgid "wrong number of fields on Zone continuation line" msgstr "fel antal f�lt p� \"Zone\"-forts�ttningsrad" -#: timezone/zic.c:952 +#: timezone/zic.c:977 msgid "wrong number of fields on Zone line" msgstr "fel antal f�lt p� \"Zone\"-rad" -#: sunrpc/xdr_ref.c:84 +#: sunrpc/xdr_ref.c:85 msgid "xdr_reference: out of memory\n" msgstr "xdr_reference: minnet slut\n" @@ -4282,10 +5435,10 @@ msgstr "xdr_reference: minnet slut\n" msgid "xdrrec_create: out of memory\n" msgstr "xdrrec_create: minnet slut\n" -#: nis/ypclnt.c:884 +#: nis/ypclnt.c:907 msgid "yp_update: cannot convert host to netname\n" msgstr "yp_update: kan inte omvandla v�rd till n�tnamn\n" -#: nis/ypclnt.c:896 +#: nis/ypclnt.c:919 msgid "yp_update: cannot get server address\n" msgstr "yp_update: kan inte h�mta serveradress\n" |