aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-09-09 01:45:55 +0000
committerUlrich Drepper <drepper@redhat.com>1997-09-09 01:45:55 +0000
commit801c353ac5392a1ff6749a3ea1ef1fe619cbc25d (patch)
treee30fed3adcbcc619ae2f8319b147b4f93934b46d
parentb0486b1cbdc8c1fca9a70c4c3cb8b774fc8c57e4 (diff)
downloadglibc-801c353ac5392a1ff6749a3ea1ef1fe619cbc25d.tar
glibc-801c353ac5392a1ff6749a3ea1ef1fe619cbc25d.tar.gz
glibc-801c353ac5392a1ff6749a3ea1ef1fe619cbc25d.tar.bz2
glibc-801c353ac5392a1ff6749a3ea1ef1fe619cbc25d.zip
-rw-r--r--ChangeLog29
-rw-r--r--db/btree/bt_page.c2
-rw-r--r--gmon/gmon.c3
-rw-r--r--po/de.po418
-rw-r--r--po/sv.po815
-rw-r--r--sysdeps/i386/selectbits.h17
-rw-r--r--sysdeps/stub/sigaction.c30
-rw-r--r--sysdeps/unix/sysv/linux/netinet/tcp.h2
-rw-r--r--time/tzfile.c6
-rw-r--r--time/tzset.c17
10 files changed, 761 insertions, 578 deletions
diff --git a/ChangeLog b/ChangeLog
index 7cc720d115..90b3affb9a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,32 @@
+1997-09-06 Paul Eggert <eggert@twinsun.com>
+
+ * tzfile.c (__tzfile_read): Don't read a file if TZ is the empty
+ string, just use UTC without leap seconds. This is for compatibility
+ with the Olson code.
+
+1997-09-06 Paul Eggert <eggert@twinsun.com>
+
+ * time/tzset.c (__tzname_max): Lock tz data structures before
+ invoking tzset_internal.
+
+ * time/tzfile.c: Define compute_tzname_max statically.
+
+1997-09-07 15:51 Ulrich Drepper <drepper@cygnus.com>
+
+ * sysdeps/i386/selectbits.h [__GNUC__] (__FD_ZERO, __FD_SET, __FD_CLR,
+ __FD_ISSET): Use correct casts to address array correctly.
+ Reported by urbanw@cs.umu.se.
+
+1997-09-05 06:11 Ulrich Drepper <drepper@cygnus.com>
+
+ * gmon/gmon.c (write_bb_counts): Make sure entries are written before
+ next head. Reported by baccala@FreeSoft.org.
+
+1997-09-01 14:16 Ulrich Drepper <drepper@cygnus.com>
+
+ * sysdeps/stub/sigaction.c: Fix typo.
+ Reported by Klaus Reichl <klaus.reichl@aut.alcatel.at>.
+
1997-08-28 17:30 Ulrich Drepper <drepper@cygnus.com>
* catgets/catgets.c (catopen): Correctly determine length of string
diff --git a/db/btree/bt_page.c b/db/btree/bt_page.c
index 0d9d138d5c..ce9cbf15a6 100644
--- a/db/btree/bt_page.c
+++ b/db/btree/bt_page.c
@@ -65,6 +65,7 @@ __bt_free(t, h)
h->prevpg = P_INVALID;
h->nextpg = t->bt_free;
t->bt_free = h->pgno;
+ F_SET(t, B_METADIRTY);
/* Make sure the page gets written back. */
return (mpool_put(t->bt_mp, h, MPOOL_DIRTY));
@@ -92,6 +93,7 @@ __bt_new(t, npg)
(h = mpool_get(t->bt_mp, t->bt_free, 0)) != NULL) {
*npg = t->bt_free;
t->bt_free = h->nextpg;
+ F_SET(t, B_METADIRTY);
return (h);
}
return (mpool_new(t->bt_mp, npg));
diff --git a/gmon/gmon.c b/gmon/gmon.c
index d4198ebe0b..77e59f06cb 100644
--- a/gmon/gmon.c
+++ b/gmon/gmon.c
@@ -285,8 +285,9 @@ write_bb_counts (fd)
bbbody[nfilled++].iov_base = (char *) &grp->addresses[i];
bbbody[nfilled++].iov_base = &grp->counts[i];
}
+ if (nfilled > 0)
+ __writev (fd, bbbody, nfilled);
}
- __writev (fd, bbbody, nfilled);
}
diff --git a/po/de.po b/po/de.po
index 86bc35335a..2a7724af69 100644
--- a/po/de.po
+++ b/po/de.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: GNU libc 2.0.3\n"
-"POT-Creation-Date: 1997-03-30 19:08+0200\n"
-"PO-Revision-Date: 1997-04-27 21:16 MET DST\n"
+"Project-Id-Version: GNU libc 2.0.5\n"
+"POT-Creation-Date: 1997-08-21 04:13+0200\n"
+"PO-Revision-Date: 1997-10-23 11:14 MET DST\n"
"Last-Translator: Jochen Hein <jochen.hein@delphi.central.de>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
@@ -15,11 +15,11 @@ msgstr ""
#: sunrpc/rpcinfo.c:612
msgid " rpcinfo -b prognum versnum\n"
-msgstr " rpcinfo -b Programm-Nummer Versions-Nummer\n"
+msgstr " rpcinfo -b Programmnummer Versionsnummer\n"
#: sunrpc/rpcinfo.c:613
msgid " rpcinfo -d prognum versnum\n"
-msgstr " rpcinfo -d Programm-Nummer Versions-Nummer\n"
+msgstr " rpcinfo -d Programmnummer Versionsnummer\n"
#: sunrpc/rpcinfo.c:611
msgid " rpcinfo -p [ host ]\n"
@@ -28,14 +28,14 @@ msgstr " rpcinfo -p [ Rechner ]\n"
#: sunrpc/rpcinfo.c:610
msgid " rpcinfo [ -n portnum ] -t host prognum [ versnum ]\n"
msgstr ""
-" rpcinfo [ -n Port-Nummer ] -t Rechner Programm-Nummer "
-"[Versions-Nummer]\n"
+" rpcinfo [ -n Portnummer ] -t Rechner Programmnummer [ Versionsnummer "
+"]\n"
#: sunrpc/rpcinfo.c:517
msgid " program vers proto port\n"
msgstr " Program Vers Proto Port\n"
-#: time/zic.c:419
+#: time/zic.c:421
#, c-format
msgid " (rule from \"%s\", line %d)"
msgstr " (Regel aus Datei �%s�, Zeile %d)"
@@ -44,22 +44,22 @@ msgstr " (Regel aus Datei �%s�, Zeile %d)"
msgid " done\n"
msgstr " fertig\n"
-#: time/zic.c:416
+#: time/zic.c:418
#, c-format
msgid "\"%s\", line %d: %s"
msgstr "�%s�, Zeile %d: %s"
-#: time/zic.c:943
+#: time/zic.c:947
#, c-format
msgid "\"Zone %s\" line and -l option are mutually exclusive"
msgstr "�Zone %s�-Zeile und die Option �-l� schliessen sich aus"
-#: time/zic.c:951
+#: time/zic.c:955
#, c-format
msgid "\"Zone %s\" line and -p option are mutually exclusive"
msgstr "�Zone %s�-Zeile und die Option �-p� schliessen sich aus"
-#: time/zic.c:754
+#: time/zic.c:758
#, c-format
msgid "%s in ruleless zone"
msgstr "%s in einer regellosen Zone"
@@ -80,52 +80,53 @@ msgid "%s%sUnknown signal %d\n"
msgstr "%s%sUnbekanntes Signal %d\n"
# Ob diese �bersetzung so korrekt ist? - jh
-#: time/zic.c:2172
+# definitiv nicht, aber hoffentlich ist es so besser - Klaus Espenlaub
+#: time/zic.c:2185
#, c-format
msgid "%s: %d did not sign extend correctly\n"
-msgstr "%s: %d Das Vorzeichen der extended-Zahl ist nicht korrekt\n"
+msgstr "%s: Vorzeichenerweiterung von %d fehlgeschlagen\n"
#: locale/programs/charmap.c:176
#, c-format
msgid "%s: <mb_cur_max> must be greater than <mb_cur_min>\n"
msgstr "%s: �<mb_cur_max>� mu� gr��er als �<mb_cur_min>� sein\n"
-#: time/zic.c:1443
+#: time/zic.c:1456
#, c-format
msgid "%s: Can't create %s: %s\n"
msgstr "%s: Kann �%s� nicht erzeugen: %s\n"
-#: time/zic.c:2150
+#: time/zic.c:2163
#, c-format
msgid "%s: Can't create directory %s: %s\n"
msgstr "%s: Kann das Verzeichnis �%s� nicht erzeugen: %s\n"
-#: time/zic.c:608
+#: time/zic.c:610
#, c-format
msgid "%s: Can't link from %s to %s: %s\n"
msgstr "%s: Kann nicht von �%s� nach �%s� linken: %s\n"
-#: time/zic.c:780
+#: time/zic.c:784
#, c-format
msgid "%s: Can't open %s: %s\n"
msgstr "%s: Kann die Datei �%s� nicht �ffnen: %s\n"
-#: time/zic.c:1433
+#: time/zic.c:1446
#, c-format
msgid "%s: Can't remove %s: %s\n"
msgstr "%s: Kann �%s� nicht l�schen: %s\n"
-#: time/zic.c:849
+#: time/zic.c:853
#, c-format
msgid "%s: Error closing %s: %s\n"
msgstr "%s: Fehler beim Schliessen der Datei �%s�: %s\n"
-#: time/zic.c:842
+#: time/zic.c:846
#, c-format
msgid "%s: Error reading %s\n"
msgstr "%s: Fehler beim Lesen der Datei �%s�\n"
-#: time/zic.c:1507
+#: time/zic.c:1520
#, c-format
msgid "%s: Error writing %s\n"
msgstr "%s: Fehler beim Schreiben der Datei �%s�\n"
@@ -135,42 +136,42 @@ msgstr "%s: Fehler beim Schreiben der Datei �%s�\n"
msgid "%s: Error writing standard output "
msgstr "%s: Fehler beim Schreiben auf die Standardausgabe "
-#: time/zic.c:827
+#: time/zic.c:831
#, c-format
msgid "%s: Leap line in non leap seconds file %s\n"
-msgstr "%s: Schalt-Zeile in einer nicht-Schalt-Sekunden-Datei �%s�\n"
+msgstr "%s: Schalt-Zeile in einer nicht-Schaltsekunden-Datei �%s�\n"
-#: time/zic.c:357
+#: time/zic.c:359
#, c-format
msgid "%s: Memory exhausted: %s\n"
msgstr "%s: Kein Hauptspeicher mehr verf�gbar: %s\n"
-#: time/zic.c:522
+#: time/zic.c:524
#, c-format
msgid "%s: More than one -L option specified\n"
msgstr "%s: Mehr als eine �-L� Option angegeben\n"
-#: time/zic.c:482
+#: time/zic.c:484
#, c-format
msgid "%s: More than one -d option specified\n"
msgstr "%s: Mehr als eine �-d� Option angegeben\n"
-#: time/zic.c:492
+#: time/zic.c:494
#, c-format
msgid "%s: More than one -l option specified\n"
msgstr "%s: Mehr als eine �-l� Option angegeben\n"
-#: time/zic.c:502
+#: time/zic.c:504
#, c-format
msgid "%s: More than one -p option specified\n"
msgstr "%s: Mehr als eine �-p� Option angegeben\n"
-#: time/zic.c:512
+#: time/zic.c:514
#, c-format
msgid "%s: More than one -y option specified\n"
msgstr "%s: Mehr als eine �-y� Option angegeben\n"
-#: time/zic.c:1872
+#: time/zic.c:1885
#, c-format
msgid "%s: command was '%s', result was %d\n"
msgstr "%s: Das Kommando war �%s�, das Ergebnis war %d\n"
@@ -188,7 +189,7 @@ msgstr "%s: Die Option ist nicht erlaubt -- �%c�\n"
#: posix/getopt.c:786
#, c-format
msgid "%s: invalid option -- %c\n"
-msgstr "%s: Ung�ltige option -- �%c�\n"
+msgstr "%s: Ung�ltige Option -- �%c�\n"
#: posix/getopt.c:707
#, c-format
@@ -225,7 +226,7 @@ msgstr "%s: Die Option �-W %s� ist nicht eindeutig\n"
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: Diese Option ben�tigt ein Argument -- �%c�\n"
-#: time/zic.c:834 time/zic.c:1246 time/zic.c:1266
+#: time/zic.c:838 time/zic.c:1251 time/zic.c:1275
#, c-format
msgid "%s: panic: Invalid l_value %d\n"
msgstr "%s: Panik: ung�ltiger �l_value� %d\n"
@@ -245,21 +246,21 @@ msgstr "%s: Unbekannte Option �%c%s�\n"
msgid "%s: unrecognized option `--%s'\n"
msgstr "%s: Unbekannte Option �--%s�\n"
-#: time/zic.c:441
+#: time/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"
msgstr ""
-"%s: Syntax ist %s [ -s ] [ -v ] [ -l Lokale-Zeit ] [ -p Posix-Regeln ] [ -d "
+"%s: Syntax ist %s [ -s ] [ -v ] [ -l Ortszeit ] [ -p Posix-Regeln ] [ -d "
"Verzeichnis ]\n"
"\t[ -L Schaltsekunden ] [ -y Jahrestyp ] [ Dateiname ... ]\n"
#: time/zdump.c:174
#, c-format
msgid "%s: usage is %s [ -v ] [ -c cutoff ] zonename ...\n"
-msgstr "%s: Syntax: %s [ -v ] [ -c cutoff ] Zonen-Name ...\n"
+msgstr "%s: Syntax: %s [ -v ] [ -c cutoff ] Zonenname ...\n"
#: sunrpc/clnt_perr.c:125
#, c-format
@@ -272,7 +273,7 @@ msgstr "Unbekanntes Signal"
#: catgets/gencat.c:254
msgid "*standard input*"
-msgstr "*Standard-Eingabe*"
+msgstr "*Standardeingabe*"
#: stdio-common/../sysdeps/gnu/errlist.c:766
msgid ".lib section in a.out corrupted"
@@ -327,7 +328,7 @@ msgstr "Abgebrochen"
#: stdio-common/../sysdeps/gnu/errlist.c:762
msgid "Accessing a corrupted shared library"
-msgstr "Zugriff auf eine fehlerhafte oder defekte Shared-Library"
+msgstr "Zugriff auf eine fehlerhafte oder defekte Shared Library"
#. TRANS The requested socket address is already in use. @xref{Socket Addresses}.
#: stdio-common/../sysdeps/gnu/errlist.c:354
@@ -338,12 +339,14 @@ msgstr "Die Adresse wird bereits verwendet"
#. TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}.
#: stdio-common/../sysdeps/gnu/errlist.c:349
msgid "Address family not supported by protocol"
-msgstr "Die Adress-Familie wird von der Protokoll-Familie nicht unterst�tzt"
+msgstr "Die Adre�familie wird von der Protokollfamilie nicht unterst�tzt"
# Diese �bersetzung macht eigentlich keinen Sinn - jh
+# man -s 2 Intro auf Solaris2 laesst diese �bersetzung
+# sinnvoller erscheinen - Klaus Espenlaub
#: stdio-common/../sysdeps/gnu/errlist.c:730
msgid "Advertise error"
-msgstr "Fehler bei der Werbung"
+msgstr "Konflikt mit Bekanntmachung"
#: stdio-common/../sysdeps/unix/siglist.c:43
#: sysdeps/unix/sysv/linux/siglist.h:33
@@ -360,7 +363,7 @@ msgstr "Die Argumentliste ist zu lang"
#: stdio-common/../sysdeps/gnu/errlist.c:770
msgid "Attempting to link in too many shared libraries"
-msgstr "Versuch zu viele Shared-Libraries einzubinden"
+msgstr "Versuch zu viele Shared Libraries einzubinden"
#: sunrpc/clnt_perr.c:276
msgid "Authentication OK"
@@ -382,11 +385,11 @@ msgstr "Ung�ltige Adresse"
#. TRANS versa).
#: stdio-common/../sysdeps/gnu/errlist.c:70
msgid "Bad file descriptor"
-msgstr "Ung�ltiger Datei-Deskriptor"
+msgstr "Ung�ltiger Dateideskriptor"
#: stdio-common/../sysdeps/gnu/errlist.c:718
msgid "Bad font file format"
-msgstr "Ung�ltiges Font-Datei-Format"
+msgstr "Ung�ltiges Font-Dateiformat"
#: stdio-common/../sysdeps/gnu/errlist.c:610
msgid "Bad message"
@@ -420,6 +423,8 @@ msgid "Broken pipe"
msgstr "Daten�bergabe unterbrochen (broken pipe)"
# Ung�ltige Adressierung? - jh
+# die �bersetzung scheint mir gut - SIGBUS kann jedoch
+# vieles bedeuten - Klaus Espenlaub
#: stdio-common/../sysdeps/unix/siglist.c:39
#: sysdeps/unix/sysv/linux/siglist.h:30
msgid "Bus error"
@@ -431,7 +436,7 @@ msgstr "Rechenzeitbegrenzung �berschritten"
#: stdio-common/../sysdeps/gnu/errlist.c:758
msgid "Can not access a needed shared library"
-msgstr "Auf eine ben�tigte Shared-Library kann nicht zugegriffen werden"
+msgstr "Auf eine ben�tigte Shared Library kann nicht zugegriffen werden"
#: nis/ypclnt.c:695
msgid "Can't bind to server which serves this domain"
@@ -468,7 +473,7 @@ msgstr "Kann den Socket f�r den Broadcast-RPC nicht erstellen"
#: stdio-common/../sysdeps/gnu/errlist.c:774
msgid "Cannot exec a shared library directly"
-msgstr "Eine Shared-Library kann nicht direkt ausgef�hrt werden"
+msgstr "Eine Shared Library kann nicht direkt ausgef�hrt werden"
#: sunrpc/pmap_rmt.c:350
msgid "Cannot receive reply to broadcast"
@@ -549,7 +554,7 @@ msgstr "Die Wartezeit f�r die Verbindung ist abgelaufen"
msgid "Continued"
msgstr "Fortgesetzt"
-#: catgets/gencat.c:169 db/makedb.c:120 locale/programs/locale.c:187
+#: catgets/gencat.c:169 db/makedb.c:120 locale/programs/locale.c:191
#: locale/programs/localedef.c:180
#, c-format
msgid ""
@@ -596,7 +601,7 @@ msgstr "Das Ger�t ist nicht konfiguriert"
#. TRANS mounted filesystem, you get this error.
#: stdio-common/../sysdeps/gnu/errlist.c:116
msgid "Device or resource busy"
-msgstr "Das Ger�t oder die Resource ist belegt"
+msgstr "Das Ger�t oder die Ressource ist belegt"
#. TRANS Directory not empty, where an empty directory was expected. Typically,
#. TRANS this error occurs when you are trying to delete a directory.
@@ -633,7 +638,7 @@ msgstr "Fehler: Die Datei �.netrc� ist f�r andere Benutzer lesbar."
#: stdio-common/../sysdeps/gnu/errlist.c:698
msgid "Exchange full"
-msgstr "Umsteigebahnhof ist �berf�llt"
+msgstr "Vermittlung ist �berf�llt"
#. TRANS Invalid executable file format. This condition is detected by the
#. TRANS @code{exec} functions; see @ref{Executing a File}.
@@ -773,7 +778,7 @@ msgstr "Informationsanfrage"
#. TRANS Input/output error; usually used for physical read or write errors.
#: stdio-common/../sysdeps/gnu/errlist.c:40
msgid "Input/output error"
-msgstr "Eingabe-/Ausgabe-Fehler"
+msgstr "Eingabe-/Ausgabefehler"
#: nis/ypclnt.c:701
msgid "Internal NIS error"
@@ -809,11 +814,11 @@ msgstr "Der unterbrochene Betriebssystemaufruf sollte neu gestartet werden"
msgid "Invalid argument"
msgstr "Das Argument ist ung�ltig"
-#: posix/regex.c:960
+#: posix/regex.c:978
msgid "Invalid back reference"
msgstr "Ung�ltiger Verweis zur�ck"
-#: posix/regex.c:958
+#: posix/regex.c:976
msgid "Invalid character class name"
msgstr "Ung�ltiger Name f�r eine Zeichenklasse"
@@ -825,11 +830,11 @@ msgstr "Die Best�tigung des Clients ist ung�ltig"
msgid "Invalid client verifier"
msgstr "Ung�ltige �berpr�fung des Clients"
-#: posix/regex.c:957
+#: posix/regex.c:975
msgid "Invalid collation character"
msgstr "Ung�ltiges Sortierzeichen"
-#: posix/regex.c:964
+#: posix/regex.c:982
msgid "Invalid content of \\{\\}"
msgstr "Ung�ltiger Inhalt von �\\{\\}�"
@@ -850,15 +855,15 @@ msgstr "Ung�ltiger Austausch"
msgid "Invalid or incomplete multibyte or wide character"
msgstr "Ung�ltiges oder unvollst�ndiges Multi-Byte oder Wide-Zeichen"
-#: posix/regex.c:967
+#: posix/regex.c:985
msgid "Invalid preceding regular expression"
msgstr "Der vorherige regul�re Ausdruck ist nicht korrekt."
-#: posix/regex.c:965
+#: posix/regex.c:983
msgid "Invalid range end"
msgstr "Das Ende des angegebenen Intervalls ist nicht g�ltig"
-#: posix/regex.c:956
+#: posix/regex.c:974
msgid "Invalid regular expression"
msgstr "Ung�ltiger regul�rer Ausdruck"
@@ -923,13 +928,13 @@ msgstr "Der lokale Domain-Name ist nicht eingetragen"
#: nis/ypclnt.c:703
msgid "Local resource allocation failure"
-msgstr "Lokaler Fehler bei der Resourcen-Beschaffung"
+msgstr "Lokaler Fehler bei der Ressourcenreservierung"
#: stdio-common/../sysdeps/gnu/errlist.c:722
msgid "Machine is not on the network"
msgstr "Die Maschine ist nicht an das Netzwerk angeschlossen"
-#: posix/regex.c:966
+#: posix/regex.c:984
msgid "Memory exhausted"
msgstr "Kein Hauptspeicher mehr verf�gbar"
@@ -1019,7 +1024,7 @@ msgstr "Keine Daten verf�gbar"
msgid "No locks available"
msgstr "Keine Sperren verf�gbar"
-#: posix/regex.c:955
+#: posix/regex.c:973
msgid "No match"
msgstr "Keine �bereinstimmung gefunden"
@@ -1031,7 +1036,7 @@ msgstr "Keine Nachricht des gew�nschten Typs"
msgid "No more records in map database"
msgstr "Keine weiteren S�tze in der Map-Datenbank"
-#: posix/regex.c:5324
+#: posix/regex.c:5434
msgid "No previous regular expression"
msgstr "Es wurde bisher noch kein regul�rer Ausdruck definiert"
@@ -1042,7 +1047,7 @@ msgstr "Es sind keine entfernten Programme registriert.\n"
#. TRANS The remote host for a requested network connection is not reachable.
#: stdio-common/../sysdeps/gnu/errlist.c:462
msgid "No route to host"
-msgstr "Keine Route zum entfernten Rechner"
+msgstr "Keine Route zum Zielrechner"
#. TRANS No space left on device; write operation on a file failed because the
#. TRANS disk is full.
@@ -1099,7 +1104,7 @@ msgstr "Das numerische Ergebnis ist au�erhalb des g�ltigen Bereiches"
msgid "Object is remote"
msgstr "Das Objekt ist remote"
-#: time/zic.c:1966
+#: time/zic.c:1979
msgid "Odd number of quotation marks"
msgstr "Ungerade Anzahl von Anf�hrungszeichen"
@@ -1154,7 +1159,7 @@ msgstr "Die Operation w�rde blockieren"
#: stdio-common/../sysdeps/gnu/errlist.c:634
msgid "Out of streams resources"
-msgstr "Keine Stream-Resourcen mehr verf�gbar"
+msgstr "Keine Stream-Ressourcen mehr verf�gbar"
#: stdio-common/../sysdeps/gnu/errlist.c:726
msgid "Package not installed"
@@ -1169,7 +1174,7 @@ msgstr "Keine Berechtigung"
msgid "Power failure"
msgstr "Fehler in der Stromversorgung"
-#: posix/regex.c:968
+#: posix/regex.c:986
msgid "Premature end of regular expression"
msgstr "Unerwartetes Ende des regul�ren Ausdruckes"
@@ -1184,7 +1189,7 @@ msgstr "Das Protokoll ist nicht verf�gbar"
#: stdio-common/../sysdeps/gnu/errlist.c:646
msgid "Protocol error"
-msgstr "Protokoll-Fehler"
+msgstr "Protokollfehler"
#. TRANS The socket communications protocol family you requested is not supported.
#: stdio-common/../sysdeps/gnu/errlist.c:343
@@ -1235,7 +1240,7 @@ msgstr "RPC: Programm nicht verf�gbar"
#. TRANS ???
#: stdio-common/../sysdeps/gnu/errlist.c:522
msgid "RPC program version wrong"
-msgstr "RPC: Die Programm-Version ist falsch"
+msgstr "RPC: Die Programmversion ist falsch"
#. TRANS ???
#: stdio-common/../sysdeps/gnu/errlist.c:507
@@ -1332,13 +1337,13 @@ msgstr "�RTLD_NEXT� wird in Code verwendet, der nicht dynamisch geladen ist"
msgid "Read-only file system"
msgstr "Das Dateisystem ist nur lesbar"
-#: posix/regex.c:969
+#: posix/regex.c:987
msgid "Regular expression too big"
msgstr "Der regul�re Ausdruck ist zu gro�"
#: stdio-common/../sysdeps/gnu/errlist.c:798
msgid "Remote I/O error"
-msgstr "Ein-/Ausgabe-Fehler des entfernten Systems"
+msgstr "Ein-/Ausgabefehler des entfernten Systems"
#: stdio-common/../sysdeps/gnu/errlist.c:754
msgid "Remote address changed"
@@ -1348,10 +1353,12 @@ msgstr "Die entfernte Adresse hat sich ge�ndert"
msgid "Remove password or make file unreadable by others."
msgstr "Das Pa�wort l�schen oder die Datei f�r andere nicht lesbar anlegen."
-#: catgets/gencat.c:224 db/makedb.c:227 locale/programs/locale.c:257
-#: locale/programs/localedef.c:412
+#: catgets/gencat.c:224 db/makedb.c:227 locale/programs/locale.c:262
+#: locale/programs/localedef.c:415
msgid "Report bugs using the `glibcbug' script to <bugs@gnu.ai.mit.edu>.\n"
-msgstr "Fehler bitte mit dem �glibcbug�-Skript an <bug-glibc@prep.ai.mit.edu> melden.\n"
+msgstr ""
+"Fehler bitte mit dem �glibcbug�-Skript an <bug-glibc@prep.ai.mit.edu> "
+"melden.\n"
#: nis/ypclnt.c:691
msgid "Request arguments bad"
@@ -1371,11 +1378,11 @@ msgstr "Interner Fehler des Resolvers"
#. TRANS noticed; it might just hang. @xref{File Locks}, for an example.
#: stdio-common/../sysdeps/gnu/errlist.c:85
msgid "Resource deadlock avoided"
-msgstr "Verklemmung beim Zugriff auf eine Resource vermieden"
+msgstr "Verklemmung beim Zugriff auf eine Ressource vermieden"
#: stdio-common/../sysdeps/unix/siglist.c:58
msgid "Resource lost"
-msgstr "Die Resource ist verlorengegangen"
+msgstr "Die Ressource ist verlorengegangen"
#. TRANS Resource temporarily unavailable; the call might work if you try again
#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN};
@@ -1408,7 +1415,7 @@ msgstr "Die Resource ist verlorengegangen"
#. TRANS @end itemize
#: stdio-common/../sysdeps/gnu/errlist.c:267
msgid "Resource temporarily unavailable"
-msgstr "Die Resource ist zur Zeit nicht verf�gbar"
+msgstr "Die Ressource ist zur Zeit nicht verf�gbar"
#: stdio-common/../sysdeps/unix/siglist.c:40
#: sysdeps/unix/sysv/linux/siglist.h:31
@@ -1448,7 +1455,7 @@ msgstr "�Srmount�-Fehler"
#: sysdeps/unix/sysv/linux/siglist.h:59
msgid "Stack fault"
-msgstr "Stack-Fehler"
+msgstr "Stackfehler"
#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS
#. TRANS system which is due to file system rearrangements on the server host.
@@ -1486,14 +1493,14 @@ msgstr "Fehler in Stream-Pipe"
msgid "Structure needs cleaning"
msgstr "Die Struktur mu� bereinigt werden"
-#: nis/ypclnt.c:689 nis/ypclnt.c:763 posix/regex.c:954
+#: nis/ypclnt.c:689 nis/ypclnt.c:763 posix/regex.c:972
#: stdio-common/../sysdeps/gnu/errlist.c:7
msgid "Success"
msgstr "Erfolg"
#: nis/ypclnt.c:769
msgid "System resource allocation failure"
-msgstr "Fehler bei der Beschaffung einer System-Resource"
+msgstr "Fehler bei der Beschaffung einer Systemressource"
#: stdio-common/../sysdeps/unix/siglist.c:44
#: sysdeps/unix/sysv/linux/siglist.h:34
@@ -1570,7 +1577,7 @@ msgstr "Trace/BPT ausgel�st"
msgid "Trace/breakpoint trap"
msgstr "Trace/Breakpoint ausgel�st"
-#: posix/regex.c:959
+#: posix/regex.c:977
msgid "Trailing backslash"
msgstr "Angeh�ngter Backslash (�\\�)"
@@ -1595,8 +1602,8 @@ msgstr "Der Socket ist bereits verbunden"
msgid "Transport endpoint is not connected"
msgstr "Der Socket ist nicht verbunden"
-#: catgets/gencat.c:208 db/makedb.c:209 locale/programs/locale.c:241
-#: locale/programs/localedef.c:393
+#: catgets/gencat.c:208 db/makedb.c:209 locale/programs/locale.c:246
+#: locale/programs/localedef.c:396
#, c-format
msgid "Try `%s --help' for more information.\n"
msgstr "�%s --help� gibt weitere Informationen.\n"
@@ -1645,19 +1652,19 @@ msgstr "Unbekannter Systemfehler"
msgid "Unknown ypbind error"
msgstr "Unbekannter Fehler im �ypbind�"
-#: posix/regex.c:962
+#: posix/regex.c:980
msgid "Unmatched ( or \\("
msgstr "�(� oder �\\(� ohne schlie�ende Klammer"
-#: posix/regex.c:970
+#: posix/regex.c:988
msgid "Unmatched ) or \\)"
msgstr "�)� oder �\\)� ohne �ffnende Klammer"
-#: posix/regex.c:961
+#: posix/regex.c:979
msgid "Unmatched [ or [^"
msgstr "�[� oder �[^� ohne schlie�ende Klammer"
-#: posix/regex.c:963
+#: posix/regex.c:981
msgid "Unmatched \\{"
msgstr "�\\{� ohne schlie�ende Klammer"
@@ -1669,7 +1676,7 @@ msgstr "Unbekannte Variable �%s�"
#: stdio-common/../sysdeps/unix/siglist.c:45
#: sysdeps/unix/sysv/linux/siglist.h:35
msgid "Urgent I/O condition"
-msgstr "Dringende Ein-/Ausgabe-Bedingung"
+msgstr "Dringende Ein-/Ausgabebedingung"
#: catgets/gencat.c:212
#, c-format
@@ -1677,7 +1684,8 @@ msgid ""
"Usage: %s [OPTION]... -o OUTPUT-FILE [INPUT-FILE]...\n"
" %s [OPTION]... [OUTPUT-FILE [INPUT-FILE]...]\n"
"Mandatory arguments to long options are mandatory for short options too.\n"
-" -H, --header create C header file containing symbol definitions\n"
+" -H, --header=NAME create C header file NAME containing symbol "
+"definitions\n"
" -h, --help display this help and exit\n"
" --new do not use existing catalog, force new output file\n"
" -o, --output=NAME write output to file NAME\n"
@@ -1685,12 +1693,12 @@ msgid ""
"If INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n"
"is -, output is written to standard output.\n"
msgstr ""
-"Syntax: %s [OPTION]... -o Ausgabe-Datei [Eingabe-Datei]...\n"
-" %s [OPTION]... [Ausgabe-Datei [Eingabe-Datei]...]\n"
+"Syntax: %s [OPTION]... -o Ausgabedatei [Eingabedatei]...\n"
+" %s [OPTION]... [Ausgabedatei [Eingabedatei]...]\n"
"\n"
"Notwendige Argumente f�r lange Optionen sind auch f�r kurze erforderlich. \n"
"\n"
-" -H, --header Erzeuge C-Header-Dateien mit den Symbol-Definitionen\n"
+" -H, --header=NAME Erzeuge C-Header-Datei NAME mit den Symbol-Definitionen\n"
" -h, --help Zeigt diese Hilfe an\n"
" --new Verwendet keinen existierenden Katalog sondern \n"
" erzwingt die Erzeugung eines neuen\n"
@@ -1733,7 +1741,7 @@ msgstr ""
"Wenn als Name der Eingabe-Datei ein '-' angegeben ist, dann wird\n"
"von der Standard-Eingabe gelesen.\n"
-#: locale/programs/localedef.c:397
+#: locale/programs/localedef.c:400
#, c-format
msgid ""
"Usage: %s [OPTION]... name\n"
@@ -1771,7 +1779,7 @@ msgstr ""
"System-Verzeichnis f�r Zeichensatzbeschreibungen: %s\n"
" Lokale-Definitionen : %s\n"
-#: locale/programs/locale.c:245
+#: locale/programs/locale.c:250
#, c-format
msgid ""
"Usage: %s [OPTION]... name\n"
@@ -1802,13 +1810,13 @@ msgstr ""
#: posix/getconf.c:200
#, c-format
msgid "Usage: %s variable_name [pathname]\n"
-msgstr "Syntax: %s Variablen-Name [Pfadname]\n"
+msgstr "Syntax: %s Variablenname [Pfadname]\n"
#: sunrpc/rpcinfo.c:609
msgid "Usage: rpcinfo [ -n portnum ] -u host prognum [ versnum ]\n"
msgstr ""
-"Syntax: rpcinfo [ -n Portnummer ] -u Rechner Programm-Nummer "
-"[Versions-Nummer]\n"
+"Syntax: rpcinfo [ -n Portnummer ] -u Rechner Programmnummer [ Versionsnummer "
+"]\n"
#: stdio-common/../sysdeps/unix/siglist.c:59
#: sysdeps/unix/sysv/linux/siglist.h:48
@@ -1829,16 +1837,16 @@ msgstr "Der Wert ist zu gro� f�r den definierten Datentyp"
msgid "Virtual timer expired"
msgstr "Der virtuelle Zeitnehmer ist abgelaufen"
-#: time/zic.c:1871
+#: time/zic.c:1884
msgid "Wild result from command execution"
-msgstr "Wildes Ergebnis aus der Kommando-Ausf�hrung"
+msgstr "Wildes Ergebnis aus der Kommandoausf�hrung"
#: stdio-common/../sysdeps/unix/siglist.c:57
#: sysdeps/unix/sysv/linux/siglist.h:47
msgid "Window changed"
msgstr "Die Fenstergr��e wurde ver�ndert"
-#: catgets/gencat.c:174 db/makedb.c:125 locale/programs/locale.c:192
+#: catgets/gencat.c:174 db/makedb.c:125 locale/programs/locale.c:196
#: locale/programs/localedef.c:185
#, c-format
msgid "Written by %s.\n"
@@ -1855,7 +1863,7 @@ msgstr "YPBINDPROC_DOMAIN: Kein Server f�r die NIS-Domain �%s�\n"
#: nis/ypclnt.c:150
msgid "YPBINDPROC_DOMAIN: Resource allocation failure\n"
-msgstr "YPBINDPROC_DOMAIN: Fehler bei der Resourcen-Beschaffung\n"
+msgstr "YPBINDPROC_DOMAIN: Fehler bei der Ressourcenbeschaffung\n"
#: nis/ypclnt.c:154
msgid "YPBINDPROC_DOMAIN: Unknown error\n"
@@ -1866,7 +1874,7 @@ msgstr "YPBINDPROC_DOMAIN: Unbekannter Fehler\n"
msgid "You really blew it this time"
msgstr "Diesmal hast Du es wirklich kaputtgemacht"
-#: time/zic.c:1048
+#: time/zic.c:1052
msgid "Zone continuation line end time is not after end time of previous line"
msgstr ""
"Die Ende-Zeit der Fortsetzungszeile ist nicht sp�ter als die Ende-Zeit der "
@@ -1894,8 +1902,8 @@ msgstr "�from� erwartet nach dem ersten Argument von �collating-element�"
msgid ""
"`from' string in collation element declaration contains unknown character"
msgstr ""
-"Der �from�-String in der Deklaration des �collation element� enth�lt "
-"unbekannte Zeichen"
+"Der �from�-String in der Deklaration des Sortierelements enth�lt unbekannte "
+"Zeichen"
#: locale/programs/charmap.c:267
#, c-format
@@ -1919,11 +1927,11 @@ msgstr "Ung�ltiger Eigent�mer der Datei �.rhosts�"
msgid "bad argument"
msgstr "Das Argument ist ung�ltig"
-#: time/zic.c:1170
+#: time/zic.c:1174
msgid "blank FROM field on Link line"
msgstr "Leeres FROM-Feld in der Link-Zeile"
-#: time/zic.c:1174
+#: time/zic.c:1178
msgid "blank TO field on Link line"
msgstr "Leeres TO-Feld in der Link-Zeile"
@@ -1947,16 +1955,18 @@ msgstr "Broadcast: ioctl (Holen der Parameter der Schnittstelle)"
msgid "cache_set: victim not found"
msgstr "cache_set: Das Opfer wurde nicht gefunden"
-#: time/zic.c:1698
+#: time/zic.c:1711
msgid "can't determine time zone abbreviation to use just after until time"
-msgstr "Kann die Abk�rzung der Zeitzone zur Verwendung direkt nach der Ende-Zeit nicht bestimmen"
+msgstr ""
+"Kann die Abk�rzung der Zeitzone zur Verwendung direkt nach der Ende-Zeit "
+"nicht bestimmen"
#: sunrpc/svc_simple.c:64
#, c-format
msgid "can't reassign procedure number %d\n"
msgstr "Kann die Prozedurnummer %d nicht erneut zuweisen\n"
-#: locale/programs/localedef.c:291
+#: locale/programs/localedef.c:294
#, c-format
msgid "cannot `stat' locale file `%s'"
msgstr "Kann den Status der Lokale-Datei �%s� nicht bestimmen"
@@ -1968,12 +1978,12 @@ msgstr "Kann das Sortierelement �%.*s� nicht einf�gen"
#: locale/programs/ld-collate.c:1496 locale/programs/ld-collate.c:1501
msgid "cannot insert into result table"
-msgstr "Kann nicht in die Ergebnis-Tabelle einf�gen"
+msgstr "Kann nicht in die Ergebnistabelle einf�gen"
#: locale/programs/ld-collate.c:1169 locale/programs/ld-collate.c:1211
#, c-format
msgid "cannot insert new collating symbol definition: %s"
-msgstr "Kann die neue Sortiersymbol-Definition nicht einf�gen: %s"
+msgstr "Kann die neue Sortiersymboldefinition nicht einf�gen: %s"
#: db/makedb.c:161
#, c-format
@@ -1995,7 +2005,7 @@ msgstr "Kann die Lokale-Definitionsdatei �%s� nicht �ffnen"
msgid "cannot open output file `%s'"
msgstr "Kann die Ausgabedatei �%s� nicht �ffnen"
-#: locale/programs/locfile.c:1008
+#: locale/programs/locfile.c:1020
#, c-format
msgid "cannot open output file `%s' for category `%s'"
msgstr "Kann die Ausgabedatei �%s� f�r die Kategorie �%s� nicht �ffnen"
@@ -2004,28 +2014,28 @@ msgstr "Kann die Ausgabedatei �%s� f�r die Kategorie �%s� nicht �ffnen"
msgid "cannot process order specification"
msgstr "Kann die Spezifikation der Sortierreihenfolge nicht verarbeiten"
-#: locale/programs/locale.c:304
+#: locale/programs/locale.c:444
#, c-format
msgid "cannot read character map directory `%s'"
msgstr ""
"Das Verzeichnis �%s� der Zeichensatz-Definitionen kann nicht gelesen werden"
-#: locale/programs/locale.c:279
+#: locale/programs/locale.c:301
#, c-format
msgid "cannot read locale directory `%s'"
msgstr "Kann das Lokale-Verzeichnis �%s� nicht lesen"
-#: locale/programs/localedef.c:313
+#: locale/programs/localedef.c:316
#, c-format
msgid "cannot read locale file `%s'"
msgstr "Kann die Lokale-Datei �%s� nicht lesen"
-#: locale/programs/localedef.c:338
+#: locale/programs/localedef.c:341
#, c-format
msgid "cannot write output files to `%s'"
msgstr "Kann die Ausgabedatei �%s� nicht schreiben"
-#: locale/programs/localedef.c:381
+#: locale/programs/localedef.c:384
msgid "category data requested more than once: should not happen"
msgstr ""
"Die Daten einer Kategorie sind mehrfach angefordert worden, das sollte nicht "
@@ -2073,7 +2083,7 @@ msgstr "Die Zeichensatzbeschreibung �%s� ist bereits definiert"
#: locale/programs/charmap.c:76
#, c-format
msgid "character map file `%s' not found"
-msgstr "Die Zeichensatzbeschreibungs-Datei �%s� wurde nicht gefunden"
+msgstr "Die Zeichensatzbeschreibungsdatei �%s� wurde nicht gefunden"
#: sunrpc/clnt_raw.c:106
msgid "clnt_raw.c - Fatal header serialization error."
@@ -2158,18 +2168,18 @@ msgstr "Doppelter Schl�ssel"
msgid "duplicate set definition"
msgstr "Doppelte �set�-Definition"
-#: time/zic.c:963
+#: time/zic.c:967
#, c-format
msgid "duplicate zone name %s (file \"%s\", line %d)"
-msgstr "Doppelter Zonen-Name �%s� (Datei �%s�, Zeile %d)"
+msgstr "Doppelter Zonenname �%s� (Datei �%s�, Zeile %d)"
#: catgets/gencat.c:542
msgid "duplicated message identifier"
-msgstr "Der Nachrichten-Bezeichner ist mehrfach vorhanden"
+msgstr "Der Nachrichtenbezeichner ist mehrfach vorhanden"
#: catgets/gencat.c:515
msgid "duplicated message number"
-msgstr "Die Nachrichten-Nummer ist mehrfach vorhanden"
+msgstr "Die Nachrichtennummer ist mehrfach vorhanden"
#: locale/programs/ld-collate.c:1699
msgid "empty weight name: line ignored"
@@ -2193,11 +2203,11 @@ msgstr "enablecache: Kann keinen FIFO-Cache anlegen"
#: locale/programs/ld-collate.c:1422
msgid "end point of ellipsis range is bigger then start"
-msgstr "Das Ende eines Auslassungs-Intervalls ist g��er als der Start"
+msgstr "Das Ende eines Auslassungsintervalls ist gr��er als der Start"
#: locale/programs/ld-collate.c:1152
msgid "error while inserting collation element into hash table"
-msgstr "Fehler beim Einf�gen des Collation-Elementes in die Hash-Tabelle"
+msgstr "Fehler beim Einf�gen des Sortierelementes in die Hash-Tabelle"
#: locale/programs/ld-collate.c:1164
msgid "error while inserting to hash table"
@@ -2207,11 +2217,11 @@ msgstr "Fehler beim Einf�gen in die Hash-Tabelle"
msgid "expect string argument for `copy'"
msgstr "F�r �copy� wird ein String-Argument erwartet"
-#: time/zic.c:854
+#: time/zic.c:858
msgid "expected continuation line not found"
msgstr "Die erwartete Fortsetzungszeile ist nicht vorhanden"
-#: locale/programs/locfile.c:1032
+#: locale/programs/locfile.c:1044
#, c-format
msgid "failure while writing data for category `%s'"
msgstr "Fehler beim Schreiben der Daten f�r die Kategorie �%s�"
@@ -2236,7 +2246,7 @@ msgstr "Der �From�-Wert eines Sortierelementes mu� ein String sein"
#: locale/programs/linereader.c:328
msgid "garbage at end of character code specification"
-msgstr "Murks am Ende einer Zeichensatz-Spezifikation"
+msgstr "Murks am Ende einer Zeichensatzspezifikation"
#: locale/programs/linereader.c:214
msgid "garbage at end of number"
@@ -2270,21 +2280,21 @@ msgstr ""
msgid "get_myaddress: ioctl (get interface configuration)"
msgstr "get_myaddress: ioctl (Holen der Schnittstellen-Konfiguration)"
-#: time/zic.c:1147
+#: time/zic.c:1151
msgid "illegal CORRECTION field on Leap line"
msgstr "ung�ltiges �CORRECTION�-Feld in der �Leap�-Zeile"
-#: time/zic.c:1151
+#: time/zic.c:1155
msgid "illegal Rolling/Stationary field on Leap line"
msgstr "ung�ltiges �Rolling/Stationary�-Feld in der �Leap�-Zeile"
#: locale/programs/ld-collate.c:1770
msgid "illegal character constant in string"
-msgstr "Ung�ltige Zeichen-Konstante in der Zeichenkette"
+msgstr "Ung�ltige Zeichenkonstante in der Zeichenkette"
#: locale/programs/ld-collate.c:1119
msgid "illegal collation element"
-msgstr "Ung�ltiges �collation�-Element"
+msgstr "Ung�ltiges Sortierelement"
#: locale/programs/charmap.c:196
msgid "illegal definition"
@@ -2300,7 +2310,7 @@ msgstr "ung�ltige Escape-Sequenz am Ende der Zeichenkette"
#: locale/programs/charset.c:101
msgid "illegal names for character range"
-msgstr "ung�ltige Namen f�r den Zeichen-Bereich"
+msgstr "ung�ltige Namen f�r den Zeichenbereich"
#: locale/programs/ld-time.c:176
#, c-format
@@ -2343,21 +2353,21 @@ msgstr ""
msgid "incorrectly formatted file"
msgstr "ung�ltig formatierte Datei"
-#: time/zic.c:811
+#: time/zic.c:815
msgid "input line of unknown type"
msgstr "Die Eingabezeile ist von einem unbekannten Typ"
-#: time/zic.c:1760
+#: time/zic.c:1773
msgid "internal error - addtype called with bad isdst"
msgstr ""
"Interner Fehler - �addtype� wurde mit einer ung�ltigen �isdst� aufgerufen"
-#: time/zic.c:1768
+#: time/zic.c:1781
msgid "internal error - addtype called with bad ttisgmt"
msgstr ""
"Interner Fehler - �addtype� wurde mit einem ung�ltigen �ttisgmt� aufgerufen"
-#: time/zic.c:1764
+#: time/zic.c:1777
msgid "internal error - addtype called with bad ttisstd"
msgstr ""
"Interner Fehler - �addtype� wurde mit einem ung�ltigen �ttisstd� aufgerufen"
@@ -2368,43 +2378,43 @@ msgid "internal error in %s, line %u"
msgstr "Interner Fehler in der Datei �%s�, Zeile %u"
# Sollte das nicht UTC sein? -- jh
-#: time/zic.c:1019
+#: time/zic.c:1023
msgid "invalid GMT offset"
msgstr "ung�ltiger GMT-Offset"
-#: time/zic.c:1022
+#: time/zic.c:1026
msgid "invalid abbreviation format"
msgstr "ung�ltiges Abk�rzungsformat"
-#: time/zic.c:1112 time/zic.c:1313 time/zic.c:1327
+#: time/zic.c:1116 time/zic.c:1326 time/zic.c:1340
msgid "invalid day of month"
msgstr "Ung�ltiger Tag des Monats"
-#: time/zic.c:1270
+#: time/zic.c:1279
msgid "invalid ending year"
msgstr "Ung�ltiges Ende-Jahr"
-#: time/zic.c:1084
+#: time/zic.c:1088
msgid "invalid leaping year"
msgstr "Ung�ltiges Schaltjahr"
-#: time/zic.c:1099 time/zic.c:1202
+#: time/zic.c:1103 time/zic.c:1206
msgid "invalid month name"
msgstr "ung�ltiger Monatsname"
-#: time/zic.c:918
+#: time/zic.c:922
msgid "invalid saved time"
msgstr "Ung�ltige gespeicherte Zeit"
-#: time/zic.c:1250
+#: time/zic.c:1255
msgid "invalid starting year"
msgstr "Ung�ltiges Anfangsjahr"
-#: time/zic.c:1128 time/zic.c:1230
+#: time/zic.c:1132 time/zic.c:1235
msgid "invalid time of day"
msgstr "Ung�ltige Tageszeit"
-#: time/zic.c:1318
+#: time/zic.c:1331
msgid "invalid weekday name"
msgstr "ung�ltiger Name f�r einen Wochentag"
@@ -2419,11 +2429,11 @@ msgid "line before ellipsis does not contain definition for character constant"
msgstr ""
"Die Zeile vor einem Auslassungsintervall mu� eine Zeichen-Konstante enthalten"
-#: time/zic.c:791
+#: time/zic.c:795
msgid "line too long"
msgstr "Die Zeile ist zu lang"
-#: locale/programs/localedef.c:285
+#: locale/programs/localedef.c:288
#, c-format
msgid "locale file `%s', used in `copy' statement, not found"
msgstr ""
@@ -2444,12 +2454,12 @@ msgstr "Der Speicher nach dem Ende des allozierten Blockes wurde �berschrieben"
#: locale/programs/ld-collate.c:167 locale/programs/ld-collate.c:173
#: locale/programs/ld-collate.c:177 locale/programs/ld-collate.c:1442
-#: locale/programs/ld-collate.c:1471 locale/programs/locfile.c:962
+#: locale/programs/ld-collate.c:1471 locale/programs/locfile.c:974
#: locale/programs/xmalloc.c:68 posix/getconf.c:250
msgid "memory exhausted"
msgstr "Kein Hauptspeicher mehr verf�gbar"
-#: malloc/obstack.c:462
+#: malloc/obstack.c:466
msgid "memory exhausted\n"
msgstr "Kein Hauptspeicher mehr verf�gbar\n"
@@ -2471,7 +2481,7 @@ msgstr ""
"fehlender �era�-Name in der Zeichenkette %d im �era� Feld in der Kategorie "
"�%s�"
-#: time/zic.c:913
+#: time/zic.c:917
msgid "nameless rule"
msgstr "Regel ohne Name"
@@ -2487,7 +2497,7 @@ msgstr ""
"Kein g�ltiger regul�rer Ausdruck f�r den Eintrag �%s� in der Kategorie �%s�: "
"%s"
-#: time/zic.c:2086
+#: time/zic.c:2099
msgid "no day in month matches rule"
msgstr "Kein Tag des Monats pa�t zur angegebenen Regel"
@@ -2501,9 +2511,9 @@ msgstr ""
"Es d�rfen keine anderen Schl�sselworte angegeben werden, wenn �copy� "
"verwendet wird"
-#: locale/programs/localedef.c:344
+#: locale/programs/localedef.c:347
msgid "no output file produced because warning were issued"
-msgstr "Es wurde keine Ausgabe-Datei erzeugt, weil Warnungen ausgegeben wurden"
+msgstr "Es wurde keine Ausgabedatei erzeugt, weil Warnungen ausgegeben wurden"
#: locale/programs/charmap.c:315 locale/programs/charmap.c:466
#: locale/programs/charmap.c:545
@@ -2548,7 +2558,7 @@ msgstr "Program %lu Version %lu ist bereit und wartet\n"
#: inet/rcmd.c:172
#, c-format
msgid "rcmd: select (setting up stderr): %m\n"
-msgstr "rcmd: select (Vorbereiten der Standard-Fehlerausgabe): %m\n"
+msgstr "rcmd: select (Vorbereiten der Standardfehlerausgabe): %m\n"
#: inet/rcmd.c:104
msgid "rcmd: socket: All ports in use\n"
@@ -2557,13 +2567,13 @@ msgstr "rcmd: Socket: Alle Ports sind zur Zeit belegt\n"
#: inet/rcmd.c:160
#, c-format
msgid "rcmd: write (setting up stderr): %m\n"
-msgstr "rcmd: write (Vorbereiten der Standard-Fehlerausgabe): %m\n"
+msgstr "rcmd: write (Vorbereiten der Standardfehlerausgabe): %m\n"
#: sunrpc/svc_simple.c:83
msgid "registerrpc: out of memory\n"
msgstr "registerrpc: Hauptspeicher ersch�pft\n"
-#: time/zic.c:1821
+#: time/zic.c:1834
msgid "repeated leap second moment"
msgstr "Wiederholung der �Leap�-Sekunde"
@@ -2597,17 +2607,17 @@ msgstr "rpcinfo: Kann den Portmapper nicht erreichen"
msgid "rpcinfo: can't contact portmapper: "
msgstr "rpcinfo: Kann den Portmapper nicht erreichen: "
-#: time/zic.c:704 time/zic.c:706
+#: time/zic.c:708 time/zic.c:710
msgid "same rule name in multiple files"
msgstr "Dieselbe Regel ist in mehreren Dateien enthalten"
#: inet/rcmd.c:175
msgid "select: protocol failure in circuit setup\n"
-msgstr "Select: Protokoll-Fehler im Kreislauf-Setup\n"
+msgstr "Select: Protokollfehler im Verbindungsaufbau\n"
#: inet/rcmd.c:193
msgid "socket: protocol failure in circuit setup\n"
-msgstr "socket: Protokoll-Fehler im Kreislauf-Setup\n"
+msgstr "socket: Protokollfehler im Verbindungsaufbau\n"
#: locale/programs/locfile.c:622
msgid "sorting order `forward' and `backward' are mutually exclusive"
@@ -2617,16 +2627,15 @@ msgstr "Die Anweisungen �forward� und �backward� schlie�en sich aus"
msgid ""
"specification of sorting weight for collation symbol does not make sense"
msgstr ""
-"Die Angabe eines Sortiergewichtes f�r ein �Collation�-Symbol ist nicht "
-"sinnvoll"
+"Die Angabe eines Sortiergewichtes f�r ein Sortiersymbol ist nicht sinnvoll"
-#: time/zic.c:775
+#: time/zic.c:779
msgid "standard input"
-msgstr "Standard-Eingabe"
+msgstr "Standardeingabe"
#: time/zdump.c:268
msgid "standard output"
-msgstr "Standard-Ausgabe"
+msgstr "Standardausgabe"
#: locale/programs/ld-time.c:257
#, c-format
@@ -2635,10 +2644,18 @@ msgstr ""
"Das Start-Datum in der Zeichenkette %d im �era�-Feld der Kategorie �%s� ist "
"ung�ltig"
-#: time/zic.c:1274
+#: time/zic.c:1287
msgid "starting year greater than ending year"
msgstr "Das Start-Jahr ist gr��er als das Ende-Jahr"
+#: time/zic.c:1261 time/zic.c:1285
+msgid "starting year too high to be represented"
+msgstr "Das Startjahr ist zu gro� f�r die Darstellung"
+
+#: time/zic.c:1259 time/zic.c:1283
+msgid "starting year too low to be represented"
+msgstr "Das Startjahr ist zu klein f�r die Darstellung"
+
#: locale/programs/ld-time.c:330
#, c-format
msgid "stopping date is illegal in string %d in `era' field in category `%s'"
@@ -2646,6 +2663,10 @@ msgstr ""
"Das Ende-Datum in der Zeichenkette %d im �era�-Feld in der Kategorie �%s� "
"ist ung�ltig"
+#: sunrpc/svc_run.c:81
+msgid "svc_run: - select failed"
+msgstr "svc_run - �select� ist fehlgeschlagen"
+
#: sunrpc/svc_tcp.c:201 sunrpc/svc_tcp.c:206
msgid "svc_tcp: makefd_xprt: out of memory\n"
msgstr "svc_tcp: makefd_xprt: Hauptspeicher ersch�pft\n"
@@ -2677,14 +2698,18 @@ msgstr "svcudp_create: Problem bei der Erstellung des Sockets"
msgid ""
"symbol for multicharacter collating element `%.*s' duplicates element "
"definition"
-msgstr "Das Symbol f�r das Mehr-Zeichen Collating-Element �%.*s� wiederholt die Element-Definition"
+msgstr ""
+"Das Symbol f�r das Mehr-Zeichen Sortierelement �%.*s� wiederholt die "
+"Elementdefinition"
#: locale/programs/ld-collate.c:1067
#, c-format
msgid ""
"symbol for multicharacter collating element `%.*s' duplicates other element "
"definition"
-msgstr "Das Symbol f�r das 'multicharacter collating'-Element �%.*s� wiederholt eine andere Element-Definition"
+msgstr ""
+"Das Symbol f�r das 'multicharacter' Sortierelement �%.*s� wiederholt eine "
+"andere Elementdefinition"
#: locale/programs/ld-collate.c:1203
#, c-format
@@ -2692,8 +2717,8 @@ msgid ""
"symbol for multicharacter collating element `%.*s' duplicates other symbol "
"definition"
msgstr ""
-"Das Symbol f�r das 'multicharacter collating'-Element �%.*s� wiederholt eine "
-"andere Symbol-Definition"
+"Das Symbol f�r das 'multicharacter' Sortierelement �%.*s� wiederholt eine "
+"andere Symboldefinition"
#: locale/programs/ld-collate.c:1076
#, c-format
@@ -2701,8 +2726,8 @@ msgid ""
"symbol for multicharacter collating element `%.*s' duplicates symbol "
"definition"
msgstr ""
-"Das Symbol f�r das 'multicharacter collating'-Element �%.*s� wiederholt eine "
-"Symbol-Definition"
+"Das Symbol f�r das 'multicharacter' Sortierelement �%.*s� wiederholt eine "
+"Symboldefinition"
#: locale/programs/ld-collate.c:1058 locale/programs/ld-collate.c:1185
#, c-format
@@ -2710,7 +2735,7 @@ msgid ""
"symbol for multicharacter collating element `%.*s' duplicates symbolic name "
"in charset"
msgstr ""
-"Das Symbol f�r das 'multicharacter collating'-Element �%.*s� kollidiert mit "
+"Das Symbol f�r das 'multicharacter' Sortierelement �%.*s� kollidiert mit "
"einem symbolischen Namen in der Zeichensatzbeschreibung"
#: locale/programs/charmap.c:314 locale/programs/charmap.c:348
@@ -2727,11 +2752,11 @@ msgstr "Syntaxfehler in der �order_start�-Anweisung"
#: locale/programs/locfile.c:384
msgid "syntax error in character class definition"
-msgstr "Syntaxfehler in der Zeichenklassen-Definitionsdatei"
+msgstr "Syntaxfehler in der Zeichenklassendefinition"
#: locale/programs/locfile.c:442
msgid "syntax error in character conversion definition"
-msgstr "Syntaxfehler in der Zeichensatz-Umwandlungs-Definition"
+msgstr "Syntaxfehler in der Zeichensatzumwandlungsdefinition"
#: locale/programs/locfile.c:684
msgid "syntax error in collating order definition"
@@ -2772,7 +2797,7 @@ msgstr "Syntaxfehler in der Lokale-Definitionsdatei, Abschnitt �order�"
#: locale/programs/charmap.c:195 locale/programs/charmap.c:211
#, c-format
msgid "syntax error in prolog: %s"
-msgstr "Syntax-Fehler im Prolog: %s"
+msgstr "Syntaxfehler im Prolog: %s"
#: locale/programs/locfile.c:871
msgid "syntax error in time locale definition"
@@ -2786,35 +2811,35 @@ msgstr "Syntaxfehler: nicht in einem Abschnitt der Lokale-Definition"
msgid "this is the first definition"
msgstr "Dies ist die erste Definition"
-#: time/zic.c:1117
+#: time/zic.c:1121
msgid "time before zero"
msgstr "Zeit vor Null"
-#: time/zic.c:1125 time/zic.c:1986 time/zic.c:2005
+#: time/zic.c:1129 time/zic.c:1999 time/zic.c:2018
msgid "time overflow"
msgstr "�berlauf der Zeit"
#: locale/programs/charset.c:44
msgid "too few bytes in character encoding"
-msgstr "Zu wenige Bytes in der Zeichen-Kodierung"
+msgstr "Zu wenige Bytes in der Zeichenkodierung"
#: locale/programs/charset.c:46
msgid "too many bytes in character encoding"
-msgstr "Zu viele Bytes in der Zeichen-Kodierung"
+msgstr "Zu viele Bytes in der Zeichenkodierung"
#: locale/programs/locales.h:72
msgid "too many character classes defined"
msgstr "Zu viele Zeichenklassen definiert"
-#: time/zic.c:1815
+#: time/zic.c:1828
msgid "too many leap seconds"
msgstr "Zu viele Schaltsekunden"
-#: time/zic.c:1787
+#: time/zic.c:1800
msgid "too many local time types"
-msgstr "Zu viele lokale Zeit-Typen"
+msgstr "Zu viele Ortszeittypen"
-#: time/zic.c:1741
+#: time/zic.c:1754
msgid "too many transitions?!"
msgstr "Zu viele �berg�nge?!"
@@ -2822,7 +2847,7 @@ msgstr "Zu viele �berg�nge?!"
msgid "too many weights"
msgstr "Zu viele Sortiergewichte"
-#: time/zic.c:2109
+#: time/zic.c:2122
msgid "too many, or too long, time zone abbreviations"
msgstr "Zu viele oder zu lange Abk�rzungen f�r Zeitzonen"
@@ -2839,7 +2864,7 @@ msgstr "Schwierigkeiten bei der Antwort an das Programm %d\n"
msgid "two lines in a row containing `...' are not allowed"
msgstr "Zwei aufeinanderfolgende Zeilen mit �...� sind nicht erlaubt"
-#: time/zic.c:1281
+#: time/zic.c:1294
msgid "typed single year"
msgstr "Ein einzelnes Jahr angegeben"
@@ -2879,7 +2904,7 @@ msgstr "Unbekanntes Set �%s�"
msgid "unknown symbol `%.*s': line ignored"
msgstr "Unbekanntes Symbol �%.*s�: Die Zeile wurde ignoriert"
-#: time/zic.c:747
+#: time/zic.c:751
msgid "unruly zone"
msgstr "Zeitzone ohne Regeln"
@@ -2897,13 +2922,13 @@ msgstr "Der symbolische Name wird nicht beendet"
#: locale/programs/ld-collate.c:1688
msgid "unterminated weight name"
-msgstr "Der Name des Sortier-Gewichtes wird nicht beendet"
+msgstr "Der Name des Sortiergewichtes wird nicht beendet"
#: locale/programs/charset.c:119
msgid "upper limit in range is not smaller then lower limit"
msgstr "Das obere Ende des Intervalls ist nicht kleiner als das untere Ende"
-#: time/zic.c:2052
+#: time/zic.c:2065
msgid "use of 2/29 in non leap-year"
msgstr "Der 29. Februar wurde in einem nicht-Schaltjahr verwendet"
@@ -2954,13 +2979,17 @@ msgstr ""
msgid "values for field `%s' in category `%s' must not be zero"
msgstr "Der Eintrag im Feld �%s� in der Kategorie �%s� darf nicht Null sein"
-#: login/utmp_file.c:84
+#: login/utmp_file.c:76
msgid "while opening UTMP file"
msgstr "beim �ffnen der UTMP-Datei"
#: catgets/gencat.c:989
msgid "while opening old catalog file"
-msgstr "beim �ffnen der alten Katalog-Datei"
+msgstr "beim �ffnen der alten Katalogdatei"
+
+#: locale/programs/locale.c:341
+msgid "while preparing output"
+msgstr "beim Aufbereiten der Ausgabe"
#: db/makedb.c:354
msgid "while reading database"
@@ -2968,29 +2997,29 @@ msgstr "beim Lesen der Datenbank"
#: db/makedb.c:316
msgid "while writing data base file"
-msgstr "beim Schreiben der Datenbank-Datei"
+msgstr "beim Schreiben der Datenbankdatei"
#: db/makedb.c:142
msgid "wrong number of arguments"
msgstr "Falsche Anzahl an Argumenten"
-#: time/zic.c:1075
+#: time/zic.c:1079
msgid "wrong number of fields on Leap line"
msgstr "Falsche Anzahl an Feldern in der Leap-Zeile"
-#: time/zic.c:1166
+#: time/zic.c:1170
msgid "wrong number of fields on Link line"
msgstr "Falsche Anzahl der Felder in der Link-Zeile"
-#: time/zic.c:909
+#: time/zic.c:913
msgid "wrong number of fields on Rule line"
msgstr "Falsche Anzahl der Felder in der Rule-Zeile"
-#: time/zic.c:979
+#: time/zic.c:983
msgid "wrong number of fields on Zone continuation line"
msgstr "Falsche Anzahl der Felder in der Zeitzonen-Fortsetzungszeile"
-#: time/zic.c:937
+#: time/zic.c:941
msgid "wrong number of fields on Zone line"
msgstr "Falsche Anzahl an Feldern in der Zone-Zeile"
@@ -3001,4 +3030,3 @@ msgstr "yp_update: Kann den Rechnername nicht in einen Netzname umwandeln\n"
#: nis/ypclnt.c:823
msgid "yp_update: cannot get server address\n"
msgstr "yp_update: Kann die Adresse des Servers nicht finden\n"
-
diff --git a/po/sv.po b/po/sv.po
index bd573d2d4a..ef9726c71c 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,12 +1,12 @@
# GNU libc message catalog for swedish
-# Copyright (C) 1996 Free Software Foundation, Inc.
+# Copyright � 1996 Free Software Foundation, Inc.
# Jan Dj�rv <Jan.Djarv@mbox200.swipnet.se>, 1996.
# $Revision$
#
msgid ""
msgstr ""
-"Project-Id-Version: libc 1.99\n"
-"POT-Creation-Date: 1996-12-03 13:50+0100\n"
+"Project-Id-Version: libc 2.0.5\n"
+"POT-Creation-Date: 1997-08-21 04:13+0200\n"
"PO-Revision-Date: $Date$\n"
"Last-Translator: Jan Dj�rv <Jan.Djarv@mbox200.swipnet.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -34,26 +34,26 @@ msgstr " rpcinfo [ -n portnr ] -t v�rd prognr [ versnr ]\n"
msgid " program vers proto port\n"
msgstr " program vers proto port\n"
-#: time/zic.c:424
+#: time/zic.c:421
#, c-format
msgid " (rule from \"%s\", line %d)"
msgstr " (regel fr�n \"%s\", rad %d)"
-#: locale/programs/ld-collate.c:360 locale/programs/ld-ctype.c:1234
+#: locale/programs/ld-collate.c:363 locale/programs/ld-ctype.c:1242
msgid " done\n"
msgstr " klar\n"
-#: time/zic.c:421
+#: time/zic.c:418
#, c-format
msgid "\"%s\", line %d: %s"
msgstr "\"%s\", rad %d: %s"
-#: time/zic.c:945
+#: time/zic.c:947
#, c-format
msgid "\"Zone %s\" line and -l option are mutually exclusive"
msgstr "\"Zone %s\"-rad och flaggan -l �r �msesidigt uteslutande"
-#: time/zic.c:953
+#: time/zic.c:955
#, c-format
msgid "\"Zone %s\" line and -p option are mutually exclusive"
msgstr "\"Zone %s\"-rad och flaggan -p �r �msesidigt uteslutande"
@@ -78,7 +78,7 @@ msgstr "%s%s%s:%u: %s%sOv�ntat fel: %s.\n"
msgid "%s%sUnknown signal %d\n"
msgstr "%s%sOk�nd signal %d\n"
-#: time/zic.c:2139
+#: time/zic.c:2185
#, c-format
msgid "%s: %d did not sign extend correctly\n"
msgstr "%s: %d teckenexpanderades inte korrekt\n"
@@ -88,137 +88,142 @@ msgstr "%s: %d teckenexpanderades inte korrekt\n"
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"
-#: time/zic.c:1430
+#: time/zic.c:1456
#, c-format
msgid "%s: Can't create %s: %s\n"
msgstr "%s: Kan inte skapa %s: %s\n"
-#: time/zic.c:2118
+#: time/zic.c:2163
#, c-format
msgid "%s: Can't create directory %s: %s\n"
msgstr "%s: Kan inte skapa katalog %s: %s\n"
-#: time/zic.c:612
+#: time/zic.c:610
#, 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"
-#: time/zic.c:783
+#: time/zic.c:784
#, c-format
msgid "%s: Can't open %s: %s\n"
msgstr "%s: Kan inte �ppna %s: %s\n"
-#: time/zic.c:851
+#: time/zic.c:1446
+#, c-format
+msgid "%s: Can't remove %s: %s\n"
+msgstr "%s: Kan inte ta bort %s: %s\n"
+
+#: time/zic.c:853
#, c-format
msgid "%s: Error closing %s: %s\n"
msgstr "%s: Fel vid st�ngning av %s: %s\n"
-#: time/zic.c:845
+#: time/zic.c:846
#, c-format
msgid "%s: Error reading %s\n"
msgstr "%s: Fel vid l�sning fr�n %s\n"
-#: time/zic.c:1494
+#: time/zic.c:1520
#, c-format
msgid "%s: Error writing %s\n"
msgstr "%s: Fel vid skrivning till %s\n"
-#: time/zdump.c:258
+#: time/zdump.c:266
#, c-format
msgid "%s: Error writing standard output "
msgstr "%s: Fel vid skrivning till standard ut "
-#: time/zic.c:830
+#: time/zic.c:831
#, 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"
-#: time/zic.c:362
+#: time/zic.c:359
#, c-format
msgid "%s: Memory exhausted: %s\n"
msgstr "%s: Minnet slut: %s\n"
-#: time/zic.c:527
+#: time/zic.c:524
#, c-format
msgid "%s: More than one -L option specified\n"
msgstr "%s: Flaggan -L given mer �n en g�ng\n"
-#: time/zic.c:487
+#: time/zic.c:484
#, c-format
msgid "%s: More than one -d option specified\n"
-msgstr "%s: Flagga -d given mer �n en g�ng\n"
+msgstr "%s: Flaggan -d given mer �n en g�ng\n"
-#: time/zic.c:497
+#: time/zic.c:494
#, c-format
msgid "%s: More than one -l option specified\n"
msgstr "%s: Flaggan -l given mer �n en g�ng\n"
-#: time/zic.c:507
+#: time/zic.c:504
#, c-format
msgid "%s: More than one -p option specified\n"
msgstr "%s: Flaggan -p given mer �n en g�ng\n"
-#: time/zic.c:517
+#: time/zic.c:514
#, c-format
msgid "%s: More than one -y option specified\n"
msgstr "%s: Flaggan -y given mer �n en g�ng\n"
-#: time/zic.c:1845
+#: time/zic.c:1885
#, c-format
msgid "%s: command was '%s', result was %d\n"
msgstr "%s: kommandot var \"%s\", resultatet blev %d\n"
-#: locale/programs/charmap.c:593 locale/programs/locfile.c:878
+#: locale/programs/charmap.c:593 locale/programs/locfile.c:900
#, c-format
msgid "%s: error in state machine"
msgstr "%s: fel i tillst�ndsmaskin"
-#: posix/getopt.c:687
+#: posix/getopt.c:783
#, c-format
msgid "%s: illegal option -- %c\n"
msgstr "%s: otill�ten flagga -- %c\n"
-#: posix/getopt.c:690
+#: posix/getopt.c:786
#, c-format
msgid "%s: invalid option -- %c\n"
msgstr "%s: ogiltig flagga -- %c\n"
-#: posix/getopt.c:611
+#: posix/getopt.c:707
#, 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:582
+#: posix/getopt.c:678
#, c-format
msgid "%s: option `%s' is ambiguous\n"
msgstr "%s: flaggan \"%s\" �r tvetydig\n"
-#: posix/getopt.c:628 posix/getopt.c:801
+#: posix/getopt.c:724 posix/getopt.c:897
#, c-format
msgid "%s: option `%s' requires an argument\n"
msgstr "%s: flaggan \"%s\" beh�ver ett argument\n"
-#: posix/getopt.c:606
+#: posix/getopt.c:702
#, c-format
msgid "%s: option `--%s' doesn't allow an argument\n"
msgstr "%s: flaggan \"--%s\" tar inget argument\n"
-#: posix/getopt.c:786
+#: posix/getopt.c:881
#, 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:767
+#: posix/getopt.c:863
#, c-format
msgid "%s: option `-W %s' is ambiguous\n"
msgstr "%s: flaggan \"-W %s\" �r tvetydig\n"
-#: posix/getopt.c:721 posix/getopt.c:850
+#: posix/getopt.c:816 posix/getopt.c:946
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr "%s: flaggan beh�ver ett argument -- %c\n"
-#: time/zic.c:837 time/zic.c:1248 time/zic.c:1268
+#: time/zic.c:838 time/zic.c:1251 time/zic.c:1275
#, c-format
msgid "%s: panic: Invalid l_value %d\n"
msgstr "%s: panik: ogiltigt l_value %d\n"
@@ -228,17 +233,17 @@ msgstr "%s: panik: ogiltigt l_value %d\n"
msgid "%s: premature end of file"
msgstr "%s: f�r tidigt filslut"
-#: posix/getopt.c:661
+#: posix/getopt.c:757
#, c-format
msgid "%s: unrecognized option `%c%s'\n"
msgstr "%s: ok�nd flagga \"%c%s\"\n"
-#: posix/getopt.c:657
+#: posix/getopt.c:753
#, c-format
msgid "%s: unrecognized option `--%s'\n"
msgstr "%s: ok�nd flagga \"--%s\"\n"
-#: time/zic.c:446
+#: time/zic.c:443
#, c-format
msgid ""
"%s: usage is %s [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] [ -d "
@@ -249,7 +254,7 @@ msgstr ""
"katalog ]\n"
"\t[ -L skottsekunder ] [ -y �rkontrollprogram ] [ filnamn ... ]\n"
-#: time/zdump.c:165
+#: time/zdump.c:174
#, c-format
msgid "%s: usage is %s [ -v ] [ -c cutoff ] zonename ...\n"
msgstr "%s: anv�ndning �r %s [ -v ] [ -c gr�ns ] zonnamn ...\n"
@@ -263,7 +268,7 @@ msgstr "(ok�nt fel vid �kthetskontroll - %d)"
msgid "(unknown)"
msgstr "(ok�nt)"
-#: catgets/gencat.c:253
+#: catgets/gencat.c:254
msgid "*standard input*"
msgstr "*standard in*"
@@ -271,21 +276,21 @@ msgstr "*standard in*"
msgid ".lib section in a.out corrupted"
msgstr ".lib-sektion i a.out korrupt"
-#: inet/rcmd.c:358
+#: inet/rcmd.c:363
msgid ".rhosts fstat failed"
msgstr "misslyckades ta status (fstat) p� .rhosts"
-#: inet/rcmd.c:354
+#: inet/rcmd.c:359
msgid ".rhosts lstat failed"
msgstr "misslyckades ta status (lstat) p� .rhosts"
-#: inet/rcmd.c:356
+#: inet/rcmd.c:361
msgid ".rhosts not regular file"
msgstr ".rhosts �r inte en normal fil"
-#: inet/rcmd.c:362
+#: inet/rcmd.c:367
msgid ".rhosts writeable by other than owner"
-msgstr ".rhosts kan skrivas av andra �n �garen"
+msgstr ".rhosts �r skrivbar f�r andra �n �garen"
#: sunrpc/clnt_perr.c:112 sunrpc/clnt_perr.c:133
#, c-format
@@ -296,12 +301,12 @@ msgstr "; undre version = %lu, �vre version = %lu"
msgid "; why = "
msgstr "; varf�r = "
-#: locale/programs/ld-ctype.c:326
+#: locale/programs/ld-ctype.c:331
#, 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:317
+#: locale/programs/ld-ctype.c:321
#, c-format
msgid "<SP> character not in class `%s'"
msgstr "<SP>-tecknet �r inte i klass \"%s\""
@@ -313,6 +318,10 @@ msgstr "<SP>-tecknet �r inte i klass \"%s\""
msgid "?"
msgstr "?"
+#: sysdeps/unix/sysv/linux/siglist.h:27
+msgid "Aborted"
+msgstr "Avbruten (SIGABRT)"
+
#: stdio-common/../sysdeps/gnu/errlist.c:762
msgid "Accessing a corrupted shared library"
msgstr "�ppnar ett korrupt delat bibliotek"
@@ -320,7 +329,7 @@ msgstr "�ppnar ett korrupt delat bibliotek"
#. TRANS The requested socket address is already in use. @xref{Socket Addresses}.
#: stdio-common/../sysdeps/gnu/errlist.c:354
msgid "Address already in use"
-msgstr "Adressen anv�nds redan"
+msgstr "Adressen upptagen"
#. 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}.
@@ -332,6 +341,8 @@ msgstr "Adressfamiljen st�ds inte av protokollet"
msgid "Advertise error"
msgstr "Annonseringsfel"
+#: stdio-common/../sysdeps/unix/siglist.c:43
+#: sysdeps/unix/sysv/linux/siglist.h:33
msgid "Alarm clock"
msgstr "Alarmklocka"
@@ -377,6 +388,11 @@ msgstr "Felaktigt format p� typsnittsfil"
msgid "Bad message"
msgstr "Felaktigt meddelande"
+#: stdio-common/../sysdeps/unix/siglist.c:41
+#: sysdeps/unix/sysv/linux/siglist.h:56
+msgid "Bad system call"
+msgstr "Felaktigt systemanrop"
+
#. 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.
@@ -384,7 +400,7 @@ msgstr "Felaktigt meddelande"
msgid "Block device required"
msgstr "Blockspecialfil kr�vs"
-#: sunrpc/pmap_rmt.c:337
+#: sunrpc/pmap_rmt.c:338
msgid "Broadcast select problem"
msgstr "Problem med \"select\" i uts�ndning"
@@ -394,32 +410,37 @@ msgstr "Problem med \"select\" i uts�ndning"
#. 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:222
+#: stdio-common/../sysdeps/unix/siglist.c:42
+#: sysdeps/unix/sysv/linux/siglist.h:32
msgid "Broken pipe"
msgstr "Brutet r�r"
+#: stdio-common/../sysdeps/unix/siglist.c:39
+#: sysdeps/unix/sysv/linux/siglist.h:30
msgid "Bus error"
msgstr "Bussfel"
+#: sysdeps/unix/sysv/linux/siglist.h:43
msgid "CPU time limit exceeded"
-msgstr "begr�nsning av CPU-tid �verskriden"
+msgstr "Begr�nsning av CPU-tid �verskriden"
#: stdio-common/../sysdeps/gnu/errlist.c:758
msgid "Can not access a needed shared library"
msgstr "Kan inte komma �t ett n�dv�ndigt delat bibliotek"
-#: nis/ypclnt.c:637
+#: nis/ypclnt.c:695
msgid "Can't bind to server which serves this domain"
msgstr "Kan inte ansluta till betj�nt som betj�nar denna dom�n"
-#: nis/ypclnt.c:649
+#: nis/ypclnt.c:707
msgid "Can't communicate with portmapper"
msgstr "Kan inte kommunicera med portmapper"
-#: nis/ypclnt.c:651
+#: nis/ypclnt.c:709
msgid "Can't communicate with ypbind"
msgstr "Kan inte kommunicera med ypbind"
-#: nis/ypclnt.c:653
+#: nis/ypclnt.c:711
msgid "Can't communicate with ypserv"
msgstr "Kan inte kommunicera med ypserv"
@@ -444,7 +465,7 @@ msgstr "Kan inte skapa uttag (socket) f�r uts�ndnings-rpc"
msgid "Cannot exec a shared library directly"
msgstr "Kan inte k�ra ett delat bibliotek direkt"
-#: sunrpc/pmap_rmt.c:349
+#: sunrpc/pmap_rmt.c:350
msgid "Cannot receive reply to broadcast"
msgstr "Kan inte ta emot svar p� uts�ndning"
@@ -463,14 +484,16 @@ msgstr "Kan inte skicka uts�ndningspaket"
#: sunrpc/pmap_rmt.c:261
msgid "Cannot set socket option SO_BROADCAST"
-msgstr "Kan inte s�tta uttagsflaggan (socket) SO_BROADCAST"
+msgstr "Kan inte s�tta uttagsflaggan (socket option) SO_BROADCAST"
#: stdio-common/../sysdeps/gnu/errlist.c:658
msgid "Channel number out of range"
msgstr "Kanalnummer utanf�r giltigt intervall"
+#: stdio-common/../sysdeps/unix/siglist.c:49
+#: sysdeps/unix/sysv/linux/siglist.h:39
msgid "Child exited"
-msgstr "Barnet avslutade"
+msgstr "Barnstatus �ndrad"
#: sunrpc/clnt_perr.c:286
msgid "Client credential too weak"
@@ -485,11 +508,11 @@ msgstr "Kommunikationsfel vid s�ndning"
msgid "Computer bought the farm"
msgstr "Datorn packade ihop"
-#: locale/programs/ld-ctype.c:1197
+#: locale/programs/ld-ctype.c:1204
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:327
+#: locale/programs/ld-collate.c:329
msgid "Computing table size for collation information might take a while..."
msgstr ""
"Att ber�kna tabellstorlek f�r kollationeringsinformation kan ta ett tag..."
@@ -513,23 +536,29 @@ msgstr "F�rbindelse borttagen av kommunikationspartnern"
msgid "Connection timed out"
msgstr "F�rbindelsens tid tog slut"
+#: stdio-common/../sysdeps/unix/siglist.c:48
+#: sysdeps/unix/sysv/linux/siglist.h:38
msgid "Continued"
-msgstr "Forts�tter"
+msgstr "�terupptagen"
-#: catgets/gencat.c:169 db/makedb.c:120 locale/programs/locale.c:187
-#: locale/programs/localedef.c:177
+#: catgets/gencat.c:169 db/makedb.c:120 locale/programs/locale.c:191
+#: locale/programs/localedef.c:180
#, c-format
msgid ""
"Copyright (C) %s Free Software Foundation, Inc.\n"
"This is free software; see the source for copying conditions. There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
msgstr ""
-"Copyright (C) %s Free Software Foundation, Inc.\n"
+"Copyright � %s Free Software Foundation, Inc.\n"
"Detta �r fri programvara; se k�llkoden f�r kopieringsvillkor. Det finns\n"
"INGEN garanti; inte ens f�r S�LJBARHET eller L�MPLIGHET F�R N�GOT SPECIELLT\n"
"�NDAM�L.\n"
-#: nis/ypclnt.c:663
+#: stdio-common/../sysdeps/unix/siglist.c:53
+msgid "Cputime limit exceeded"
+msgstr "Begr�nsning av CPU-tid �verskriden"
+
+#: nis/ypclnt.c:721
msgid "Database is busy"
msgstr "Databasen �r upptagen"
@@ -571,10 +600,15 @@ msgstr "Katalog inte tom"
msgid "Disc quota exceeded"
msgstr "Diskkvot �verskriden"
-#: nis/ypclnt.c:709
+#: nis/ypclnt.c:767
msgid "Domain not bound"
msgstr "Dom�n inte bunden"
+#: stdio-common/../sysdeps/unix/siglist.c:36
+#: sysdeps/unix/sysv/linux/siglist.h:53
+msgid "EMT trap"
+msgstr "Emulatorf�lla"
+
#: sunrpc/clnt_perr.c:254
#, c-format
msgid "Error %d"
@@ -598,7 +632,7 @@ msgstr "V�xeln full"
msgid "Exec format error"
msgstr "Formatfel p� k�rbar fil"
-#: locale/programs/localedef.c:213
+#: locale/programs/localedef.c:216
msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'"
msgstr "FATALT: systemet definierar inte \"_POSIX2_LOCALEDEF\""
@@ -627,6 +661,7 @@ msgstr "Fill�sning gav d�dl�ge"
msgid "File name too long"
msgstr "Filnamn f�r l�ngt"
+#: sysdeps/unix/sysv/linux/siglist.h:44
msgid "File size limit exceeded"
msgstr "Begr�nsning av filstorlek �verskriden"
@@ -635,8 +670,14 @@ msgstr "Begr�nsning av filstorlek �verskriden"
msgid "File too large"
msgstr "Fil f�r stor"
+#: stdio-common/../sysdeps/unix/siglist.c:54
+msgid "Filesize limit exceeded"
+msgstr "Begr�nsning av filstorlek �verskriden"
+
+#: stdio-common/../sysdeps/unix/siglist.c:37
+#: sysdeps/unix/sysv/linux/siglist.h:28
msgid "Floating point exception"
-msgstr "Flyttalsber�kningsfel"
+msgstr "Aritmetiskt fel"
#. 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
@@ -650,8 +691,10 @@ msgstr "Funktion inte implementerad"
msgid "Gratuitous error"
msgstr "Omotiverat fel"
+#: stdio-common/../sysdeps/unix/siglist.c:30
+#: sysdeps/unix/sysv/linux/siglist.h:22
msgid "Hangup"
-msgstr "L�gg p�"
+msgstr "Avringd"
#. TRANS The remote host for a requested network connection is down.
#: stdio-common/../sysdeps/gnu/errlist.c:457
@@ -662,19 +705,27 @@ msgstr "V�rddator �r nere"
msgid "Host name lookup failure"
msgstr "Uppslagning av v�rdnamn misslyckades"
+#: stdio-common/../sysdeps/unix/siglist.c:52
+#: sysdeps/unix/sysv/linux/siglist.h:42
msgid "I/O possible"
msgstr "I/O m�jligt"
+#: stdio-common/../sysdeps/unix/siglist.c:35
msgid "IOT trap"
-msgstr "IOT f�lla"
+msgstr "IOT-f�lla"
#: stdio-common/../sysdeps/gnu/errlist.c:614
msgid "Identifier removed"
msgstr "Identifierare borttagen"
+#: sysdeps/unix/sysv/linux/siglist.h:25
msgid "Illegal Instruction"
msgstr "Otill�ten instruktion"
+#: stdio-common/../sysdeps/unix/siglist.c:33
+msgid "Illegal instruction"
+msgstr "Otill�ten instruktion"
+
#. TRANS Invalid seek operation (such as on a pipe).
#: stdio-common/../sysdeps/gnu/errlist.c:201
msgid "Illegal seek"
@@ -705,23 +756,29 @@ msgstr "Ol�mplig \"ioctl\" f�r enhet"
msgid "Inappropriate operation for background process"
msgstr "Operation f�r bakgrundsprocess ol�mplig"
+#: sysdeps/unix/sysv/linux/siglist.h:62
+msgid "Information request"
+msgstr "Informationsbeg�ran"
+
#. TRANS Input/output error; usually used for physical read or write errors.
#: stdio-common/../sysdeps/gnu/errlist.c:40
msgid "Input/output error"
msgstr "In/ut-fel"
-#: nis/ypclnt.c:643
+#: nis/ypclnt.c:701
msgid "Internal NIS error"
msgstr "Internt NIS-fel"
-#: nis/ypclnt.c:707
+#: nis/ypclnt.c:765
msgid "Internal ypbind error"
msgstr "Internt ypbind-fel"
+#: stdio-common/../sysdeps/unix/siglist.c:31
+#: sysdeps/unix/sysv/linux/siglist.h:23
msgid "Interrupt"
-msgstr "Avbrutet"
+msgstr "Avbruten (SIGINT)"
-#. TRANS Interrupted function call; an asynchronous signal occured and prevented
+#. TRANS Interrupted function call; an asynchronous signal occurred and prevented
#. TRANS completion of the call. When this happens, you should try the call
#. TRANS again.
#. TRANS
@@ -742,11 +799,11 @@ msgstr "Avbrutet systemanrop borde omstartas"
msgid "Invalid argument"
msgstr "Ogiltigt argument"
-#: posix/regex.c:946
+#: posix/regex.c:978
msgid "Invalid back reference"
msgstr "Ogiltig bak�treferens"
-#: posix/regex.c:944
+#: posix/regex.c:976
msgid "Invalid character class name"
msgstr "Ogiltigt teckenklassnamn"
@@ -758,13 +815,13 @@ msgstr "Ogiltiga klientreferenser"
msgid "Invalid client verifier"
msgstr "Ogiltig klientverifierare"
-#: posix/regex.c:943
+#: posix/regex.c:975
msgid "Invalid collation character"
msgstr "Ogiltigt kollationeringstecken"
-#: posix/regex.c:950
+#: posix/regex.c:982
msgid "Invalid content of \\{\\}"
-msgstr "Ogiltig anv�ndning av \\{\\}"
+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
@@ -781,17 +838,17 @@ msgstr "Ogiltig v�xel"
#. TRANS or an incomplete sequence of bytes or the given wide character is invalid.
#: stdio-common/../sysdeps/gnu/errlist.c:567
msgid "Invalid or incomplete multibyte or wide character"
-msgstr "Ogiltig eller inte komplett flerbyte eller brett tecken"
+msgstr "Ogiltig eller inte komplett flerbyte- eller brett tecken"
-#: posix/regex.c:953
+#: posix/regex.c:985
msgid "Invalid preceding regular expression"
msgstr "Ogiltigt f�reg�ende regulj�rt uttryck"
-#: posix/regex.c:951
+#: posix/regex.c:983
msgid "Invalid range end"
msgstr "Ogiltigt intervallslut"
-#: posix/regex.c:942
+#: posix/regex.c:974
msgid "Invalid regular expression"
msgstr "Ogiltigt regulj�rt uttryck"
@@ -821,6 +878,8 @@ msgstr "�r en katalog"
msgid "Is a named type file"
msgstr "�r en namngiven filtyp"
+#: stdio-common/../sysdeps/unix/siglist.c:38
+#: sysdeps/unix/sysv/linux/siglist.h:29
msgid "Killed"
msgstr "D�dad"
@@ -846,13 +905,13 @@ msgstr "L�nken har brutits"
#: stdio-common/../sysdeps/gnu/errlist.c:674
msgid "Link number out of range"
-msgstr "L�nktal utanf�r giltigt omr�de"
+msgstr "L�nkantal utanf�r giltigt omr�de"
-#: nis/ypclnt.c:655
+#: nis/ypclnt.c:713
msgid "Local domain name not set"
msgstr "Lokalt dom�nnamn inte satt"
-#: nis/ypclnt.c:645
+#: nis/ypclnt.c:703
msgid "Local resource allocation failure"
msgstr "Allokeringsfel f�r lokal resurs"
@@ -860,7 +919,7 @@ msgstr "Allokeringsfel f�r lokal resurs"
msgid "Machine is not on the network"
msgstr "Maskinen finns inte p� n�tverket"
-#: posix/regex.c:952
+#: posix/regex.c:984
msgid "Memory exhausted"
msgstr "Minnet slut"
@@ -874,11 +933,11 @@ msgstr "Meddelandet f�r l�ngt"
msgid "Multihop attempted"
msgstr "Flerhopp f�rs�ktes"
-#: nis/ypclnt.c:659
+#: nis/ypclnt.c:717
msgid "NIS client/server version mismatch - can't supply service"
-msgstr "NIS klient/betj�nt versionsskillnad - kan inte betj�na"
+msgstr "NIS versionsskillnad klient/betj�nt - kan inte betj�na"
-#: nis/ypclnt.c:657
+#: nis/ypclnt.c:715
msgid "NIS map data base is bad"
msgstr "NIS tabelldatabas �r felaktig"
@@ -939,7 +998,7 @@ msgstr "Inga barnprocesser"
#: stdio-common/../sysdeps/gnu/errlist.c:622
msgid "No data available"
-msgstr "Data otillg�ngligt"
+msgstr "Inga data tillg�ngliga"
#. 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
@@ -949,7 +1008,7 @@ msgstr "Data otillg�ngligt"
msgid "No locks available"
msgstr "Inga l�s tillg�ngliga"
-#: posix/regex.c:941
+#: posix/regex.c:973
msgid "No match"
msgstr "Ingen tr�ff"
@@ -957,11 +1016,11 @@ msgstr "Ingen tr�ff"
msgid "No message of desired type"
msgstr "Inget meddelande av �nskad typ"
-#: nis/ypclnt.c:647
+#: nis/ypclnt.c:705
msgid "No more records in map database"
msgstr "Inga fler poster i tabelldatabasen"
-#: posix/regex.c:5204
+#: posix/regex.c:5434
msgid "No previous regular expression"
msgstr "Inget f�reg�ende regulj�rt uttryck"
@@ -987,11 +1046,11 @@ msgstr "Enheten �r full"
msgid "No such file or directory"
msgstr "Filen eller katalogen finns inte"
-#: nis/ypclnt.c:641
+#: nis/ypclnt.c:699
msgid "No such key in map"
msgstr "Ingen s�dan nyckel i tabellen"
-#: nis/ypclnt.c:639
+#: nis/ypclnt.c:697
msgid "No such map in server's domain"
msgstr "Ingen s�dan tabell i betj�ntens dom�n"
@@ -1029,7 +1088,7 @@ msgstr "Numeriskt resultat �r utanf�r giltigt omr�de"
msgid "Object is remote"
msgstr "�r ett fj�rrobjekt"
-#: time/zic.c:1939
+#: time/zic.c:1979
msgid "Odd number of quotation marks"
msgstr "Oj�mnt antal citationstecken"
@@ -1091,19 +1150,22 @@ msgid "Package not installed"
msgstr "Paketet �r inte installerat"
#. TRANS Permission denied; the file permissions do not allow the attempted operation.
-#: nis/ypclnt.c:661 stdio-common/../sysdeps/gnu/errlist.c:96
+#: nis/ypclnt.c:719 stdio-common/../sysdeps/gnu/errlist.c:96
msgid "Permission denied"
msgstr "�tkomst nekas"
+#: sysdeps/unix/sysv/linux/siglist.h:64
msgid "Power failure"
-msgstr "Sp�nningsfall"
+msgstr "Str�mavbrott"
-#: posix/regex.c:954
+#: posix/regex.c:986
msgid "Premature end of regular expression"
msgstr "F�r tidigt slut p� regulj�rt uttryck"
+#: stdio-common/../sysdeps/unix/siglist.c:56
+#: sysdeps/unix/sysv/linux/siglist.h:46
msgid "Profiling timer expired"
-msgstr "Profileringstiden tog slut"
+msgstr "Profileringsklocka"
#: stdio-common/../sysdeps/gnu/errlist.c:678
msgid "Protocol driver not attached"
@@ -1136,8 +1198,10 @@ msgstr "Protokollet st�ds ej"
msgid "Protocol wrong type for socket"
msgstr "Fel protokolltyp f�r uttag (socket)"
+#: stdio-common/../sysdeps/unix/siglist.c:32
+#: sysdeps/unix/sysv/linux/siglist.h:24
msgid "Quit"
-msgstr "Sluta"
+msgstr "L�mnad"
#: stdio-common/../sysdeps/gnu/errlist.c:742
msgid "RFS specific error"
@@ -1148,7 +1212,7 @@ msgstr "RFS-specifikt fel"
msgid "RPC bad procedure for program"
msgstr "RPC d�lig procedur f�r program"
-#: nis/ypclnt.c:635
+#: nis/ypclnt.c:693
msgid "RPC failure on NIS operation"
msgstr "RPC-fel vid NIS-operation"
@@ -1214,7 +1278,7 @@ msgstr "RPC: Programmet otillg�ngligt"
#: sunrpc/clnt_perr.c:183
msgid "RPC: Program/version mismatch"
-msgstr "RPC: Program/version-inkompabilitet"
+msgstr "RPC: Program/version-inkompatibilitet"
#: sunrpc/clnt_perr.c:189
msgid "RPC: Remote system error"
@@ -1257,7 +1321,7 @@ msgstr "RTLD_NEXT anv�nds i kod som inte �r dynamiskt laddad"
msgid "Read-only file system"
msgstr "Filsystemet endast l�sbart"
-#: posix/regex.c:955
+#: posix/regex.c:987
msgid "Regular expression too big"
msgstr "Regulj�rt uttryck f�r stort"
@@ -1273,12 +1337,15 @@ msgstr "Fj�rradress �ndrades"
msgid "Remove password or make file unreadable by others."
msgstr "Ta bort l�senord eller g�r filen ol�sbar f�r andra"
-#: catgets/gencat.c:224 db/makedb.c:227 locale/programs/locale.c:257
-#: locale/programs/localedef.c:408
-msgid "Report bugs to <bug-glibc@prep.ai.mit.edu>.\n"
-msgstr "Rapportera fel till <bug-glibc@prep.ai.mit.edu>.\n"
+#: catgets/gencat.c:224 db/makedb.c:227 locale/programs/locale.c:262
+#: locale/programs/localedef.c:415
+msgid "Report bugs using the `glibcbug' script to <bugs@gnu.ai.mit.edu>.\n"
+msgstr ""
+"Rapportera fel med programmet \"glibcbug\" till "
+"<bug-glibc@prep.ai.mit.edu>.\n"
+"Rapportera fel p� �vers�ttningen till <sv@li.org>.\n"
-#: nis/ypclnt.c:633
+#: nis/ypclnt.c:691
msgid "Request arguments bad"
msgstr "Argument f�r f�rfr�gan felaktiga"
@@ -1288,7 +1355,7 @@ msgstr "Resolver-fel 0 (inget fel)"
#: resolv/herror.c:117
msgid "Resolver internal error"
-msgstr "Internt fel i namnl�sare"
+msgstr "Internt fel i namnl�sare (resolver)"
#. TRANS Deadlock avoided; allocating a system resource would have resulted in a
#. TRANS deadlock situation. The system does not guarantee that it will notice
@@ -1298,6 +1365,10 @@ msgstr "Internt fel i namnl�sare"
msgid "Resource deadlock avoided"
msgstr "Resursd�dl�ge undveks"
+#: stdio-common/../sysdeps/unix/siglist.c:58
+msgid "Resource lost"
+msgstr "F�rlorad resurs"
+
#. TRANS Resource temporarily unavailable; the call might work if you try again
#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN};
#. TRANS they are always the same in the GNU C library.
@@ -1331,8 +1402,10 @@ msgstr "Resursd�dl�ge undveks"
msgid "Resource temporarily unavailable"
msgstr "Resursen tillf�lligt otillg�nglig"
+#: stdio-common/../sysdeps/unix/siglist.c:40
+#: sysdeps/unix/sysv/linux/siglist.h:31
msgid "Segmentation fault"
-msgstr "Minnessegmentsfel"
+msgstr "Segmenteringsfel"
#: sunrpc/clnt_perr.c:280
msgid "Server rejected credential"
@@ -1342,6 +1415,10 @@ msgstr "Betj�nt f�rkastade kreditiv"
msgid "Server rejected verifier"
msgstr "Betj�nt f�rkastade verifierare"
+#: stdio-common/../sysdeps/unix/siglist.c:29
+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:299
msgid "Socket operation on non-socket"
@@ -1361,6 +1438,10 @@ msgstr "Mjukvara orsakade f�rbindelsebrott"
msgid "Srmount error"
msgstr "Srmount-fel"
+#: sysdeps/unix/sysv/linux/siglist.h:59
+msgid "Stack fault"
+msgstr "Stackfel"
+
#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS
#. TRANS system which is due to file system rearrangements on the server host.
#. TRANS Repairing this condition usually requires unmounting and remounting
@@ -1369,17 +1450,25 @@ msgstr "Srmount-fel"
msgid "Stale NFS file handle"
msgstr "F�rlegad NFS-filhandtag"
+#: stdio-common/../sysdeps/unix/siglist.c:47
+#: sysdeps/unix/sysv/linux/siglist.h:37
msgid "Stopped"
msgstr "Stoppad"
+#: stdio-common/../sysdeps/unix/siglist.c:46
+#: sysdeps/unix/sysv/linux/siglist.h:36
msgid "Stopped (signal)"
msgstr "Stoppad (signal)"
+#: stdio-common/../sysdeps/unix/siglist.c:50
+#: sysdeps/unix/sysv/linux/siglist.h:40
msgid "Stopped (tty input)"
-msgstr "Stoppad (tty-l�sning)"
+msgstr "Stoppad (terminall�sning)"
+#: stdio-common/../sysdeps/unix/siglist.c:51
+#: sysdeps/unix/sysv/linux/siglist.h:41
msgid "Stopped (tty output)"
-msgstr "Stoppad (tty-skrivning)"
+msgstr "Stoppad (terminalskrivning)"
#: stdio-common/../sysdeps/gnu/errlist.c:778
msgid "Streams pipe error"
@@ -1389,17 +1478,19 @@ msgstr "Streams-r�rfel"
msgid "Structure needs cleaning"
msgstr "Strukturen beh�ver st�das"
-#: nis/ypclnt.c:631 nis/ypclnt.c:705 posix/regex.c:940
+#: nis/ypclnt.c:689 nis/ypclnt.c:763 posix/regex.c:972
#: stdio-common/../sysdeps/gnu/errlist.c:7
msgid "Success"
msgstr "Lyckat"
-#: nis/ypclnt.c:711
+#: nis/ypclnt.c:769
msgid "System resource allocation failure"
msgstr "Allokeringsfel f�r systemresurs"
+#: stdio-common/../sysdeps/unix/siglist.c:44
+#: sysdeps/unix/sysv/linux/siglist.h:34
msgid "Terminated"
-msgstr "Terminerad"
+msgstr "Avslutad"
#. TRANS An attempt to execute a file that is currently open for writing, or
#. TRANS write to a file that is currently being executed. Often using a
@@ -1412,7 +1503,7 @@ msgstr "Kodfil upptagen"
#: stdio-common/../sysdeps/gnu/errlist.c:650
msgid "Timer expired"
-msgstr "Tidtagning avslutad"
+msgstr "Klockan ringde"
#. TRANS Too many levels of symbolic links were encountered in looking up a file name.
#. TRANS This often indicates a cycle of symbolic links.
@@ -1463,12 +1554,17 @@ msgstr "F�r m�nga referenser: kan inte skarva"
msgid "Too many users"
msgstr "F�r m�nga anv�ndare"
+#: stdio-common/../sysdeps/unix/siglist.c:34
+msgid "Trace/BPT trap"
+msgstr "Sp�rning/BPT-f�lla"
+
+#: sysdeps/unix/sysv/linux/siglist.h:26
msgid "Trace/breakpoint trap"
-msgstr "Sp�rning/brytpunktsf�lla"
+msgstr "Sp�rningsf�lla"
-#: posix/regex.c:945
+#: posix/regex.c:977
msgid "Trailing backslash"
-msgstr "Felplacerat omv�nt snedstreck"
+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
@@ -1491,13 +1587,13 @@ msgstr "Transportslutpunkten �r redan f�rbunden"
msgid "Transport endpoint is not connected"
msgstr "Transportslutpunkten �r inte f�rbunden"
-#: catgets/gencat.c:208 db/makedb.c:209 locale/programs/locale.c:241
-#: locale/programs/localedef.c:389
+#: catgets/gencat.c:208 db/makedb.c:209 locale/programs/locale.c:246
+#: locale/programs/localedef.c:396
#, c-format
msgid "Try `%s --help' for more information.\n"
msgstr "F�rs�k med \"%s --help\" f�r mer information\n"
-#: inet/rcmd.c:136
+#: inet/rcmd.c:137
#, c-format
msgid "Trying %s...\n"
msgstr "Provar %s...\n"
@@ -1507,7 +1603,7 @@ msgstr "Provar %s...\n"
msgid "Unknown .netrc keyword %s"
msgstr "Ok�nt .netrc-nyckelord %s"
-#: nis/ypclnt.c:665
+#: nis/ypclnt.c:723
msgid "Unknown NIS error code"
msgstr "Ok�nd NIS-felkod"
@@ -1522,38 +1618,38 @@ msgstr "Ok�nd v�rd"
#: resolv/herror.c:120
msgid "Unknown resolver error"
-msgstr "Ok�nt fel hos namnl�sare"
+msgstr "Ok�nt fel hos namnl�sare (resolver)"
#: resolv/herror.c:76
msgid "Unknown server error"
-msgstr "Ok�nt fel hos tj�nstest�lle"
+msgstr "Ok�nt fel hos betj�nt"
#: string/strsignal.c:41
#, c-format
msgid "Unknown signal %d"
msgstr "Ok�nd signal %d"
-#: misc/error.c:95
+#: misc/error.c:100
msgid "Unknown system error"
msgstr "Ok�nt systemfel"
-#: nis/ypclnt.c:713
+#: nis/ypclnt.c:771
msgid "Unknown ypbind error"
msgstr "Ok�nt ypbind-fel"
-#: posix/regex.c:948
+#: posix/regex.c:980
msgid "Unmatched ( or \\("
msgstr "Obalanserade ( eller \\("
-#: posix/regex.c:956
+#: posix/regex.c:988
msgid "Unmatched ) or \\)"
msgstr "Obalanserade ) eller \\)"
-#: posix/regex.c:947
+#: posix/regex.c:979
msgid "Unmatched [ or [^"
msgstr "Obalanserade [ eller [^"
-#: posix/regex.c:949
+#: posix/regex.c:981
msgid "Unmatched \\{"
msgstr "Obalanserad \\{"
@@ -1562,6 +1658,8 @@ msgstr "Obalanserad \\{"
msgid "Unrecognized variable `%s'"
msgstr "Ok�nd variabel \"%s\""
+#: stdio-common/../sysdeps/unix/siglist.c:45
+#: sysdeps/unix/sysv/linux/siglist.h:35
msgid "Urgent I/O condition"
msgstr "Viktigt I/O-tillst�nd"
@@ -1571,7 +1669,8 @@ msgid ""
"Usage: %s [OPTION]... -o OUTPUT-FILE [INPUT-FILE]...\n"
" %s [OPTION]... [OUTPUT-FILE [INPUT-FILE]...]\n"
"Mandatory arguments to long options are mandatory for short options too.\n"
-" -H, --header create C header file containing symbol definitions\n"
+" -H, --header=NAME create C header file NAME containing symbol "
+"definitions\n"
" -h, --help display this help and exit\n"
" --new do not use existing catalog, force new output file\n"
" -o, --output=NAME write output to file NAME\n"
@@ -1581,9 +1680,8 @@ msgid ""
msgstr ""
"Anv�ndning: %s [FLAGGA]... -o UTFIL [INFIL]...\n"
" %s [FLAGGA]... [UTFIL [INFIL]...]\n"
-"Obligatoriska argument till l�nga flaggor �r obligatoriska �ven f�r de "
-"korta.\n"
-" -H, --header skapa en C-deklarationsfil med symboldefinitioner\n"
+"Obligatoriska argument till l�nga flaggor �r obligatoriska �ven f�r de korta.\n"
+" -H, --header=NAMN skapa en C-deklarationsfil NAMN med symboldefinitioner\n"
" -h, --help visa denna hj�lptext och avsluta\n"
" --new anv�nd inte existerande katalog, g�r en ny utfil\n"
" -o, --output=NAMN skriv resultatet till filen NAMN\n"
@@ -1619,7 +1717,7 @@ msgstr ""
" -V, --version visa versionsinformation och avsluta\n"
"Om INFIL �r -, l�s indata fr�n standard in\n"
-#: locale/programs/localedef.c:393
+#: locale/programs/localedef.c:400
#, c-format
msgid ""
"Usage: %s [OPTION]... name\n"
@@ -1651,9 +1749,9 @@ msgstr ""
" --posix f�lj POSIX strikt\n"
"\n"
"Systemets katalog f�r teckenupps�ttningar: %s\n"
-" meddelandekataloger: %s\n"
+" lokalfiler: %s\n"
-#: locale/programs/locale.c:245
+#: locale/programs/locale.c:250
#, c-format
msgid ""
"Usage: %s [OPTION]... name\n"
@@ -1688,9 +1786,13 @@ 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:59
+#: sysdeps/unix/sysv/linux/siglist.h:48
msgid "User defined signal 1"
msgstr "Anv�ndarsignal 1"
+#: stdio-common/../sysdeps/unix/siglist.c:60
+#: sysdeps/unix/sysv/linux/siglist.h:49
msgid "User defined signal 2"
msgstr "Anv�ndarsignal 2"
@@ -1698,36 +1800,40 @@ msgstr "Anv�ndarsignal 2"
msgid "Value too large for defined data type"
msgstr "V�rdet f�r stort f�r definierad datatyp"
+#: stdio-common/../sysdeps/unix/siglist.c:55
+#: sysdeps/unix/sysv/linux/siglist.h:45
msgid "Virtual timer expired"
-msgstr "Virtuell tidtagare l�pte ut"
+msgstr "Alarmklocka - virtuell tid"
-#: time/zic.c:1844
+#: time/zic.c:1884
msgid "Wild result from command execution"
msgstr "Vilt resultat fr�n kommandok�rning"
+#: stdio-common/../sysdeps/unix/siglist.c:57
+#: sysdeps/unix/sysv/linux/siglist.h:47
msgid "Window changed"
-msgstr "F�nstret �ndrades"
+msgstr "�ndrat f�nster"
-#: catgets/gencat.c:174 db/makedb.c:125 locale/programs/locale.c:192
-#: locale/programs/localedef.c:182
+#: catgets/gencat.c:174 db/makedb.c:125 locale/programs/locale.c:196
+#: locale/programs/localedef.c:185
#, c-format
msgid "Written by %s.\n"
msgstr "Skriven av %s.\n"
-#: nis/ypclnt.c:146
+#: nis/ypclnt.c:142
msgid "YPBINDPROC_DOMAIN: Internal error\n"
msgstr "YPBINDPROC_DOMAIN: Internt fel\n"
-#: nis/ypclnt.c:150
+#: nis/ypclnt.c:146
#, c-format
msgid "YPBINDPROC_DOMAIN: No server for domain %s\n"
msgstr "YPBINDPROC_DOMAIN: Ingen betj�nt f�r dom�n %s\n"
-#: nis/ypclnt.c:154
+#: nis/ypclnt.c:150
msgid "YPBINDPROC_DOMAIN: Resource allocation failure\n"
-msgstr "YPBINDPROC_DOMAIN: Allokeringsfel f�r resurs\n"
+msgstr "YPBINDPROC_DOMAIN: Resursallokeringsfel\n"
-#: nis/ypclnt.c:158
+#: nis/ypclnt.c:154
msgid "YPBINDPROC_DOMAIN: Unknown error\n"
msgstr "YPBINDPROC_DOMAIN: Ok�nt fel\n"
@@ -1736,31 +1842,31 @@ msgstr "YPBINDPROC_DOMAIN: Ok�nt fel\n"
msgid "You really blew it this time"
msgstr "Du strulade till det den h�r g�ngen"
-#: time/zic.c:1050
+#: time/zic.c:1052
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"
-#: locale/programs/charmap.c:397 locale/programs/locfile.c:341
+#: locale/programs/charmap.c:397 locale/programs/locfile.c:363
#, c-format
msgid "`%1$s' definition does not end with `END %1$s'"
msgstr "\"%1$s\" definition slutar ej med \"END %1$s\""
-#: locale/programs/ld-monetary.c:358 locale/programs/ld-numeric.c:190
+#: locale/programs/ld-monetary.c:359 locale/programs/ld-numeric.c:190
#, 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\""
-#: locale/programs/ld-collate.c:1652
+#: locale/programs/ld-collate.c:1655
msgid "`...' must only be used in `...' and `UNDEFINED' entries"
msgstr "\"...\" f�r endast anv�ndas f�r post \"...\" och post \"UNDEFINED\""
-#: locale/programs/locfile.c:538
+#: locale/programs/locfile.c:560
msgid "`from' expected after first argument to `collating-element'"
msgstr ""
"\"from\" f�rv�ntades efter f�rsta argumentet till \"collating-element\""
-#: locale/programs/ld-collate.c:1109
+#: locale/programs/ld-collate.c:1112
msgid ""
"`from' string in collation element declaration contains unknown character"
msgstr ""
@@ -1772,36 +1878,36 @@ msgstr ""
msgid "argument to <%s> must be a single character"
msgstr "argumentet till <%s> m�ste vara ett enskilt tecken"
-#: locale/programs/locfile.c:215
+#: locale/programs/locfile.c:237
#, 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:322
+#: sunrpc/auth_unix.c:323
msgid "auth_none.c - Fatal marshalling problem"
msgstr "auth_none.c - Fatalt kodningsproblem"
-#: inet/rcmd.c:360
+#: inet/rcmd.c:365
msgid "bad .rhosts owner"
-msgstr "d�lig .rhosts-�gare"
+msgstr "ol�mplig �gare av .rhosts"
-#: locale/programs/charmap.c:212 locale/programs/locfile.c:209
+#: locale/programs/charmap.c:212 locale/programs/locfile.c:231
msgid "bad argument"
msgstr "d�ligt argument"
-#: time/zic.c:1172
+#: time/zic.c:1174
msgid "blank FROM field on Link line"
msgstr "tomt \"FROM\"-f�lt p� \"Link\"-rad"
-#: time/zic.c:1176
+#: time/zic.c:1178
msgid "blank TO field on Link line"
msgstr "tomt \"TO\"-f�lt p� \"Link\"-rad"
-#: malloc/mcheck.c:189
+#: malloc/mcheck.c:191
msgid "block freed twice"
msgstr "block avallokerat tv� g�nger"
-#: malloc/mcheck.c:192
+#: malloc/mcheck.c:194
msgid "bogus mcheck_status, library is buggy"
msgstr "felaktig mcheck_status, biblioteket �r felaktigt"
@@ -1817,31 +1923,31 @@ msgstr "uts�ndning: ioctl (h�mta gr�nssnittsflaggor)"
msgid "cache_set: victim not found"
msgstr "cache_set: offer hittades ej"
-#: time/zic.c:1685
-msgid "can't determine time zone abbrevation to use just after until time"
+#: time/zic.c:1711
+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:64
#, c-format
msgid "can't reassign procedure number %d\n"
-msgstr "kan inte �tertilldela procedurnummer %d\n"
+msgstr "kan inte �ndra procedurnummer %d\n"
-#: locale/programs/localedef.c:287
+#: locale/programs/localedef.c:294
#, c-format
msgid "cannot `stat' locale file `%s'"
msgstr "kan inte ta status p� lokalfil \"%s\""
-#: locale/programs/ld-collate.c:1314
+#: locale/programs/ld-collate.c:1317
#, c-format
msgid "cannot insert collation element `%.*s'"
msgstr "kan inte s�tta in kollationselement \"%.*s\""
-#: locale/programs/ld-collate.c:1493 locale/programs/ld-collate.c:1498
+#: locale/programs/ld-collate.c:1496 locale/programs/ld-collate.c:1501
msgid "cannot insert into result table"
msgstr "kan inte s�tta in i resultattabell"
-#: locale/programs/ld-collate.c:1166 locale/programs/ld-collate.c:1208
+#: locale/programs/ld-collate.c:1169 locale/programs/ld-collate.c:1211
#, c-format
msgid "cannot insert new collating symbol definition: %s"
msgstr "kan inte s�tta in ny kollationssymbolsdefinition: %s"
@@ -1851,84 +1957,84 @@ msgstr "kan inte s�tta in ny kollationssymbolsdefinition: %s"
msgid "cannot open database file `%s': %s"
msgstr "kan inte �ppna databasfil \"%s\": %s"
-#: catgets/gencat.c:259 db/makedb.c:180
+#: catgets/gencat.c:260 db/makedb.c:180
#, c-format
msgid "cannot open input file `%s'"
msgstr "kan inte �ppna infil \"%s\""
-#: locale/programs/localedef.c:221
+#: locale/programs/localedef.c:224
#, c-format
msgid "cannot open locale definition file `%s'"
msgstr "kan inte �ppna lokaldefinitionsfil \"%s\""
-#: catgets/gencat.c:764 catgets/gencat.c:805 db/makedb.c:189
+#: catgets/gencat.c:765 catgets/gencat.c:806 db/makedb.c:189
#, c-format
msgid "cannot open output file `%s'"
msgstr "kan inte �ppna utfil \"%s\""
-#: locale/programs/locfile.c:986
+#: locale/programs/locfile.c:1020
#, c-format
msgid "cannot open output file `%s' for category `%s'"
msgstr "kan inte �ppna utfil \"%s\" f�r kategori \"%s\""
-#: locale/programs/ld-collate.c:1360
+#: locale/programs/ld-collate.c:1363
msgid "cannot process order specification"
msgstr "kan inte bearbeta sorteringsspecifikation"
-#: locale/programs/locale.c:303
+#: locale/programs/locale.c:444
#, c-format
msgid "cannot read character map directory `%s'"
msgstr "kan inte l�sa teckenupps�ttningskatalog \"%s\""
-#: locale/programs/locale.c:278
+#: locale/programs/locale.c:301
#, c-format
msgid "cannot read locale directory `%s'"
msgstr "kan inte l�sa lokalkatalog \"%s\""
-#: locale/programs/localedef.c:309
+#: locale/programs/localedef.c:316
#, c-format
msgid "cannot read locale file `%s'"
msgstr "kan inte l�sa lokalfil \"%s\""
-#: locale/programs/localedef.c:334
+#: locale/programs/localedef.c:341
#, c-format
msgid "cannot write output files to `%s'"
msgstr "kan inte skriva utfiler till \"%s\""
-#: locale/programs/localedef.c:377
+#: locale/programs/localedef.c:384
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:265
+#: locale/programs/ld-ctype.c:266
#, 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\""
-#: locale/programs/ld-ctype.c:289
+#: locale/programs/ld-ctype.c:291
#, c-format
msgid "character %s'%s' in class `%s' must not be in class `%s'"
msgstr "tecknet %s\"%s\" i klass \"%s\" kan inte vara i klass \"%s\""
-#: locale/programs/ld-ctype.c:310
+#: locale/programs/ld-ctype.c:313
msgid "character <SP> not defined in character map"
msgstr "tecknet <SP> inte definierat i teckenupps�ttning"
-#: locale/programs/ld-ctype.c:939 locale/programs/ld-ctype.c:1002
-#: locale/programs/ld-ctype.c:1010 locale/programs/ld-ctype.c:1018
-#: locale/programs/ld-ctype.c:1026 locale/programs/ld-ctype.c:1034
-#: locale/programs/ld-ctype.c:1042 locale/programs/ld-ctype.c:1068
-#: locale/programs/ld-ctype.c:1076 locale/programs/ld-ctype.c:1114
-#: locale/programs/ld-ctype.c:1141 locale/programs/ld-ctype.c:1152
+#: locale/programs/ld-ctype.c:944 locale/programs/ld-ctype.c:1007
+#: locale/programs/ld-ctype.c:1015 locale/programs/ld-ctype.c:1023
+#: locale/programs/ld-ctype.c:1031 locale/programs/ld-ctype.c:1039
+#: locale/programs/ld-ctype.c:1047 locale/programs/ld-ctype.c:1073
+#: locale/programs/ld-ctype.c:1081 locale/programs/ld-ctype.c:1119
+#: locale/programs/ld-ctype.c:1146 locale/programs/ld-ctype.c:1157
#, c-format
msgid "character `%s' not defined while needed as default value"
msgstr "tecknet \"%s\" inte definierat men beh�vs som standardv�rde"
-#: locale/programs/ld-ctype.c:801
+#: locale/programs/ld-ctype.c:806
#, c-format
msgid "character class `%s' already defined"
msgstr "teckenklass \"%s\" redan definierad"
-#: locale/programs/ld-ctype.c:833
+#: locale/programs/ld-ctype.c:838
#, c-format
msgid "character map `%s' already defined"
msgstr "teckenupps�ttning \"%s\" redan definierad"
@@ -1936,28 +2042,28 @@ msgstr "teckenupps�ttning \"%s\" redan definierad"
#: locale/programs/charmap.c:76
#, c-format
msgid "character map file `%s' not found"
-msgstr "teckenupps�ttningsfil \"%s\" inte funnen"
+msgstr "teckenupps�ttningsfil \"%s\" finns inte"
#: sunrpc/clnt_raw.c:106
msgid "clnt_raw.c - Fatal header serialization error."
-msgstr "clnt_raw.c - Fatalt fel vid serialisation."
+msgstr "clnt_raw.c - Fatalt fel vid serialisering"
-#: locale/programs/ld-collate.c:1329
+#: locale/programs/ld-collate.c:1332
#, 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:1347
+#: locale/programs/ld-collate.c:1350
#, 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:522
+#: locale/programs/locfile.c:544
#, c-format
msgid "collation symbol expected after `%s'"
msgstr "kollationssymbol f�rv�ntades efter \"%s\""
-#: inet/rcmd.c:129
+#: inet/rcmd.c:130
#, c-format
msgid "connect to address %s: "
msgstr "koppla till adress %s: "
@@ -1982,7 +2088,7 @@ 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 inte \"+\" "
+"riktningsflagga i str�ng %d i \"era\"-f�lt i kategori \"%s\" �r varken \"+\" "
"eller \"-\""
#: locale/programs/ld-time.c:164
@@ -1999,37 +2105,37 @@ msgstr ""
msgid "duplicate character name `%s'"
msgstr "duplicerat teckennamn \"%s\""
-#: locale/programs/ld-collate.c:1141
+#: locale/programs/ld-collate.c:1144
msgid "duplicate collating element definition"
msgstr "dubbla definitioner av kollationselement"
-#: locale/programs/ld-collate.c:1287
+#: locale/programs/ld-collate.c:1290
#, c-format
msgid "duplicate definition for character `%.*s'"
msgstr "dubbla definitioner f�r tecken \"%.*s\""
-#: db/makedb.c:310
+#: db/makedb.c:311
msgid "duplicate key"
msgstr "duplicerad nyckel"
-#: catgets/gencat.c:378
+#: catgets/gencat.c:379
msgid "duplicate set definition"
-msgstr "duplicerad definition av upps�ttning"
+msgstr "duplicerad definition av m�ngd"
-#: time/zic.c:965
+#: time/zic.c:967
#, c-format
msgid "duplicate zone name %s (file \"%s\", line %d)"
msgstr "duplicerat zonnamn %s (fil \"%s\", rad %d)"
-#: catgets/gencat.c:541
+#: catgets/gencat.c:542
msgid "duplicated message identifier"
msgstr "duplicerad meddelandeidentifierare"
-#: catgets/gencat.c:514
+#: catgets/gencat.c:515
msgid "duplicated message number"
msgstr "duplicerat meddelandenummer"
-#: locale/programs/ld-collate.c:1696
+#: locale/programs/ld-collate.c:1699
msgid "empty weight name: line ignored"
msgstr "tomt viktnamn: rad ignorerad"
@@ -2049,42 +2155,46 @@ msgstr "enablecache: kunde inte allokera cache-data"
msgid "enablecache: could not allocate cache fifo"
msgstr "enablecache: kunde inte allokera cache-fifo"
-#: locale/programs/ld-collate.c:1419
+#: locale/programs/ld-collate.c:1422
msgid "end point of ellipsis range is bigger then start"
msgstr "slutpunkt f�r ... �r st�rre �n startv�rdet"
-#: locale/programs/ld-collate.c:1149
+#: locale/programs/ld-collate.c:1152
msgid "error while inserting collation element into hash table"
msgstr "fel vid ins�ttning av kollationselement i hashtabellen"
-#: locale/programs/ld-collate.c:1161
+#: locale/programs/ld-collate.c:1164
msgid "error while inserting to hash table"
-msgstr "fel vis ins�ttning till hashtabellen"
+msgstr "fel vid ins�ttning i hashtabellen"
-#: locale/programs/locfile.c:465
+#: locale/programs/locfile.c:487
msgid "expect string argument for `copy'"
msgstr "f�rv�ntar str�ngargument f�r \"copy\""
-#: time/zic.c:856
+#: time/zic.c:858
msgid "expected continuation line not found"
msgstr "f�rv�ntad forts�ttningsrad ej funnen"
-#: locale/programs/locfile.c:1010
+#: locale/programs/locfile.c:1044
#, c-format
msgid "failure while writing data for category `%s'"
msgstr "misslyckades skriva data f�r kategori \"%s\""
-#: locale/programs/ld-monetary.c:154 locale/programs/ld-numeric.c:95
+#: nis/ypclnt.c:187
+msgid "fcntl: F_SETFD"
+msgstr "fcntl_ F_SETFD"
+
+#: locale/programs/ld-monetary.c:155 locale/programs/ld-numeric.c:95
#, c-format
msgid "field `%s' in category `%s' not defined"
-msgstr "f�lt \"%s\" i kategori \"%s\" inte definierad"
+msgstr "f�lt \"%s\" i kategori \"%s\" inte definierat"
#: locale/programs/ld-messages.c:81 locale/programs/ld-messages.c:102
#, c-format
msgid "field `%s' in category `%s' undefined"
-msgstr "f�lt \"%s\" i kategori \"%s\" odefinierad"
+msgstr "f�lt \"%s\" i kategori \"%s\" odefinierat"
-#: locale/programs/locfile.c:547
+#: locale/programs/locfile.c:569
msgid "from-value of `collating-element' must be a string"
msgstr "fr�nv�rde f�r \"collating-element\" m�ste vara en str�ng"
@@ -2093,7 +2203,7 @@ msgid "garbage at end of character code specification"
msgstr "skr�p i slutet av teckenkodsspecifikation"
#: locale/programs/linereader.c:214
-msgid "garbage at end of digit"
+msgid "garbage at end of number"
msgstr "skr�p i slutet av nummer"
#: locale/programs/ld-time.c:183
@@ -2110,7 +2220,7 @@ msgid ""
msgstr ""
"skr�p i slutet av startdatum i str�ng %d i \"era\"-f�lt i kategori \"%s\""
-#: locale/programs/ld-time.c:310
+#: locale/programs/ld-time.c:311
#, c-format
msgid ""
"garbage at end of stopping date in string %d in `era' field in category `%s'"
@@ -2121,19 +2231,19 @@ msgstr ""
msgid "get_myaddress: ioctl (get interface configuration)"
msgstr "get_myaddress: ioctl (h�mta gr�nssnittskonfiguration)"
-#: time/zic.c:1149
+#: time/zic.c:1151
msgid "illegal CORRECTION field on Leap line"
msgstr "otill�tet \"CORRECTION\"-f�lt p� \"Leap\"-rad"
-#: time/zic.c:1153
+#: time/zic.c:1155
msgid "illegal Rolling/Stationary field on Leap line"
msgstr "otill�tet \"Rolling/Stationary\"-f�lt p� \"Leap\"-rad"
-#: locale/programs/ld-collate.c:1767
+#: locale/programs/ld-collate.c:1770
msgid "illegal character constant in string"
msgstr "otill�ten teckenkonstant i str�ng"
-#: locale/programs/ld-collate.c:1116
+#: locale/programs/ld-collate.c:1119
msgid "illegal collation element"
msgstr "otill�tet kollationselement"
@@ -2151,7 +2261,7 @@ msgstr "otill�ten teckensekvens vid str�ngslut"
#: locale/programs/charset.c:101
msgid "illegal names for character range"
-msgstr "otill�tna namn f�r teckenomf�ng"
+msgstr "otill�tna namn f�r teckenintervall"
#: locale/programs/ld-time.c:176
#, c-format
@@ -2159,26 +2269,26 @@ 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:351 catgets/gencat.c:428
+#: catgets/gencat.c:352 catgets/gencat.c:429
msgid "illegal set number"
-msgstr "otill�tet tal f�r upps�ttning"
+msgstr "otill�tet tal f�r m�ngd"
#: locale/programs/ld-time.c:230
#, 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:302
+#: locale/programs/ld-time.c:303
#, 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\""
-#: locale/programs/ld-ctype.c:807
+#: locale/programs/ld-ctype.c:812
#, c-format
msgid "implementation limit: no more than %d character classes allowed"
-msgstr "implementationsbegr�nsning: inte fler �n %d teckenklasser till�tet"
+msgstr "implementationsbegr�nsning: inte fler �n %d teckenklasser till�tna"
-#: locale/programs/ld-ctype.c:839
+#: locale/programs/ld-ctype.c:844
#, c-format
msgid "implementation limit: no more than %d character maps allowed"
msgstr ""
@@ -2188,122 +2298,122 @@ msgstr ""
msgid "incorrectly formatted file"
msgstr "felaktigt formaterad rad"
-#: time/zic.c:814
+#: time/zic.c:815
msgid "input line of unknown type"
msgstr "inrad av ok�nd typ"
-#: time/zic.c:1733
+#: time/zic.c:1773
msgid "internal error - addtype called with bad isdst"
msgstr "internt fel - addtype anropad med felaktig isdst"
-#: time/zic.c:1741
+#: time/zic.c:1781
msgid "internal error - addtype called with bad ttisgmt"
msgstr "internt fel - addtype anropad med felaktig ttisgmt"
-#: time/zic.c:1737
+#: time/zic.c:1777
msgid "internal error - addtype called with bad ttisstd"
msgstr "internt fel - addtype anropad med felaktig ttisstd"
-#: locale/programs/ld-ctype.c:301
+#: locale/programs/ld-ctype.c:304
#, c-format
msgid "internal error in %s, line %u"
msgstr "internt fel i %s, rad %u"
-#: time/zic.c:1021
+#: time/zic.c:1023
msgid "invalid GMT offset"
-msgstr "ogiltigt till�ggsv�rde till GMT"
+msgstr "ogiltigt GMT-till�gg"
-#: time/zic.c:1024
+#: time/zic.c:1026
msgid "invalid abbreviation format"
msgstr "ogiltigt f�rkortningsformat"
-#: time/zic.c:1114 time/zic.c:1313 time/zic.c:1327
+#: time/zic.c:1116 time/zic.c:1326 time/zic.c:1340
msgid "invalid day of month"
msgstr "ogiltig dag i m�naden"
-#: time/zic.c:1272
+#: time/zic.c:1279
msgid "invalid ending year"
msgstr "ogiltigt slut�r"
-#: time/zic.c:1086
+#: time/zic.c:1088
msgid "invalid leaping year"
msgstr "ogiltigt skott�r"
-#: time/zic.c:1101 time/zic.c:1204
+#: time/zic.c:1103 time/zic.c:1206
msgid "invalid month name"
msgstr "ogiltigt m�nadsnamn"
-#: time/zic.c:920
+#: time/zic.c:922
msgid "invalid saved time"
msgstr "ogiltigt sparad tid"
-#: time/zic.c:1252
+#: time/zic.c:1255
msgid "invalid starting year"
msgstr "ogiltigt start�r"
-#: time/zic.c:1130 time/zic.c:1232
+#: time/zic.c:1132 time/zic.c:1235
msgid "invalid time of day"
msgstr "ogiltig tid p� dagen"
-#: time/zic.c:1318
+#: time/zic.c:1331
msgid "invalid weekday name"
msgstr "ogiltigt veckodagsnamn"
-#: locale/programs/ld-collate.c:1412
+#: locale/programs/ld-collate.c:1415
msgid "line after ellipsis must contain character definition"
msgstr "rad efter ... m�ste inneh�lla teckendefinition"
-#: locale/programs/ld-collate.c:1391
+#: locale/programs/ld-collate.c:1394
msgid "line before ellipsis does not contain definition for character constant"
msgstr "rad f�re ... inneh�ller inte definition f�r teckenkonstant"
-#: time/zic.c:794
+#: time/zic.c:795
msgid "line too long"
-msgstr "rad f�r l�ng"
+msgstr "f�r l�ng rad"
-#: locale/programs/localedef.c:281
+#: locale/programs/localedef.c:288
#, c-format
msgid "locale file `%s', used in `copy' statement, not found"
msgstr "lokalfil \"%s\", anv�nd i \"copy\", inte funnen"
-#: catgets/gencat.c:609
+#: catgets/gencat.c:610
msgid "malformed line ignored"
msgstr "felaktig rad ignorerad"
-#: malloc/mcheck.c:183
+#: malloc/mcheck.c:185
msgid "memory clobbered before allocated block"
msgstr "minnet f�rst�rt f�re allokerat block"
-#: malloc/mcheck.c:186
+#: malloc/mcheck.c:188
msgid "memory clobbered past end of allocated block"
msgstr "minnet f�rst�rt efter slutet p� allokerat block"
#: locale/programs/ld-collate.c:167 locale/programs/ld-collate.c:173
-#: locale/programs/ld-collate.c:177 locale/programs/ld-collate.c:1439
-#: locale/programs/ld-collate.c:1468 locale/programs/locfile.c:940
+#: locale/programs/ld-collate.c:177 locale/programs/ld-collate.c:1442
+#: locale/programs/ld-collate.c:1471 locale/programs/locfile.c:974
#: locale/programs/xmalloc.c:68 posix/getconf.c:250
msgid "memory exhausted"
msgstr "minne slut"
-#: malloc/obstack.c:425
+#: malloc/obstack.c:466
msgid "memory exhausted\n"
msgstr "minnet slut\n"
-#: malloc/mcheck.c:180
+#: malloc/mcheck.c:182
msgid "memory is consistent, library is buggy"
msgstr "minnet �r konsistent, biblioteket �r felaktigt"
-#: locale/programs/ld-time.c:348
+#: locale/programs/ld-time.c:350
#, 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"
-#: locale/programs/ld-time.c:337
+#: locale/programs/ld-time.c:339
#, c-format
-msgid "missing era name in string %d in `era' fieldin category `%s'"
+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"
-#: time/zic.c:915
+#: time/zic.c:917
msgid "nameless rule"
msgstr "namnl�s regel"
@@ -2317,19 +2427,19 @@ msgstr "aldrig registrerat prog %d\n"
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"
-#: time/zic.c:2059
+#: time/zic.c:2099
msgid "no day in month matches rule"
msgstr "ingen dag i m�naden matchar regeln"
-#: locale/programs/ld-collate.c:259
+#: locale/programs/ld-collate.c:260
msgid "no definition of `UNDEFINED'"
msgstr "ingen definition av \"UNDEFINED\""
-#: locale/programs/locfile.c:479
+#: locale/programs/locfile.c:501
msgid "no other keyword shall be specified when `copy' is used"
msgstr "inget annat nyckelord ska anges n�r \"copy\" anv�nds"
-#: locale/programs/localedef.c:340
+#: locale/programs/localedef.c:347
msgid "no output file produced because warning were issued"
msgstr "ingen utfil skapad p� grund av varningar"
@@ -2352,7 +2462,7 @@ msgstr "ingen vikt definierad f�r symbol \"%s\""
msgid "only WIDTH definitions are allowed to follow the CHARMAP definition"
msgstr "endast definition av \"WIDTH\" f�r f�lja definitionen av \"CHARMAP\""
-#: db/makedb.c:326
+#: db/makedb.c:327
#, c-format
msgid "problems while reading `%s'"
msgstr "problem l�sa \"%s\""
@@ -2371,27 +2481,27 @@ msgstr "program %lu version %lu �r inte tillg�ngligt\n"
#: sunrpc/rpcinfo.c:466
#, c-format
msgid "program %lu version %lu ready and waiting\n"
-msgstr "program %lu version %lu klar och v�ntar\n"
+msgstr "program %lu version %lu berett och v�ntar\n"
-#: inet/rcmd.c:171
+#: inet/rcmd.c:172
#, c-format
msgid "rcmd: select (setting up stderr): %m\n"
-msgstr "rcmd: select (s�tter upp standard error): %m\n"
+msgstr "rcmd: select (s�tter upp standard fel): %m\n"
-#: inet/rcmd.c:103
+#: inet/rcmd.c:104
msgid "rcmd: socket: All ports in use\n"
msgstr "rcmd: uttag (socket): Alla portar anv�nds\n"
-#: inet/rcmd.c:159
+#: inet/rcmd.c:160
#, c-format
msgid "rcmd: write (setting up stderr): %m\n"
-msgstr "rcmd: write: (s�tter upp standard error): %m\n"
+msgstr "rcmd: write: (s�tter upp standard fel): %m\n"
#: sunrpc/svc_simple.c:83
msgid "registerrpc: out of memory\n"
msgstr "registerrpc: minnet slut\n"
-#: time/zic.c:1794
+#: time/zic.c:1834
msgid "repeated leap second moment"
msgstr "upprepat skottsekundstillf�lle"
@@ -2427,20 +2537,20 @@ msgstr "rpcinfo: kan inte kontakta portmapper: "
msgid "same rule name in multiple files"
msgstr "samma regel i flera filer"
-#: inet/rcmd.c:174
+#: inet/rcmd.c:175
msgid "select: protocol failure in circuit setup\n"
msgstr "select: protokollfel i f�rbindelseupps�ttning\n"
-#: inet/rcmd.c:192
+#: inet/rcmd.c:193
msgid "socket: protocol failure in circuit setup\n"
msgstr "uttag (socket): protokollfel i f�rbindelseupps�ttning\n"
-#: locale/programs/locfile.c:600
+#: locale/programs/locfile.c:622
msgid "sorting order `forward' and `backward' are mutually exclusive"
msgstr ""
"sorteringsordning \"forward\" och \"backward\" �r �msesidigt uteslutande"
-#: locale/programs/ld-collate.c:1568 locale/programs/ld-collate.c:1614
+#: locale/programs/ld-collate.c:1571 locale/programs/ld-collate.c:1617
msgid ""
"specification of sorting weight for collation symbol does not make sense"
msgstr ""
@@ -2450,24 +2560,36 @@ msgstr ""
msgid "standard input"
msgstr "standard in"
-#: time/zdump.c:260
+#: time/zdump.c:268
msgid "standard output"
msgstr "standard ut"
-#: locale/programs/ld-time.c:256
+#: locale/programs/ld-time.c:257
#, 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\""
-#: time/zic.c:1276
+#: time/zic.c:1287
msgid "starting year greater than ending year"
msgstr "start�r �r st�rre �n slut�r"
-#: locale/programs/ld-time.c:328
+#: time/zic.c:1261 time/zic.c:1285
+msgid "starting year too high to be represented"
+msgstr "start�r f�r stort f�r att kunna representeras"
+
+#: time/zic.c:1259 time/zic.c:1283
+msgid "starting year too low to be represented"
+msgstr "start�r f�r litet f�r att kunna representeras"
+
+#: locale/programs/ld-time.c:330
#, 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\""
+#: sunrpc/svc_run.c:81
+msgid "svc_run: - select failed"
+msgstr "svc_run: - select misslyckades"
+
#: sunrpc/svc_tcp.c:201 sunrpc/svc_tcp.c:206
msgid "svc_tcp: makefd_xprt: out of memory\n"
msgstr "svc_tcp: makefd_xprt: minnet slut\n"
@@ -2492,7 +2614,7 @@ msgstr "svcudp_create - kan inte anropa getsockname"
msgid "svcudp_create: socket creation problem"
msgstr "svcudp_create: problem att skapa uttag (socket)"
-#: locale/programs/ld-collate.c:1191
+#: locale/programs/ld-collate.c:1194
#, c-format
msgid ""
"symbol for multicharacter collating element `%.*s' duplicates element "
@@ -2500,7 +2622,7 @@ msgid ""
msgstr ""
"symbol f�r flerteckenskollationselement \"%.*s\" duplicerar elementdefinition"
-#: locale/programs/ld-collate.c:1064
+#: locale/programs/ld-collate.c:1067
#, c-format
msgid ""
"symbol for multicharacter collating element `%.*s' duplicates other element "
@@ -2509,7 +2631,7 @@ msgstr ""
"symbol f�r flerteckenskollationselement \"%.*s\" duplicerar annan\n"
"elementdefinition"
-#: locale/programs/ld-collate.c:1200
+#: locale/programs/ld-collate.c:1203
#, c-format
msgid ""
"symbol for multicharacter collating element `%.*s' duplicates other symbol "
@@ -2518,7 +2640,7 @@ msgstr ""
"symbol f�r flerteckenskollationselement \"%.*s\" duplicerar annan\n"
"symboldefinition"
-#: locale/programs/ld-collate.c:1073
+#: locale/programs/ld-collate.c:1076
#, c-format
msgid ""
"symbol for multicharacter collating element `%.*s' duplicates symbol "
@@ -2526,7 +2648,7 @@ msgid ""
msgstr ""
"symbol f�r flerteckenskollationselement \"%.*s\" duplicerar symboldefinition"
-#: locale/programs/ld-collate.c:1055 locale/programs/ld-collate.c:1182
+#: locale/programs/ld-collate.c:1058 locale/programs/ld-collate.c:1185
#, c-format
msgid ""
"symbol for multicharacter collating element `%.*s' duplicates symbolic name "
@@ -2543,51 +2665,51 @@ msgstr ""
msgid "syntax error in %s definition: %s"
msgstr "syntaxfel i definition av %s: %s"
-#: locale/programs/locfile.c:620
+#: locale/programs/locfile.c:642
msgid "syntax error in `order_start' directive"
msgstr "syntaxfel i direktivet \"order_start\""
-#: locale/programs/locfile.c:362
+#: locale/programs/locfile.c:384
msgid "syntax error in character class definition"
msgstr "syntaxfel i teckenklassdefinition"
-#: locale/programs/locfile.c:420
+#: locale/programs/locfile.c:442
msgid "syntax error in character conversion definition"
msgstr "syntaxfel i teckenkonverteringsdefinition"
-#: locale/programs/locfile.c:662
+#: locale/programs/locfile.c:684
msgid "syntax error in collating order definition"
msgstr "syntaxfel i kollationssorteringsdefinition"
-#: locale/programs/locfile.c:512
+#: locale/programs/locfile.c:534
msgid "syntax error in collation definition"
msgstr "syntaxfel i kollationsdefinition"
-#: locale/programs/locfile.c:335
+#: locale/programs/locfile.c:357
msgid "syntax error in definition of LC_CTYPE category"
msgstr "syntaxfel i definition av kategorin LC_CTYPE"
-#: locale/programs/locfile.c:278
+#: locale/programs/locfile.c:300
msgid "syntax error in definition of new character class"
msgstr "syntaxfel i definition av ny teckenklass"
-#: locale/programs/locfile.c:288
+#: locale/programs/locfile.c:310
msgid "syntax error in definition of new character map"
msgstr "syntaxfel i definition av ny teckenupps�ttning"
-#: locale/programs/locfile.c:873
+#: locale/programs/locfile.c:895
msgid "syntax error in message locale definition"
msgstr "syntaxfel i definition av meddelandelokal"
-#: locale/programs/locfile.c:784
+#: locale/programs/locfile.c:806
msgid "syntax error in monetary locale definition"
msgstr "syntaxfel i definition av monet�rlokal"
-#: locale/programs/locfile.c:811
+#: locale/programs/locfile.c:833
msgid "syntax error in numeric locale definition"
msgstr "syntaxfel i definition av numerisk lokal"
-#: locale/programs/locfile.c:722
+#: locale/programs/locfile.c:744
msgid "syntax error in order specification"
msgstr "syntaxfel i sorteringsspecifikation"
@@ -2596,23 +2718,23 @@ msgstr "syntaxfel i sorteringsspecifikation"
msgid "syntax error in prolog: %s"
msgstr "syntaxfel i prolog: %s"
-#: locale/programs/locfile.c:849
+#: locale/programs/locfile.c:871
msgid "syntax error in time locale definition"
msgstr "syntaxfel i definition av tidslokal"
-#: locale/programs/locfile.c:255
+#: locale/programs/locfile.c:277
msgid "syntax error: not inside a locale definition section"
msgstr "syntaxfel: inte inne i en lokaldefinition"
-#: catgets/gencat.c:380 catgets/gencat.c:516 catgets/gencat.c:543
+#: catgets/gencat.c:381 catgets/gencat.c:517 catgets/gencat.c:544
msgid "this is the first definition"
msgstr "detta �r den f�rsta definitionen"
-#: time/zic.c:1119
+#: time/zic.c:1121
msgid "time before zero"
msgstr "tid f�re noll"
-#: time/zic.c:1127 time/zic.c:1959 time/zic.c:1978
+#: time/zic.c:1129 time/zic.c:1999 time/zic.c:2018
msgid "time overflow"
msgstr "f�r stort tidsv�rde"
@@ -2628,23 +2750,23 @@ msgstr "f�r m�nga tecken i teckenkodning"
msgid "too many character classes defined"
msgstr "f�r m�nga teckenklasser definierade"
-#: time/zic.c:1788
+#: time/zic.c:1828
msgid "too many leap seconds"
msgstr "f�r m�nga skottsekunder"
-#: time/zic.c:1760
+#: time/zic.c:1800
msgid "too many local time types"
msgstr "f�r m�nga lokala tidstyper"
-#: time/zic.c:1714
+#: time/zic.c:1754
msgid "too many transitions?!"
msgstr "f�r m�nga �verg�ngar?!"
-#: locale/programs/ld-collate.c:1623
+#: locale/programs/ld-collate.c:1626
msgid "too many weights"
msgstr "f�r m�nga vikter"
-#: time/zic.c:2082
+#: time/zic.c:2122
msgid "too many, or too long, time zone abbreviations"
msgstr "f�r m�nga eller f�r l�nga tidszonf�rkortningar"
@@ -2657,11 +2779,11 @@ msgstr "avslutande skr�p vid radslutet"
msgid "trouble replying to prog %d\n"
msgstr "problem att svara till prog %d\n"
-#: locale/programs/ld-collate.c:1383
+#: locale/programs/ld-collate.c:1386
msgid "two lines in a row containing `...' are not allowed"
msgstr "tv� rader efter varann som har \"...\" �r inte till�tet"
-#: time/zic.c:1283
+#: time/zic.c:1294
msgid "typed single year"
msgstr "satte typ p� endast ett �r"
@@ -2676,30 +2798,27 @@ msgstr "ok�nt tecken \"%s\""
#: locale/programs/ld-messages.c:193 locale/programs/ld-messages.c:204
#: locale/programs/ld-messages.c:215 locale/programs/ld-messages.c:226
-#: locale/programs/ld-time.c:696
+#: locale/programs/ld-time.c:698
#, 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:585
+#: locale/programs/locfile.c:607
msgid "unknown collation directive"
msgstr "ok�nt kollationsdirektiv"
-#: catgets/gencat.c:477
+#: catgets/gencat.c:478
#, c-format
msgid "unknown directive `%s': line ignored"
msgstr "ok�nt direktiv \"%s\": rad ignorerad"
-#: catgets/gencat.c:456
+#: catgets/gencat.c:457
#, c-format
msgid "unknown set `%s'"
-msgstr "ok�nd upps�ttning \"%s\""
-
-msgid "unknown signal"
-msgstr "ok�nd signal"
+msgstr "ok�nd m�ngd \"%s\""
-#: locale/programs/ld-collate.c:1367 locale/programs/ld-collate.c:1558
-#: locale/programs/ld-collate.c:1732
+#: locale/programs/ld-collate.c:1370 locale/programs/ld-collate.c:1561
+#: locale/programs/ld-collate.c:1735
#, c-format
msgid "unknown symbol `%.*s': line ignored"
msgstr "ok�nd symbol \"%.*s\": rad ignorerad"
@@ -2708,7 +2827,7 @@ msgstr "ok�nd symbol \"%.*s\": rad ignorerad"
msgid "unruly zone"
msgstr "besv�rlig zon"
-#: catgets/gencat.c:961
+#: catgets/gencat.c:962
msgid "unterminated message"
msgstr "oavslutat meddelande"
@@ -2720,15 +2839,15 @@ msgstr "oavslutad str�ng"
msgid "unterminated symbolic name"
msgstr "oavslutat symboliskt namn"
-#: locale/programs/ld-collate.c:1685
+#: locale/programs/ld-collate.c:1688
msgid "unterminated weight name"
msgstr "oavslutat viktnamn"
#: locale/programs/charset.c:119
msgid "upper limit in range is not smaller then lower limit"
-msgstr "�vre gr�ns i omr�de �r inte mindre �n undre gr�ns"
+msgstr "�vre gr�ns i intervall �r inte mindre �n undre gr�ns"
-#: time/zic.c:2025
+#: time/zic.c:2065
msgid "use of 2/29 in non leap-year"
msgstr "anv�nder 29/2 i icke-skott�r"
@@ -2742,7 +2861,7 @@ msgstr "v�rdet p� %s m�ste vara heltal"
msgid "value for <%s> must lie between 1 and 4"
msgstr "v�rde p� <%s> m�ste vara mellan 1 och 4"
-#: locale/programs/ld-monetary.c:148 locale/programs/ld-numeric.c:89
+#: locale/programs/ld-monetary.c:149 locale/programs/ld-numeric.c:89
#, 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"
@@ -2751,7 +2870,7 @@ msgstr "v�rde p� f�lt \"%s\" i kategori \"%s\" f�r inte vara tom str�ng"
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>"
-#: locale/programs/ld-monetary.c:138
+#: locale/programs/ld-monetary.c:139
msgid ""
"value of field `int_curr_symbol' in category `LC_MONETARY' does not "
"correspond to a valid name in ISO 4217"
@@ -2765,29 +2884,33 @@ msgid ""
msgstr ""
"v�rdet p� f�ltet \"int_curr_symbol\" i kategorin LC_MONETARY har fel l�ngd"
-#: locale/programs/ld-monetary.c:370 locale/programs/ld-numeric.c:199
+#: locale/programs/ld-monetary.c:371 locale/programs/ld-numeric.c:199
#, 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"
-#: locale/programs/ld-monetary.c:366
+#: locale/programs/ld-monetary.c:367
#, c-format
msgid "values for field `%s' in category `%s' must not be zero"
msgstr "v�rden p� f�lt \"%s\" i kategorin \"%s\" f�r inte vara noll"
-#: login/utmp_file.c:84
+#: login/utmp_file.c:76
msgid "while opening UTMP file"
msgstr "n�r UTMP-filen �ppnades"
-#: catgets/gencat.c:988
+#: catgets/gencat.c:989
msgid "while opening old catalog file"
msgstr "n�r gammal katalogfil �ppnades"
-#: db/makedb.c:353
+#: locale/programs/locale.c:341
+msgid "while preparing output"
+msgstr "n�r utadata f�rbereddes"
+
+#: db/makedb.c:354
msgid "while reading database"
msgstr "n�r databasen l�stes"
-#: db/makedb.c:315
+#: db/makedb.c:316
msgid "while writing data base file"
msgstr "n�r databasen skrevs"
@@ -2795,34 +2918,30 @@ msgstr "n�r databasen skrevs"
msgid "wrong number of arguments"
msgstr "fel antal argument"
-#: time/zic.c:1077
+#: time/zic.c:1079
msgid "wrong number of fields on Leap line"
msgstr "fel antal f�lt p� \"Leap\"-rad"
-#: time/zic.c:1168
+#: time/zic.c:1170
msgid "wrong number of fields on Link line"
msgstr "fel antal f�lt p� \"Link\"-rad"
-#: time/zic.c:911
+#: time/zic.c:913
msgid "wrong number of fields on Rule line"
msgstr "fel antal f�lt p� \"Rule\"-rad"
-#: time/zic.c:981
+#: time/zic.c:983
msgid "wrong number of fields on Zone continuation line"
msgstr "fel antal f�lt p� \"Zone\"-forts�ttningsrad"
-#: time/zic.c:939
+#: time/zic.c:941
msgid "wrong number of fields on Zone line"
msgstr "fel antal f�lt p� \"Zone\"-rad"
-#: nis/ypclnt.c:570
-msgid "yp_all: clnttcp_create failed"
-msgstr "yp_all: clnttcp_create misslyckades"
-
-#: nis/ypclnt.c:772
+#: nis/ypclnt.c:811
msgid "yp_update: cannot convert host to netname\n"
msgstr "yp_update: kan inte omvandla v�rd till n�tnamn\n"
-#: nis/ypclnt.c:784
+#: nis/ypclnt.c:823
msgid "yp_update: cannot get server address\n"
msgstr "yp_update: kan inte h�mta betj�ntadress\n"
diff --git a/sysdeps/i386/selectbits.h b/sysdeps/i386/selectbits.h
index 9855e9308f..7ecc0232e0 100644
--- a/sysdeps/i386/selectbits.h
+++ b/sysdeps/i386/selectbits.h
@@ -22,29 +22,30 @@
#if defined __GNUC__ && __GNUC__ >= 2
# define __FD_ZERO(fdsetp) \
- __asm__ __volatile__ ("cld ; rep ; stosl" \
- : "=m" (*(__fd_set *) (fdsetp)) \
+ __asm__ __volatile__ ("cld; rep; stosl" \
+ : "=m" (((__fd_mask *) \
+ (fdsetp))[__FDELT (__FD_SETSIZE)]) \
: "a" (0), "c" (sizeof (__fd_set) \
/ sizeof (__fd_mask)), \
- "D" ((__fd_set *) (fdsetp)) \
+ "D" ((__fd_mask *) (fdsetp)) \
:"cx","di")
# define __FD_SET(fd, fdsetp) \
__asm__ __volatile__ ("btsl %1,%0" \
- : "=m" (((__fd_set *) (fdsetp))[__FDELT (fd)]) \
+ : "=m" (((__fd_mask *) (fdsetp))[__FDELT (fd)]) \
: "r" (((int) (fd)) % __NFDBITS) \
: "cc")
# define __FD_CLR(fd, fdsetp) \
__asm__ __volatile__ ("btrl %1,%0" \
- : "=m" (((__fd_set *) (fdsetp))[__FDELT (fd)]) \
+ : "=m" (((__fd_mask *) (fdsetp))[__FDELT (fd)]) \
: "r" (((int) (fd)) % __NFDBITS) \
: "cc")
# define __FD_ISSET(fd, fdsetp) \
(__extension__ \
- ({unsigned int __result; \
- __asm__ __volatile__ ("btl %1,%2 ; setcb %b0; andl $1,%0" \
+ ({register char __result; \
+ __asm__ __volatile__ ("btl %1,%2 ; setcb %b0" \
: "=q" (__result) \
: "r" (((int) (fd)) % __NFDBITS), \
- "m" (((__fd_set *) (fdsetp))[__FDELT (fd)]) \
+ "m" (((__fd_mask *) (fdsetp))[__FDELT (fd)]) \
: "cc"); \
__result; }))
diff --git a/sysdeps/stub/sigaction.c b/sysdeps/stub/sigaction.c
index 1344d45044..e27741fd97 100644
--- a/sysdeps/stub/sigaction.c
+++ b/sysdeps/stub/sigaction.c
@@ -1,20 +1,20 @@
-/* Copyright (C) 1991, 1995, 1996 Free Software Foundation, Inc.
-This file is part of the GNU C Library.
+/* Copyright (C) 1991, 1995, 1996, 1997 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 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.
+ 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., 675 Mass Ave,
-Cambridge, MA 02139, USA. */
+ 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 <errno.h>
#include <signal.h>
@@ -26,7 +26,7 @@ int
__sigaction (sig, act, oact)
int sig;
const struct sigaction *act;
- struct sigaction *OACT;
+ struct sigaction *oact;
{
if (sig <= 0 || sig >= NSIG)
{
diff --git a/sysdeps/unix/sysv/linux/netinet/tcp.h b/sysdeps/unix/sysv/linux/netinet/tcp.h
index 080d8a46ef..49fa180a00 100644
--- a/sysdeps/unix/sysv/linux/netinet/tcp.h
+++ b/sysdeps/unix/sysv/linux/netinet/tcp.h
@@ -89,7 +89,7 @@ struct tcphdr
u_int16_t psh:1;
u_int16_t ack:1;
u_int16_t urg:1;
- urg res2:2;
+ u_int16_t res2:2;
#elif __BYTE_ORDER == __BIG_ENDIAN
u_int16_t doff:4;
u_int16_t res1:4;
diff --git a/time/tzfile.c b/time/tzfile.c
index 88e86e33b1..c90e05749f 100644
--- a/time/tzfile.c
+++ b/time/tzfile.c
@@ -112,8 +112,8 @@ __tzfile_read (const char *file)
/* No user specification; use the site-wide default. */
file = TZDEFAULT;
else if (*file == '\0')
- /* User specified the empty string; use UTC explicitly. */
- file = "Universal";
+ /* User specified the empty string; use UTC with no leap seconds. */
+ return;
else
{
/* We must not allow to read an arbitrary file in a setuid
@@ -455,7 +455,7 @@ __tzfile_compute (time_t timer, long int *leap_correct, int *leap_hit)
return 1;
}
-void
+static void
compute_tzname_max (size_t chars)
{
extern size_t __tzname_cur_max; /* Defined in tzset.c. */
diff --git a/time/tzset.c b/time/tzset.c
index e0c39552ca..979a33b069 100644
--- a/time/tzset.c
+++ b/time/tzset.c
@@ -17,6 +17,7 @@
Boston, MA 02111-1307, USA. */
#include <ctype.h>
+#include <libc-lock.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
@@ -44,6 +45,9 @@ weak_alias (__tzname, tzname)
weak_alias (__daylight, daylight)
weak_alias (__timezone, timezone)
+/* This locks all the state variables in tzfile.c and this file. */
+__libc_lock_define (static, tzset_lock)
+
#define min(a, b) ((a) < (b) ? (a) : (b))
#define max(a, b) ((a) > (b) ? (a) : (b))
@@ -430,8 +434,12 @@ size_t __tzname_cur_max;
long int
__tzname_max ()
{
+ __libc_lock_lock (tzset_lock);
+
__tzset_internal (0);
+ __libc_lock_unlock (tzset_lock);
+
return __tzname_cur_max;
}
@@ -552,18 +560,13 @@ __tz_compute (timer, tm)
return 1;
}
-#include <libc-lock.h>
-
-/* This locks all the state variables in tzfile.c and this file. */
-__libc_lock_define (, __tzset_lock)
-
/* Reinterpret the TZ environment variable and set `tzname'. */
#undef tzset
void
__tzset (void)
{
- __libc_lock_lock (__tzset_lock);
+ __libc_lock_lock (tzset_lock);
__tzset_internal (1);
@@ -574,6 +577,6 @@ __tzset (void)
__tzname[1] = (char *) tz_rules[1].name;
}
- __libc_lock_unlock (__tzset_lock);
+ __libc_lock_unlock (tzset_lock);
}
weak_alias (__tzset, tzset)