]> err.no Git - util-linux/commitdiff
Imported from util-linux-2.12l tarball.
authorKarel Zak <kzak@redhat.com>
Wed, 6 Dec 2006 23:26:28 +0000 (00:26 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 6 Dec 2006 23:26:28 +0000 (00:26 +0100)
36 files changed:
HISTORY
VERSION
fdisk/fdisk.h
fdisk/fdisksgilabel.c
fdisk/fdisksunlabel.c
fdisk/sfdisk.8
fdisk/sfdisk.c
hwclock/Makefile
hwclock/cmos.c
hwclock/hwclock.8
hwclock/hwclock.c
hwclock/kd.c
hwclock/rtc.c
login-utils/simpleinit.c
misc-utils/ddate.1
mount/swapon.c
mount/umount.c
po/Makefile
po/ca.po
po/cat-id-tbl.c [deleted file]
po/cs.po
po/da.po
po/de.po
po/es.po
po/et.po
po/fi.po
po/fr.po
po/it.po
po/ja.po
po/nl.po
po/pt_BR.po
po/sl.po
po/sv.po
po/tr.po
po/uk.po
sys-utils/dmesg.8

diff --git a/HISTORY b/HISTORY
index a3f32b424f60ff72642a58b31159a634ed7184f7..3cdcef28ab775cbf804039e59f4777e4ba1e78e9 100644 (file)
--- a/HISTORY
+++ b/HISTORY
@@ -1,3 +1,13 @@
+util-linux 2.12l
+
+* Makefile: remove cat-id-tbl.c upon make clean
+* fdisk: fixed a bug that would cause a non-update of a sun disklabel
+* fdisk: use sectorsize instead of 512 for SGI (Eric Y. Theriault)
+* fdisk: use __attribute__((packed)) for alpha, ARM: avoid unaligned accesses
+* hwclock: actually use HAVE_tm_gmtoff
+* swapon: fix priority handling
+* umount: refuse to unmount an empty string
+
 util-linux 2.12k
 
 * cfdisk: fixed a signed character bug causing problems for Spanish users
diff --git a/VERSION b/VERSION
index 5a43192dd8de0e0d0dd14a2c9aad34909d3c7473..64d500a2f789af2950d6e36f959d21170924cc6d 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.12k
+2.12l
index 6daadd90bf698752fc6307fa20b24e8b09a6a3b3..13c07147b76b6cd93e304a2298fff09ea7f750ef 100644 (file)
 extern long long ext2_llseek(unsigned int fd, long long offset,
                             unsigned int origin);
 
+#if defined(__GNUC__) && (defined(__arm__) || defined(__alpha__))
+# define PACKED __attribute__ ((packed))
+#else
+# define PACKED
+#endif
+
 struct partition {
        unsigned char boot_ind;         /* 0x80 - active */
        unsigned char head;             /* starting head */
@@ -40,7 +46,7 @@ struct partition {
        unsigned char end_cyl;          /* end cylinder */
        unsigned char start4[4];        /* starting sector counting from 0 */
        unsigned char size4[4];         /* nr of sectors in partition */
-};
+} PACKED;
 
 enum failure {usage, usage2, ioctl_error,
        unable_to_open, unable_to_read, unable_to_seek,
index 663e925aa1daa383a74111b694bada91a47d9890..b46515e28fba698ba2ec1f3b08fedbd735eefac8 100644 (file)
@@ -201,19 +201,21 @@ sgi_list_table(int xtra) {
                         "%d cylinders, %d physical cylinders\n"
                         "%d extra sects/cyl, interleave %d:1\n"
                         "%s\n"
-                        "Units = %s of %d * 512 bytes\n\n"),
+                        "Units = %s of %d * %d bytes\n\n"),
                       disk_device, heads, sectors, cylinders,
                       SSWAP16(sgiparam.pcylcount),
                       SSWAP16(sgiparam.sparecyl),
                       SSWAP16(sgiparam.ilfact),
                       (char *)sgilabel,
-                      str_units(PLURAL), units_per_sector);
+                      str_units(PLURAL), units_per_sector,
+                       sector_size);
        } else {
                printf(_("\nDisk %s (SGI disk label): "
                         "%d heads, %d sectors, %d cylinders\n"
-                        "Units = %s of %d * 512 bytes\n\n"),
+                        "Units = %s of %d * %d bytes\n\n"),
                       disk_device, heads, sectors, cylinders,
-                      str_units(PLURAL), units_per_sector);
+                      str_units(PLURAL), units_per_sector,
+                       sector_size);
        }
        printf(_("----- partitions -----\n"
                 "Pt# %*s  Info     Start       End   Sectors  Id  System\n"),
@@ -766,7 +768,7 @@ create_sgilabel(void)
        sgilabel->devparam.unused1                      = SSWAP16(0);
        sgilabel->devparam.nsect                        = SSWAP16(geometry.sectors);
        /* sectors/track */
-       sgilabel->devparam.bytes                        = SSWAP16(512);
+       sgilabel->devparam.bytes                        = SSWAP16(sector_size);
        sgilabel->devparam.ilfact                       = SSWAP16(1);
        sgilabel->devparam.flags                        = SSWAP32(TRACK_FWD|\
                                                                  IGNORE_ERRORS|RESEEK);
index edfe4b9bfe2d3a6415e9225c43098ae04378b619..f4a67bd92cc7568fde692ebe1b3e87c2fd9cf32c 100644 (file)
@@ -379,8 +379,8 @@ void create_sunlabel(void)
        }
 
        set_all_unchanged();
-       set_changed(0);
        get_boot(create_empty_sun);
+       set_changed(0);
 }
 
 void
index 8fe8448dc12df660978bb7d7d8c6ecfcdc703aa2..554286469541960a5431e6adbb4644b4cbc42208 100644 (file)
@@ -538,9 +538,9 @@ There are too many options.
 .LP
 There is no support for non-DOS partition types.
 
-.SH AUTHOR
-A. E. Brouwer (aeb@cwi.nl)
-
+.\" .SH AUTHOR
+.\" A. E. Brouwer (aeb@cwi.nl)
+.\"
 .SH "SEE ALSO"
 .BR cfdisk (8),
 .BR fdisk (8),
index 8122d7539ba8e6af32d88b9ea75c86635acb00d7..9b1e0a575c626796d1fefb009fa683aa2ecfd736 100644 (file)
@@ -150,7 +150,7 @@ fatal(char *s, ...) {
 /*
  * arm needs PACKED - use it everywhere?
  */
-#if defined(__GNUC__) && defined(__arm__)
+#if defined(__GNUC__) && (defined(__arm__) || defined(__alpha__))
 # define PACKED __attribute__ ((packed))
 #else
 # define PACKED
index 88aa50cd8534c53d8871a7225baabf0e7d2a017d..730a355a8135343d2405471dcb98d3907df29e90 100644 (file)
@@ -17,6 +17,7 @@ all: $(SBIN)
 
 
 hwclock.o: hwclock.c
+hwclock.o cmos.o kd.o: ../defines.h
 hwclock.o cmos.o rtc.o kd.o: clock.h
 hwclock: hwclock.o cmos.o rtc.o kd.o
 
index 8d497b27e453ceb849ff4772925480170132decf..399a912c96dc6b341dabaf165e3daf96daa7e237 100644 (file)
@@ -46,6 +46,7 @@
 
 #include <unistd.h>            /* for geteuid() */
 #include <fcntl.h>             /* for O_RDWR */
+#include <errno.h>
 #include "../defines.h"                /* for HAVE_sys_io_h */
 #include "nls.h"
 
index 0d5f014c9ea5045c42a5b0e4ccd270b692971813..e3fcb41476ae71658a1592044655602d1177776f 100644 (file)
@@ -87,7 +87,7 @@ drift since the last time the clock was set or adjusted.  See discussion
 below.
 .TP
 .B \-\-getepoch
-Print out standard output the kernel's Hardware Clock epoch value.
+Print the kernel's Hardware Clock epoch value to standard output.
 This is the number of years into AD to which a zero year value in the
 Hardware Clock refers.  For example, if you are using the convention
 that the year counter in your Hardware Clock contains the number of
@@ -344,8 +344,11 @@ But don't be misled -- almost nobody cares what timezone the kernel
 thinks it is in.  Instead, programs that care about the timezone
 (perhaps because they want to display a local time for you) almost
 always use a more traditional method of determining the timezone: They
-use the TZ environment variable and/or the /usr/local/timezone
-directory, as explained in the man page for tzset(3).  However, some
+use the TZ environment variable and/or the
+.I /usr/share/zoneinfo
+directory, as explained in the man page for
+.BR tzset (3).
+However, some
 programs and fringe parts of the Linux kernel such as filesystems use
 the kernel timezone value.  An example is the vfat filesystem.  If the
 kernel timezone value is wrong, the vfat filesystem will report and
@@ -353,7 +356,8 @@ set the wrong timestamps on files.
 .PP
 .B hwclock
 sets the kernel timezone to the value indicated by TZ and/or
-/usr/local/timezone when you set the System Time using the 
+.I /usr/share/zoneinfo
+when you set the System Time using the 
 .B \-\-hctosys
 option.
 .PP
index eeabc3726dace0f92fcadda559f21f4449a620c0..7b7a4ef3b10ed2ff49897b0bdf5c7349c11c0f3e 100644 (file)
@@ -82,6 +82,7 @@
 #include <getopt.h>
 #include <sysexits.h>
 
+#include "../defines.h"                /* for HAVE_tm_gmtoff */
 #include "clock.h"
 #include "nls.h"
 
index cac7678882c5d07b2331f7baabe7bf24035933ac..2581fa5ddfa80394f586aed3992b1218fb80cc37 100644 (file)
@@ -12,6 +12,7 @@ probe_for_kd_clock() {
 
 #include <unistd.h>            /* for close() */
 #include <fcntl.h>             /* for O_RDONLY */
+#include <errno.h>
 #include <sysexits.h>
 #include <sys/ioctl.h>
 
index cbb2dddea86f44598aab75461377b77f11494db0..a2aa0b8251c06ee7f944570869a1bdcdd876e770 100644 (file)
@@ -1,6 +1,7 @@
 /* rtc.c - Use /dev/rtc for clock access */
 #include <unistd.h>            /* for close() */
 #include <fcntl.h>             /* for O_RDONLY */
+#include <errno.h>
 #include <sysexits.h>
 #include <sys/ioctl.h>
 #include <sys/time.h>          /* for struct timeval */
index 093c00303165926e9d6e9892dda618e7d481164f..89c14a8dcb1e79cb8cb3523a7754456db7377fd4 100644 (file)
@@ -25,6 +25,8 @@
 #include <fcntl.h>
 #include <string.h>
 #include <signal.h>
+#include <errno.h>
+#include <time.h>
 #include <pwd.h>
 #include <sys/file.h>
 #include <sys/wait.h>
index 7d17c82484ed2706afd3d6e2e730d93c05a09cfa..32e80c5a2d4e91cf15df829db8c001b68b44f99a 100644 (file)
@@ -68,7 +68,7 @@ It's Prickle-Prickle, the 50th of Bureaucracy, 3161.
 .br
 Celebrate Bureflux
 .PP
-% ddate +'Today's %{%A, the %e of %B%}, %Y. %N%nCelebrate %H' 29 2 1996
+% ddate +"Today's %{%A, the %e of %B%}, %Y. %N%nCelebrate %H" 29 2 1996
 .br
 Today's St. Tib's Day, 3162. 
 .br
index dce1bf877568e12d6f08dbb91d12aadcd8349b21..17c45cbdd6e05a52b665e983ca6601b480b5396e 100644 (file)
@@ -306,6 +306,7 @@ main_swapon(int argc, char *argv[]) {
                while ((fstab = getmntent(fp)) != NULL) {
                        char *special = fstab->mnt_fsname;
                        int skip = 0;
+                       int pri = priority;
 
                        if (streq(fstab->mnt_type, MNTTYPE_SWAP) &&
                            !is_in_proc_swaps(special)
@@ -316,12 +317,12 @@ main_swapon(int argc, char *argv[]) {
                                for (opt = strtok(opts, ","); opt != NULL;
                                     opt = strtok(NULL, ",")) {
                                        if (strncmp(opt, "pri=", 4) == 0)
-                                               priority = atoi(opt+4);
+                                               pri = atoi(opt+4);
                                        if (strcmp(opt, "noauto") == 0)
                                                skip = 1;
                                }
                                if (!skip)
-                                       status |= do_swapon(special, priority);
+                                       status |= do_swapon(special, pri);
                        }
                }
                fclose(fp);
index 34ca1084f1753bd912fa2c020f89159c157115d8..15d94f938bcfbdb2a5d9a991cee6a1487259a8c8 100644 (file)
@@ -549,6 +549,11 @@ umount_file (char *arg) {
        int fstab_has_user, fstab_has_users, fstab_has_owner, fstab_has_group;
        int ok;
 
+       if (!*arg) {            /* "" would be expanded to `pwd` */
+               die(2, _("Cannot umount \"\"\n"));
+               return 0;
+       }
+
        file = canonicalize(arg); /* mtab paths are canonicalized */
        if (verbose > 1)
                printf(_("Trying to umount %s\n"), file);
index ad1a6a3e1f1314dfea6696d7bde28dc98def720e..6742fac5e164583d3568198881a31a9507c85499 100644 (file)
@@ -125,7 +125,7 @@ uninstall:
 cat-id-tbl.o: $(INTL)/libgettext.h
 
 clean:
-       rm -f core core.* *~ *.o util-linux.pot cat-id-tbl.tmp
+       rm -f core core.* *~ *.o util-linux.pot cat-id-tbl.c cat-id-tbl.tmp
 
 distclean: clean
        rm -f POTFILES *.gmo *.mo *.msg *.cat *.cat.m
index 1156a0e0f977d4f48a552d687bc221407680f2a5..3217486d073ba774f0e015edb8302287bf625028 100644 (file)
--- a/po/ca.po
+++ b/po/ca.po
@@ -10,7 +10,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2003-08-01 10:59+0200\n"
 "Last-Translator: Antoni Bella Perez <bella5@teleline.es>\n"
 "Language-Team: Catalan <ca@dodds.net>\n"
@@ -1611,7 +1611,7 @@ msgstr "   Lògica"
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Desconegut"
 
@@ -2737,7 +2737,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Arrenc.   Comença       Acaba    Blocs    Id  Sistema\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Dispositiu"
 
@@ -2819,13 +2819,13 @@ msgstr "El total de sectors assignats %d supera el màxim de %d\n"
 msgid "%lld unallocated sectors\n"
 msgstr "%d sectors no assignats\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr ""
 "La partició %d ja està definida. Esborreu-la abans de tornar-la a afegir.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3433,14 +3433,14 @@ msgstr ""
 "Detectada una etiqueta de disc sgi amb una suma de comprovació incorrecta.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3451,12 +3451,12 @@ msgstr ""
 "Unitats = %s de %d * 512 octets\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3464,7 +3464,7 @@ msgstr ""
 "Unitats = %s de %d * 512 octets\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3473,7 +3473,7 @@ msgstr ""
 "----- particions -----\n"
 "Pt# %*s  Info     Comença    Acaba  Sectors  Id  Sistema\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3484,13 +3484,13 @@ msgstr ""
 "Fitxer d'arrencada: %s\n"
 "----- Entrades de directoris -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s sector%5u mida%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3502,7 +3502,7 @@ msgstr ""
 "\tEl fitxer d'arrencada ha de ser un nom de ruta absolut\n"
 "\tdiferent de zero, p.e. \"/unix\" o \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3510,7 +3510,7 @@ msgstr ""
 "\n"
 "\tNom del fitxer d'arrencada massa llarg: Màxim de 16 octets.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3519,7 +3519,7 @@ msgstr ""
 "\tEl fitxer d'arrencada ha de tindre un nom de ruta completament "
 "qualificat.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3530,7 +3530,7 @@ msgstr ""
 "\tEl valor per defecte SGI és \"/unix\" i per a la còpia de seguretat \"/"
 "unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3539,19 +3539,19 @@ msgstr ""
 "\n"
 "\tEs canvia el fitxer d'arrencada a \"%s\".\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Hi ha present més d'una entrada de disc completa.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "No hi han particions definides\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "Per a IRIX es recomana que la partició 11 abasti tot el disc.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3560,7 +3560,7 @@ msgstr ""
 "La partició del disc sencer ha de començar en el bloc 0,\n"
 "no en el bloc de disc %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3569,31 +3569,31 @@ msgstr ""
 "La partició de disc sencer sols té un mida de %d blocs,\n"
 "mentres que el disc té una longitud de %d blocs.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "Una partició (11) haurà d'abastar el disc sencer.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "La partició %d no comença en un límit de cilindre.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "La partició %d no acaba en un límit de cilindre.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "Les particions %d i %d es solapen en %d sectors.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Espai no usat de %8u sectors - sectors %8u-%u\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3601,7 +3601,7 @@ msgstr ""
 "\n"
 "La partició d'arrencada no existeix.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3609,7 +3609,7 @@ msgstr ""
 "\n"
 "La partició d'intercanvi no existeix.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3617,16 +3617,16 @@ msgstr ""
 "\n"
 "La partició d'intercanvi no és del tipus d'intercanvi.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tHeu escollit un nom de fitxer d'arrencada inusual.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Ho sento sols podeu canviar l'etiqueta de les particions no buides.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3640,29 +3640,29 @@ msgstr ""
 "Sols la secció de disc sencer \"Volúmen SGI\" pot infringir això.\n"
 "Escriviu SI si esteu segur sobre tornar a etiquetar aquesta partició.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "SI\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr "Sabeu si heu produït un solapament de partició en el disc?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr "S'intenta generar una entrada de disc sencer automàticament.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "El disc sencer ja està cobert amb particions.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "S'ha produït un solapament de particions en el disc. Corregiu això primer!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3670,17 +3670,17 @@ msgstr ""
 "Es altament recomenat que la partició onze cobreixi\n"
 "el disc sencer i que sigui del tipus `Volúmen SGI'\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Es produirà un solapament de particions en el disc. Corregiu això primer!\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Últim %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3692,7 +3692,7 @@ msgstr ""
 "contingut serà irrecuperable.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3704,12 +3704,12 @@ msgstr ""
 "la geometria del cilindre. Aquest valor es podria tuncar per a dispositius > "
 "33,8 GB.\n"
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "S'intenten mantindre els paràmetres de la partició %d.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tCOMENÇAMENT=%d\tLONGITUD=%d\n"
@@ -8547,42 +8547,42 @@ msgstr ""
 "opcions]\n"
 "    umount [-f] [-r] [-n] [-v] especial | node...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "S'intenta desmuntar %s\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "No es pot trobar a %s en mtab\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s no està muntat (segons mtab)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: Sembla que %s ha estat muntat diverses vegades"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s no està en el fstab (i no sou el root)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: El muntatge de %s no concorda amb el fstab"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, fuzzy, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: Sols el root pot desmuntar %s des de %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: Sols el root pot fer això"
 
diff --git a/po/cat-id-tbl.c b/po/cat-id-tbl.c
deleted file mode 100644 (file)
index c6738c9..0000000
+++ /dev/null
@@ -1,2533 +0,0 @@
-/* Automatically generated by po2tbl.sed from util-linux.pot.  */
-
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include "libgettext.h"
-
-const struct _msg_ent _msg_tbl[] = {
-  {"", 1},
-  {"set read-only", 2},
-  {"set read-write", 3},
-  {"get read-only", 4},
-  {"get sectorsize", 5},
-  {"get blocksize", 6},
-  {"set blocksize", 7},
-  {"get 32-bit sector count", 8},
-  {"get size in bytes", 9},
-  {"set readahead", 10},
-  {"get readahead", 11},
-  {"flush buffers", 12},
-  {"reread partition table", 13},
-  {"Usage:\n", 14},
-  {"  %s --report [devices]\n", 15},
-  {"  %s [-v|-q] commands devices\n", 16},
-  {"Available commands:\n", 17},
-  {"%s: Unknown command: %s\n", 18},
-  {"%s requires an argument\n", 19},
-  {"%s succeeded.\n", 20},
-  {"%s: cannot open %s\n", 21},
-  {"%s: ioctl error on %s\n", 22},
-  {"RO    RA   SSZ   BSZ   StartSec     Size    Device\n", 23},
-  {"usage:\n", 24},
-  {"Formatting ... ", 25},
-  {"done\n", 26},
-  {"Verifying ... ", 27},
-  {"Read: ", 28},
-  {"Problem reading cylinder %d, expected %d, read %d\n", 29},
-  {"\
-bad data in cyl %d\n\
-Continuing ... ", 30},
-  {"usage: %s [ -n ] device\n", 31},
-  {"%s from %s\n", 32},
-  {"%s: not a block device\n", 33},
-  {"Could not determine current format type", 34},
-  {"%s-sided, %d tracks, %d sec/track. Total capacity %d kB.\n", 35},
-  {"Double", 36},
-  {"Single", 37},
-  {"\
-usage: %s [-hv] [-x dir] file\n\
- -h         print this help\n\
- -x dir     extract into dir\n\
- -v         be more verbose\n\
- file       file to test\n", 38},
-  {"%s: error %d while decompressing! %p(%d)\n", 39},
-  {"%s: size error in symlink `%s'\n", 40},
-  {"  uncompressing block at %ld to %ld (%ld)\n", 41},
-  {"%s: bogus mode on `%s' (%o)\n", 42},
-  {"  hole at %ld (%d)\n", 43},
-  {"%s: Non-block (%ld) bytes\n", 44},
-  {"%s: Non-size (%ld vs %ld) bytes\n", 45},
-  {"%s: invalid cramfs--bad path length\n", 46},
-  {"%s: compiled without -x support\n", 47},
-  {"%s: warning--unable to determine filesystem size \n", 48},
-  {"%s is not a block device or file\n", 49},
-  {"%s: invalid cramfs--file length too short\n", 50},
-  {"%s: invalid cramfs--wrong magic\n", 51},
-  {"%s: warning--file length too long, padded image?\n", 52},
-  {"%s: invalid cramfs--crc error\n", 53},
-  {"%s: warning--old cramfs image, no CRC\n", 54},
-  {"%s: invalid cramfs--bad superblock\n", 55},
-  {"%s: invalid cramfs--directory data end (%ld) != file data start (%ld)\n", 56},
-  {"%s: invalid cramfs--invalid file data offset\n", 57},
-  {"Usage: %s [-larvsmf] /dev/name\n", 58},
-  {"%s is mounted.\t ", 59},
-  {"Do you really want to continue", 60},
-  {"check aborted.\n", 61},
-  {"Zone nr < FIRSTZONE in file `%s'.", 62},
-  {"Zone nr >= ZONES in file `%s'.", 63},
-  {"Remove block", 64},
-  {"Read error: unable to seek to block in file '%s'\n", 65},
-  {"Read error: bad block in file '%s'\n", 66},
-  {"\
-Internal error: trying to write bad block\n\
-Write request ignored\n", 67},
-  {"seek failed in write_block", 68},
-  {"Write error: bad block in file '%s'\n", 69},
-  {"seek failed in write_super_block", 70},
-  {"unable to write super-block", 71},
-  {"Unable to write inode map", 72},
-  {"Unable to write zone map", 73},
-  {"Unable to write inodes", 74},
-  {"seek failed", 75},
-  {"unable to read super block", 76},
-  {"bad magic number in super-block", 77},
-  {"Only 1k blocks/zones supported", 78},
-  {"bad s_imap_blocks field in super-block", 79},
-  {"bad s_zmap_blocks field in super-block", 80},
-  {"Unable to allocate buffer for inode map", 81},
-  {"Unable to allocate buffer for inodes", 82},
-  {"Unable to allocate buffer for inode count", 83},
-  {"Unable to allocate buffer for zone count", 84},
-  {"Unable to read inode map", 85},
-  {"Unable to read zone map", 86},
-  {"Unable to read inodes", 87},
-  {"Warning: Firstzone != Norm_firstzone\n", 88},
-  {"%ld inodes\n", 89},
-  {"%ld blocks\n", 90},
-  {"Firstdatazone=%ld (%ld)\n", 91},
-  {"Zonesize=%d\n", 92},
-  {"Maxsize=%ld\n", 93},
-  {"Filesystem state=%d\n", 94},
-  {"\
-namelen=%d\n\
-\n", 95},
-  {"Inode %d marked unused, but used for file '%s'\n", 96},
-  {"Mark in use", 97},
-  {"The file `%s' has mode %05o\n", 98},
-  {"Warning: inode count too big.\n", 99},
-  {"root inode isn't a directory", 100},
-  {"Block has been used before. Now in file `%s'.", 101},
-  {"Clear", 102},
-  {"Block %d in file `%s' is marked not in use.", 103},
-  {"Correct", 104},
-  {"The directory '%s' contains a bad inode number for file '%.*s'.", 105},
-  {" Remove", 106},
-  {"`%s': bad directory: '.' isn't first\n", 107},
-  {"`%s': bad directory: '..' isn't second\n", 108},
-  {"%s: bad directory: '.' isn't first\n", 109},
-  {"%s: bad directory: '..' isn't second\n", 110},
-  {"internal error", 111},
-  {"%s: bad directory: size < 32", 112},
-  {"seek failed in bad_zone", 113},
-  {"Inode %d mode not cleared.", 114},
-  {"Inode %d not used, marked used in the bitmap.", 115},
-  {"Inode %d used, marked unused in the bitmap.", 116},
-  {"Inode %d (mode = %07o), i_nlinks=%d, counted=%d.", 117},
-  {"Set i_nlinks to count", 118},
-  {"Zone %d: marked in use, no file uses it.", 119},
-  {"Unmark", 120},
-  {"Zone %d: in use, counted=%d\n", 121},
-  {"Zone %d: not in use, counted=%d\n", 122},
-  {"Set", 123},
-  {"bad inode size", 124},
-  {"bad v2 inode size", 125},
-  {"need terminal for interactive repairs", 126},
-  {"unable to open '%s'", 127},
-  {"%s is clean, no check.\n", 128},
-  {"Forcing filesystem check on %s.\n", 129},
-  {"Filesystem on %s is dirty, needs checking.\n", 130},
-  {"\
-\n\
-%6ld inodes used (%ld%%)\n", 131},
-  {"%6ld zones used (%ld%%)\n", 132},
-  {"\
-\n\
-%6d regular files\n\
-%6d directories\n\
-%6d character device files\n\
-%6d block device files\n\
-%6d links\n\
-%6d symbolic links\n\
-------\n\
-%6d files\n", 133},
-  {"\
-----------------------------\n\
-FILE SYSTEM HAS BEEN CHANGED\n\
-----------------------------\n", 134},
-  {"%s: failed to open: %s\n", 135},
-  {"%s: seek error on %s\n", 136},
-  {"%s: read error on %s\n", 137},
-  {"sector count: %d, sector size: %d\n", 138},
-  {"%s: option parse error\n", 139},
-  {"Usage: %s [-x] [-d <num>] iso9660-image\n", 140},
-  {"\
-Usage: %s [-v] [-N nr-of-inodes] [-V volume-name]\n\
-       [-F fsname] device [block-count]\n", 141},
-  {"volume name too long", 142},
-  {"fsname name too long", 143},
-  {"cannot stat device %s", 144},
-  {"%s is not a block special device", 145},
-  {"cannot open %s", 146},
-  {"cannot get size of %s", 147},
-  {"blocks argument too large, max is %lu", 148},
-  {"too many inodes - max is 512", 149},
-  {"not enough space, need at least %lu blocks", 150},
-  {"Device: %s\n", 151},
-  {"Volume: <%-6s>\n", 152},
-  {"FSname: <%-6s>\n", 153},
-  {"BlockSize: %d\n", 154},
-  {"Inodes: %d (in 1 block)\n", 155},
-  {"Inodes: %d (in %ld blocks)\n", 156},
-  {"Blocks: %ld\n", 157},
-  {"Inode end: %d, Data end: %d\n", 158},
-  {"error writing superblock", 159},
-  {"error writing root inode", 160},
-  {"error writing inode", 161},
-  {"seek error", 162},
-  {"error writing . entry", 163},
-  {"error writing .. entry", 164},
-  {"error closing %s", 165},
-  {"Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n", 166},
-  {"%s: Out of memory!\n", 167},
-  {"mkfs version %s (%s)\n", 168},
-  {"\
-usage: %s [-v] [-b blksz] [-e edition] [-i file] [-n name] dirname outfile\n\
- -h         print this help\n\
- -v         be verbose\n\
- -E         make all warnings errors (non-zero exit status)\n\
- -b blksz   use this blocksize, must equal page size\n\
- -e edition set edition number (part of fsid)\n\
- -i file    insert a file image into the filesystem (requires >= 2.4.0)\n\
- -n name    set name of cramfs filesystem\n\
- -p         pad by %d bytes for boot code\n\
- -s         sort directory entries (old option, ignored)\n\
- -z         make explicit holes (requires >= 2.3.39)\n\
- dirname    root of the filesystem to be compressed\n\
- outfile    output file\n", 169},
-  {"\
-Very long (%u bytes) filename `%s' found.\n\
- Please increase MAX_INPUT_NAMELEN in mkcramfs.c and recompile.  Exiting.\n", 170},
-  {"filesystem too big.  Exiting.\n", 171},
-  {"\
-Exceeded MAXENTRIES.  Raise this value in mkcramfs.c and recompile.  \
-Exiting.\n", 172},
-  {"AIEEE: block \"compressed\" to > 2*blocklength (%ld)\n", 173},
-  {"%6.2f%% (%+d bytes)\t%s\n", 174},
-  {"\
-warning: guestimate of required size (upper bound) is %LdMB, but maximum \
-image size is %uMB.  We might die prematurely.\n", 175},
-  {"Including: %s\n", 176},
-  {"Directory data: %d bytes\n", 177},
-  {"Everything: %d kilobytes\n", 178},
-  {"Super block: %d bytes\n", 179},
-  {"CRC: %x\n", 180},
-  {"not enough space allocated for ROM image (%Ld allocated, %d used)\n", 181},
-  {"ROM image write failed (%d %d)\n", 182},
-  {"warning: filenames truncated to 255 bytes.\n", 183},
-  {"warning: files were skipped due to errors.\n", 184},
-  {"warning: file sizes truncated to %luMB (minus 1 byte).\n", 185},
-  {"\
-warning: uids truncated to %u bits.  (This may be a security concern.)\n", 186},
-  {"\
-warning: gids truncated to %u bits.  (This may be a security concern.)\n", 187},
-  {"\
-WARNING: device numbers truncated to %u bits.  This almost certainly means\n\
-that some device files will be wrong.\n", 188},
-  {"Usage: %s [-c | -l filename] [-nXX] [-iXX] /dev/name [blocks]\n", 189},
-  {"%s is mounted; will not make a filesystem here!", 190},
-  {"seek to boot block failed in write_tables", 191},
-  {"unable to clear boot sector", 192},
-  {"seek failed in write_tables", 193},
-  {"unable to write inode map", 194},
-  {"unable to write zone map", 195},
-  {"unable to write inodes", 196},
-  {"write failed in write_block", 197},
-  {"too many bad blocks", 198},
-  {"not enough good blocks", 199},
-  {"unable to allocate buffers for maps", 200},
-  {"unable to allocate buffer for inodes", 201},
-  {"\
-Maxsize=%ld\n\
-\n", 202},
-  {"seek failed during testing of blocks", 203},
-  {"Weird values in do_check: probably bugs\n", 204},
-  {"seek failed in check_blocks", 205},
-  {"bad blocks before data-area: cannot make fs", 206},
-  {"%d bad blocks\n", 207},
-  {"one bad block\n", 208},
-  {"can't open file of bad blocks", 209},
-  {"strtol error: number of blocks not specified", 210},
-  {"unable to open %s", 211},
-  {"unable to stat %s", 212},
-  {"will not try to make filesystem on '%s'", 213},
-  {"Bad user-specified page size %d\n", 214},
-  {"Using user-specified page size %d, instead of the system values %d/%d\n", 215},
-  {"Assuming pages of size %d (not %d)\n", 216},
-  {"Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n", 217},
-  {"too many bad pages", 218},
-  {"Out of memory", 219},
-  {"one bad page\n", 220},
-  {"%lu bad pages\n", 221},
-  {"%s: error: Nowhere to set up swap on?\n", 222},
-  {"%s: error: size %lu is larger than device size %lu\n", 223},
-  {"%s: error: unknown version %d\n", 224},
-  {"%s: error: swap area needs to be at least %ldkB\n", 225},
-  {"%s: warning: truncating swap area to %ldkB\n", 226},
-  {"Will not try to make swapdevice on '%s'", 227},
-  {"fatal: first page unreadable", 228},
-  {"\
-%s: Device '%s' contains a valid Sun disklabel.\n\
-This probably means creating v0 swap would destroy your partition table\n\
-No swap created. If you really want to create swap v0 on that device, use\n\
-the -f option to force it.\n", 229},
-  {"Unable to set up swap-space: unreadable", 230},
-  {"Setting up swapspace version %d, size = %llu kB\n", 231},
-  {"unable to rewind swap-device", 232},
-  {"unable to write signature page", 233},
-  {"fsync failed", 234},
-  {"Invalid number: %s\n", 235},
-  {"Syntax error: '%s'\n", 236},
-  {"No such parameter set: '%s'\n", 237},
-  {"   %s [ -p ] dev name\n", 238},
-  {"\
-   %s [ -p ] dev size sect heads tracks stretch gap rate spec1 fmt_gap\n", 239},
-  {"   %s [ -c | -y | -n | -d ] dev\n", 240},
-  {"   %s [ -c | -y | -n ] dev\n", 241},
-  {"Unusable", 242},
-  {"Free Space", 243},
-  {"Linux ext2", 244},
-  {"Linux ext3", 245},
-  {"Linux XFS", 246},
-  {"Linux ReiserFS", 247},
-  {"Linux", 248},
-  {"OS/2 HPFS", 249},
-  {"OS/2 IFS", 250},
-  {"NTFS", 251},
-  {"Disk has been changed.\n", 252},
-  {"Reboot the system to ensure the partition table is correctly updated.\n", 253},
-  {"\
-\n\
-WARNING: If you have created or modified any\n\
-DOS 6.x partitions, please see the cfdisk manual\n\
-page for additional information.\n", 254},
-  {"FATAL ERROR", 255},
-  {"Press any key to exit cfdisk", 256},
-  {"Cannot seek on disk drive", 257},
-  {"Cannot read disk drive", 258},
-  {"Cannot write disk drive", 259},
-  {"Too many partitions", 260},
-  {"Partition begins before sector 0", 261},
-  {"Partition ends before sector 0", 262},
-  {"Partition begins after end-of-disk", 263},
-  {"Partition ends after end-of-disk", 264},
-  {"Partition ends in the final partial cylinder", 265},
-  {"logical partitions not in disk order", 266},
-  {"logical partitions overlap", 267},
-  {"enlarged logical partitions overlap", 268},
-  {"\
-!!!! Internal error creating logical drive with no extended partition !!!!", 269},
-  {"\
-Cannot create logical drive here -- would create two extended partitions", 270},
-  {"Menu item too long. Menu may look odd.", 271},
-  {"Menu without direction. Defaulting horizontal.", 272},
-  {"Illegal key", 273},
-  {"Press a key to continue", 274},
-  {"Primary", 275},
-  {"Create a new primary partition", 276},
-  {"Logical", 277},
-  {"Create a new logical partition", 278},
-  {"Cancel", 279},
-  {"Don't create a partition", 280},
-  {"!!! Internal error !!!", 281},
-  {"Size (in MB): ", 282},
-  {"Beginning", 283},
-  {"Add partition at beginning of free space", 284},
-  {"End", 285},
-  {"Add partition at end of free space", 286},
-  {"No room to create the extended partition", 287},
-  {"No partition table.\n", 288},
-  {"No partition table. Starting with zero table.", 289},
-  {"Bad signature on partition table", 290},
-  {"Unknown partition table type", 291},
-  {"Do you wish to start with a zero table [y/N] ?", 292},
-  {"You specified more cylinders than fit on disk", 293},
-  {"Cannot open disk drive", 294},
-  {"Opened disk read-only - you have no permission to write", 295},
-  {"Cannot get disk size", 296},
-  {"Bad primary partition", 297},
-  {"Bad logical partition", 298},
-  {"Warning!!  This may destroy data on your disk!", 299},
-  {"Are you sure you want write the partition table to disk? (yes or no): ", 300},
-  {"no", 301},
-  {"Did not write partition table to disk", 302},
-  {"yes", 303},
-  {"Please enter `yes' or `no'", 304},
-  {"Writing partition table to disk...", 305},
-  {"Wrote partition table to disk", 306},
-  {"\
-Wrote partition table, but re-read table failed.  Reboot to update table.", 307},
-  {"No primary partitions are marked bootable. DOS MBR cannot boot this.", 308},
-  {"\
-More than one primary partition is marked bootable. DOS MBR cannot boot this.", 309},
-  {"Enter filename or press RETURN to display on screen: ", 310},
-  {"Cannot open file '%s'", 311},
-  {"Disk Drive: %s\n", 312},
-  {"Sector 0:\n", 313},
-  {"Sector %d:\n", 314},
-  {"   None   ", 315},
-  {"   Pri/Log", 316},
-  {"   Primary", 317},
-  {"   Logical", 318},
-  {"Unknown", 319},
-  {"Boot", 320},
-  {"(%02X)", 321},
-  {"None", 322},
-  {"Partition Table for %s\n", 323},
-  {"               First       Last\n", 324},
-  {"\
- # Type       Sector      Sector   Offset    Length   Filesystem Type (ID) \
-Flag\n", 325},
-  {"\
--- ------- ----------- ----------- ------ ----------- -------------------- \
-----\n", 326},
-  {"         ---Starting---      ----Ending----    Start     Number of\n", 327},
-  {" # Flags Head Sect Cyl   ID  Head Sect Cyl     Sector    Sectors\n", 328},
-  {"-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n", 329},
-  {"Raw", 330},
-  {"Print the table using raw data format", 331},
-  {"Sectors", 332},
-  {"Print the table ordered by sectors", 333},
-  {"Table", 334},
-  {"Just print the partition table", 335},
-  {"Don't print the table", 336},
-  {"Help Screen for cfdisk", 337},
-  {"This is cfdisk, a curses based disk partitioning program, which", 338},
-  {"allows you to create, delete and modify partitions on your hard", 339},
-  {"disk drive.", 340},
-  {"Copyright (C) 1994-1999 Kevin E. Martin & aeb", 341},
-  {"Command      Meaning", 342},
-  {"-------      -------", 343},
-  {"  b          Toggle bootable flag of the current partition", 344},
-  {"  d          Delete the current partition", 345},
-  {"  g          Change cylinders, heads, sectors-per-track parameters", 346},
-  {"             WARNING: This option should only be used by people who", 347},
-  {"             know what they are doing.", 348},
-  {"  h          Print this screen", 349},
-  {"  m          Maximize disk usage of the current partition", 350},
-  {"             Note: This may make the partition incompatible with", 351},
-  {"             DOS, OS/2, ...", 352},
-  {"  n          Create new partition from free space", 353},
-  {"  p          Print partition table to the screen or to a file", 354},
-  {"             There are several different formats for the partition", 355},
-  {"             that you can choose from:", 356},
-  {"                r - Raw data (exactly what would be written to disk)", 357},
-  {"                s - Table ordered by sectors", 358},
-  {"                t - Table in raw format", 359},
-  {"  q          Quit program without writing partition table", 360},
-  {"  t          Change the filesystem type", 361},
-  {"  u          Change units of the partition size display", 362},
-  {"             Rotates through MB, sectors and cylinders", 363},
-  {"  W          Write partition table to disk (must enter upper case W)", 364},
-  {"             Since this might destroy data on the disk, you must", 365},
-  {"             either confirm or deny the write by entering `yes' or", 366},
-  {"             `no'", 367},
-  {"Up Arrow     Move cursor to the previous partition", 368},
-  {"Down Arrow   Move cursor to the next partition", 369},
-  {"CTRL-L       Redraws the screen", 370},
-  {"  ?          Print this screen", 371},
-  {"Note: All of the commands can be entered with either upper or lower", 372},
-  {"case letters (except for Writes).", 373},
-  {"Cylinders", 374},
-  {"Change cylinder geometry", 375},
-  {"Heads", 376},
-  {"Change head geometry", 377},
-  {"Change sector geometry", 378},
-  {"Done", 379},
-  {"Done with changing geometry", 380},
-  {"Enter the number of cylinders: ", 381},
-  {"Illegal cylinders value", 382},
-  {"Enter the number of heads: ", 383},
-  {"Illegal heads value", 384},
-  {"Enter the number of sectors per track: ", 385},
-  {"Illegal sectors value", 386},
-  {"Enter filesystem type: ", 387},
-  {"Cannot change FS Type to empty", 388},
-  {"Cannot change FS Type to extended", 389},
-  {"Unk(%02X)", 390},
-  {", NC", 391},
-  {"NC", 392},
-  {"Pri/Log", 393},
-  {"Unknown (%02X)", 394},
-  {"Disk Drive: %s", 395},
-  {"Size: %lld bytes, %lld MB", 396},
-  {"Size: %lld bytes, %lld.%lld GB", 397},
-  {"Heads: %d   Sectors per Track: %d   Cylinders: %lld", 398},
-  {"Name", 399},
-  {"Flags", 400},
-  {"Part Type", 401},
-  {"FS Type", 402},
-  {"[Label]", 403},
-  {"    Sectors", 404},
-  {"  Cylinders", 405},
-  {"  Size (MB)", 406},
-  {"  Size (GB)", 407},
-  {"Bootable", 408},
-  {"Toggle bootable flag of the current partition", 409},
-  {"Delete", 410},
-  {"Delete the current partition", 411},
-  {"Geometry", 412},
-  {"Change disk geometry (experts only)", 413},
-  {"Help", 414},
-  {"Print help screen", 415},
-  {"Maximize", 416},
-  {"Maximize disk usage of the current partition (experts only)", 417},
-  {"New", 418},
-  {"Create new partition from free space", 419},
-  {"Print", 420},
-  {"Print partition table to the screen or to a file", 421},
-  {"Quit", 422},
-  {"Quit program without writing partition table", 423},
-  {"Type", 424},
-  {"Change the filesystem type (DOS, Linux, OS/2 and so on)", 425},
-  {"Units", 426},
-  {"Change units of the partition size display (MB, sect, cyl)", 427},
-  {"Write", 428},
-  {"Write partition table to disk (this might destroy data)", 429},
-  {"Cannot make this partition bootable", 430},
-  {"Cannot delete an empty partition", 431},
-  {"Cannot maximize this partition", 432},
-  {"This partition is unusable", 433},
-  {"This partition is already in use", 434},
-  {"Cannot change the type of an empty partition", 435},
-  {"No more partitions", 436},
-  {"Illegal command", 437},
-  {"Copyright (C) 1994-2002 Kevin E. Martin & aeb\n", 438},
-  {"\
-\n\
-Usage:\n\
-Print version:\n\
-        %s -v\n\
-Print partition table:\n\
-        %s -P {r|s|t} [options] device\n\
-Interactive use:\n\
-        %s [options] device\n\
-\n\
-Options:\n\
--a: Use arrow instead of highlighting;\n\
--z: Start with a zero partition table, instead of reading the pt from disk;\n\
--c C -h H -s S: Override the kernel's idea of the number of cylinders,\n\
-                the number of heads and the number of sectors/track.\n\
-\n", 439},
-  {"\
-Usage: fdisk [-b SSZ] [-u] DISK     Change partition table\n\
-       fdisk -l [-b SSZ] [-u] DISK  List partition table(s)\n\
-       fdisk -s PARTITION           Give partition size(s) in blocks\n\
-       fdisk -v                     Give fdisk version\n\
-Here DISK is something like /dev/hdb or /dev/sda\n\
-and PARTITION is something like /dev/hda7\n\
--u: give Start and End in sector (instead of cylinder) units\n\
--b 2048: (for certain MO disks) use 2048-byte sectors\n", 440},
-  {"\
-Usage: fdisk [-l] [-b SSZ] [-u] device\n\
-E.g.: fdisk /dev/hda  (for the first IDE disk)\n\
-  or: fdisk /dev/sdc  (for the third SCSI disk)\n\
-  or: fdisk /dev/eda  (for the first PS/2 ESDI drive)\n\
-  or: fdisk /dev/rd/c0d0  or: fdisk /dev/ida/c0d0  (for RAID devices)\n\
-  ...\n", 441},
-  {"Unable to open %s\n", 442},
-  {"Unable to read %s\n", 443},
-  {"Unable to seek on %s\n", 444},
-  {"Unable to write %s\n", 445},
-  {"BLKGETSIZE ioctl failed on %s\n", 446},
-  {"Unable to allocate any more memory\n", 447},
-  {"Fatal error\n", 448},
-  {"Command action", 449},
-  {"   a   toggle a read only flag", 450},
-  {"   b   edit bsd disklabel", 451},
-  {"   c   toggle the mountable flag", 452},
-  {"   d   delete a partition", 453},
-  {"   l   list known partition types", 454},
-  {"   m   print this menu", 455},
-  {"   n   add a new partition", 456},
-  {"   o   create a new empty DOS partition table", 457},
-  {"   p   print the partition table", 458},
-  {"   q   quit without saving changes", 459},
-  {"   s   create a new empty Sun disklabel", 460},
-  {"   t   change a partition's system id", 461},
-  {"   u   change display/entry units", 462},
-  {"   v   verify the partition table", 463},
-  {"   w   write table to disk and exit", 464},
-  {"   x   extra functionality (experts only)", 465},
-  {"   a   select bootable partition", 466},
-  {"   b   edit bootfile entry", 467},
-  {"   c   select sgi swap partition", 468},
-  {"   a   toggle a bootable flag", 469},
-  {"   c   toggle the dos compatibility flag", 470},
-  {"   a   change number of alternate cylinders", 471},
-  {"   c   change number of cylinders", 472},
-  {"   d   print the raw data in the partition table", 473},
-  {"   e   change number of extra sectors per cylinder", 474},
-  {"   h   change number of heads", 475},
-  {"   i   change interleave factor", 476},
-  {"   o   change rotation speed (rpm)", 477},
-  {"   r   return to main menu", 478},
-  {"   s   change number of sectors/track", 479},
-  {"   y   change number of physical cylinders", 480},
-  {"   b   move beginning of data in a partition", 481},
-  {"   e   list extended partitions", 482},
-  {"   g   create an IRIX (SGI) partition table", 483},
-  {"   f   fix partition order", 484},
-  {"You must set", 485},
-  {"heads", 486},
-  {"sectors", 487},
-  {"cylinders", 488},
-  {"\
-%s%s.\n\
-You can do this from the extra functions menu.\n", 489},
-  {" and ", 490},
-  {"\
-\n\
-The number of cylinders for this disk is set to %d.\n\
-There is nothing wrong with that, but this is larger than 1024,\n\
-and could in certain setups cause problems with:\n\
-1) software that runs at boot time (e.g., old versions of LILO)\n\
-2) booting and partitioning software from other OSs\n\
-   (e.g., DOS FDISK, OS/2 FDISK)\n", 491},
-  {"Bad offset in primary extended partition\n", 492},
-  {"Warning: omitting partitions after %d\n", 493},
-  {"Warning: extra link pointer in partition table %d\n", 494},
-  {"Warning: ignoring extra data in partition table %d\n", 495},
-  {"\
-Building a new DOS disklabel. Changes will remain in memory only,\n\
-until you decide to write them. After that, of course, the previous\n\
-content won't be recoverable.\n\
-\n", 496},
-  {"Note: sector size is %d (not %d)\n", 497},
-  {"You will not be able to write the partition table.\n", 498},
-  {"\
-This disk has both DOS and BSD magic.\n\
-Give the 'b' command to go to BSD mode.\n", 499},
-  {"\
-Device contains neither a valid DOS partition table, nor Sun, SGI or OSF \
-disklabel\n", 500},
-  {"Internal error\n", 501},
-  {"Ignoring extra extended partition %d\n", 502},
-  {"\
-Warning: invalid flag 0x%04x of partition table %d will be corrected by w\
-(rite)\n", 503},
-  {"\
-\n\
-got EOF thrice - exiting..\n", 504},
-  {"Hex code (type L to list codes): ", 505},
-  {"%s (%u-%u, default %u): ", 506},
-  {"Using default value %u\n", 507},
-  {"Value out of range.\n", 508},
-  {"Partition number", 509},
-  {"Warning: partition %d has empty type\n", 510},
-  {"Selected partition %d\n", 511},
-  {"No partition is defined yet!\n", 512},
-  {"All primary partitions have been defined already!\n", 513},
-  {"cylinder", 514},
-  {"sector", 515},
-  {"Changing display/entry units to %s\n", 516},
-  {"WARNING: Partition %d is an extended partition\n", 517},
-  {"DOS Compatibility flag is set\n", 518},
-  {"DOS Compatibility flag is not set\n", 519},
-  {"Partition %d does not exist yet!\n", 520},
-  {"\
-Type 0 means free space to many systems\n\
-(but not to Linux). Having partitions of\n\
-type 0 is probably unwise. You can delete\n\
-a partition using the `d' command.\n", 521},
-  {"\
-You cannot change a partition into an extended one or vice versa\n\
-Delete it first.\n", 522},
-  {"\
-Consider leaving partition 3 as Whole disk (5),\n\
-as SunOS/Solaris expects it and even Linux likes it.\n\
-\n", 523},
-  {"\
-Consider leaving partition 9 as volume header (0),\n\
-and partition 11 as entire volume (6)as IRIX expects it.\n\
-\n", 524},
-  {"Changed system type of partition %d to %x (%s)\n", 525},
-  {"Partition %d has different physical/logical beginnings (non-Linux?):\n", 526},
-  {"     phys=(%d, %d, %d) ", 527},
-  {"logical=(%d, %d, %d)\n", 528},
-  {"Partition %d has different physical/logical endings:\n", 529},
-  {"Partition %i does not start on cylinder boundary:\n", 530},
-  {"should be (%d, %d, 1)\n", 531},
-  {"Partition %i does not end on cylinder boundary.\n", 532},
-  {"should be (%d, %d, %d)\n", 533},
-  {"\
-\n\
-Disk %s: %ld MB, %lld bytes\n", 534},
-  {"\
-\n\
-Disk %s: %ld.%ld GB, %lld bytes\n", 535},
-  {"%d heads, %d sectors/track, %d cylinders", 536},
-  {", total %llu sectors", 537},
-  {"\
-Units = %s of %d * %d = %d bytes\n\
-\n", 538},
-  {"\
-Nothing to do. Ordering is correct already.\n\
-\n", 539},
-  {"\
-This doesn't look like a partition table\n\
-Probably you selected the wrong device.\n\
-\n", 540},
-  {"%*s Boot      Start         End      Blocks   Id  System\n", 541},
-  {"Device", 542},
-  {"\
-\n\
-Partition table entries are not in disk order\n", 543},
-  {"\
-\n\
-Disk %s: %d heads, %d sectors, %d cylinders\n\
-\n", 544},
-  {"Nr AF  Hd Sec  Cyl  Hd Sec  Cyl     Start      Size ID\n", 545},
-  {"Warning: partition %d contains sector 0\n", 546},
-  {"Partition %d: head %d greater than maximum %d\n", 547},
-  {"Partition %d: sector %d greater than maximum %d\n", 548},
-  {"Partitions %d: cylinder %d greater than maximum %d\n", 549},
-  {"Partition %d: previous sectors %d disagrees with total %d\n", 550},
-  {"Warning: bad start-of-data in partition %d\n", 551},
-  {"Warning: partition %d overlaps partition %d.\n", 552},
-  {"Warning: partition %d is empty\n", 553},
-  {"Logical partition %d not entirely in partition %d\n", 554},
-  {"Total allocated sectors %d greater than the maximum %lld\n", 555},
-  {"%lld unallocated sectors\n", 556},
-  {"Partition %d is already defined.  Delete it before re-adding it.\n", 557},
-  {"First %s", 558},
-  {"Sector %d is already allocated\n", 559},
-  {"No free sectors available\n", 560},
-  {"Last %s or +size or +sizeM or +sizeK", 561},
-  {"\
-\tSorry - this fdisk cannot handle AIX disk labels.\n\
-\tIf you want to add DOS-type partitions, create\n\
-\ta new empty DOS partition table first. (Use o.)\n\
-\tWARNING: This will destroy the present disk contents.\n", 562},
-  {"The maximum number of partitions has been created\n", 563},
-  {"You must delete some partition and add an extended partition first\n", 564},
-  {"All logical partitions are in use\n", 565},
-  {"Adding a primary partition\n", 566},
-  {"\
-Command action\n\
-   %s\n\
-   p   primary partition (1-4)\n", 567},
-  {"l   logical (5 or over)", 568},
-  {"e   extended", 569},
-  {"Invalid partition number for type `%c'\n", 570},
-  {"\
-The partition table has been altered!\n\
-\n", 571},
-  {"Calling ioctl() to re-read partition table.\n", 572},
-  {"\
-\n\
-WARNING: Re-reading the partition table failed with error %d: %s.\n\
-The kernel still uses the old table.\n\
-The new table will be used at the next reboot.\n", 573},
-  {"\
-\n\
-WARNING: If you have created or modified any DOS 6.x\n\
-partitions, please see the fdisk manual page for additional\n\
-information.\n", 574},
-  {"Syncing disks.\n", 575},
-  {"Partition %d has no data area\n", 576},
-  {"New beginning of data", 577},
-  {"Expert command (m for help): ", 578},
-  {"Number of cylinders", 579},
-  {"Number of heads", 580},
-  {"Number of sectors", 581},
-  {"Warning: setting sector offset for DOS compatiblity\n", 582},
-  {"Disk %s doesn't contain a valid partition table\n", 583},
-  {"Cannot open %s\n", 584},
-  {"cannot open %s\n", 585},
-  {"%c: unknown command\n", 586},
-  {"This kernel finds the sector size itself - -b option ignored\n", 587},
-  {"\
-Warning: the -b (set sector size) option should be used with one specified \
-device\n", 588},
-  {"Detected an OSF/1 disklabel on %s, entering disklabel mode.\n", 589},
-  {"Command (m for help): ", 590},
-  {"\
-\n\
-The current boot file is: %s\n", 591},
-  {"Please enter the name of the new boot file: ", 592},
-  {"Boot file unchanged\n", 593},
-  {"\
-\n\
-\tSorry, no experts menu for SGI partition tables available.\n\
-\n", 594},
-  {"\
-\n\
-\tThere is a valid AIX label on this disk.\n\
-\tUnfortunately Linux cannot handle these\n\
-\tdisks at the moment.  Nevertheless some\n\
-\tadvice:\n\
-\t1. fdisk will destroy its contents on write.\n\
-\t2. Be sure that this disk is NOT a still vital\n\
-\t   part of a volume group. (Otherwise you may\n\
-\t   erase the other disks as well, if unmirrored.)\n\
-\t3. Before deleting this physical volume be sure\n\
-\t   to remove the disk logically from your AIX\n\
-\t   machine.  (Otherwise you become an AIXpert).", 595},
-  {"\
-\n\
-BSD label for device: %s\n", 596},
-  {"   d   delete a BSD partition", 597},
-  {"   e   edit drive data", 598},
-  {"   i   install bootstrap", 599},
-  {"   l   list known filesystem types", 600},
-  {"   n   add a new BSD partition", 601},
-  {"   p   print BSD partition table", 602},
-  {"   s   show complete disklabel", 603},
-  {"   t   change a partition's filesystem id", 604},
-  {"   u   change units (cylinders/sectors)", 605},
-  {"   w   write disklabel to disk", 606},
-  {"   x   link BSD partition to non-BSD partition", 607},
-  {"Partition %s has invalid starting sector 0.\n", 608},
-  {"Reading disklabel of %s at sector %d.\n", 609},
-  {"There is no *BSD partition on %s.\n", 610},
-  {"BSD disklabel command (m for help): ", 611},
-  {"type: %s\n", 612},
-  {"type: %d\n", 613},
-  {"disk: %.*s\n", 614},
-  {"label: %.*s\n", 615},
-  {"flags:", 616},
-  {" removable", 617},
-  {" ecc", 618},
-  {" badsect", 619},
-  {"bytes/sector: %ld\n", 620},
-  {"sectors/track: %ld\n", 621},
-  {"tracks/cylinder: %ld\n", 622},
-  {"sectors/cylinder: %ld\n", 623},
-  {"cylinders: %ld\n", 624},
-  {"rpm: %d\n", 625},
-  {"interleave: %d\n", 626},
-  {"trackskew: %d\n", 627},
-  {"cylinderskew: %d\n", 628},
-  {"headswitch: %ld\t\t# milliseconds\n", 629},
-  {"track-to-track seek: %ld\t# milliseconds\n", 630},
-  {"drivedata: ", 631},
-  {"\
-\n\
-%d partitions:\n", 632},
-  {"#       start       end      size     fstype   [fsize bsize   cpg]\n", 633},
-  {"Writing disklabel to %s.\n", 634},
-  {"%s contains no disklabel.\n", 635},
-  {"Do you want to create a disklabel? (y/n) ", 636},
-  {"bytes/sector", 637},
-  {"sectors/track", 638},
-  {"tracks/cylinder", 639},
-  {"sectors/cylinder", 640},
-  {"Must be <= sectors/track * tracks/cylinder (default).\n", 641},
-  {"rpm", 642},
-  {"interleave", 643},
-  {"trackskew", 644},
-  {"cylinderskew", 645},
-  {"headswitch", 646},
-  {"track-to-track seek", 647},
-  {"Bootstrap: %sboot -> boot%s (%s): ", 648},
-  {"Bootstrap overlaps with disk label!\n", 649},
-  {"Bootstrap installed on %s.\n", 650},
-  {"Partition (a-%c): ", 651},
-  {"This partition already exists.\n", 652},
-  {"Warning: too many partitions (%d, maximum is %d).\n", 653},
-  {"\
-\n\
-Syncing disks.\n", 654},
-  {"SGI volhdr", 655},
-  {"SGI trkrepl", 656},
-  {"SGI secrepl", 657},
-  {"SGI raw", 658},
-  {"SGI bsd", 659},
-  {"SGI sysv", 660},
-  {"SGI volume", 661},
-  {"SGI efs", 662},
-  {"SGI lvol", 663},
-  {"SGI rlvol", 664},
-  {"SGI xfs", 665},
-  {"SGI xfslog", 666},
-  {"SGI xlv", 667},
-  {"SGI xvm", 668},
-  {"Linux swap", 669},
-  {"Linux native", 670},
-  {"Linux LVM", 671},
-  {"Linux RAID", 672},
-  {"\
-According to MIPS Computer Systems, Inc the Label must not contain more than \
-512 bytes\n", 673},
-  {"Detected sgi disklabel with wrong checksum.\n", 674},
-  {"\
-\n\
-Disk %s (SGI disk label): %d heads, %d sectors\n\
-%d cylinders, %d physical cylinders\n\
-%d extra sects/cyl, interleave %d:1\n\
-%s\n\
-Units = %s of %d * 512 bytes\n\
-\n", 675},
-  {"\
-\n\
-Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n\
-Units = %s of %d * 512 bytes\n\
-\n", 676},
-  {"\
------ partitions -----\n\
-Pt# %*s  Info     Start       End   Sectors  Id  System\n", 677},
-  {"\
------ Bootinfo -----\n\
-Bootfile: %s\n\
------ Directory Entries -----\n", 678},
-  {"%2d: %-10s sector%5u size%8u\n", 679},
-  {"\
-\n\
-Invalid Bootfile!\n\
-\tThe bootfile must be an absolute non-zero pathname,\n\
-\te.g. \"/unix\" or \"/unix.save\".\n", 680},
-  {"\
-\n\
-\tName of Bootfile too long:  16 bytes maximum.\n", 681},
-  {"\
-\n\
-\tBootfile must have a fully qualified pathname.\n", 682},
-  {"\
-\n\
-\tBe aware, that the bootfile is not checked for existence.\n\
-\tSGI's default is \"/unix\" and for backup \"/unix.save\".\n", 683},
-  {"\
-\n\
-\tBootfile is changed to \"%s\".\n", 684},
-  {"More than one entire disk entry present.\n", 685},
-  {"No partitions defined\n", 686},
-  {"IRIX likes when Partition 11 covers the entire disk.\n", 687},
-  {"\
-The entire disk partition should start at block 0,\n\
-not at diskblock %d.\n", 688},
-  {"\
-The entire disk partition is only %d diskblock large,\n\
-but the disk is %d diskblocks long.\n", 689},
-  {"One Partition (#11) should cover the entire disk.\n", 690},
-  {"Partition %d does not start on cylinder boundary.\n", 691},
-  {"Partition %d does not end on cylinder boundary.\n", 692},
-  {"The Partition %d and %d overlap by %d sectors.\n", 693},
-  {"Unused gap of %8u sectors - sectors %8u-%u\n", 694},
-  {"\
-\n\
-The boot partition does not exist.\n", 695},
-  {"\
-\n\
-The swap partition does not exist.\n", 696},
-  {"\
-\n\
-The swap partition has no swap type.\n", 697},
-  {"\tYou have chosen an unusual boot file name.\n", 698},
-  {"Sorry You may change the Tag of non-empty partitions.\n", 699},
-  {"\
-It is highly recommended that the partition at offset 0\n\
-is of type \"SGI volhdr\", the IRIX system will rely on it to\n\
-retrieve from its directory standalone tools like sash and fx.\n\
-Only the \"SGI volume\" entire disk section may violate this.\n\
-Type YES if you are sure about tagging this partition differently.\n", 700},
-  {"YES\n", 701},
-  {"Do You know, You got a partition overlap on the disk?\n", 702},
-  {"Attempting to generate entire disk entry automatically.\n", 703},
-  {"The entire disk is already covered with partitions.\n", 704},
-  {"You got a partition overlap on the disk. Fix it first!\n", 705},
-  {"\
-It is highly recommended that eleventh partition\n\
-covers the entire disk and is of type `SGI volume'\n", 706},
-  {"You will get a partition overlap on the disk. Fix it first!\n", 707},
-  {" Last %s", 708},
-  {"\
-Building a new SGI disklabel. Changes will remain in memory only,\n\
-until you decide to write them. After that, of course, the previous\n\
-content will be unrecoverably lost.\n\
-\n", 709},
-  {"\
-Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %\
-d.\n\
-This value may be truncated for devices > 33.8 GB.\n", 710},
-  {"Trying to keep parameters of partition %d.\n", 711},
-  {"ID=%02x\tSTART=%d\tLENGTH=%d\n", 712},
-  {"Empty", 713},
-  {"SunOS root", 714},
-  {"SunOS swap", 715},
-  {"SunOS usr", 716},
-  {"Whole disk", 717},
-  {"SunOS stand", 718},
-  {"SunOS var", 719},
-  {"SunOS home", 720},
-  {"Linux raid autodetect", 721},
-  {"\
-Detected sun disklabel with wrong checksum.\n\
-Probably you'll have to set all the values,\n\
-e.g. heads, sectors, cylinders and partitions\n\
-or force a fresh label (s command in main menu)\n", 722},
-  {"Autoconfigure found a %s%s%s\n", 723},
-  {"\
-Building a new sun disklabel. Changes will remain in memory only,\n\
-until you decide to write them. After that, of course, the previous\n\
-content won't be recoverable.\n\
-\n", 724},
-  {"\
-Drive type\n\
-   ?   auto configure\n\
-   0   custom (with hardware detected defaults)", 725},
-  {"Select type (? for auto, 0 for custom): ", 726},
-  {"Autoconfigure failed.\n", 727},
-  {"Sectors/track", 728},
-  {"Alternate cylinders", 729},
-  {"Physical cylinders", 730},
-  {"Rotation speed (rpm)", 731},
-  {"Interleave factor", 732},
-  {"Extra sectors per cylinder", 733},
-  {"You may change all the disk params from the x menu", 734},
-  {"3,5\" floppy", 735},
-  {"Linux custom", 736},
-  {"Partition %d doesn't end on cylinder boundary\n", 737},
-  {"Partition %d overlaps with others in sectors %d-%d\n", 738},
-  {"Unused gap - sectors 0-%d\n", 739},
-  {"Unused gap - sectors %d-%d\n", 740},
-  {"\
-Other partitions already cover the whole disk.\n\
-Delete some/shrink them before retry.\n", 741},
-  {"\
-You haven't covered the whole disk with the 3rd partition, but your value\n\
-%d %s covers some other partition. Your entry has been changed\n\
-to %d %s\n", 742},
-  {"\
-If you want to maintain SunOS/Solaris compatibility, consider leaving this\n\
-partition as Whole disk (5), starting at 0, with %u sectors\n", 743},
-  {"\
-It is highly recommended that the partition at offset 0\n\
-is UFS, EXT2FS filesystem or SunOS swap. Putting Linux swap\n\
-there may destroy your partition table and bootblock.\n\
-Type YES if you're very sure you would like that partition\n\
-tagged with 82 (Linux swap): ", 744},
-  {"\
-\n\
-Disk %s (Sun disk label): %d heads, %d sectors, %d rpm\n\
-%d cylinders, %d alternate cylinders, %d physical cylinders\n\
-%d extra sects/cyl, interleave %d:1\n\
-%s\n\
-Units = %s of %d * 512 bytes\n\
-\n", 745},
-  {"\
-\n\
-Disk %s (Sun disk label): %d heads, %d sectors, %d cylinders\n\
-Units = %s of %d * 512 bytes\n\
-\n", 746},
-  {"%*s Flag    Start       End    Blocks   Id  System\n", 747},
-  {"Number of alternate cylinders", 748},
-  {"Number of physical cylinders", 749},
-  {"FAT12", 750},
-  {"XENIX root", 751},
-  {"XENIX usr", 752},
-  {"FAT16 <32M", 753},
-  {"Extended", 754},
-  {"FAT16", 755},
-  {"HPFS/NTFS", 756},
-  {"AIX", 757},
-  {"AIX bootable", 758},
-  {"OS/2 Boot Manager", 759},
-  {"W95 FAT32", 760},
-  {"W95 FAT32 (LBA)", 761},
-  {"W95 FAT16 (LBA)", 762},
-  {"W95 Ext'd (LBA)", 763},
-  {"OPUS", 764},
-  {"Hidden FAT12", 765},
-  {"Compaq diagnostics", 766},
-  {"Hidden FAT16 <32M", 767},
-  {"Hidden FAT16", 768},
-  {"Hidden HPFS/NTFS", 769},
-  {"AST SmartSleep", 770},
-  {"Hidden W95 FAT32", 771},
-  {"Hidden W95 FAT32 (LBA)", 772},
-  {"Hidden W95 FAT16 (LBA)", 773},
-  {"NEC DOS", 774},
-  {"Plan 9", 775},
-  {"PartitionMagic recovery", 776},
-  {"Venix 80286", 777},
-  {"PPC PReP Boot", 778},
-  {"SFS", 779},
-  {"QNX4.x", 780},
-  {"QNX4.x 2nd part", 781},
-  {"QNX4.x 3rd part", 782},
-  {"OnTrack DM", 783},
-  {"OnTrack DM6 Aux1", 784},
-  {"CP/M", 785},
-  {"OnTrack DM6 Aux3", 786},
-  {"OnTrackDM6", 787},
-  {"EZ-Drive", 788},
-  {"Golden Bow", 789},
-  {"Priam Edisk", 790},
-  {"SpeedStor", 791},
-  {"GNU HURD or SysV", 792},
-  {"Novell Netware 286", 793},
-  {"Novell Netware 386", 794},
-  {"DiskSecure Multi-Boot", 795},
-  {"PC/IX", 796},
-  {"Old Minix", 797},
-  {"Minix / old Linux", 798},
-  {"Linux swap / Solaris", 799},
-  {"OS/2 hidden C: drive", 800},
-  {"Linux extended", 801},
-  {"NTFS volume set", 802},
-  {"Amoeba", 803},
-  {"Amoeba BBT", 804},
-  {"BSD/OS", 805},
-  {"IBM Thinkpad hibernation", 806},
-  {"FreeBSD", 807},
-  {"OpenBSD", 808},
-  {"NeXTSTEP", 809},
-  {"Darwin UFS", 810},
-  {"NetBSD", 811},
-  {"Darwin boot", 812},
-  {"BSDI fs", 813},
-  {"BSDI swap", 814},
-  {"Boot Wizard hidden", 815},
-  {"Solaris boot", 816},
-  {"Solaris", 817},
-  {"DRDOS/sec (FAT-12)", 818},
-  {"DRDOS/sec (FAT-16 < 32M)", 819},
-  {"DRDOS/sec (FAT-16)", 820},
-  {"Syrinx", 821},
-  {"Non-FS data", 822},
-  {"CP/M / CTOS / ...", 823},
-  {"Dell Utility", 824},
-  {"BootIt", 825},
-  {"DOS access", 826},
-  {"DOS R/O", 827},
-  {"BeOS fs", 828},
-  {"EFI GPT", 829},
-  {"EFI (FAT-12/16/32)", 830},
-  {"Linux/PA-RISC boot", 831},
-  {"DOS secondary", 832},
-  {"LANstep", 833},
-  {"BBT", 834},
-  {"seek error on %s - cannot seek to %lu\n", 835},
-  {"seek error: wanted 0x%08x%08x, got 0x%08x%08x\n", 836},
-  {"out of memory - giving up\n", 837},
-  {"read error on %s - cannot read sector %lu\n", 838},
-  {"ERROR: sector %lu does not have an msdos signature\n", 839},
-  {"write error on %s - cannot write sector %lu\n", 840},
-  {"cannot open partition sector save file (%s)\n", 841},
-  {"write error on %s\n", 842},
-  {"cannot stat partition restore file (%s)\n", 843},
-  {"partition restore file has wrong size - not restoring\n", 844},
-  {"out of memory?\n", 845},
-  {"cannot open partition restore file (%s)\n", 846},
-  {"error reading %s\n", 847},
-  {"cannot open device %s for writing\n", 848},
-  {"error writing sector %lu on %s\n", 849},
-  {"Disk %s: cannot get geometry\n", 850},
-  {"Disk %s: cannot get size\n", 851},
-  {"\
-Warning: start=%lu - this looks like a partition rather than\n\
-the entire disk. Using fdisk on it is probably meaningless.\n\
-[Use the --force option if you really want this]\n", 852},
-  {"Warning: HDIO_GETGEO says that there are %lu heads\n", 853},
-  {"Warning: HDIO_GETGEO says that there are %lu sectors\n", 854},
-  {"Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n", 855},
-  {"\
-Warning: unlikely number of sectors (%lu) - usually at most 63\n\
-This will give problems with all software that uses C/H/S addressing.\n", 856},
-  {"\
-\n\
-Disk %s: %lu cylinders, %lu heads, %lu sectors/track\n", 857},
-  {"\
-%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n", 858},
-  {"\
-%s of partition %s has impossible value for sector: %lu (should be in 1-%\
-lu)\n", 859},
-  {"\
-%s of partition %s has impossible value for cylinders: %lu (should be in 0-%\
-lu)\n", 860},
-  {"\
-Id  Name\n\
-\n", 861},
-  {"Re-reading the partition table ...\n", 862},
-  {"\
-The command to re-read the partition table failed\n\
-Reboot your system now, before using mkfs\n", 863},
-  {"Error closing %s\n", 864},
-  {"%s: no such partition\n", 865},
-  {"unrecognized format - using sectors\n", 866},
-  {"# partition table of %s\n", 867},
-  {"unimplemented format - using %s\n", 868},
-  {"\
-Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n\
-\n", 869},
-  {"   Device Boot Start     End   #cyls    #blocks   Id  System\n", 870},
-  {"\
-Units = sectors of 512 bytes, counting from %d\n\
-\n", 871},
-  {"   Device Boot    Start       End   #sectors  Id  System\n", 872},
-  {"\
-Units = blocks of 1024 bytes, counting from %d\n\
-\n", 873},
-  {"   Device Boot   Start       End    #blocks   Id  System\n", 874},
-  {"\
-Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n\
-\n", 875},
-  {"   Device Boot Start   End    MiB    #blocks   Id  System\n", 876},
-  {"\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n", 877},
-  {"\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n", 878},
-  {"partition ends on cylinder %ld, beyond the end of the disk\n", 879},
-  {"No partitions found\n", 880},
-  {"\
-Warning: The partition table looks like it was made\n\
-  for C/H/S=*/%ld/%ld (instead of %ld/%ld/%ld).\n\
-For this listing I'll assume that geometry.\n", 881},
-  {"no partition table present.\n", 882},
-  {"strange, only %d partitions defined.\n", 883},
-  {"Warning: partition %s has size 0 but is not marked Empty\n", 884},
-  {"Warning: partition %s has size 0 and is bootable\n", 885},
-  {"Warning: partition %s has size 0 and nonzero start\n", 886},
-  {"Warning: partition %s ", 887},
-  {"is not contained in partition %s\n", 888},
-  {"Warning: partitions %s ", 889},
-  {"and %s overlap\n", 890},
-  {"\
-Warning: partition %s contains part of the partition table (sector %lu),\n\
-and will destroy it when filled\n", 891},
-  {"Warning: partition %s starts at sector 0\n", 892},
-  {"Warning: partition %s extends past end of disk\n", 893},
-  {"\
-Among the primary partitions, at most one can be extended\n\
- (although this is not a problem under Linux)\n", 894},
-  {"Warning: partition %s does not start at a cylinder boundary\n", 895},
-  {"Warning: partition %s does not end at a cylinder boundary\n", 896},
-  {"\
-Warning: more than one primary partition is marked bootable (active)\n\
-This does not matter for LILO, but the DOS MBR will not boot this disk.\n", 897},
-  {"\
-Warning: usually one can boot from primary partitions only\n\
-LILO disregards the `bootable' flag.\n", 898},
-  {"\
-Warning: no primary partition is marked bootable (active)\n\
-This does not matter for LILO, but the DOS MBR will not boot this disk.\n", 899},
-  {"start", 900},
-  {"\
-partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n", 901},
-  {"end", 902},
-  {"partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n", 903},
-  {"partition %s ends on cylinder %ld, beyond the end of the disk\n", 904},
-  {"\
-Warning: shifted start of the extd partition from %ld to %ld\n\
-(For listing purposes only. Do not change its contents.)\n", 905},
-  {"\
-Warning: extended partition does not start at a cylinder boundary.\n\
-DOS and Linux will interpret the contents differently.\n", 906},
-  {"too many partitions - ignoring those past nr (%d)\n", 907},
-  {"tree of partitions?\n", 908},
-  {"detected Disk Manager - unable to handle that\n", 909},
-  {"DM6 signature found - giving up\n", 910},
-  {"strange..., an extended partition of size 0?\n", 911},
-  {"strange..., a BSD partition of size 0?\n", 912},
-  {" %s: unrecognized partition table type\n", 913},
-  {"-n flag was given: Nothing changed\n", 914},
-  {"Failed saving the old sectors - aborting\n", 915},
-  {"Failed writing the partition on %s\n", 916},
-  {"long or incomplete input line - quitting\n", 917},
-  {"input error: `=' expected after %s field\n", 918},
-  {"input error: unexpected character %c after %s field\n", 919},
-  {"unrecognized input: %s\n", 920},
-  {"number too big\n", 921},
-  {"trailing junk after number\n", 922},
-  {"no room for partition descriptor\n", 923},
-  {"cannot build surrounding extended partition\n", 924},
-  {"too many input fields\n", 925},
-  {"No room for more\n", 926},
-  {"Illegal type\n", 927},
-  {"Warning: given size (%lu) exceeds max allowable size (%lu)\n", 928},
-  {"Warning: empty partition\n", 929},
-  {"Warning: bad partition start (earliest %lu)\n", 930},
-  {"unrecognized bootable flag - choose - or *\n", 931},
-  {"partial c,h,s specification?\n", 932},
-  {"Extended partition not where expected\n", 933},
-  {"bad input\n", 934},
-  {"too many partitions\n", 935},
-  {"\
-Input in the following format; absent fields get a default value.\n\
-<start> <size> <type [E,S,L,X,hex]> <bootable [-,*]> <c,h,s> <c,h,s>\n\
-Usually you only need to specify <start> and <size> (and perhaps <type>).\n", 936},
-  {"version", 937},
-  {"Usage: %s [options] device ...\n", 938},
-  {"device: something like /dev/hda or /dev/sda", 939},
-  {"useful options:", 940},
-  {"    -s [or --show-size]: list size of a partition", 941},
-  {"    -c [or --id]:        print or change partition Id", 942},
-  {"    -l [or --list]:      list partitions of each device", 943},
-  {"    -d [or --dump]:      idem, but in a format suitable for later input", 944},
-  {"    -i [or --increment]: number cylinders etc. from 1 instead of from 0", 945},
-  {"\
-    -uS, -uB, -uC, -uM:  accept/report in units of sectors/blocks/cylinders/\
-MB", 946},
-  {"    -T [or --list-types]:list the known partition types", 947},
-  {"    -D [or --DOS]:       for DOS-compatibility: waste a little space", 948},
-  {"    -R [or --re-read]:   make kernel reread partition table", 949},
-  {"    -N# :                change only the partition with number #", 950},
-  {"    -n :                 do not actually write to disk", 951},
-  {"\
-    -O file :            save the sectors that will be overwritten to file", 952},
-  {"    -I file :            restore these sectors again", 953},
-  {"    -v [or --version]:   print version", 954},
-  {"    -? [or --help]:      print this message", 955},
-  {"dangerous options:", 956},
-  {"    -g [or --show-geometry]: print the kernel's idea of the geometry", 957},
-  {"\
-    -x [or --show-extended]: also list extended partitions on output\n\
-                             or expect descriptors for them on input", 958},
-  {"\
-    -L  [or --Linux]:      do not complain about things irrelevant for Linux", 959},
-  {"    -q  [or --quiet]:      suppress warning messages", 960},
-  {"    You can override the detected geometry using:", 961},
-  {"    -C# [or --cylinders #]:set the number of cylinders to use", 962},
-  {"    -H# [or --heads #]:    set the number of heads to use", 963},
-  {"    -S# [or --sectors #]:  set the number of sectors to use", 964},
-  {"You can disable all consistency checking with:", 965},
-  {"    -f  [or --force]:      do what I say, even if it is stupid", 966},
-  {"Usage:", 967},
-  {"%s device\t\t list active partitions on device\n", 968},
-  {"%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n", 969},
-  {"%s -An device\t activate partition n, inactivate the other ones\n", 970},
-  {"no command?\n", 971},
-  {"total: %llu blocks\n", 972},
-  {"usage: sfdisk --print-id device partition-number\n", 973},
-  {"usage: sfdisk --change-id device partition-number Id\n", 974},
-  {"usage: sfdisk --id device partition-number [Id]\n", 975},
-  {"can specify only one device (except with -l or -s)\n", 976},
-  {"cannot open %s read-write\n", 977},
-  {"cannot open %s for reading\n", 978},
-  {"%s: OK\n", 979},
-  {"%s: %ld cylinders, %ld heads, %ld sectors/track\n", 980},
-  {"Cannot get size of %s\n", 981},
-  {"bad active byte: 0x%x instead of 0x80\n", 982},
-  {"\
-Done\n\
-\n", 983},
-  {"\
-You have %d active primary partitions. This does not matter for LILO,\n\
-but the DOS MBR will only boot a disk with 1 active partition.\n", 984},
-  {"partition %s has id %x and is not hidden\n", 985},
-  {"Bad Id %lx\n", 986},
-  {"This disk is currently in use.\n", 987},
-  {"Fatal error: cannot find %s\n", 988},
-  {"Warning: %s is not a block device\n", 989},
-  {"Checking that no-one is using this disk right now ...\n", 990},
-  {"\
-\n\
-This disk is currently in use - repartitioning is probably a bad idea.\n\
-Umount all file systems, and swapoff all swap partitions on this disk.\n\
-Use the --no-reread flag to suppress this check.\n", 991},
-  {"Use the --force flag to overrule all checks.\n", 992},
-  {"OK\n", 993},
-  {"Old situation:\n", 994},
-  {"Partition %d does not exist, cannot change it\n", 995},
-  {"New situation:\n", 996},
-  {"\
-I don't like these partitions - nothing changed.\n\
-(If you really want this, use the --force option.)\n", 997},
-  {"I don't like this - probably you should answer No\n", 998},
-  {"Are you satisfied with this? [ynq] ", 999},
-  {"Do you want to write this to disk? [ynq] ", 1000},
-  {"\
-\n\
-sfdisk: premature end of input\n", 1001},
-  {"Quitting - nothing changed\n", 1002},
-  {"Please answer one of y,n,q\n", 1003},
-  {"\
-Successfully wrote the new partition table\n\
-\n", 1004},
-  {"\
-If you created or changed a DOS partition, /dev/foo7, say, then use dd(1)\n\
-to zero the first 512 bytes:  dd if=/dev/zero of=/dev/foo7 bs=512 count=1\n\
-(See fdisk(8).)\n", 1005},
-  {"Try `getopt --help' for more information.\n", 1006},
-  {"empty long option after -l or --long argument", 1007},
-  {"unknown shell after -s or --shell argument", 1008},
-  {"Usage: getopt optstring parameters\n", 1009},
-  {"       getopt [options] [--] optstring parameters\n", 1010},
-  {"       getopt [options] -o|--options optstring [options] [--]\n", 1011},
-  {"              parameters\n", 1012},
-  {"\
-  -a, --alternative            Allow long options starting with single -\n", 1013},
-  {"  -h, --help                   This small usage guide\n", 1014},
-  {"  -l, --longoptions=longopts   Long options to be recognized\n", 1015},
-  {"\
-  -n, --name=progname          The name under which errors are reported\n", 1016},
-  {"  -o, --options=optstring      Short options to be recognized\n", 1017},
-  {"  -q, --quiet                  Disable error reporting by getopt(3)\n", 1018},
-  {"  -Q, --quiet-output           No normal output\n", 1019},
-  {"  -s, --shell=shell            Set shell quoting conventions\n", 1020},
-  {"  -T, --test                   Test for getopt(1) version\n", 1021},
-  {"  -u, --unqote                 Do not quote the output\n", 1022},
-  {"  -V, --version                Output version information\n", 1023},
-  {"missing optstring argument", 1024},
-  {"getopt (enhanced) 1.1.3\n", 1025},
-  {"internal error, contact the author.", 1026},
-  {"booted from MILO\n", 1027},
-  {"Ruffian BCD clock\n", 1028},
-  {"clockport adjusted to 0x%x\n", 1029},
-  {"funky TOY!\n", 1030},
-  {"%s: atomic %s failed for 1000 iterations!", 1031},
-  {"Cannot open /dev/port: %s", 1032},
-  {"I failed to get permission because I didn't try.\n", 1033},
-  {"%s is unable to get I/O port access:  the iopl(3) call failed.\n", 1034},
-  {"Probably you need root privileges.\n", 1035},
-  {"Assuming hardware clock is kept in %s time.\n", 1036},
-  {"UTC", 1037},
-  {"local", 1038},
-  {"%s: Warning: unrecognized third line in adjtime file\n", 1039},
-  {"(Expected: `UTC' or `LOCAL' or nothing.)\n", 1040},
-  {"Last drift adjustment done at %ld seconds after 1969\n", 1041},
-  {"Last calibration done at %ld seconds after 1969\n", 1042},
-  {"Hardware clock is on %s time\n", 1043},
-  {"unknown", 1044},
-  {"Waiting for clock tick...\n", 1045},
-  {"...got clock tick\n", 1046},
-  {"Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n", 1047},
-  {"Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n", 1048},
-  {"Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n", 1049},
-  {"Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n", 1050},
-  {"Clock not changed - testing only.\n", 1051},
-  {"\
-Time elapsed since reference time has been %.6f seconds.\n\
-Delaying further to reach the next full second.\n", 1052},
-  {"\
-The Hardware Clock registers contain values that are either invalid (e.g. \
-50th day of month) or beyond the range we can handle (e.g. Year 2095).\n", 1053},
-  {"%s  %.6f seconds\n", 1054},
-  {"No --date option specified.\n", 1055},
-  {"--date argument too long\n", 1056},
-  {"\
-The value of the --date option is not a valid date.\n\
-In particular, it contains quotation marks.\n", 1057},
-  {"Issuing date command: %s\n", 1058},
-  {"Unable to run 'date' program in /bin/sh shell. popen() failed", 1059},
-  {"response from date command = %s\n", 1060},
-  {"\
-The date command issued by %s returned unexpected results.\n\
-The command was:\n\
-  %s\n\
-The response was:\n\
-  %s\n", 1061},
-  {"\
-The date command issued by %s returned something other than an integer where \
-the converted time value was expected.\n\
-The command was:\n\
-  %s\n\
-The response was:\n\
- %s\n", 1062},
-  {"date string %s equates to %ld seconds since 1969.\n", 1063},
-  {"\
-The Hardware Clock does not contain a valid time, so we cannot set the \
-System Time from it.\n", 1064},
-  {"Calling settimeofday:\n", 1065},
-  {"\ttv.tv_sec = %ld, tv.tv_usec = %ld\n", 1066},
-  {"\ttz.tz_minuteswest = %d\n", 1067},
-  {"Not setting system clock because running in test mode.\n", 1068},
-  {"Must be superuser to set system clock.\n", 1069},
-  {"settimeofday() failed", 1070},
-  {"\
-Not adjusting drift factor because the Hardware Clock previously contained \
-garbage.\n", 1071},
-  {"\
-Not adjusting drift factor because last calibration time is zero,\n\
-so history is bad and calibration startover is necessary.\n", 1072},
-  {"\
-Not adjusting drift factor because it has been less than a day since the \
-last calibration.\n", 1073},
-  {"\
-Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor \
-of %f seconds/day.\n\
-Adjusting drift factor by %f seconds/day\n", 1074},
-  {"Time since last adjustment is %d seconds\n", 1075},
-  {"Need to insert %d seconds and refer time back %.6f seconds ago\n", 1076},
-  {"Not updating adjtime file because of testing mode.\n", 1077},
-  {"\
-Would have written the following to %s:\n\
-%s", 1078},
-  {"Drift adjustment parameters not updated.\n", 1079},
-  {"\
-The Hardware Clock does not contain a valid time, so we cannot adjust it.\n", 1080},
-  {"Needed adjustment is less than one second, so not setting clock.\n", 1081},
-  {"Using %s.\n", 1082},
-  {"No usable clock interface found.\n", 1083},
-  {"Unable to set system clock.\n", 1084},
-  {"\
-The kernel keeps an epoch value for the Hardware Clock only on an Alpha \
-machine.\n\
-This copy of hwclock was built for a machine other than Alpha\n\
-(and thus is presumably not running on an Alpha now).  No action taken.\n", 1085},
-  {"Unable to get the epoch value from the kernel.\n", 1086},
-  {"Kernel is assuming an epoch value of %lu\n", 1087},
-  {"\
-To set the epoch value, you must use the 'epoch' option to tell to what \
-value to set it.\n", 1088},
-  {"Not setting the epoch to %d - testing only.\n", 1089},
-  {"Unable to set the epoch value in the kernel.\n", 1090},
-  {"\
-hwclock - query and set the hardware clock (RTC)\n\
-\n\
-Usage: hwclock [function] [options...]\n\
-\n\
-Functions:\n\
-  --help        show this help\n\
-  --show        read hardware clock and print result\n\
-  --set         set the rtc to the time given with --date\n\
-  --hctosys     set the system time from the hardware clock\n\
-  --systohc     set the hardware clock to the current system time\n\
-  --adjust      adjust the rtc to account for systematic drift since \n\
-                the clock was last set or adjusted\n\
-  --getepoch    print out the kernel's hardware clock epoch value\n\
-  --setepoch    set the kernel's hardware clock epoch value to the \n\
-                value given with --epoch\n\
-  --version     print out the version of hwclock to stdout\n\
-\n\
-Options: \n\
-  --utc         the hardware clock is kept in coordinated universal time\n\
-  --localtime   the hardware clock is kept in local time\n\
-  --directisa   access the ISA bus directly instead of %s\n\
-  --badyear     ignore rtc's year because the bios is broken\n\
-  --date        specifies the time to which to set the hardware clock\n\
-  --epoch=year  specifies the year which is the beginning of the \n\
-                hardware clock's epoch value\n\
-  --noadjfile   do not access /etc/adjtime. Requires the use of\n\
-                either --utc or --localtime\n", 1091},
-  {"\
-  --jensen, --arc, --srm, --funky-toy\n\
-                tell hwclock the type of alpha you have (see hwclock(8))\n", 1092},
-  {"%s takes no non-option arguments.  You supplied %d.\n", 1093},
-  {"\
-You have specified multiple functions.\n\
-You can only perform one function at a time.\n", 1094},
-  {"\
-%s: The --utc and --localtime options are mutually exclusive.  You specified \
-both.\n", 1095},
-  {"\
-%s: The --adjust and --noadjfile options are mutually exclusive.  You \
-specified both.\n", 1096},
-  {"%s: With --noadjfile, you must specify either --utc or --localtime\n", 1097},
-  {"No usable set-to time.  Cannot set clock.\n", 1098},
-  {"Sorry, only the superuser can change the Hardware Clock.\n", 1099},
-  {"Sorry, only the superuser can change the System Clock.\n", 1100},
-  {"\
-Sorry, only the superuser can change the Hardware Clock epoch in the \
-kernel.\n", 1101},
-  {"Cannot access the Hardware Clock via any known method.\n", 1102},
-  {"\
-Use the --debug option to see the details of our search for an access \
-method.\n", 1103},
-  {"Waiting in loop for time from KDGHWCLK to change\n", 1104},
-  {"KDGHWCLK ioctl to read time failed", 1105},
-  {"Timed out waiting for time change.\n", 1106},
-  {"KDGHWCLK ioctl to read time failed in loop", 1107},
-  {"ioctl() failed to read time from %s", 1108},
-  {"ioctl KDSHWCLK failed", 1109},
-  {"Can't open /dev/tty1 or /dev/vc/1", 1110},
-  {"KDGHWCLK ioctl failed", 1111},
-  {"open() of %s failed", 1112},
-  {"ioctl() to %s to read the time failed.\n", 1113},
-  {"Waiting in loop for time from %s to change\n", 1114},
-  {"%s does not have interrupt functions. ", 1115},
-  {"read() to %s to wait for clock tick failed", 1116},
-  {"select() to %s to wait for clock tick failed", 1117},
-  {"select() to %s to wait for clock tick timed out\n", 1118},
-  {"ioctl() to %s to turn off update interrupts failed", 1119},
-  {"ioctl() to %s to turn on update interrupts failed unexpectedly", 1120},
-  {"ioctl() to %s to set the time failed.\n", 1121},
-  {"ioctl(%s) was successful.\n", 1122},
-  {"Open of %s failed", 1123},
-  {"\
-To manipulate the epoch value in the kernel, we must access the Linux 'rtc' \
-device driver via the device special file %s.  This file does not exist on \
-this system.\n", 1124},
-  {"Unable to open %s", 1125},
-  {"ioctl(RTC_EPOCH_READ) to %s failed", 1126},
-  {"we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n", 1127},
-  {"The epoch value may not be less than 1900.  You requested %ld\n", 1128},
-  {"setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n", 1129},
-  {"\
-The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n", 1130},
-  {"ioctl(RTC_EPOCH_SET) to %s failed", 1131},
-  {"calling open_tty\n", 1132},
-  {"calling termio_init\n", 1133},
-  {"writing init string\n", 1134},
-  {"before autobaud\n", 1135},
-  {"waiting for cr-lf\n", 1136},
-  {"read %c\n", 1137},
-  {"reading login name\n", 1138},
-  {"%s: can't exec %s: %m", 1139},
-  {"can't malloc initstring", 1140},
-  {"bad timeout value: %s", 1141},
-  {"after getopt loop\n", 1142},
-  {"exiting parseargs\n", 1143},
-  {"entered parse_speeds\n", 1144},
-  {"bad speed: %s", 1145},
-  {"too many alternate speeds", 1146},
-  {"exiting parsespeeds\n", 1147},
-  {"/dev: chdir() failed: %m", 1148},
-  {"/dev/%s: not a character device", 1149},
-  {"open(2)\n", 1150},
-  {"/dev/%s: cannot open as standard input: %m", 1151},
-  {"%s: not open for read/write", 1152},
-  {"duping\n", 1153},
-  {"%s: dup problem: %m", 1154},
-  {"term_io 2\n", 1155},
-  {"user", 1156},
-  {"users", 1157},
-  {"%s: read: %m", 1158},
-  {"%s: input overrun", 1159},
-  {"\
-Usage: %s [-hiLmw] [-l login_program] [-t timeout] [-I initstring] [-H \
-login_host] baud_rate,... line [termtype]\n\
-or\t[-hiLmw] [-l login_program] [-t timeout] [-I initstring] [-H login_host] \
-line baud_rate,... [termtype]\n", 1160},
-  {"login: memory low, login may fail\n", 1161},
-  {"can't malloc for ttyclass", 1162},
-  {"can't malloc for grplist", 1163},
-  {"Login on %s from %s denied by default.\n", 1164},
-  {"Login on %s from %s denied.\n", 1165},
-  {"%s: you (user %d) don't exist.\n", 1166},
-  {"%s: user \"%s\" does not exist.\n", 1167},
-  {"%s: can only change local entries; use yp%s instead.\n", 1168},
-  {"Unknown user context", 1169},
-  {"%s: %s is not authorized to change the finger info of %s\n", 1170},
-  {"%s: Can't set default context for /etc/passwd", 1171},
-  {"Changing finger information for %s.\n", 1172},
-  {"Password error.", 1173},
-  {"Password: ", 1174},
-  {"Incorrect password.", 1175},
-  {"Finger information not changed.\n", 1176},
-  {"Usage: %s [ -f full-name ] [ -o office ] ", 1177},
-  {"\
-[ -p office-phone ]\n\
-\t[ -h home-phone ] ", 1178},
-  {"[ --help ] [ --version ]\n", 1179},
-  {"\
-\n\
-Aborted.\n", 1180},
-  {"field is too long.\n", 1181},
-  {"'%c' is not allowed.\n", 1182},
-  {"Control characters are not allowed.\n", 1183},
-  {"Finger information *NOT* changed.  Try again later.\n", 1184},
-  {"Finger information changed.\n", 1185},
-  {"malloc failed", 1186},
-  {"%s: %s is not authorized to change the shell of %s\n", 1187},
-  {"\
-%s: Running UID doesn't match UID of user we're altering, shell change \
-denied\n", 1188},
-  {"%s: Your shell is not in /etc/shells, shell change denied\n", 1189},
-  {"Changing shell for %s.\n", 1190},
-  {"New shell", 1191},
-  {"Shell not changed.\n", 1192},
-  {"Shell *NOT* changed.  Try again later.\n", 1193},
-  {"Shell changed.\n", 1194},
-  {"\
-Usage: %s [ -s shell ] [ --list-shells ] [ --help ] [ --version ]\n\
-       [ username ]\n", 1195},
-  {"%s: shell must be a full path name.\n", 1196},
-  {"%s: \"%s\" does not exist.\n", 1197},
-  {"%s: \"%s\" is not executable.\n", 1198},
-  {"%s: '%c' is not allowed.\n", 1199},
-  {"%s: Control characters are not allowed.\n", 1200},
-  {"Warning: \"%s\" is not listed in /etc/shells\n", 1201},
-  {"%s: \"%s\" is not listed in /etc/shells.\n", 1202},
-  {"%s: use -l option to see list\n", 1203},
-  {"Warning: \"%s\" is not listed in /etc/shells.\n", 1204},
-  {"Use %s -l to see list.\n", 1205},
-  {"No known shells.\n", 1206},
-  {"couldn't open /dev/urandom", 1207},
-  {"couldn't read random data from /dev/urandom", 1208},
-  {"can't open %s for reading", 1209},
-  {"can't stat(%s)", 1210},
-  {"%s doesn't have the correct filemodes", 1211},
-  {"can't read data from %s", 1212},
-  {"Can't read %s, exiting.", 1213},
-  {"usage: last [-#] [-f file] [-t tty] [-h hostname] [user ...]\n", 1214},
-  {"  still logged in", 1215},
-  {"\
-\n\
-wtmp begins %s", 1216},
-  {"last: malloc failure.\n", 1217},
-  {"last: gethostname", 1218},
-  {"\
-\n\
-interrupted %10.10s %5.5s \n", 1219},
-  {"FATAL: can't reopen tty: %s", 1220},
-  {"FATAL: bad tty", 1221},
-  {"login: -h for super-user only.\n", 1222},
-  {"usage: login [-fp] [username]\n", 1223},
-  {"login: PAM Failure, aborting: %s\n", 1224},
-  {"Couldn't initialize PAM: %s", 1225},
-  {"login: ", 1226},
-  {"FAILED LOGIN %d FROM %s FOR %s, %s", 1227},
-  {"\
-Login incorrect\n\
-\n", 1228},
-  {"TOO MANY LOGIN TRIES (%d) FROM %s FOR %s, %s", 1229},
-  {"FAILED LOGIN SESSION FROM %s FOR %s, %s", 1230},
-  {"\
-\n\
-Login incorrect\n", 1231},
-  {"\
-\n\
-Session setup problem, abort.\n", 1232},
-  {"NULL user name in %s:%d. Abort.", 1233},
-  {"Invalid user name \"%s\" in %s:%d. Abort.", 1234},
-  {"login: Out of memory\n", 1235},
-  {"Illegal username", 1236},
-  {"%s login refused on this terminal.\n", 1237},
-  {"LOGIN %s REFUSED FROM %s ON TTY %s", 1238},
-  {"LOGIN %s REFUSED ON TTY %s", 1239},
-  {"Login incorrect\n", 1240},
-  {"\
-Too many users logged on already.\n\
-Try again later.\n", 1241},
-  {"You have too many processes running.\n", 1242},
-  {"DIALUP AT %s BY %s", 1243},
-  {"ROOT LOGIN ON %s FROM %s", 1244},
-  {"ROOT LOGIN ON %s", 1245},
-  {"LOGIN ON %s BY %s FROM %s", 1246},
-  {"LOGIN ON %s BY %s", 1247},
-  {"You have new mail.\n", 1248},
-  {"You have mail.\n", 1249},
-  {"login: failure forking: %s", 1250},
-  {"TIOCSCTTY failed: %m", 1251},
-  {"setuid() failed", 1252},
-  {"No directory %s!\n", 1253},
-  {"Logging in with home = \"/\".\n", 1254},
-  {"login: no memory for shell script.\n", 1255},
-  {"login: couldn't exec shell script: %s.\n", 1256},
-  {"login: no shell: %s.\n", 1257},
-  {"\
-\n\
-%s login: ", 1258},
-  {"login name much too long.\n", 1259},
-  {"NAME too long", 1260},
-  {"login names may not start with '-'.\n", 1261},
-  {"too many bare linefeeds.\n", 1262},
-  {"EXCESSIVE linefeeds", 1263},
-  {"Login timed out after %d seconds\n", 1264},
-  {"Last login: %.*s ", 1265},
-  {"from %.*s\n", 1266},
-  {"on %.*s\n", 1267},
-  {"LOGIN FAILURE FROM %s, %s", 1268},
-  {"LOGIN FAILURE ON %s, %s", 1269},
-  {"%d LOGIN FAILURES FROM %s, %s", 1270},
-  {"%d LOGIN FAILURES ON %s, %s", 1271},
-  {"is y\n", 1272},
-  {"is n\n", 1273},
-  {"usage: mesg [y | n]\n", 1274},
-  {"newgrp: Who are you?", 1275},
-  {"newgrp: setgid", 1276},
-  {"newgrp: No such group.", 1277},
-  {"newgrp: Permission denied", 1278},
-  {"newgrp: setuid", 1279},
-  {"No shell", 1280},
-  {"The password must have at least 6 characters, try again.\n", 1281},
-  {"\
-The password must contain characters out of two of the following\n\
-classes:  upper and lower case letters, digits and non alphanumeric\n\
-characters. See passwd(1) for more information.\n", 1282},
-  {"You cannot reuse the old password.\n", 1283},
-  {"Please don't use something like your username as password!\n", 1284},
-  {"Please don't use something like your realname as password!\n", 1285},
-  {"Usage: passwd [username [password]]\n", 1286},
-  {"Only root may use the one and two argument forms.\n", 1287},
-  {"Usage: passwd [-foqsvV] [user [password]]\n", 1288},
-  {"Can't exec %s: %s\n", 1289},
-  {"Cannot find login name", 1290},
-  {"Only root can change the password for others.\n", 1291},
-  {"Too many arguments.\n", 1292},
-  {"Can't find username anywhere. Is `%s' really a user?", 1293},
-  {"Sorry, I can only change local passwords. Use yppasswd instead.", 1294},
-  {"UID and username does not match, imposter!", 1295},
-  {"Changing password for %s\n", 1296},
-  {"Enter old password: ", 1297},
-  {"Illegal password, imposter.", 1298},
-  {"Enter new password: ", 1299},
-  {"Password not changed.", 1300},
-  {"Re-type new password: ", 1301},
-  {"You misspelled it. Password not changed.", 1302},
-  {"password changed, user %s", 1303},
-  {"ROOT PASSWORD CHANGED", 1304},
-  {"password changed by root, user %s", 1305},
-  {"calling setpwnam to set password.\n", 1306},
-  {"Password *NOT* changed.  Try again later.\n", 1307},
-  {"Password changed.\n", 1308},
-  {"Usage: shutdown [-h|-r] [-fqs] [now|hh:ss|+mins]\n", 1309},
-  {"Shutdown process aborted", 1310},
-  {"%s: Only root can shut a system down.\n", 1311},
-  {"That must be tomorrow, can't you wait till then?\n", 1312},
-  {"for maintenance; bounce, bounce", 1313},
-  {"timeout = %d, quiet = %d, reboot = %d\n", 1314},
-  {"The system is being shut down within 5 minutes", 1315},
-  {"Login is therefore prohibited.", 1316},
-  {"rebooted by %s: %s", 1317},
-  {"halted by %s: %s", 1318},
-  {"\
-\n\
-Why am I still alive after reboot?", 1319},
-  {"\
-\n\
-Now you can turn off the power...", 1320},
-  {"Calling kernel power-off facility...\n", 1321},
-  {"Error powering off\t%s\n", 1322},
-  {"Executing the program \"%s\" ...\n", 1323},
-  {"Error executing\t%s\n", 1324},
-  {"URGENT: broadcast message from %s:", 1325},
-  {"System going down in %d hours %d minutes", 1326},
-  {"System going down in 1 hour %d minutes", 1327},
-  {"System going down in %d minutes\n", 1328},
-  {"System going down in 1 minute\n", 1329},
-  {"System going down IMMEDIATELY!\n", 1330},
-  {"\t... %s ...\n", 1331},
-  {"Cannot fork for swapoff. Shrug!", 1332},
-  {"Cannot exec swapoff, hoping umount will do the trick.", 1333},
-  {"Cannot fork for umount, trying manually.", 1334},
-  {"Cannot exec %s, trying umount.\n", 1335},
-  {"Cannot exec umount, giving up on umount.", 1336},
-  {"Unmounting any remaining filesystems...", 1337},
-  {"shutdown: Couldn't umount %s: %s\n", 1338},
-  {"Booting to single user mode.\n", 1339},
-  {"exec of single user shell failed\n", 1340},
-  {"fork of single user shell failed\n", 1341},
-  {"error opening fifo\n", 1342},
-  {"error setting close-on-exec on /dev/initctl", 1343},
-  {"error running finalprog\n", 1344},
-  {"error forking finalprog\n", 1345},
-  {"\
-\n\
-Wrong password.\n", 1346},
-  {"lstat of path failed\n", 1347},
-  {"stat of path failed\n", 1348},
-  {"open of directory failed\n", 1349},
-  {"fork failed\n", 1350},
-  {"exec failed\n", 1351},
-  {"cannot open inittab\n", 1352},
-  {"no TERM or cannot stat tty\n", 1353},
-  {"error stopping service: \"%s\"", 1354},
-  {"too many iov's (change code in wall/ttymsg.c)", 1355},
-  {"excessively long line arg", 1356},
-  {"cannot fork", 1357},
-  {"fork: %s", 1358},
-  {"%s: BAD ERROR", 1359},
-  {"%s: the password file is busy.\n", 1360},
-  {"%s: the group file is busy.\n", 1361},
-  {"%s: the %s file is busy (%s present)\n", 1362},
-  {"%s: can't link %s: %s\n", 1363},
-  {"%s: Can't get context for %s", 1364},
-  {"%s: Can't set context for %s", 1365},
-  {"%s: can't unlock %s: %s (your changes are still in %s)\n", 1366},
-  {"%s: Cannot fork\n", 1367},
-  {"%s: %s unchanged\n", 1368},
-  {"%s: no changes made\n", 1369},
-  {"You are using shadow groups on this system.\n", 1370},
-  {"You are using shadow passwords on this system.\n", 1371},
-  {"Would you like to edit %s now [y/n]? ", 1372},
-  {"usage: %s [file]\n", 1373},
-  {"%s: can't open temporary file.\n", 1374},
-  {"Broadcast Message from %s@%s", 1375},
-  {"%s: will not read %s - use stdin.\n", 1376},
-  {"%s: can't read %s.\n", 1377},
-  {"%s: can't stat temporary file.\n", 1378},
-  {"%s: can't read temporary file.\n", 1379},
-  {"illegal month value: use 1-12", 1380},
-  {"illegal year value: use 1-9999", 1381},
-  {"%s %d", 1382},
-  {"usage: cal [-13smjyV] [[month] year]\n", 1383},
-  {"usage: %s [+format] [day month year]\n", 1384},
-  {"St. Tib's Day", 1385},
-  {"%s: unknown signal %s\n", 1386},
-  {"%s: can't find process \"%s\"\n", 1387},
-  {"%s: unknown signal %s; valid signals:\n", 1388},
-  {"usage: %s [ -s signal | -p ] [ -a ] pid ...\n", 1389},
-  {"       %s -l [ signal ]\n", 1390},
-  {"logger: %s: %s.\n", 1391},
-  {"logger: unknown facility name: %s.\n", 1392},
-  {"logger: unknown priority name: %s.\n", 1393},
-  {"\
-usage: logger [-is] [-f file] [-p pri] [-t tag] [-u socket] [ message ... ]\n", 1394},
-  {"usage: look [-dfa] [-t char] string [file]\n", 1395},
-  {"Could not open %s\n", 1396},
-  {"Got %d bytes from %s\n", 1397},
-  {"namei: unable to get current directory - %s\n", 1398},
-  {"namei: unable to chdir to %s - %s (%d)\n", 1399},
-  {"usage: namei [-mx] pathname [pathname ...]\n", 1400},
-  {"namei: could not chdir to root!\n", 1401},
-  {"namei: could not stat root!\n", 1402},
-  {"namei: buf overflow\n", 1403},
-  {" ? could not chdir into %s - %s (%d)\n", 1404},
-  {" ? problems reading symlink %s - %s (%d)\n", 1405},
-  {"  *** EXCEEDED UNIX LIMIT OF SYMLINKS ***\n", 1406},
-  {"namei: unknown file type 0%06o on file %s\n", 1407},
-  {"%s: out of memory\n", 1408},
-  {"%s: renaming %s to %s failed: %s\n", 1409},
-  {"call: %s from to files...\n", 1410},
-  {"\
-Warning: `%s' is a link.\n\
-Use `%s [options] %s' if you really want to use it.\n\
-Script not started.\n", 1411},
-  {"usage: script [-a] [-f] [-q] [-t] [file]\n", 1412},
-  {"Script started, file is %s\n", 1413},
-  {"Script started on %s", 1414},
-  {"\
-\n\
-Script done on %s", 1415},
-  {"Script done, file is %s\n", 1416},
-  {"openpty failed\n", 1417},
-  {"Out of pty's\n", 1418},
-  {"%s: Argument error, usage\n", 1419},
-  {"  [ -term terminal_name ]\n", 1420},
-  {"  [ -reset ]\n", 1421},
-  {"  [ -initialize ]\n", 1422},
-  {"  [ -cursor [on|off] ]\n", 1423},
-  {"  [ -snow [on|off] ]\n", 1424},
-  {"  [ -softscroll [on|off] ]\n", 1425},
-  {"  [ -repeat [on|off] ]\n", 1426},
-  {"  [ -appcursorkeys [on|off] ]\n", 1427},
-  {"  [ -linewrap [on|off] ]\n", 1428},
-  {"  [ -default ]\n", 1429},
-  {"  [ -foreground black|blue|green|cyan", 1430},
-  {"|red|magenta|yellow|white|default ]\n", 1431},
-  {"  [ -background black|blue|green|cyan", 1432},
-  {"  [ -ulcolor black|grey|blue|green|cyan", 1433},
-  {"|red|magenta|yellow|white ]\n", 1434},
-  {"  [ -ulcolor bright blue|green|cyan", 1435},
-  {"  [ -hbcolor black|grey|blue|green|cyan", 1436},
-  {"  [ -hbcolor bright blue|green|cyan", 1437},
-  {"  [ -standout [ attr ] ]\n", 1438},
-  {"  [ -inversescreen [on|off] ]\n", 1439},
-  {"  [ -bold [on|off] ]\n", 1440},
-  {"  [ -half-bright [on|off] ]\n", 1441},
-  {"  [ -blink [on|off] ]\n", 1442},
-  {"  [ -reverse [on|off] ]\n", 1443},
-  {"  [ -underline [on|off] ]\n", 1444},
-  {"  [ -store ]\n", 1445},
-  {"  [ -clear [all|rest] ]\n", 1446},
-  {"  [ -tabs [ tab1 tab2 tab3 ... ] ]      (tabn = 1-160)\n", 1447},
-  {"  [ -clrtabs [ tab1 tab2 tab3 ... ] ]   (tabn = 1-160)\n", 1448},
-  {"  [ -regtabs [1-160] ]\n", 1449},
-  {"  [ -blank [0-60] ]\n", 1450},
-  {"  [ -dump   [1-NR_CONSOLES] ]\n", 1451},
-  {"  [ -append [1-NR_CONSOLES] ]\n", 1452},
-  {"  [ -file dumpfilename ]\n", 1453},
-  {"  [ -msg [on|off] ]\n", 1454},
-  {"  [ -msglevel [0-8] ]\n", 1455},
-  {"  [ -powersave [on|vsync|hsync|powerdown|off] ]\n", 1456},
-  {"  [ -powerdown [0-60] ]\n", 1457},
-  {"  [ -blength [0-2000] ]\n", 1458},
-  {"  [ -bfreq freqnumber ]\n", 1459},
-  {"cannot (un)set powersave mode\n", 1460},
-  {"klogctl error: %s\n", 1461},
-  {"Error reading %s\n", 1462},
-  {"Error writing screendump\n", 1463},
-  {"couldn't read %s, and cannot ioctl dump\n", 1464},
-  {"%s: $TERM is not defined.\n", 1465},
-  {"whereis [ -sbmu ] [ -SBM dir ... -f ] name...\n", 1466},
-  {"write: can't find your tty's name\n", 1467},
-  {"write: you have write permission turned off.\n", 1468},
-  {"write: %s is not logged in on %s.\n", 1469},
-  {"write: %s has messages disabled on %s\n", 1470},
-  {"usage: write user [tty]\n", 1471},
-  {"write: %s is not logged in\n", 1472},
-  {"write: %s has messages disabled\n", 1473},
-  {"write: %s is logged in more than once; writing to %s\n", 1474},
-  {"Message from %s@%s (as %s) on %s at %s ...", 1475},
-  {"Message from %s@%s on %s at %s ...", 1476},
-  {"warning: error reading %s: %s", 1477},
-  {"warning: can't open %s: %s", 1478},
-  {"mount: could not open %s - using %s instead\n", 1479},
-  {"can't create lock file %s: %s (use -n flag to override)", 1480},
-  {"can't link lock file %s: %s (use -n flag to override)", 1481},
-  {"can't open lock file %s: %s (use -n flag to override)", 1482},
-  {"Can't lock lock file %s: %s\n", 1483},
-  {"can't lock lock file %s: %s", 1484},
-  {"timed out", 1485},
-  {"\
-Cannot create link %s\n\
-Perhaps there is a stale lock file?\n", 1486},
-  {"cannot open %s (%s) - mtab not updated", 1487},
-  {"error writing %s: %s", 1488},
-  {"error changing mode of %s: %s\n", 1489},
-  {"can't rename %s to %s: %s\n", 1490},
-  {"loop: can't open device %s: %s\n", 1491},
-  {", offset %lld", 1492},
-  {", sizelimit %lld", 1493},
-  {", encryption %s (type %d)", 1494},
-  {", offset %d", 1495},
-  {", encryption type %d\n", 1496},
-  {"loop: can't get info on device %s: %s\n", 1497},
-  {"%s: could not find any device /dev/loop#", 1498},
-  {"%s: no permission to look at /dev/loop#", 1499},
-  {"\
-%s: Could not find any loop device. Maybe this kernel does not know\n\
-       about the loop device? (If so, recompile or `modprobe loop'.)", 1500},
-  {"%s: could not find any free loop device", 1501},
-  {"Couldn't lock into memory, exiting.\n", 1502},
-  {"set_loop(%s,%s,%llu): success\n", 1503},
-  {"loop: can't delete device %s: %s\n", 1504},
-  {"del_loop(%s): success\n", 1505},
-  {"This mount was compiled without loop support. Please recompile.\n", 1506},
-  {"\
-usage:\n\
-  %s loop_device                                       # give info\n\
-  %s -d loop_device                                    # delete\n\
-  %s -f                                                # find unused\n\
-  %s [-e encryption] [-o offset] {-f|loop_device} file # setup\n", 1507},
-  {"not enough memory", 1508},
-  {"No loop support was available at compile time. Please recompile.\n", 1509},
-  {"[mntent]: warning: no final newline at the end of %s\n", 1510},
-  {"[mntent]: line %d in %s is bad%s\n", 1511},
-  {"; rest of file ignored", 1512},
-  {"mount: according to mtab, %s is already mounted on %s", 1513},
-  {"mount: according to mtab, %s is mounted on %s", 1514},
-  {"mount: can't open %s for writing: %s", 1515},
-  {"mount: error writing %s: %s", 1516},
-  {"mount: error changing mode of %s: %s", 1517},
-  {"%s looks like swapspace - not mounted", 1518},
-  {"mount failed", 1519},
-  {"mount: only root can mount %s on %s", 1520},
-  {"mount: loop device specified twice", 1521},
-  {"mount: type specified twice", 1522},
-  {"mount: skipping the setup of a loop device\n", 1523},
-  {"mount: going to use the loop device %s\n", 1524},
-  {"mount: failed setting up loop device\n", 1525},
-  {"mount: setup loop device successfully\n", 1526},
-  {"mount: can't open %s: %s", 1527},
-  {"mount: argument to -p or --pass-fd must be a number", 1528},
-  {"mount: cannot open %s for setting speed", 1529},
-  {"mount: cannot set speed: %s", 1530},
-  {"mount: cannot fork: %s", 1531},
-  {"mount: this version was compiled without support for the type `nfs'", 1532},
-  {"mount: failed with nfs mount version 4, trying 3..\n", 1533},
-  {"\
-mount: I could not determine the filesystem type, and none was specified", 1534},
-  {"mount: you must specify the filesystem type", 1535},
-  {"mount: mount failed", 1536},
-  {"mount: mount point %s is not a directory", 1537},
-  {"mount: permission denied", 1538},
-  {"mount: must be superuser to use mount", 1539},
-  {"mount: %s is busy", 1540},
-  {"mount: proc already mounted", 1541},
-  {"mount: %s already mounted or %s busy", 1542},
-  {"mount: mount point %s does not exist", 1543},
-  {"mount: mount point %s is a symbolic link to nowhere", 1544},
-  {"mount: special device %s does not exist", 1545},
-  {"\
-mount: special device %s does not exist\n\
-       (a path prefix is not a directory)\n", 1546},
-  {"mount: %s not mounted already, or bad option", 1547},
-  {"\
-mount: wrong fs type, bad option, bad superblock on %s,\n\
-       missing codepage, or too many mounted file systems", 1548},
-  {"mount table full", 1549},
-  {"mount: %s: can't read superblock", 1550},
-  {"mount: %s: unknown device", 1551},
-  {"mount: unknown filesystem type '%s'", 1552},
-  {"mount: probably you meant %s", 1553},
-  {"mount: maybe you meant 'iso9660'?", 1554},
-  {"mount: maybe you meant 'vfat'?", 1555},
-  {"mount: %s has wrong device number or fs type %s not supported", 1556},
-  {"mount: %s is not a block device, and stat fails?", 1557},
-  {"\
-mount: the kernel does not recognize %s as a block device\n\
-       (maybe `insmod driver'?)", 1558},
-  {"mount: %s is not a block device (maybe try `-o loop'?)", 1559},
-  {"mount: %s is not a block device", 1560},
-  {"mount: %s is not a valid block device", 1561},
-  {"block device ", 1562},
-  {"mount: cannot mount %s%s read-only", 1563},
-  {"mount: %s%s is write-protected but explicit `-w' flag given", 1564},
-  {"mount: %s%s is write-protected, mounting read-only", 1565},
-  {"mount: no type was given - I'll assume nfs because of the colon\n", 1566},
-  {"mount: no type was given - I'll assume smbfs because of the // prefix\n", 1567},
-  {"mount: backgrounding \"%s\"\n", 1568},
-  {"mount: giving up \"%s\"\n", 1569},
-  {"mount: %s already mounted on %s\n", 1570},
-  {"\
-Usage: mount -V                 : print version\n\
-       mount -h                 : print this help\n\
-       mount                    : list mounted filesystems\n\
-       mount -l                 : idem, including volume labels\n\
-So far the informational part. Next the mounting.\n\
-The command is `mount [-t fstype] something somewhere'.\n\
-Details found in /etc/fstab may be omitted.\n\
-       mount -a [-t|-O] ...     : mount all stuff from /etc/fstab\n\
-       mount device             : mount device at the known place\n\
-       mount directory          : mount known device here\n\
-       mount -t type dev dir    : ordinary mount command\n\
-Note that one does not really mount a device, one mounts\n\
-a filesystem (of the given type) found on the device.\n\
-One can also mount an already visible directory tree elsewhere:\n\
-       mount --bind olddir newdir\n\
-or move a subtree:\n\
-       mount --move olddir newdir\n\
-A device can be given by name, say /dev/hda1 or /dev/cdrom,\n\
-or by label, using  -L label  or by uuid, using  -U uuid .\n\
-Other options: [-nfFrsvw] [-o options] [-p passwdfd].\n\
-For many more details, say  man 8 mount .\n", 1571},
-  {"mount: only root can do that", 1572},
-  {"mount: no %s found - creating it..\n", 1573},
-  {"mount: no such partition found", 1574},
-  {"mount: mounting %s\n", 1575},
-  {"nothing was mounted", 1576},
-  {"mount: cannot find %s in %s", 1577},
-  {"mount: can't find %s in %s or %s", 1578},
-  {"\
-mount: could not open %s, so UUID and LABEL conversion cannot be done.\n", 1579},
-  {"mount: bad UUID", 1580},
-  {"mount: error while guessing filesystem type\n", 1581},
-  {"mount: you didn't specify a filesystem type for %s\n", 1582},
-  {"       I will try all types mentioned in %s or %s\n", 1583},
-  {"       and it looks like this is swapspace\n", 1584},
-  {"       I will try type %s\n", 1585},
-  {"Trying %s\n", 1586},
-  {"mount: excessively long host:dir argument\n", 1587},
-  {"mount: warning: multiple hostnames not supported\n", 1588},
-  {"mount: directory to mount not in host:dir format\n", 1589},
-  {"mount: can't get address for %s\n", 1590},
-  {"mount: got bad hp->h_length\n", 1591},
-  {"mount: excessively long option argument\n", 1592},
-  {"Warning: Unrecognized proto= option.\n", 1593},
-  {"Warning: Option namlen is not supported.\n", 1594},
-  {"unknown nfs mount parameter: %s=%d\n", 1595},
-  {"Warning: option nolock is not supported.\n", 1596},
-  {"unknown nfs mount option: %s%s\n", 1597},
-  {"mount: got bad hp->h_length?\n", 1598},
-  {"NFS over TCP is not supported.\n", 1599},
-  {"nfs socket", 1600},
-  {"nfs bindresvport", 1601},
-  {"nfs server reported service unavailable", 1602},
-  {"used portmapper to find NFS port\n", 1603},
-  {"using port %d for nfs deamon\n", 1604},
-  {"nfs connect", 1605},
-  {"unknown nfs status return value: %d", 1606},
-  {"bug in xstrndup call", 1607},
-  {"\
-usage: %s [-hV]\n\
-       %s -a [-e] [-v]\n\
-       %s [-v] [-p priority] special ...\n\
-       %s [-s]\n", 1608},
-  {"\
-usage: %s [-hV]\n\
-       %s -a [-v]\n\
-       %s [-v] special ...\n", 1609},
-  {"%s on %s\n", 1610},
-  {"swapon: cannot stat %s: %s\n", 1611},
-  {"swapon: warning: %s has insecure permissions %04o, %04o suggested\n", 1612},
-  {"swapon: Skipping file %s - it appears to have holes.\n", 1613},
-  {"Not superuser.\n", 1614},
-  {"%s: cannot open %s: %s\n", 1615},
-  {"umount: compiled without support for -f\n", 1616},
-  {"umount: cannot fork: %s", 1617},
-  {"host: %s, directory: %s\n", 1618},
-  {"umount: can't get address for %s\n", 1619},
-  {"umount: got bad hostp->h_length\n", 1620},
-  {"umount: %s: invalid block device", 1621},
-  {"umount: %s: not mounted", 1622},
-  {"umount: %s: can't write superblock", 1623},
-  {"umount: %s: device is busy", 1624},
-  {"umount: %s: not found", 1625},
-  {"umount: %s: must be superuser to umount", 1626},
-  {"umount: %s: block devices not permitted on fs", 1627},
-  {"umount: %s: %s", 1628},
-  {"no umount2, trying umount...\n", 1629},
-  {"could not umount %s - trying %s instead\n", 1630},
-  {"umount: %s busy - remounted read-only\n", 1631},
-  {"umount: could not remount %s read-only\n", 1632},
-  {"%s umounted\n", 1633},
-  {"umount: cannot find list of filesystems to unmount", 1634},
-  {"\
-Usage: umount [-hV]\n\
-       umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n\
-       umount [-f] [-r] [-n] [-v] special | node...\n", 1635},
-  {"Trying to umount %s\n", 1636},
-  {"Could not find %s in mtab\n", 1637},
-  {"umount: %s is not mounted (according to mtab)", 1638},
-  {"umount: it seems %s is mounted multiple times", 1639},
-  {"umount: %s is not in the fstab (and you are not root)", 1640},
-  {"umount: %s mount disagrees with the fstab", 1641},
-  {"umount: only %s can unmount %s from %s", 1642},
-  {"umount: only root can do that", 1643},
-  {"You must be root to set the Ctrl-Alt-Del behaviour.\n", 1644},
-  {"Usage: ctrlaltdel hard|soft\n", 1645},
-  {"\
-File %s, For threshold value %lu, Maximum characters in fifo were %d,\n\
-and the maximum transfer rate in characters/second was %f\n", 1646},
-  {"\
-File %s, For threshold value %lu and timrout value %lu, Maximum characters \
-in fifo were %d,\n\
-and the maximum transfer rate in characters/second was %f\n", 1647},
-  {"Invalid interval value: %s\n", 1648},
-  {"Invalid set value: %s\n", 1649},
-  {"Invalid default value: %s\n", 1650},
-  {"Invalid set time value: %s\n", 1651},
-  {"Invalid default time value: %s\n", 1652},
-  {"\
-Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) \
-[-g|-G] file [file...]\n", 1653},
-  {"Can't open %s: %s\n", 1654},
-  {"Can't set %s to threshold %d: %s\n", 1655},
-  {"Can't set %s to time threshold %d: %s\n", 1656},
-  {"Can't get threshold for %s: %s\n", 1657},
-  {"Can't get timeout for %s: %s\n", 1658},
-  {"%s: %ld current threshold and %ld current timeout\n", 1659},
-  {"%s: %ld default threshold and %ld default timeout\n", 1660},
-  {"Can't set signal handler", 1661},
-  {"gettimeofday failed", 1662},
-  {"Can't issue CYGETMON on %s: %s\n", 1663},
-  {"\
-%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n", 1664},
-  {"   %f int/sec; %f rec, %f send (char/sec)\n", 1665},
-  {"\
-%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n", 1666},
-  {"   %f int/sec; %f rec (char/sec)\n", 1667},
-  {"Usage: %s [-c] [-n level] [-s bufsize]\n", 1668},
-  {"invalid id: %s\n", 1669},
-  {"cannot remove id %s (%s)\n", 1670},
-  {"deprecated usage: %s {shm | msg | sem} id ...\n", 1671},
-  {"unknown resource type: %s\n", 1672},
-  {"resource(s) deleted\n", 1673},
-  {"\
-usage: %s [ [-q msqid] [-m shmid] [-s semid]\n\
-          [-Q msgkey] [-M shmkey] [-S semkey] ... ]\n", 1674},
-  {"%s: illegal option -- %c\n", 1675},
-  {"%s: illegal key (%s)\n", 1676},
-  {"permission denied for key", 1677},
-  {"already removed key", 1678},
-  {"invalid key", 1679},
-  {"unknown error in key", 1680},
-  {"permission denied for id", 1681},
-  {"invalid id", 1682},
-  {"already removed id", 1683},
-  {"unknown error in id", 1684},
-  {"%s: %s (%s)\n", 1685},
-  {"%s: unknown argument: %s\n", 1686},
-  {"usage : %s -asmq -tclup \n", 1687},
-  {"\t%s [-s -m -q] -i id\n", 1688},
-  {"\t%s -h for help.\n", 1689},
-  {"\
-%s provides information on ipc facilities for which you have read access.\n", 1690},
-  {"\
-Resource Specification:\n\
-\t-m : shared_mem\n\
-\t-q : messages\n", 1691},
-  {"\
-\t-s : semaphores\n\
-\t-a : all (default)\n", 1692},
-  {"\
-Output Format:\n\
-\t-t : time\n\
-\t-p : pid\n\
-\t-c : creator\n", 1693},
-  {"\
-\t-l : limits\n\
-\t-u : summary\n", 1694},
-  {"-i id [-s -q -m] : details on resource identified by id\n", 1695},
-  {"kernel not configured for shared memory\n", 1696},
-  {"------ Shared Memory Limits --------\n", 1697},
-  {"max number of segments = %lu\n", 1698},
-  {"max seg size (kbytes) = %lu\n", 1699},
-  {"max total shared memory (pages) = %lu\n", 1700},
-  {"min seg size (bytes) = %lu\n", 1701},
-  {"------ Shared Memory Status --------\n", 1702},
-  {"segments allocated %d\n", 1703},
-  {"pages allocated %ld\n", 1704},
-  {"pages resident  %ld\n", 1705},
-  {"pages swapped   %ld\n", 1706},
-  {"Swap performance: %ld attempts\t %ld successes\n", 1707},
-  {"------ Shared Memory Segment Creators/Owners --------\n", 1708},
-  {"%-10s %-10s %-10s %-10s %-10s %-10s\n", 1709},
-  {"shmid", 1710},
-  {"perms", 1711},
-  {"cuid", 1712},
-  {"cgid", 1713},
-  {"uid", 1714},
-  {"gid", 1715},
-  {"------ Shared Memory Attach/Detach/Change Times --------\n", 1716},
-  {"%-10s %-10s %-20s %-20s %-20s\n", 1717},
-  {"owner", 1718},
-  {"attached", 1719},
-  {"detached", 1720},
-  {"changed", 1721},
-  {"------ Shared Memory Creator/Last-op --------\n", 1722},
-  {"%-10s %-10s %-10s %-10s\n", 1723},
-  {"cpid", 1724},
-  {"lpid", 1725},
-  {"------ Shared Memory Segments --------\n", 1726},
-  {"%-10s %-10s %-10s %-10s %-10s %-10s %-12s\n", 1727},
-  {"key", 1728},
-  {"bytes", 1729},
-  {"nattch", 1730},
-  {"status", 1731},
-  {"Not set", 1732},
-  {"dest", 1733},
-  {"locked", 1734},
-  {"kernel not configured for semaphores\n", 1735},
-  {"------ Semaphore Limits --------\n", 1736},
-  {"max number of arrays = %d\n", 1737},
-  {"max semaphores per array = %d\n", 1738},
-  {"max semaphores system wide = %d\n", 1739},
-  {"max ops per semop call = %d\n", 1740},
-  {"semaphore max value = %d\n", 1741},
-  {"------ Semaphore Status --------\n", 1742},
-  {"used arrays = %d\n", 1743},
-  {"allocated semaphores = %d\n", 1744},
-  {"------ Semaphore Arrays Creators/Owners --------\n", 1745},
-  {"semid", 1746},
-  {"------ Shared Memory Operation/Change Times --------\n", 1747},
-  {"%-8s %-10s %-26.24s %-26.24s\n", 1748},
-  {"last-op", 1749},
-  {"last-changed", 1750},
-  {"------ Semaphore Arrays --------\n", 1751},
-  {"%-10s %-10s %-10s %-10s %-10s\n", 1752},
-  {"nsems", 1753},
-  {"kernel not configured for message queues\n", 1754},
-  {"------ Messages: Limits --------\n", 1755},
-  {"max queues system wide = %d\n", 1756},
-  {"max size of message (bytes) = %d\n", 1757},
-  {"default max size of queue (bytes) = %d\n", 1758},
-  {"------ Messages: Status --------\n", 1759},
-  {"allocated queues = %d\n", 1760},
-  {"used headers = %d\n", 1761},
-  {"used space = %d bytes\n", 1762},
-  {"------ Message Queues: Creators/Owners --------\n", 1763},
-  {"msqid", 1764},
-  {"------ Message Queues Send/Recv/Change Times --------\n", 1765},
-  {"%-8s %-10s %-20s %-20s %-20s\n", 1766},
-  {"send", 1767},
-  {"recv", 1768},
-  {"change", 1769},
-  {"------ Message Queues PIDs --------\n", 1770},
-  {"lspid", 1771},
-  {"lrpid", 1772},
-  {"------ Message Queues --------\n", 1773},
-  {"%-10s %-10s %-10s %-10s %-12s %-12s\n", 1774},
-  {"used-bytes", 1775},
-  {"messages", 1776},
-  {"\
-\n\
-Shared memory Segment shmid=%d\n", 1777},
-  {"uid=%d\tgid=%d\tcuid=%d\tcgid=%d\n", 1778},
-  {"mode=%#o\taccess_perms=%#o\n", 1779},
-  {"bytes=%ld\tlpid=%d\tcpid=%d\tnattch=%ld\n", 1780},
-  {"att_time=%-26.24s\n", 1781},
-  {"det_time=%-26.24s\n", 1782},
-  {"change_time=%-26.24s\n", 1783},
-  {"\
-\n\
-Message Queue msqid=%d\n", 1784},
-  {"uid=%d\tgid=%d\tcuid=%d\tcgid=%d\tmode=%#o\n", 1785},
-  {"cbytes=%ld\tqbytes=%ld\tqnum=%ld\tlspid=%d\tlrpid=%d\n", 1786},
-  {"send_time=%-26.24s\n", 1787},
-  {"rcv_time=%-26.24s\n", 1788},
-  {"\
-\n\
-Semaphore Array semid=%d\n", 1789},
-  {"uid=%d\t gid=%d\t cuid=%d\t cgid=%d\n", 1790},
-  {"mode=%#o, access_perms=%#o\n", 1791},
-  {"nsems = %ld\n", 1792},
-  {"otime = %-26.24s\n", 1793},
-  {"ctime = %-26.24s\n", 1794},
-  {"semnum", 1795},
-  {"value", 1796},
-  {"ncount", 1797},
-  {"zcount", 1798},
-  {"pid", 1799},
-  {"usage: rdev [ -rv ] [ -o OFFSET ] [ IMAGE [ VALUE [ OFFSET ] ] ]", 1800},
-  {"\
-  rdev /dev/fd0  (or rdev /linux, etc.) displays the current ROOT device", 1801},
-  {"  rdev /dev/fd0 /dev/hda2         sets ROOT to /dev/hda2", 1802},
-  {"  rdev -R /dev/fd0 1              set the ROOTFLAGS (readonly status)", 1803},
-  {"  rdev -r /dev/fd0 627            set the RAMDISK size", 1804},
-  {"  rdev -v /dev/fd0 1              set the bootup VIDEOMODE", 1805},
-  {"  rdev -o N ...                   use the byte offset N", 1806},
-  {"  rootflags ...                   same as rdev -R", 1807},
-  {"  ramsize ...                     same as rdev -r", 1808},
-  {"  vidmode ...                     same as rdev -v", 1809},
-  {"\
-Note: video modes are: -3=Ask, -2=Extended, -1=NormalVga, 1=key1, 2=key2,...", 1810},
-  {"      use -R 1 to mount root readonly, -R 0 for read/write.", 1811},
-  {"missing comma", 1812},
-  {"out of memory", 1813},
-  {"\
-%s: Usage: \"%s [options]\n\
-\t -m <mapfile>  (defaults: \"%s\" and\n\
-\t\t\t\t  \"%s\")\n\
-\t -p <pro-file> (default: \"%s\")\n\
-\t -M <mult>     set the profiling multiplier to <mult>\n\
-\t -i            print only info about the sampling step\n\
-\t -v            print verbose data\n\
-\t -a            print all symbols, even if count is 0\n\
-\t -b            print individual histogram-bin counts\n\
-\t -s            print individual counters within functions\n\
-\t -r            reset all the counters (root only)\n\
-\t -n            disable byte order auto-detection\n\
-\t -V            print version and exit\n", 1814},
-  {"%s version %s\n", 1815},
-  {"Sampling_step: %i\n", 1816},
-  {"%s: %s(%i): wrong map line\n", 1817},
-  {"%s: can't find \"_stext\" in %s\n", 1818},
-  {"%s: profile address out of range. Wrong map file?\n", 1819},
-  {"total", 1820},
-  {"\
-usage: renice priority [ [ -p ] pids ] [ [ -g ] pgrps ] [ [ -u ] users ]\n", 1821},
-  {"renice: %s: unknown user\n", 1822},
-  {"renice: %s: bad value\n", 1823},
-  {"getpriority", 1824},
-  {"setpriority", 1825},
-  {"%d: old priority %d, new priority %d\n", 1826},
-  {"usage: %s program [arg ...]\n", 1827},
-  {"\
-Usage: %s <device> [ -i <IRQ> | -t <TIME> | -c <CHARS> | -w <WAIT> | \n\
-          -a [on|off] | -o [on|off] | -C [on|off] | -q [on|off] | -s | \n\
-          -T [on|off] ]\n", 1828},
-  {"malloc error", 1829},
-  {"%s: bad value\n", 1830},
-  {"%s: %s not an lp device.\n", 1831},
-  {"%s status is %d", 1832},
-  {", busy", 1833},
-  {", ready", 1834},
-  {", out of paper", 1835},
-  {", on-line", 1836},
-  {", error", 1837},
-  {"LPGETIRQ error", 1838},
-  {"%s using IRQ %d\n", 1839},
-  {"%s using polling\n", 1840},
-  {"col: bad -l argument %s.\n", 1841},
-  {"usage: col [-bfpx] [-l nline]\n", 1842},
-  {"col: write error.\n", 1843},
-  {"col: warning: can't back up %s.\n", 1844},
-  {"past first line", 1845},
-  {"-- line already flushed", 1846},
-  {"usage: %s [ - ] [ -2 ] [ file ... ]\n", 1847},
-  {"line too long", 1848},
-  {"usage: column [-tx] [-c columns] [file ...]\n", 1849},
-  {"hexdump: bad length value.\n", 1850},
-  {"hexdump: bad skip value.\n", 1851},
-  {"\
-hexdump: [-bcCdovx] [-e fmt] [-f fmt_file] [-n length] [-s skip] [file ...]\n", 1852},
-  {"usage: %s [-dflpcsu] [+linenum | +/pattern] name1 name2 ...\n", 1853},
-  {"%s: unknown option \"-%c\"\n", 1854},
-  {"\
-\n\
-*** %s: directory ***\n\
-\n", 1855},
-  {"\
-\n\
-******** %s: Not a text file ********\n\
-\n", 1856},
-  {"[Use q or Q to quit]", 1857},
-  {"--More--", 1858},
-  {"(Next file: %s)", 1859},
-  {"[Press space to continue, 'q' to quit.]", 1860},
-  {"...back %d pages", 1861},
-  {"...back 1 page", 1862},
-  {"...skipping one line", 1863},
-  {"...skipping %d lines", 1864},
-  {"\
-\n\
-***Back***\n\
-\n", 1865},
-  {"\
-\n\
-Most commands optionally preceded by integer argument k.  Defaults in \
-brackets.\n\
-Star (*) indicates argument becomes new default.\n", 1866},
-  {"\
-<space>                 Display next k lines of text [current screen size]\n\
-z                       Display next k lines of text [current screen size]*\n\
-<return>                Display next k lines of text [1]*\n\
-d or ctrl-D             Scroll k lines [current scroll size, initially 11]*\n\
-q or Q or <interrupt>   Exit from more\n\
-s                       Skip forward k lines of text [1]\n\
-f                       Skip forward k screenfuls of text [1]\n\
-b or ctrl-B             Skip backwards k screenfuls of text [1]\n\
-'                       Go to place where previous search started\n\
-=                       Display current line number\n\
-/<regular expression>   Search for kth occurrence of regular expression [1]\n\
-n                       Search for kth occurrence of last r.e [1]\n\
-!<cmd> or :!<cmd>       Execute <cmd> in a subshell\n\
-v                       Start up /usr/bin/vi at current line\n\
-ctrl-L                  Redraw screen\n\
-:n                      Go to kth next file [1]\n\
-:p                      Go to kth previous file [1]\n\
-:f                      Display current file name and line number\n\
-.                       Repeat previous command\n", 1867},
-  {"[Press 'h' for instructions.]", 1868},
-  {"\"%s\" line %d", 1869},
-  {"[Not a file] line %d", 1870},
-  {"  Overflow\n", 1871},
-  {"...skipping\n", 1872},
-  {"Regular expression botch", 1873},
-  {"\
-\n\
-Pattern not found\n", 1874},
-  {"Pattern not found", 1875},
-  {"can't fork\n", 1876},
-  {"\
-\n\
-...Skipping ", 1877},
-  {"...Skipping to file ", 1878},
-  {"...Skipping back to file ", 1879},
-  {"Line too long", 1880},
-  {"No previous command to substitute for", 1881},
-  {"od: od(1) has been deprecated for hexdump(1).\n", 1882},
-  {"od: hexdump(1) compatibility doesn't support the -%c option%s\n", 1883},
-  {"; see strings(1).", 1884},
-  {"hexdump: can't read %s.\n", 1885},
-  {"hexdump: line too long.\n", 1886},
-  {"hexdump: byte count with multiple conversion characters.\n", 1887},
-  {"hexdump: bad byte count for conversion character %s.\n", 1888},
-  {"hexdump: %%s requires a precision or a byte count.\n", 1889},
-  {"hexdump: bad format {%s}\n", 1890},
-  {"hexdump: bad conversion character %%%s.\n", 1891},
-  {"\
-%s: Usage: %s [-number] [-p string] [-cefnrs] [+line] [+/pattern/] [files]\n", 1892},
-  {"%s: option requires an argument -- %s\n", 1893},
-  {"%s: illegal option -- %s\n", 1894},
-  {"...skipping forward\n", 1895},
-  {"...skipping backward\n", 1896},
-  {"No next file", 1897},
-  {"No previous file", 1898},
-  {"%s: Read error from %s file\n", 1899},
-  {"%s: Unexpected EOF in %s file\n", 1900},
-  {"%s: Unknown error in %s file\n", 1901},
-  {"%s: Cannot create tempfile\n", 1902},
-  {"RE error: ", 1903},
-  {"(EOF)", 1904},
-  {"No remembered search string", 1905},
-  {"Cannot open ", 1906},
-  {"saved", 1907},
-  {": !command not allowed in rflag mode.\n", 1908},
-  {"fork() failed, try again later\n", 1909},
-  {"(Next file: ", 1910},
-  {"Unable to allocate bufferspace\n", 1911},
-  {"usage: rev [file ...]\n", 1912},
-  {"usage: %s [ -i ] [ -tTerm ] file...\n", 1913},
-  {"trouble reading terminfo", 1914},
-  {"Unknown escape sequence in input: %o, %o\n", 1915},
-  {"Unable to allocate buffer.\n", 1916},
-  {"Input line too long.\n", 1917},
-  {"Out of memory when growing buffer.\n", 1918},
-};
-
-int _msg_tbl_length = 1918;
index b124f4e732ea6c947ae2033998d648378f72fa62..76ecb76b8cbab627ce1cd79c827d3b2d448eab1e 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux-2.11d\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2001-05-30 15:11+0200\n"
 "Last-Translator: Jiøí Pavlovský <pavlovsk@ff.cuni.cz>\n"
 "Language-Team: Czech <cs@li.org>\n"
@@ -1565,7 +1565,7 @@ msgstr "  Logick
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Neznámý"
 
@@ -2697,7 +2697,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Boot    Zaèátek     Konec  Bloky    Id  Systém\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Zaøízení"
 
@@ -2780,14 +2780,14 @@ msgstr "Celkov
 msgid "%lld unallocated sectors\n"
 msgstr "nealokovaných sektorù: %d\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr ""
 "Diskový oddíl %d je ji¾ definován. Pøed opìtovným vytvoøením jej musíte\n"
 "nejprve smazat.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3384,14 +3384,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "Nalezl jsem sgi popis disku s chybným kontrolním souètem.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3402,12 +3402,12 @@ msgstr ""
 "Jednotky = %s po %d * 512 bajtech\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3415,7 +3415,7 @@ msgstr ""
 "Jednotky = %s po %d * 512 bajtech\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3424,7 +3424,7 @@ msgstr ""
 "----- diskové oddíly -----\n"
 "Od# %*s  Info      Zaèátek     Konec Sektory  Id  Systém\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3435,13 +3435,13 @@ msgstr ""
 "Startovací soubor: %s\n"
 "----- adresáøové polo¾ky -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s sektor%5u velikost%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3453,7 +3453,7 @@ msgstr ""
 "\tStartovací soubor musí být zadán plným názvem, napø.\n"
 "\t\"/unix\" èi \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3461,7 +3461,7 @@ msgstr ""
 "\n"
 "\tNázev startovacího souboru je pøíli¹ dlouhý: 16 bajtù je maximum.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3469,7 +3469,7 @@ msgstr ""
 "\n"
 "\tStartovací soubor musí být zadán plným názvem.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3479,7 +3479,7 @@ msgstr ""
 "Uvìdomte si, ¾e existence startovacího souboru není ovìøována.\n"
 "\tImplicitnì se pou¾ije \"/unix\" a jako záloha \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3488,19 +3488,19 @@ msgstr ""
 "\n"
 "\tStartovací soubor byl zmìnìn na \"%s\".\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Existuje více ne¾ jedna polo¾ka celého disku.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Nejsou definovány ¾ádné diskové oddíly\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "IRIX preferuje, kdy¾ Diskový oddíl 11 zaujímá celý disk.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3509,7 +3509,7 @@ msgstr ""
 "Diskový oddíl zaujímající celý disk by mìl zaèínat blokem 0,\n"
 "nikoliv blokem %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3518,31 +3518,31 @@ msgstr ""
 "Diskový oddíl zaujímající celý disk má velikost  v blocích pouze %d,\n"
 "ale velikost disku v blocích je %d.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "Jeden Diskový Oddíl (#11) by mìl zaujímat celý disk.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "Diskový oddíl %d nezaèíná na hranici cylindru.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "Diskový oddíl %d nekonèí na hranici cylindru.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "Diskové oddíly %d a %d se navzájem pøekrývají %d sektory.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, fuzzy, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Nevyu¾ívaný prostor o velikosti v sektorech %8d - sektory %8d-%d\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3550,7 +3550,7 @@ msgstr ""
 "\n"
 "Startovací diskový oddíl neexistuje.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3558,7 +3558,7 @@ msgstr ""
 "\n"
 "Diskový oddíl pro odkládací prostor neexistuje.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3566,16 +3566,16 @@ msgstr ""
 "\n"
 "Diskový oddíl pro odkládací prostor nemá zadán typ.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tVybral jste si neobvyklý název pro startovací soubor.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Lituji, mù¾ete mìnit znaèku neprázdných diskových oddílù.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3589,28 +3589,28 @@ msgstr ""
 "Zadejte YES, pokud jste si jist, ¾e chcete oznaèit tento diskový oddíl "
 "jinak.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr ""
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr "Víte, ¾e na Va¹em disku se diskové oddíly pøekrývají?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr "Pokou¹ím se automaticky vytvoøit polo¾ku pro celý disk.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "Diskové oddíly ji¾ zabírají celý prostor disky.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr "Diskové oddíly se pøekrývají. Nejprve to opravte!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3618,17 +3618,17 @@ msgstr ""
 "Doporuèuje se, aby jedenáctý diskový oddíl zaujímal celý\n"
 "prostor disku a byl typu `SGI svazek'\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Takto se diskové oddíly budou navzájem pøekrývat. Nejprve to opravte!\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Poslední %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3640,7 +3640,7 @@ msgstr ""
 "pochopitelnì dostupná.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3648,12 +3648,12 @@ msgid ""
 "This value may be truncated for devices > 33.8 GB.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Pokou¹ím se zachovat parametry diskového oddílu %d.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tZAÈÁTEK=%d\tDÉLKA=%d\n"
@@ -8431,42 +8431,42 @@ msgstr ""
 "         umount -a [-f] [-r] [-n] [-v] [-t typy vfs]\n"
 "         umount [-f] [-r] [-n] [-v] speciální soubor | uzel...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "Zkou¹ím odpojit %s\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "%s nelze v mtab najít\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: podle mtab není %s pøipojeno"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: zdá se, ¾e %s je pøipojeno více ne¾ jednou"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s není ve fstab (a Vy nejste root)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: pøipojení %s neodpovídá fstab"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "unmount: pouze u¾ivatel %s mù¾e odpojit %s ze %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: toto mù¾e provést pouze u¾ivatel root"
 
index 4501ea213f3efbc9c9ffcddb9aa996758380269f..96c51eb80732d81bbcc8c43850dbc84c7ed7cd20 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.11y\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2004-12-04 01:16+0100\n"
 "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
 "Language-Team: Danish <dansk@klid.dk>\n"
@@ -1593,7 +1593,7 @@ msgstr "   Logisk "
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Ukendt"
 
@@ -2707,7 +2707,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Opstart   Start         Slut     Blokke   Id  System\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Enhed"
 
@@ -2790,13 +2790,13 @@ msgstr ""
 msgid "%lld unallocated sectors\n"
 msgstr "%lld ikke-allokerede sektorer\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr ""
 "Partition %d er allerede defineret. Slet den før du tilføjer den igen.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3394,14 +3394,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "Detekterede SGI diskmærkat med forkert tjeksum.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3412,12 +3412,12 @@ msgstr ""
 "Enheder = %s á %d * 512 bytes\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3425,7 +3425,7 @@ msgstr ""
 "Enheder = %s á %d * 512 bytes\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3434,7 +3434,7 @@ msgstr ""
 "----- partitioner -----\n"
 "Pt# %*s  Info     Start       Slut  Sektorer Id  System\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3445,13 +3445,13 @@ msgstr ""
 "Opstartsfil: %s\n"
 "----- Mappeindgange -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s sektor%5u størrelse%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3463,7 +3463,7 @@ msgstr ""
 "\tOpstartsfilen skal være et absolut, ikke-tomt stinavn,\n"
 "\tf.eks. \"/unix\" eller \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3471,7 +3471,7 @@ msgstr ""
 "\n"
 "\tFor langt navn på opstartsfil: højst 16 byte.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3479,7 +3479,7 @@ msgstr ""
 "\n"
 "\tOpstartsfil skal have et komplet stinavn.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3489,7 +3489,7 @@ msgstr ""
 "\tBemærk, at der ikke tjekkes for opstartsfilens eksistens.\n"
 "\tSGIs standard er \"/unix\" og som backup \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3498,19 +3498,19 @@ msgstr ""
 "\n"
 "\tOpstartsfil er ændret til \"%s\".\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Der er mere end én fuldstændig diskindgang.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Ingen partitioner defineret\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "IRIX kan lide, når partition 11 fylder hele disken.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3519,7 +3519,7 @@ msgstr ""
 "Hele diskpartitionen bør starte ved blok 0,\n"
 "ikke ved diskblok %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3528,31 +3528,31 @@ msgstr ""
 "Hele diskpartitionen er kun %d diskblokke stor,\n"
 "men disken er på %d diskblokke.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "En partition (#11) bør fylde hele disken.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "Partition %d starter ikke på en cylindergrænse.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "Partition %d slutter ikke på en cylindergrænse.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "Partition %d og %d overlapper hinanden i %d sektorer.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Ubenyttet hul på %8u sektorer - sektor %8u-%u\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3560,7 +3560,7 @@ msgstr ""
 "\n"
 "Opstartpartitionen eksisterer ikke.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3568,7 +3568,7 @@ msgstr ""
 "\n"
 "Swappartitionen eksisterer ikke.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3576,16 +3576,16 @@ msgstr ""
 "\n"
 "Swappartitionen har ikke nogen swaptype.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tDu har valgt et ikke-standard navn på opstartsfilen.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Beklager. Du må ændre mærket (tag) på ikke-tomme partitioner.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3599,28 +3599,28 @@ msgstr ""
 "Kun \"SGI volume\" hele-disk-sektionen kan bryde dette.\n"
 "Skriv JA, hvis du er sikker på, at du vil mærke partitionen anderledes.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "JA\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr "Ved du, at du har overlappende partitioner på disken?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr "Forsøger at genere hele-disk-indgang automatisk.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "Hele disken er allerede fyldt med partitioner.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr "Du har overlappende partitioner på disken. Ret det først!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3628,16 +3628,16 @@ msgstr ""
 "Det anbefales kraftigt at den ellevte partition\n"
 "fylder hele disken og er af typen 'SGI volume'\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr "Du vil få overlappende partitioner på disken. Ret dette først!\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Sidste %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3649,7 +3649,7 @@ msgstr ""
 "naturligvis ikke kunne genskabes.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3660,12 +3660,12 @@ msgstr ""
 "cylinderværdien %d.\n"
 "Denne værdi kan blive afkortet på enheder, der er større end 33.8 GB.\n"
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Forsøger at bibeholde parametrene for partition %d.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tSTART=%d\tLÆNGDE=%d\n"
@@ -8410,42 +8410,42 @@ msgstr ""
 "      umount -a [-f] [-r] [-n] [-v] [-t vfstyper] [-O tilvalg]\n"
 "      umount [-f] [-r] [-n] [-v] speciel | knude...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "Forsøger at afmontere %s\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "Kunne ikke finde %s i mtab\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s er ikke monteret (ifølge mtab)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: det lader til, at %s er monteret flere gange"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s er ikke i fstab (og du er ikke root)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: %s montering stemmer ikke med fstab"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: kun %s kan afmontere %s fra %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: dette kan kun root gøre"
 
index ecac5007c2ee4f8db5cec3f4aaa11ff8d571a8f5..210d916b310abd302e04ae82c51ba640c37b02bc 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -44,7 +44,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.12j\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2004-12-13 14:51 +0100\n"
 "Last-Translator: Michael Piefel <piefel@informatik.hu-berlin.de>\n"
 "Language-Team: German <de@li.org>\n"
@@ -1659,7 +1659,7 @@ msgstr "  Logische"
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Unbekannt"
 
@@ -2820,7 +2820,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s  boot.     Anfang        Ende     Blöcke   Id  System\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Gerät"
 
@@ -2905,13 +2905,13 @@ msgstr "Gesamtanzahl belegter Sektoren %d größer als Maximum %lld\n"
 msgid "%lld unallocated sectors\n"
 msgstr "%lld unbenutzte Sektoren\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr "Partition %d ist schon festgelegt.  Vor Wiederanlegen bitte löschen.\n"
 
 # %s can be "Sektor" or "Zylinder".
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3514,14 +3514,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "SGI-Disklabel mit falscher Prüfsumme entdeckt.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3532,12 +3532,12 @@ msgstr ""
 "Einheiten = %s mit %d × 512 Bytes\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3545,7 +3545,7 @@ msgstr ""
 "Einheiten: %s mit %d × 512 Bytes\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3554,7 +3554,7 @@ msgstr ""
 "----- Partitionen -----\n"
 "Nr. %*s  Info     Anfang      Ende  Sektoren Id  System\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3565,13 +3565,13 @@ msgstr ""
 "Bootdatei: %s\n"
 "----- Verzeichniseinträge -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s Sektor%5u Größe%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3583,7 +3583,7 @@ msgstr ""
 "\tDie Bootdatei muss ein absoluter, nichtleerer Pfadname sein,\n"
 "\tz. B. „/unix“ oder „/unix.save“.\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3591,7 +3591,7 @@ msgstr ""
 "\n"
 "\tName der Bootdatei zu lang: höchstens 16 Bytes.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3599,7 +3599,7 @@ msgstr ""
 "\n"
 "\tBootdatei muss einen voll qualifizierten Pfadnamen haben.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3609,7 +3609,7 @@ msgstr ""
 "\tVorsicht, die Existenz der Bootdatei wird nicht geprüft.\n"
 "\tSGIs Voreinstellung ist „/unix“ und als Sicherung „/unix.save“.\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3618,19 +3618,19 @@ msgstr ""
 "\n"
 "\tBootdatei geändert auf „%s“.\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Mehr als ein Eintrag für ‚gesamte Platte‘ vorhanden.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Keine Partitionen definiert\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "IRIX mag es, wenn Partition 11 die ganze Platte umfasst.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3639,7 +3639,7 @@ msgstr ""
 "Die Partition für die ganze Platte sollte bei Block 0 beginnen,\n"
 "nicht bei Plattenblock %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3648,31 +3648,31 @@ msgstr ""
 "Die Partition für die ganze Platte ist nur %d Blöcke groß,\n"
 "die Platte allerdings umfasst %d Blöcke.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "Eine Partition (#11) sollte die ganze Platte umfassen.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "Partition %d beginnt nicht an einer Zylindergrenze.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "Partition %d endet nicht an einer Zylindergrenze.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "Partitionen %d und %d überlappen sich mit %d Sektoren.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Unbenutzte Lücke von %8u Sektoren – Sektor %8u-%u\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3680,7 +3680,7 @@ msgstr ""
 "\n"
 "Die Bootpartition existiert nicht.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3688,7 +3688,7 @@ msgstr ""
 "\n"
 "Die Swappartition existiert nicht.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3696,16 +3696,16 @@ msgstr ""
 "\n"
 "Die Swappartition hat keinen Swap-Typ.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tSie haben einen unüblichen Boot-Dateinamen gewählt.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Tut mir leid, Sie können das Tag nicht-leerer Partitionen ändern.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3722,32 +3722,32 @@ msgstr ""
 "Geben Sie JAWOHL ein, wenn Sie sicher sind, diese\n"
 "Partition von anderem Typ sein lassen zu wollen.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "JAWOHL\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr ""
 "Wissen Sie, dass Sie eine Partitionenüberlappung auf der Platte haben?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr ""
 "Versuche, den Eintrag für ‚gesamte Platte‘ automatisch zu generieren.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "Es wird schon die ganze Platte von Partitionen abgedeckt.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Sie haben eine Partitionenüberlappung auf der Platte. Bitte\n"
 "beseitigen Sie diese zuerst!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3755,18 +3755,18 @@ msgstr ""
 "Es ist höchst empfehlenswert, die elfte Partition die ganze\n"
 "Platte überdecken und sie vom Typ „SGI volume“ sein zu lassen.\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Sie werden eine Partitionenüberlappung auf der Platte erhalten. Bitte\n"
 "beseitigen Sie diese zuerst!\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Letzte %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3780,7 +3780,7 @@ msgstr ""
 "vorherige Inhalt unrettbar verloren.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3788,12 +3788,12 @@ msgid ""
 "This value may be truncated for devices > 33.8 GB.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Versuche, Parameter der Partition %d zu erhalten.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tANFANG=%d\tLÄNGE=%d\n"
@@ -8633,42 +8633,42 @@ msgstr ""
 "        umount -a [-f] [-r] [-n] [-v] [-t VFS-Typen] [-O optionen]\n"
 "        umount [-f] [-r] [-n] [-v] Spezialdatei | Verzeichnis ...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "Versuche, %s auszuhängen\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "Konnte %s nicht in „mtab“ finden\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s ist laut „mtab“ nicht eingehängt"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: %s scheint mehrfach eingehängt zu sein"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: fstab enthält %s nicht (Nur root kann es aushängen)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: %s mount und fstab stimmen nicht überein"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: Nur %s kann %s von %s unmounten"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: Nur „root“ kann dies tun"
 
index 86728eebb7b52874ba5499ef19c7d1d29a7682de..30b60f98f798b404c364245bdfc11ed58af640f3 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -12,7 +12,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.12j\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2004-12-13 16:40+0100\n"
 "Last-Translator: Santiago Vila Doncel <sanvila@unex.es>\n"
 "Language-Team: Spanish <es@li.org>\n"
@@ -1633,7 +1633,7 @@ msgstr "   L
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Desconocido"
 
@@ -2766,7 +2766,7 @@ msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Inicio    Comienzo      Fin      Bloques  Id  Sistema\n"
 
 # Nota: si se pone Dispositivo no queda bien el resto de la línea.
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Disposit."
 
@@ -2848,13 +2848,13 @@ msgstr "El total de sectores asignados %d supera el m
 msgid "%lld unallocated sectors\n"
 msgstr "%lld sectores no asignados\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr ""
 "La partición %d ya está definida. Suprímala antes de volver a añadirla.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3465,14 +3465,14 @@ msgstr ""
 "incorrecta.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3483,12 +3483,12 @@ msgstr ""
 "Unidades = %s de %d * 512 bytes\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3496,7 +3496,7 @@ msgstr ""
 "Unidades = %s de %d * 512 bytes\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3505,7 +3505,7 @@ msgstr ""
 "----- particiones -----\n"
 "Pt. %*s  Info      Principio   Fin   Sectores Id  Sistema\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3516,13 +3516,13 @@ msgstr ""
 "Fichero de inicio: %s\n"
 "----- Entradas de directorio -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s sector%5u tamaño%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3534,7 +3534,7 @@ msgstr ""
 "\tEl fichero de inicio debe ser un nombre de ruta absoluto\n"
 "\tdistinto de cero, como por ejemplo \"/unix\" o \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3542,7 +3542,7 @@ msgstr ""
 "\n"
 "\tNombre del fichero de inicio demasiado largo: 16 bytes como máximo.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3550,7 +3550,7 @@ msgstr ""
 "\n"
 "\tEl fichero de inicio debe tener un nombre de ruta totalmente calificado.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3561,7 +3561,7 @@ msgstr ""
 "\tEl valor predeterminado de SGI es \"/unix\" y para la copia de seguridad "
 "\"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3570,20 +3570,20 @@ msgstr ""
 "\n"
 "\tEl fichero de inicio se cambia a \"%s\".\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Existe más de una entrada de disco completo.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "No hay ninguna partición definida\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr ""
 "Para IRIX se recomienda que la partición 11 abarque el disco completo.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3592,7 +3592,7 @@ msgstr ""
 "La partición de disco completo debe empezar en el bloque 0,\n"
 "no en el bloque de disco %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3601,31 +3601,31 @@ msgstr ""
 "La partición de disco completo sólo tiene un tamaño de %d bloques de disco,\n"
 "mientras que el disco tiene una longitud de %d bloques de disco.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "Una partición (11) debe abarcar el disco completo.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "La partición %d no empieza en un límite de cilindro.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "La partición %d no termina en un límite de cilindro.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "Las particiones %d y %d se solapan en %d sectores.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Espacio no utilizado de %8u sectores - sectores %8u-%u\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3633,7 +3633,7 @@ msgstr ""
 "\n"
 "La partición de inicio no existe.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3641,7 +3641,7 @@ msgstr ""
 "\n"
 "La partición de intercambio no existe.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3649,16 +3649,16 @@ msgstr ""
 "\n"
 "La partición de intercambio no tiene un tipo de intercambio.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tHa elegido un nombre de fichero de inicio no habitual.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Sólo puede cambiar la etiqueta de las particiones no vacías.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3674,31 +3674,31 @@ msgstr ""
 "Escriba SÍ si está seguro de querer dar una etiqueta distinta a esta "
 "partición.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "SÍ\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr "Se ha producido un solapamiento de partición en el disco.\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr ""
 "Se está intentando generar una entrada de disco completo automáticamente.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "Ya existen particiones que abarcan el disco completo.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Se ha producido un solapamiento de particiones en el disco. Corríjalo antes "
 "de continuar.\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3706,18 +3706,18 @@ msgstr ""
 "Se recomienda que la partición 11\n"
 "abarque el disco completo y sea del tipo `SGI volume'\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Se producirá un solapamiento de particiones en el disco. Corríjalo antes de "
 "continuar.\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Último %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3729,7 +3729,7 @@ msgstr ""
 "operación, el contenido anterior se habrá perdido de forma irrecuperable.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3740,12 +3740,12 @@ msgstr ""
 "la geometría del cilindro de %d. Este valor podría estar truncado para\n"
 "dispositivos > 33.8 GB.\n"
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Intentando conservar los parámetros de la partición %d.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tPRINCIPIO=%d\tLONGITUD=%d\n"
@@ -8616,42 +8616,42 @@ msgstr ""
 "       umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opciones]\n"
 "       umount [-f] [-r] [-n] [-v] special | node...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "Se está intentando ejecutar umount en %s\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "No se puede encontrar %s en mtab\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s no está montado (según mtab)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: parece que %s se ha montado varias veces"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s no está en fstab (y usted no es el usuario root)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: montaje de %s no concuerda con fstab"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: sólo %s puede desmontar %s desde %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: sólo el usuario root puede efectuar esta acción"
 
index 00d6ff4d420ca1b0bd5dbc6b34391c462d166fc6..3bf6d8dce5ee5227646cbec0fdbe71044295fb03 100644 (file)
--- a/po/et.po
+++ b/po/et.po
@@ -11,7 +11,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.11r\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2002-05-19 20:04GMT+0300\n"
 "Last-Translator: Meelis Roos <mroos@linux.ee>\n"
 "Language-Team: Estonian <et@li.org>\n"
@@ -1563,7 +1563,7 @@ msgstr " Loogiline"
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Tundmatu"
 
@@ -2688,7 +2688,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Boot    Algus       Lõpp   Plokke   Id  Süsteem\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Seade"
 
@@ -2771,12 +2771,12 @@ msgstr "Kogu kasutataud sektorite arv %d on suurem kui sektorite koguarv %d\n"
 msgid "%lld unallocated sectors\n"
 msgstr "%d vaba sektorit\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr "Partitsioon %d on juba olemas. Kustutage see enne uuesti lisamist\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3386,14 +3386,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "Leidsin vale kontrollsummaga SGI partitsioonitabeli\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3404,12 +3404,12 @@ msgstr ""
 "Ühikud = %s suurusega %d * 512 baiti\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3417,7 +3417,7 @@ msgstr ""
 "Ühikud = %s suurusega %d * 512 baiti\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3426,7 +3426,7 @@ msgstr ""
 "----- partitsioonid -----\n"
 "Nr# %*s  Info     Algus       Lõpp Sektoreid Id  Süsteem\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3437,13 +3437,13 @@ msgstr ""
 "Buutfail: %s\n"
 "----- Kataloogikirjed -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s sektor %5u pikkus %8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3455,7 +3455,7 @@ msgstr ""
 "\tBuutfail peab olema absoluutse teega mittetühi string,\n"
 "\tnäiteks \"/unix\" või \"/unix.save\"\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3463,7 +3463,7 @@ msgstr ""
 "\n"
 "\tBuutfaili nimi on liiga pikk: 16 baiti on maksimum\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3471,7 +3471,7 @@ msgstr ""
 "\n"
 "\tBuutfail tuleb anda täisteega\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3481,7 +3481,7 @@ msgstr ""
 "\tEttevaatust, buutfaili olemasolu ei kontrollita.\n"
 "\tSGI vaikeväärtus on \"/unix\" ja varuväärtus \"/unix.save\"\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3490,19 +3490,19 @@ msgstr ""
 "\n"
 "\tUueks buutfailiks on \"%s\"\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Tabelis on rohekm kui üks terve ketta kirje\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Ühtegi partitsiooni pole defineeritud\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "IRIXile meeldib, et partitsioon 11 katab kogu ketta\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3510,7 +3510,7 @@ msgid ""
 msgstr ""
 "Tervet ketast kattev partitsioon peab algama kettaplokist 0, mitte %d\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3519,31 +3519,31 @@ msgstr ""
 "Tervet ketast kattev partitsioon on ainult %d plokki pikk,\n"
 "aga ketas ise on %d plokki pikk\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "Mingi partitsioon (soovitavalt number 11) peab katma kogu ketta\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "Partitsioon %d ei alga silindri piirilt\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "Partitsioon %d ei lõppe silindri piiril\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "Partitsioonid %d ja %d kattuvad %d sektori ulatuses\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, fuzzy, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Kasutamata auk %8d sektorist - sektorid %8d-%d\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3551,7 +3551,7 @@ msgstr ""
 "\n"
 "Buutpartitsiooni ei eksisteeri\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3559,7 +3559,7 @@ msgstr ""
 "\n"
 "Saalimispartitsiooni ei eksisteeri\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3567,16 +3567,16 @@ msgstr ""
 "\n"
 "Saalimispartitsioonil pole saalimispartitsiooni tüüp\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tTe olete valinud ebahariliku buutfaili nime\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Tüüpi saab muuta ainult mittetühjadel partitsioonidel\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3590,28 +3590,28 @@ msgstr ""
 "terve ketta kirje tohib seda reeglit rikkuda.\n"
 "Kui olete kindel, et soovite seda tüüpi muuta, kirjutage YES\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "YES\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr "Kas teate, et mõned partitsioonid kattuvad omavahel?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr "Üritan genereerida terve ketta kirjet automaatselt\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "Terve ketas on juba partitsioonidega kaetud\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr "Kettal on partitsioonide kattumine. Parandage see kõigepealt!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3619,16 +3619,16 @@ msgstr ""
 "On ülimalt soovitav, et 11. partitsioon kataks kogu ketta\n"
 "ja oleks tüüpi \"SGI volume\"\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr "Te ajaksite partitsioonid kattuma! Parandage see kõigepealt ära\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr "Viimane %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3639,7 +3639,7 @@ msgstr ""
 "kuni Te ise otsustate need kettale kirjutada. Pärast seda pole vana sisu\n"
 "loomulikult enam taastatav.\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3647,12 +3647,12 @@ msgid ""
 "This value may be truncated for devices > 33.8 GB.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Üritan säilitada partitsiooni %d parameetrid\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tSTART=%d\tLENGTH=%d\n"
@@ -8315,42 +8315,42 @@ msgid ""
 "       umount [-f] [-r] [-n] [-v] special | node...\n"
 msgstr ""
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr ""
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr ""
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr ""
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr ""
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr ""
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr ""
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr ""
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr ""
 
index 81e494c45d6b2ddfd41ceaa78b8f537fbea3330f..8fa9573b875b897d725f4eb1965c72f1eae22eae 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -14,7 +14,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2003-08-20 11:40+0300\n"
 "Last-Translator: Lauri Nurmi <lanurmi@iki.fi>\n"
 "Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
@@ -1606,7 +1606,7 @@ msgstr "   Looginen"
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Tuntematon"
 
@@ -2716,7 +2716,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Käynn     Alku          Loppu    Lohkot   Id  Järjestelmä\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Laite"
 
@@ -2799,12 +2799,12 @@ msgstr "Varattujen sektoreiden kokonaism
 msgid "%lld unallocated sectors\n"
 msgstr "%d varaamatonta sektoria\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr "Osio %d on jo määritelty. Poista se ennen uudelleen lisäämistä.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3406,14 +3406,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "Havaittiin sgi-levynimiö, jolla on väärä tarkistussumma.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3424,12 +3424,12 @@ msgstr ""
 "Yksiköt = %10$d * 512 -tavuiset %9$s\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3437,7 +3437,7 @@ msgstr ""
 "Yksiköt = %6$d * 512 -tavuiset %5$s\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3446,7 +3446,7 @@ msgstr ""
 "----- osiot -----\n"
 "Os# %*s  Info     Alku        Loppu Sektorit Id  Järjestelmä\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3457,13 +3457,13 @@ msgstr ""
 "Käynnistystiedosto: %s\n"
 "----- Hakemistomerkinnät -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s sektori%5u koko%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3475,7 +3475,7 @@ msgstr ""
 "\tKäynnistystiedoston on oltava absoluuttinen, ei-tyhjä polku,\n"
 "\tesim. \"/unix\" tai \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3483,7 +3483,7 @@ msgstr ""
 "\n"
 "\tKäynnistystiedoston nimi on liian pitkä: maksimi 16 tavua.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3491,7 +3491,7 @@ msgstr ""
 "\n"
 "\tKäynnistystiedoston polun on oltava täydellinen.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3501,7 +3501,7 @@ msgstr ""
 "\tHuomaa, että käynnistystiedoston olemassaoloa ei tarkisteta.\n"
 "\tSGI:n oletus on \"/unix\", ja varmuuskopiolle \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3510,19 +3510,19 @@ msgstr ""
 "\n"
 "\tKäynnistystiedostoksi muutettiin \"%s\".\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Levyllä on useampi kuin yksi kokolevymerkintä.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Ei määriteltyjä osioita\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "IRIX pitää siitä, että Osio 11 täyttää koko levyn.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3531,7 +3531,7 @@ msgstr ""
 "Koko levyn osion tulee alkaa lohkosta 0,\n"
 "ei levylohkosta %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3540,31 +3540,31 @@ msgstr ""
 "Koko levyn osio on vain %d levylohkon kokoinen,\n"
 "mutta levy on %d levylohkon kokoinen.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "Yhden osion (#11) tulee täyttää koko levy.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "Osion %d alku ei ole sylinterin rajalla.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "Osion %d loppu ei ole sylinterin rajalla.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "Osiot %d ja %d ovat päällekkäiset %d sektorin verran.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Käyttämätön %8u sektorin alue - sektorit %8u-%u\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3572,7 +3572,7 @@ msgstr ""
 "\n"
 "Käynnistysosiota ei ole olemassa.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3580,7 +3580,7 @@ msgstr ""
 "\n"
 "Sivutusosiota ei ole olemassa.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3588,16 +3588,16 @@ msgstr ""
 "\n"
 "Sivutusosiolla ei ole sivutustyyppiä.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tValittu käynnistystiedoston nimi on epätavallinen.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Valitan, vain ei-tyhjien osioiden lippua voi muuttaa.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3611,28 +3611,28 @@ msgstr ""
 "Vain \"SGI volume\" -kokolevyosuus voi rikkoa tätä sääntöä.\n"
 "Kirjoita KYLLÄ, jos olet varma tämän osion merkitsemisestä toisin.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "KYLLÄ\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr "Tiedätkö, että levyllä on päällekkäisiä osioita?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr "Yritetään luoda kokolevymerkintä automaattisesti.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "Koko levy on jo osioiden käytössä.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr "Levyllä on päällekkäisiä osioita. Tämä on korjattava ensin!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3640,17 +3640,17 @@ msgstr ""
 "On erittäin suositeltavaa, että yhdestoista osio\n"
 "kattaa koko levyn ja on tyyppiä \"SGI volume\"\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Levyllä tulee olemaan päällekkäisiä osioita. Tämä on korjattava ensin!\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Viimeinen %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3662,7 +3662,7 @@ msgstr ""
 "tietenkään voida palauttaa.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3673,12 +3673,12 @@ msgstr ""
 "sylinteriarvoa %d. Tämä arvo voi typistyä laitteilla, jotka ovat suurempia\n"
 "kuin 33,8 Gt.\n"
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Yritetään säilyttää osion %d parametrit.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tALKU=%d\tPITUUS=%d\n"
@@ -8455,42 +8455,42 @@ msgstr ""
 "valitsimet]\n"
 "        umount [-f] [-r] [-n] [-v] erikoistied | solmu...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "Yritetään irrottaa %s\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "%s ei löytynyt tiedostosta mtab\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s ei ole liitetty (tiedoston mtab mukaan)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: %s vaikuttaa olevan liitettynä useita kertoja"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s ei ole tiedostossa fstab (etkä ole root)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: %s on ristiriidassa tiedoston fstab kanssa"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, fuzzy, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: vain root voi irrottaa laitteen %s paikasta %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: vain root voi tehdä tämän"
 
index ce58beba11a3f3c7bb5fe5c7a663975c99abb18f..11bfd61788fd459bf0362fbf7250ce7dbd963a4e 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,7 +9,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.12j\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2004-12-08 08:00-0500\n"
 "Last-Translator: Michel Robitaille <robitail@IRO.UMontreal.CA>\n"
 "Language-Team: French <traduc@traduc.org>\n"
@@ -1625,7 +1625,7 @@ msgstr "   Logique"
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Inconnu"
 
@@ -2767,7 +2767,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Amorce    Début         Fin      Blocs    Id  Système\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Périphérique"
 
@@ -2851,12 +2851,12 @@ msgstr ""
 msgid "%lld unallocated sectors\n"
 msgstr "%lld secteurs non-alloués\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr "Partition %d est déjà défini.  La détruire avant de la rajouter.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3466,14 +3466,14 @@ msgstr "
 
 # fdisk/fdisksgilabel.c:202
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3484,12 +3484,12 @@ msgstr ""
 "Unités = %s of %d * 512 octets\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3497,7 +3497,7 @@ msgstr ""
 "Unités = %s de %d * 512 octets\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3506,7 +3506,7 @@ msgstr ""
 "----- partitions -----\n"
 "Pt# %*s  Info     Début       Fin   Secteurs Id  Système\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3517,13 +3517,13 @@ msgstr ""
 "Fichier d'amorce: %s\n"
 "----- Entrées de répertoire -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s secteur%5u taille%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3536,7 +3536,7 @@ msgstr ""
 "zéro),\n"
 "\te.g. « /unix » ou \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3544,7 +3544,7 @@ msgstr ""
 "\n"
 "\tNom du fichier d'amorce trop long:  16 octets au maximum.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3552,7 +3552,7 @@ msgstr ""
 "\n"
 "\tFichier d'amorce doit avoir un chemin d'accès complètement conforme.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3562,7 +3562,7 @@ msgstr ""
 "\tSoyez avisé que le fichier d'amorce n'est pas vérifié pour son existence.\n"
 "\tPar défaut pour SGI, il est « /unix » et pour archive « /unix.save ».\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3571,21 +3571,21 @@ msgstr ""
 "\n"
 "\tLe fichier d'amorce a été modifié pour « %s ».\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Plus d'une entrée entière de disque présente.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Aucune partition définie\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr ""
 "Pour IRIX il est recommandé que la partition 11 couvre entièrement le "
 "disque.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3594,7 +3594,7 @@ msgstr ""
 "La partition entière du disque doit débuter au bloc 0,\n"
 "pas au bloc %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3603,31 +3603,31 @@ msgstr ""
 "La partition entière du disque est seulement de %d blocs de largeur,\n"
 "alors que le disque contient %d blocs de disque.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "La partition (#11) devrait couvrir le disque en entier.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "La partition %d ne débute pas sur une frontière de cylindre.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "La partition %d ne se termine pas sur une frontière de cylindre.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "Les partitions %d et %d se chevauchent sur %d secteurs.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Espace inutilisé de %8u secteurs - secteurs %8u-%u\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3635,7 +3635,7 @@ msgstr ""
 "\n"
 "La partition d'amorce n'existe pas.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3643,7 +3643,7 @@ msgstr ""
 "\n"
 "La partition de swap n'existe pas.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3651,16 +3651,16 @@ msgstr ""
 "\n"
 "La partition de swap n'est pas de type swap.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tVous avez choisi un nom de fichier d'amorce inhabituel.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Désolé. Vous pouvez modifié l'étiquette des partitions occupées.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3676,30 +3676,30 @@ msgstr ""
 "Taper OUI si vous êtes certain de l'étiquetage différent de cette "
 "partition.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "YES\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr ""
 "Saviez-vous que vous avez un chevauchement de partition sur le disque?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr ""
 "Tentative de génération d'une entrée complète de disque automatiquement.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "Le disque entier est déjà plein de partitions.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr "Il y a un chevauchement de partition sur le disque. SVP le corriger!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3707,18 +3707,18 @@ msgstr ""
 "Il est fortement recommandé the la 11e partition\n"
 "couvre le disque en entier pour ce type « SGI volume »\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Vous aller obtenir un chevauchement de partition sur ce disque. SVP le "
 "corriger!\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Dernier %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3732,7 +3732,7 @@ msgstr ""
 "irrécupérable.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3744,12 +3744,12 @@ msgstr ""
 "sera utilisée. Cette valeur peut être tronquée pour les périphérique de plus "
 "de 33.8 Go.\n"
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Tentative de conservation des paramètres de la partition %d.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tDÉBUT=%d\tLONGUEUR=%d\n"
@@ -8636,42 +8636,42 @@ msgstr ""
 "       umount -a [-f] [-r] [-n] [-v] [-t type-vfs] [-O opts]\n"
 "       umount [-f] [-r] [-n] [-v] spécial | noeud...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "Tentative pour démonter %s\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "Ne peut repérer %s dans mtab\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s n'est pas monté (selon mtab)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: il semble que %s ait été monté plusieurs fois"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s n'est pas dans fstab (et vous n'êtes pas l'usager ROOT)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: %s mount est en désaccord avec fstab"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: seul %s peut démonter %s de %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: seul l'usager ROOT peut exécuter la commande"
 
index 0ad092b754bf704a2b41aa437b9ec50920691118..95b3616b9fc92b5ec61bf75072a6ff3b5a30634b 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.10f\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2000-04-04 21:52-0800\n"
 "Last-Translator: Beth Powell <bpowell@turbolinux.com>\n"
 "Language-Team: <support@turbolinux.com>\n"
@@ -1586,7 +1586,7 @@ msgstr "   Logico"
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Sconosciuto"
 
@@ -2737,7 +2737,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Avvio    Inizio    Fine   Blocchi   Id  Sistema\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Dispositivo"
 
@@ -2819,13 +2819,13 @@ msgstr "Numero %d totale dei settori allocati superiore al massimo %d\n"
 msgid "%lld unallocated sectors\n"
 msgstr "%d settori non allocati\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr ""
 "La partizione %d è già definita.  Cancellarla prima di riaggiungerla.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3433,14 +3433,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "Rilevato un disklabel sgi con checksum errato.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3451,12 +3451,12 @@ msgstr ""
 "Unità = %s di %d * 512 byte\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3464,7 +3464,7 @@ msgstr ""
 "Unità = %s di %d * 512 byte\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, fuzzy, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3473,7 +3473,7 @@ msgstr ""
 "----- partizioni -----\n"
 "%*s  Info      Inizio       Fine   Settori  Id  Sistema\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, fuzzy, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3484,13 +3484,13 @@ msgstr ""
 "File di avvio: %s\n"
 "----- Voci directory -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s settore%5u dimensione%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3502,7 +3502,7 @@ msgstr ""
 "\tIl file di avvio deve essere un path assoluto non nullo,\n"
 "\tes. \"/unix\" o \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3510,7 +3510,7 @@ msgstr ""
 "\n"
 "\tNome del file di avvio troppo lungo:  deve essere di 16 byte al massimo.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3518,7 +3518,7 @@ msgstr ""
 "\n"
 "\tIl file di avvio deve avere un path completo.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3530,7 +3530,7 @@ msgstr ""
 "\tL'impostazione predefinita di SGI è \"/unix\" e per il backup \"/unix.save"
 "\".\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3539,19 +3539,19 @@ msgstr ""
 "\n"
 "\tFile di avvio cambiato in \"%s\".\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Presente più di una voce disco intero.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Nessuna partizione definita\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "IRIX gradisce che la partizione 11 comprenda l'intero disco.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3560,7 +3560,7 @@ msgstr ""
 "La partizione dell'intero disco dovrebbe iniziare al blocco 0,\n"
 "non al blocco %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3569,31 +3569,31 @@ msgstr ""
 "La partizione del disco intero è solamente di %d blocchi,\n"
 "ma il disco è di %d blocchi.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "Una partizione (#11) dovrebbe comprendere il disco intero.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "La partizione %d non inizia al limite del cilindro.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "La partizione %d non termina al limite del cilindro.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "Le partizioni %d e %d si sovrappongono di %d settori.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, fuzzy, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Intervallo di %8d settori non utilizzato - settori %8d-%d\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3601,7 +3601,7 @@ msgstr ""
 "\n"
 "la partizione di avvio non esiste.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3609,7 +3609,7 @@ msgstr ""
 "\n"
 "La partizione swap non esiste.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3617,16 +3617,16 @@ msgstr ""
 "\n"
 "La partizione swap non ha tipo swap.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tSi è selezionato un nome file di avvio non comune.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "È possibile modificare solamente il tag delle partizioni non vuote.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3641,34 +3641,34 @@ msgstr ""
 "Digitare YES (sì) se si è certi di voler codificare questa partizione in "
 "modo differente.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr ""
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr ""
 "Si è a conoscenza del fatto che sul disco esiste una sovrapposizione di "
 "partizioni?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr ""
 "Tentativo di generare automaticamente l'immissione dell'intero disco in "
 "corso.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "L'intero disco è già coperto da partizioni.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Sovrapposizione di partizioni sul disco. Risolvere anzitutto questo "
 "problema.\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3676,18 +3676,18 @@ msgstr ""
 "Si raccomanda che l'undicesima partizione\n"
 "copra l'intero disco e sia di tipo `SGI volume'\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Si avrà una sovrapposizione di partizioni sul disco. Risolvere anzitutto "
 "questo problema.\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Ultimo %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 #, fuzzy
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
@@ -3700,7 +3700,7 @@ msgstr ""
 "contenuto precedente sarà definitivamente perso.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3708,12 +3708,12 @@ msgid ""
 "This value may be truncated for devices > 33.8 GB.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Tentativo di mantenere i parametri della partizione %d in corso.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tINIZIO=%d\tLUNGHEZZA=%d\n"
@@ -8533,42 +8533,42 @@ msgstr ""
 "       umount -a [-f] [-r] [-n] [-v] [-t vfstypes]\n"
 "       umount [-f] [-r] [-n] [-v] special | node...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "Tentativo di eseguire umount di %s in corso\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "Impossibile trovare %s in mtab\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s non è montato (secondo mtab)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: sembra che %s sia stato montato diverse volte"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s non si trova in fstab (e non si è root)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: %s mount non coerente con fstab"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: solamente %s può smontare %s da %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr " umount: è possibile solo per root"
 
index c5249d94911ea734b2a32c43984f73651ef716c0..2473c3e6944ea9f53d66fb7b96d4d07153f5e12b 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.11n\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2001-12-11 22:43+0900\n"
 "Last-Translator: Daisuke Yamashita <yamad@mb.infoweb.ne.jp>\n"
 "Language-Team: Japanese <ja@li.org>\n"
@@ -1561,7 +1561,7 @@ msgstr "   
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "ÉÔÌÀ"
 
@@ -2683,7 +2683,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s ¥Ö¡¼¥È   »ÏÅÀ      ½ªÅÀ  ¥Ö¥í¥Ã¥¯   ID  ¥·¥¹¥Æ¥à\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "¥Ç¥Ð¥¤¥¹"
 
@@ -2766,12 +2766,12 @@ msgstr "
 msgid "%lld unallocated sectors\n"
 msgstr "³ÎÊݤµ¤ì¤Æ¤¤¤Ê¤¤¥»¥¯¥¿¤¬ %d ¤¢¤ê¤Þ¤¹\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr "Îΰè %d ¤ÏÄêµÁºÑ¤Ç¤¹¡£¤Þ¤º¤Ïºï½ü¤ò¹Ô¤Ê¤Ã¤Æ¤¯¤À¤µ¤¤¡£\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3376,14 +3376,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "´Ö°ã¤Ã¤¿¥Á¥§¥Ã¥¯¥µ¥àÃͤΠsgi ¥Ç¥£¥¹¥¯¥é¥Ù¥ë¤ò¸¡½Ð¤·¤Þ¤·¤¿¡£\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3394,12 +3394,12 @@ msgstr ""
 "¥æ¥Ë¥Ã¥È = %s of %d * 512 ¥Ð¥¤¥È\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3407,7 +3407,7 @@ msgstr ""
 "¥æ¥Ë¥Ã¥È = %s of %d * 512 ¥Ð¥¤¥È\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3416,7 +3416,7 @@ msgstr ""
 "----- Îΰè -----\n"
 "Pt# %*s  ¾ðÊó     »ÏÅÀ        ½ªÅÀ  ¥»¥¯¥¿   ID  ¥·¥¹¥Æ¥à\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3427,13 +3427,13 @@ msgstr ""
 "¥Ö¡¼¥È¥Õ¥¡¥¤¥ë: %s\n"
 "----- ¥Ç¥£¥ì¥¯¥È¥ê¹àÌÜ -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s ¥»¥¯¥¿%5u ¥µ¥¤¥º%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3445,7 +3445,7 @@ msgstr ""
 "\t¤½¤Î¥Ö¡¼¥È¥Õ¥¡¥¤¥ë¤ÏÀäÂÐÈó¥¼¥í¥Ñ¥¹Ì¾¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n"
 "\tÎã. \"/unix\" ¤Þ¤¿¤Ï \"/unix.save\"\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3453,7 +3453,7 @@ msgstr ""
 "\n"
 "\t¥Ö¡¼¥È¥Õ¥¡¥¤¥ë̾¤¬Ä¹¤¹¤®¤Þ¤¹ -- ºÇÂç 16 ¥Ð¥¤¥È¡£\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3461,7 +3461,7 @@ msgstr ""
 "\n"
 "\t¥Ö¡¼¥È¥Õ¥¡¥¤¥ë¤Ï¥Õ¥ë¥Ñ¥¹¤Ç»ØÄꤵ¤ì¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3471,7 +3471,7 @@ msgstr ""
 "\t¥Ö¡¼¥È¥Õ¥¡¥¤¥ë¤Ï¤½¤Î¸ºß¤ò¥Á¥§¥Ã¥¯¤µ¤ì¤Ê¤¤¤³¤È¤Ëµ¤¤Å¤¤¤Æ¤¯¤À¤µ¤¤¡£\n"
 "\tSGI ¤Î½é´üÃͤϠ\"/unix\" ¤Ç¡¢¥Ð¥Ã¥¯¥¢¥Ã¥×ÍѤˤϠ\"/unix.save\" ¤Ç¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3480,19 +3480,19 @@ msgstr ""
 "\n"
 "\t¥Ö¡¼¥È¥Õ¥¡¥¤¥ë¤Ï \"%s\" ¤ËÊѹ¹¤µ¤ì¤Þ¤·¤¿¡£\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Ê£¿ô¤Î entire disk ¤Î¹àÌܤ¬¤¢¤ê¤Þ¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Îΰ褬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "IRIX ¤Ï¥Ñ¡¼¥Æ¥£¥·¥ç¥ó 11 ¤¬ entire disk ¤òʤ¤¦¤Î¤ò˾¤ß¤Þ¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3501,7 +3501,7 @@ msgstr ""
 "entire disk ¥Ñ¡¼¥Æ¥£¥·¥ç¥ó¤Ï¡¢¥Ö¥í¥Ã¥¯ 0 ¤«¤é»Ï¤Þ¤ë¤Ù¤­¤Ç¤¹¤¬¡¢\n"
 "¥Ç¥£¥¹¥¯¥Ö¥í¥Ã¥¯ %d ¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3510,31 +3510,31 @@ msgstr ""
 "entire disk ¤Î¥Ñ¡¼¥Æ¥£¥·¥ç¥ó¤Ë %d ¥Ç¥£¥¹¥¯¥Ö¥í¥Ã¥¯¤ÎÂ礭¤µ¤·¤«¤Ê¤¤¤Ç¤¹¤¬¡¢\n"
 "¤½¤Î¥Ç¥£¥¹¥¯¤ÎÂ礭¤µ¤Ï %d ¥Ç¥£¥¹¥¯¥Ö¥í¥Ã¥¯¤Ç¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "¥Ñ¡¼¥Æ¥£¥·¥ç¥ó (#11) ¤Ï entire disk ¤òʤ¤¦¤Ù¤­¤Ç¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "¥Ñ¡¼¥Æ¥£¥·¥ç¥ó %d ¤Ï¡¢¥·¥ê¥ó¥À¶­³¦¤«¤é»Ï¤Þ¤Ã¤Æ¤¤¤Þ¤»¤ó¡£\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "¥Ñ¡¼¥Æ¥£¥·¥ç¥ó %d ¤Ï¡¢¥·¥ê¥ó¥À¶­³¦¤Ç½ª¤ï¤Ã¤Æ¤¤¤Þ¤»¤ó¡£\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "¥Ñ¡¼¥Æ¥£¥·¥ç¥ó %d ¤È %d ¤Ï %d ¥»¥¯¥¿½Å¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, fuzzy, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "%8d ¥»¥¯¥¿¤Î̤»ÈÍÑ¥®¥ã¥Ã¥× -- ¥»¥¯¥¿ %8d-%d\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3542,7 +3542,7 @@ msgstr ""
 "\n"
 "¥Ö¡¼¥È¥Ñ¡¼¥Æ¥£¥·¥ç¥ó¤¬Â¸ºß¤·¤Þ¤»¤ó¡£\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3550,7 +3550,7 @@ msgstr ""
 "\n"
 "¥¹¥ï¥Ã¥×¥Ñ¡¼¥Æ¥£¥·¥ç¥ó¤¬Â¸ºß¤·¤Þ¤»¤ó¡£\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3558,16 +3558,16 @@ msgstr ""
 "\n"
 "¥¹¥ï¥Ã¥×¥Ñ¡¼¥Æ¥£¥·¥ç¥ó¤¬¥¹¥ï¥Ã¥×¥¿¥¤¥×¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤»¤ó¡£\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\t¤¢¤Ê¤¿¤Ï¡¢¥Ö¡¼¥È¥Õ¥¡¥¤¥ë̾¤È¤·¤ÆÄ̾ï¤È°Û¤Ê¤ë̾Á°¤òÁª¤Ó¤Þ¤·¤¿¡£\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "»ÄÇ°¤Ê¤¬¤é¡¢¶õ¤Ç¤Ï¤Ê¤¤Îΰè¤Î¥¿¥°¤òÊѹ¹¤¹¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3581,28 +3581,28 @@ msgstr ""
 "¤À¤±¤¬¡¢¤³¤Î¤³¤È¤òÌȤì¤Þ¤¹¡£\n"
 "¤³¤ÎÎΰè¤Ë°Û¤Ê¤ë¥¿¥°ÉÕ¤±¤Ë¤Ä¤¤¤Æ¡¢¤è¤¯²ò¤Ã¤Æ¤¤¤ë¤Ê¤é YES ¤ÈÆþÎϤ·¤Æ²¼¤µ¤¤¡£\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "YES\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr "¥Ç¥£¥¹¥¯¤ÎÎΰèƱ»Î¤¬½ÅÊ£¤·¤Æ¤¤¤ë¤³¤È¤òÃΤäƤޤ¹¤«¡©\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr "entire disk ¹àÌܤμ«Æ°À¸À®¤ò»î¤ß¤Þ¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "entire disk ¤¬´û¤ËÎΰè¤òʤ¤Ã¤Æ¤¤¤Þ¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr "¥Ç¥£¥¹¥¯¤ÎÎΰ褬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹¡£¤Þ¤º¤³¤ì¤ò²¿¤È¤«¤·¤Þ¤·¤ç¤¦¡ª\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3610,16 +3610,16 @@ msgstr ""
 "11 ÈÖÌܤÎÎΰè¤Ï entire disk ¤òʤ¤¤¡¢`SGI volume' ·¿¤Ç¤¢¤ë¤³¤È¤ò\n"
 "¶¯¤¯¿ä¾©¤·¤Þ¤¹\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr "¥Ç¥£¥¹¥¯¤ÎÎΰ褬½ÅÊ£¤¹¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£¤Þ¤º¤³¤ì¤ò²¿¤È¤«¤·¤Þ¤·¤ç¤¦¡ª\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " ºÇ¸å¤Î %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3630,7 +3630,7 @@ msgstr ""
 "¥á¥â¥êÆâ¤Ë¤Î¤ßÈ¿±Ç¤µ¤ì¤Þ¤¹¡£¤½¤Î¸å¤Ï¤â¤Á¤í¤ó¡¢°ÊÁ°¤ÎÆâÍƤϼº¤ï¤ì¡¢\n"
 "Éü¸µ¤ÏÉÔ²Äǽ¤È¤Ê¤ê¤Þ¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3638,12 +3638,12 @@ msgid ""
 "This value may be truncated for devices > 33.8 GB.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Îΰè %d ¤ÎÃͤÎÊݸ¤ò»î¤ß¤Þ¤¹¡£\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\t³«»Ï=%d\tŤµ=%d\n"
@@ -8423,43 +8423,43 @@ msgstr ""
 "        umount -a [-f] [-r] [-n] [-v] [-t ¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¥¿¥¤¥×]\n"
 "        umount [-f] [-r] [-n] [-v] special | node...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "%s ¤ò¥¢¥ó¥Þ¥¦¥ó¥È¤·¤Þ¤¹\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "mtab ¤Ë %s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s ¥Þ¥¦¥ó¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó (mtab ¤Ë¤è¤ë¤È)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: %s ¤ÏÊ£¿ô¥Þ¥¦¥ó¥È¤µ¤ì¤Æ¤¤¤ë¤è¤¦¤Ç¤¹"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr ""
 "umount: %s ¤Ï fstab ¤Ë¤¢¤ê¤Þ¤»¤ó (¤µ¤é¤Ë¡¢¤¢¤Ê¤¿¤Ï root ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: %s ¤Ï fstab ¤È°ìÃפ·¤Ê¤¤¥Þ¥¦¥ó¥È¤Ç¤¹"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: %s ¤À¤±¤¬ %s ¤ò %s ¤«¤é¥¢¥ó¥Þ¥¦¥ó¥È¤Ç¤­¤Þ¤¹"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: root ¤À¤±¤¬¤½¤ì¤ò¹Ô¤Ê¤¨¤Þ¤¹"
 
index 298c79e266cd245c01b3e092a0651a0f648837fc..b0a2942a442d91c948b955ca80ac142254535dc4 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
@@ -19,7 +19,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2003-07-29 22:55+0100\n"
 "Last-Translator: Taco Witte <T.C.Witte@phys.uu.nl>\n"
 "Language-Team: Dutch <vertaling@nl.linux.org>\n"
@@ -1619,7 +1619,7 @@ msgstr "   Logisch"
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Onbekend"
 
@@ -2737,7 +2737,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Boot      Start         Einde    Blokken  Id  Systeem\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Apparaat"
 
@@ -2819,14 +2819,14 @@ msgstr "Totaal gereserveerde sectoren %d groter dan maximum %d\n"
 msgid "%lld unallocated sectors\n"
 msgstr "%d niet-gereserveerde sectoren\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr ""
 "Partitie %d is al gedefinieerd.  Verwijder haar alvorens haar opnieuw toe te "
 "voegen.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3432,14 +3432,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "Gevonden: sgi schijflabel met foutieve controle-som.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3450,12 +3450,12 @@ msgstr ""
 "Eenheden = %s van %d * 512 bytes\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3463,7 +3463,7 @@ msgstr ""
 "Eenheden = %s van %d * 512 bytes\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3472,7 +3472,7 @@ msgstr ""
 "----- partities -----\n"
 "Pt# %*s  Info     Start       Eind  Sectoren Id  Systeem\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3483,13 +3483,13 @@ msgstr ""
 "Opstartbestand: %s\n"
 "----- Mapingangen -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s sector%5u grootte%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3501,7 +3501,7 @@ msgstr ""
 "\tHet opstartbestand moet een absolute, niet-nul padnaam zijn,\n"
 "\tzoals \"/unix\" of \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3509,7 +3509,7 @@ msgstr ""
 "\n"
 "\tNaam van opstartbestand te lang:  16 bytes maximaal.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3517,7 +3517,7 @@ msgstr ""
 "\n"
 "\tOpstartbestand moet een volledig aangegeven padnaam hebben.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3528,7 +3528,7 @@ msgstr ""
 "\topstartbestand bestaat.\n"
 "\tSGI's standaard is \"/unix\" en voor backup \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3537,19 +3537,19 @@ msgstr ""
 "\n"
 "\tOpstartbestand is veranderd naar \"%s\".\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Er is meer dan één schijfingang aanwezig.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Geen partities gedefinieerd\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "IRIX houdt ervan dat partitie 11 de hele schijf beslaat.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3558,7 +3558,7 @@ msgstr ""
 "De gehele schijfpartitie moet starten bij blok 0,\n"
 "niet bij schijfblok %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3567,31 +3567,31 @@ msgstr ""
 "De gehele schijfpartitie is slechts %d schijfblokken groot,\n"
 "maar de schijf is %d schijfblokken lang.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "Eén partitie (#11) moet de gehele schijf beslaan.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "Partitie %d start niet op een cylinder grens.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "Partitie %d eindigt niet op een cylinder grens.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "De partities %d en %d overlappen elkaar %d sectoren.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Ongebruikt gat van %8u sectoren - sectoren %8u-%u\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3599,7 +3599,7 @@ msgstr ""
 "\n"
 "De opstartpartitie bestaat niet.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3607,7 +3607,7 @@ msgstr ""
 "\n"
 "De wisselgeheugen-partitie bestaat niet.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3615,16 +3615,16 @@ msgstr ""
 "\n"
 "De wisselgeheugen-partitie heeft geen soortaanduiding.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tU heeft een ongebruikelijke naam gekozen voor het opstartbestand.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Sorry, u kunt niet de tag van niet-lege partities wijzigen.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3638,28 +3638,28 @@ msgstr ""
 "Alleen het gehele schijf deel \"SGI volume\" mag dit overtreden.\n"
 "Typ JA als u zeker wilt dat u deze partitie anders wilt noemen.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "JA\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr "Weet u dat u overlap heeft bij een partitie op de schijf?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr "Proberen automatisch een gehele schijf ingang aan te maken.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "De gehele schijf is al ingedeeld in partities.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr "U heeft een partitie overlap op de schijf. Los dat eerst op!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3667,16 +3667,16 @@ msgstr ""
 "Het wordt sterk aangeraden om de elfde partitie de gehele schijf\n"
 "te laten beslaan en van soort `SGI volume' te laten zijn\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr "U zult een partitie-overlap krijgen op de schijf. Los die eerst op!\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Laatste %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3688,7 +3688,7 @@ msgstr ""
 "inhoud uiteraard definitief verloren zijn.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3699,12 +3699,12 @@ msgstr ""
 "waarde %d gebruikt.\n"
 "Deze waarde kan voor apparaten > 33.8 GB worden afgekapt.\n"
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Proberen om parameters te houden van partitie %d.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tSTART=%d\tLENGTE=%d\n"
@@ -8508,42 +8508,42 @@ msgstr ""
 "opties]\n"
 "         umount [-f] [-r] [-n] [-v] speciaal | node...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "Proberen te ontkoppelen %s\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "Kon %s niet vinden in mtab\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s is niet aangekoppeld (volgens mtab)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: het lijkt erop dat %s meerdere keren is aangekoppeld"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s staat niet in fstab (en u bent niet root)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: %s aankoppeling komt niet overeen met fstab"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, fuzzy, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: alleen root kan %s ontkoppelen van %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: alleen root kan dat doen"
 
index 870179ef14dfc060e5e83b784cdffa1a5fa9d5ab..a29a2a885b099cde925bd37207753b0ef641da88 100644 (file)
@@ -13,7 +13,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.11b\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2001-05-24 16:03-03:00\n"
 "Last-Translator: Rodrigo Stulzer Lopes <rodrigo@conectiva.com.br>\n"
 "Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
@@ -1587,7 +1587,7 @@ msgstr "   L
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Desconhecido"
 
@@ -2728,7 +2728,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Boot    Início      Fim    Blocos   Id  Sistema\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Dispositivo"
 
@@ -2812,14 +2812,14 @@ msgstr "O total de setores alocados, %d, 
 msgid "%lld unallocated sectors\n"
 msgstr "%d setores não alocados\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr ""
 "A partição %d já está definida. Exclua essa partição antes de adicioná-la "
 "novamente.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3421,14 +3421,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "Detectado rótulo de disco SGI com soma de verificação incorreta.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3439,12 +3439,12 @@ msgstr ""
 "Unidades = %s de %d * 512 bytes\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3452,7 +3452,7 @@ msgstr ""
 "Unidades = %s de %d * 512 bytes\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, fuzzy, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3461,7 +3461,7 @@ msgstr ""
 "----- partições -----\n"
 "%*s  Info      Início      Fim   Setores  Id  Sistema\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, fuzzy, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3472,13 +3472,13 @@ msgstr ""
 "Arquivo de inicialização: %s\n"
 "----- entradas de diretório -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s setor %5u tamanho %8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3490,7 +3490,7 @@ msgstr ""
 "\tO arquivo de inicialização precisa corresponder a um caminho \n"
 "\tdiferente de zero; por exemplo, \"/unix\" ou \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3499,7 +3499,7 @@ msgstr ""
 "\tNome de arquivo de inicialização longo demais: o máximo permitido é de 16 "
 "bytes.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3507,7 +3507,7 @@ msgstr ""
 "\n"
 "\tO arquivo de inicialização precisa ter um caminho totalmente qualificado.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3518,7 +3518,7 @@ msgstr ""
 "\t é conferida. O padrão da SGI é \"/unix\" e, para o backup, \"/unix.save"
 "\".\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3527,19 +3527,19 @@ msgstr ""
 "\n"
 "\tArquivo de inicialização alterado para \"%s\".\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Mais do que uma entrada de disco inteiro presente.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Nenhuma partição definida\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "O IRIX gosta quando a partição 11 abrange todo o disco.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3548,7 +3548,7 @@ msgstr ""
 "A partição de disco inteiro deve iniciar no bloco 0,\n"
 "não no bloco de disco %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3557,31 +3557,31 @@ msgstr ""
 "A partição de disco inteiro tem um tamanho de apenas %d blocos de disco,\n"
 "mas o disco tem %d blocos de tamanho.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "Uma partição (nº 11) deve abranger todo o disco.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "A partição %d não inicia em um limite de cilindro.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "A partição %d não termina em um limite de cilindro.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "As partições %d e %d se sobrepõem por %d setores.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, fuzzy, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Intervalo não utilizado de %8d setores - setores %8d - %d\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3589,7 +3589,7 @@ msgstr ""
 "\n"
 "A partição de inicialização não existe.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3597,7 +3597,7 @@ msgstr ""
 "\n"
 "A partição de permuta não existe.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3605,17 +3605,17 @@ msgstr ""
 "\n"
 "A partição de permuta não possui tipo de permuta.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tVocê escolheu um nome de arquivo de inicialização incomum.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr ""
 "Desculpe. Você pode alterar apenas a etiqueta de partições não vazias.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3630,28 +3630,28 @@ msgstr ""
 "Digite SIM se tiver certeza de que deseja etiquetar esta partição de modo "
 "diferente.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr ""
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr "Você sabia que tem uma sobreposição de partições no disco?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr "Tentando gerar entrada de disco inteiro automaticamente.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "O disco inteiro já está coberto com partições.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr "Existe uma sobreposição de partições no disco. Corrija-a antes!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3659,16 +3659,16 @@ msgstr ""
 "Recomenda-se fortemente que a partição 11\n"
 "cubra todo o disco e seja do tipo `volume SGI'\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr "Haverá uma sobreposição de partições no disco. Corrija-a antes!\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Último %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3680,7 +3680,7 @@ msgstr ""
 "o conteúdo anterior não poderá mais ser recuperado.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3688,12 +3688,12 @@ msgid ""
 "This value may be truncated for devices > 33.8 GB.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Tentando manter os parâmetros da partição %d.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tINÍCIO=%d\tCOMPRIMENTO=%d\n"
@@ -8532,42 +8532,42 @@ msgstr ""
 "       umount -a [-f] [-r] [-n] [-v] [-t tipos_sist_arq_virt]\n"
 "       umount [-f] [-r] [-n] [-v] especial | nó...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "Tentando desmontar %s\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "Não foi possível localizar %s em mtab\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s não está montado (de acordo com mtab)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: parece que %s está montado múltiplas vezes"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s não está na fstab (e você não é root)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: a montagem de %s não está de acordo com a fstab"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: somente %s pode desmontar %s de %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: operação exclusiva de root"
 
index 04ca92e4a1babd7c133a2e5eafc88c2f48e2b509..2468162640e174255899856ba0409f725859eb05 100644 (file)
--- a/po/sl.po
+++ b/po/sl.po
@@ -11,7 +11,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.11y\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2003-01-28 16:30+0100\n"
 "Last-Translator: Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>\n"
 "Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\n"
@@ -1541,7 +1541,7 @@ msgstr "   Logi
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Neznano"
 
@@ -2609,7 +2609,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr ""
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Naprava"
 
@@ -2687,12 +2687,12 @@ msgstr ""
 msgid "%lld unallocated sectors\n"
 msgstr ""
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr ""
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3257,27 +3257,27 @@ msgid ""
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:212
+#: fdisk/fdisksgilabel.c:213
 #, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
 "Pt# %*s  Info     Start       End   Sectors  Id  System\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3285,13 +3285,13 @@ msgid ""
 "----- Directory Entries -----\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr ""
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3299,110 +3299,110 @@ msgid ""
 "\te.g. \"/unix\" or \"/unix.save\".\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
 "\tSGI's default is \"/unix\" and for backup \"/unix.save\".\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
 "\tBootfile is changed to \"%s\".\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
 "not at diskblock %d.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
 "but the disk is %d diskblocks long.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr ""
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3411,43 +3411,43 @@ msgid ""
 "Type YES if you are sure about tagging this partition differently.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "DA\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3455,7 +3455,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3463,12 +3463,12 @@ msgid ""
 "This value may be truncated for devices > 33.8 GB.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr ""
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr ""
@@ -7988,42 +7988,42 @@ msgid ""
 "       umount [-f] [-r] [-n] [-v] special | node...\n"
 msgstr ""
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr ""
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr ""
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr ""
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr ""
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr ""
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr ""
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, fuzzy, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "mount: samo sistemski skrbnik lahko priklopi %s na %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr ""
 
index ea8f19937ea760a28726536711eb84c3e4161269..3ffc7011fbfa84f0f04609e38d0d6495adbd9e1c 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -10,7 +10,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.12j\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2004-12-12 23:01+0100\n"
 "Last-Translator: Christian Rose <menthos@menthos.com>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -1602,7 +1602,7 @@ msgstr "   Logisk "
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Okänd"
 
@@ -2743,7 +2743,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Start     Början        Slut     Block    Id  System\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Enhet"
 
@@ -2826,14 +2826,14 @@ msgstr "Totala antalet allokerade sektorer %d st
 msgid "%lld unallocated sectors\n"
 msgstr "%lld oallokerade sektorer\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr ""
 "Partition %d är redan definierad. Ta bort den innan du lägger till den "
 "igen.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3435,14 +3435,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "Hittade sgi-disketikett med felaktig kontrollsumma.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3453,12 +3453,12 @@ msgstr ""
 "Enheter = %s av %d × 512 byte\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3466,7 +3466,7 @@ msgstr ""
 "Enheter = %s av %d × 512 byte\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3475,7 +3475,7 @@ msgstr ""
 "----- partitioner -----\n"
 "Pt  %*s  Info     Början      Slut  Sektorer Id  System\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3486,13 +3486,13 @@ msgstr ""
 "Startfil: %s\n"
 "----- Katalogposter -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s sektor%5u storlek%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3504,7 +3504,7 @@ msgstr ""
 "\tStartfilen måste vara en absolut icketom sökväg,\n"
 "\tt.ex. \"/unix\" eller \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3512,7 +3512,7 @@ msgstr ""
 "\n"
 "\tNamnet på startfilen är för långt: 16 byte är max.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3520,7 +3520,7 @@ msgstr ""
 "\n"
 "\tStartfilen måste ha en fullständig sökväg.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3531,7 +3531,7 @@ msgstr ""
 "\tSGI:s standardalternativ är \"/unix\" respektive \"/unix.save\"\n"
 "\tför säkerhetskopior.\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3540,19 +3540,19 @@ msgstr ""
 "\n"
 "\tStartfilen ändrades till \"%s\".\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Det finns fler än en diskpost.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Inga partitioner är angivna\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "IRIX gillar om partition 11 täcker hela hårddisken.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3561,7 +3561,7 @@ msgstr ""
 "Hela diskpartitionen måste börja vid block 0,\n"
 "inte vid diskblock %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3570,31 +3570,31 @@ msgstr ""
 "Hela diskpartitionen är endast %d diskblock stor,\n"
 "men hårddisken är %d diskblock lång.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "En partition (11) måste täcka hela hårddisken.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "Partition %d börjar inte på en jämn cylindergräns.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "Partition %d slutar inte på en jämn cylindergräns.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "Partition %d och %d överlappar varandra med %d sektorer.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Oanvänt mellanrum på %8u sektorer - sektorerna %8u-%u\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3602,7 +3602,7 @@ msgstr ""
 "\n"
 "Startpartitionen finns inte.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3610,7 +3610,7 @@ msgstr ""
 "\n"
 "Växlingspartitionen finns inte.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3618,16 +3618,16 @@ msgstr ""
 "\n"
 "Växlingspartitionen har ingen växlingstyp.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tDu har valt ett ovanligt namn på startfilen.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Tyvärr, du kan ändra taggen på icke-tomma partitioner.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3642,29 +3642,29 @@ msgstr ""
 "får lov att bryta mot detta. Skriv in JA om du är säker på att\n"
 "du vill ge denna partition en annan tagg.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "JA\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr "Vet du om att partitioner överlappar varandra på hårddisken?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr "Försöker att generera fullständig diskpost automatiskt.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "Hela disken är redan täckt med partitioner.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Du har partitioner som överlappar varandra på disken. Fixa det först!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3672,17 +3672,17 @@ msgstr ""
 "Det rekommenderas varmt att den elfte partitionen\n"
 "täcker hela hårddisken och är av typen \"SGI-volym\"\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Du kommer att få överlappande partitioner på hårddisken. Fixa det först!\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " sista %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3694,7 +3694,7 @@ msgstr ""
 "naturligtvis det tidigare innehållet att vara spårlöst borta.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3705,12 +3705,12 @@ msgstr ""
 "geometricylindervärdet %d.\n"
 "Detta värde kan vara avkortat för enheter > 33,8 GB.\n"
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Försöker att behålla parametrarna för partition %d.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ID=%02x\tBÖRJAN=%d\tLÄNGD=%d\n"
@@ -8486,42 +8486,42 @@ msgstr ""
 "            umount -a [-f] [-r] [-n] [-v] [-t vfs-typer] [-O alternativ]\n"
 "            umount [-f] [-r] [-n] [-v] special | nod...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "Försöker avmontera %s\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "Kunde inte hitta %s i mtab\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s är inte monterad (enligt mtab)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: det verkar som om %s är monterad flera gånger"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s är inte i fstab (och du är inte root)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: montering av %s stämmer inte överens med fstab"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: endast %s kan avmontera %s från %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: endast root kan göra det"
 
index c372ba46af734985e1e9d2085b6d349a14c10450..90e0cd966dc30ddd1af5b2e3b6db6ad048f64906 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -10,7 +10,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.12j\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2004-12-12 10:13+0300\n"
 "Last-Translator: Nilgün Belma Bugüner <nilgun@superonline.com>\n"
 "Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
@@ -1601,7 +1601,7 @@ msgstr " Mantıksal "
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Bilinmeyen"
 
@@ -2728,7 +2728,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Açılış    Başlangıç     Bitiş  BlokSayısı Kml Sistem\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Aygıt"
 
@@ -2815,12 +2815,12 @@ msgstr ""
 msgid "%lld unallocated sectors\n"
 msgstr "%lld sektör kullanılmamış\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr "%d disk bölümü zaten atanmış. Yeniden eklemeden önce silmelisiniz.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3422,14 +3422,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "Yanlış sağlama toplamı veren sgi disk etiketi saptandı.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3440,12 +3440,12 @@ msgstr ""
 "Birim = %s  (%d * 512 bayt)\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3453,7 +3453,7 @@ msgstr ""
 "Birim = %s  (%d * 512 bayt)\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3462,7 +3462,7 @@ msgstr ""
 "----- disk bölümleri -----\n"
 "Bl# %*s  Bilgi   Başlangıç   Bitiş  Sektor  Kiml Sistem\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3473,13 +3473,13 @@ msgstr ""
 "Önyükleme dosyası: %s\n"
 "----- Dizin Girdileri -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s sektör%5u boy%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3491,7 +3491,7 @@ msgstr ""
 "\tÖnyükleme dosyasının okunabilir bir ismi olmalıdır,\n"
 "\törn. \"/unix\" ya da \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3499,7 +3499,7 @@ msgstr ""
 "\n"
 "\tÖnyükleme dosyasının ismi çok uzun:  en çok 16 bayt.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3507,7 +3507,7 @@ msgstr ""
 "\n"
 "\tÖnyükleme dosyasının ismi dosya yolunu da içermeli.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3518,7 +3518,7 @@ msgstr ""
 "\tSGI için \"/unix\" öntanımlı önyükleme dosyasıdır ve yedek dosyasının\n"
 "öntanımlı ismi \"/unix.save\"dir.\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3527,19 +3527,19 @@ msgstr ""
 "\n"
 "\tÖnyükleme dosyası \"%s\" olarak değiştirildi.\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Birden fazla tüm disk girdisi var.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Atanmış disk bölümü yok\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "11. disk bölümü tüm diski kapsadığında IRIX'e uygun olur.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3548,7 +3548,7 @@ msgstr ""
 "Diskin tümünü kaplayan bir disk bölümü blok 0'dan başlamalıydı.\n"
 "%d. bloktan değil\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3557,31 +3557,31 @@ msgstr ""
 "Diskin tümünü kapladığı belirtilen disk bölümü %d blok,\n"
 "diskin tamamı ise %d blok.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "Tek disk bölümü (#11) tüm diski kaplamalıydı.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "%d disk bölümü silindir sınırında başlamıyor.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "%d disk bölümü silindir sınırında bitmiyor.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "%d disk bölümü ile %d birbirinin %d sektör içine giriyor.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "%8u sektörlük boşluk kullanılmadı -  %8u-%u sektörleri\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3589,7 +3589,7 @@ msgstr ""
 "\n"
 "Önyükleme disk bölümü yok.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3597,7 +3597,7 @@ msgstr ""
 "\n"
 "Takas bölümü yok.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3605,16 +3605,16 @@ msgstr ""
 "\n"
 "Takas bölümünün türü takas değil.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tKullanışsız bir önyükleme dosyası seçtiniz.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Boş olmayan bir disk bölümünün etiketini değiştirebilirsiniz!\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3628,32 +3628,32 @@ msgstr ""
 "\"SGI volume\" onunla çelişebilir. Bu disk bölümünü farklı\n"
 "oluşturmak istiyorsanız EVET yazın.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "EVET\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr ""
 "Disk üzerindeki diğer bölümlerin üzerine taşan bir disk bölümü\n"
 "ayırdığınızın farkında mısınız?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr "Tüm disk girdisi otomatik olarak üretilmeye çalışılıyor.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "Tüm disk alanı zaten disk bölümlerince kullanılmış.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Disk üzerindeki diğer bölümlerin üzerine taşan bir disk bölümü\n"
 "ayırdığınız. Önce bunu düzeltin!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3661,18 +3661,18 @@ msgstr ""
 "Onbirinci disk bölümünün tüm diski kapsaması ve `SGI volume'\n"
 "türünde olması tavsiye edilir.\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr ""
 "Disk üzerindeki diğer bölümlerin üzerine taşan bir disk bölümü\n"
 "ayıracaksınız. Önce bunu düzeltin!\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Son %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3684,7 +3684,7 @@ msgstr ""
 "diskte bulunan tüm bilgiyi bir daha geri alamamak üzere\n"
 "kaybedeceksiniz.\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3695,12 +3695,12 @@ msgstr ""
 "d\n"
 "değeri kullanılıyor. Bu değer 33.8 GB'dan büyük aygıtlarda kırpılabilir.\n"
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "%d disk bölümünün parametreleri okunmaya çalışılıyor.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "Kimlik=%02x\tBaşlangıç=%d\tBoy=%d\n"
@@ -8511,42 +8511,42 @@ msgstr ""
 "Çeviri hatalarını <gnu-tr-u12a@lists.sourceforge.net> adresine bildiriniz\n"
 "Daha fazla bilgi edinmek için 'man 8 umount' yazınız.\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "%s sistemden ayrılmaya çalışılıyor\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "mtab içinde %s bulunamadı\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s bağlı değil (mtab içinde yok)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: %s defalarca bağlanmış görünüyor"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s fstab içinde yok (ve siz root değilsiniz)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: %s bağı fstab ile çelişiyor"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: sadece %1$s %3$s aygıtını %2$s dizininden ayırabilir"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: bu sadece root tarafından yapılabilir"
 
index 32cbb89bc9ba0424b42e33936197045e09337f42..1460c84db3b0a339aba8603bf343280b71d1d14b 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-12-13 21:53+0100\n"
+"POT-Creation-Date: 2004-12-15 19:42+0100\n"
 "PO-Revision-Date: 2004-02-24 10:45+0200\n"
 "Last-Translator: Maxim V. Dziumanenko <mvd@mylinux.com.ua>\n"
 "Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
@@ -1602,7 +1602,7 @@ msgstr "   Логічний "
 #. type id
 #. type name
 #: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
+#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
 msgid "Unknown"
 msgstr "Невідомий"
 
@@ -2719,7 +2719,7 @@ msgstr ""
 msgid "%*s Boot      Start         End      Blocks   Id  System\n"
 msgstr "%*s Завант  Початок     Кінець     Блоків  Ід  Система\n"
 
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
 msgid "Device"
 msgstr "Пристрій"
 
@@ -2802,12 +2802,12 @@ msgstr "Загальна кількість розподілених секто
 msgid "%lld unallocated sectors\n"
 msgstr "%d нерозподілених секторів\n"
 
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
 #, c-format
 msgid "Partition %d is already defined.  Delete it before re-adding it.\n"
 msgstr "Розділ %d вже визначений.  Видаліть його перед повторним додаванням.\n"
 
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
+#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
 #: fdisk/fdisksunlabel.c:518
 #, c-format
 msgid "First %s"
@@ -3410,14 +3410,14 @@ msgid "Detected sgi disklabel with wrong checksum.\n"
 msgstr "Знайдено sgi етикетку диска з неправильною контрольною сумою.\n"
 
 #: fdisk/fdisksgilabel.c:200
-#, c-format
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors\n"
 "%d cylinders, %d physical cylinders\n"
 "%d extra sects/cyl, interleave %d:1\n"
 "%s\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3428,12 +3428,12 @@ msgstr ""
 "Одиниці виміру = %s з %d * 512 байт\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:212
-#, c-format
+#: fdisk/fdisksgilabel.c:213
+#, fuzzy, c-format
 msgid ""
 "\n"
 "Disk %s (SGI disk label): %d heads, %d sectors, %d cylinders\n"
-"Units = %s of %d * 512 bytes\n"
+"Units = %s of %d * %d bytes\n"
 "\n"
 msgstr ""
 "\n"
@@ -3441,7 +3441,7 @@ msgstr ""
 "Одиниці виміру = %s з %d * 512 байт\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:218
+#: fdisk/fdisksgilabel.c:220
 #, c-format
 msgid ""
 "----- partitions -----\n"
@@ -3450,7 +3450,7 @@ msgstr ""
 "----- розділи -----\n"
 "Рзд# %*s  Інфо   Початок    Кінець  Секторів  Ід  Система\n"
 
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
 #, c-format
 msgid ""
 "----- Bootinfo -----\n"
@@ -3461,13 +3461,13 @@ msgstr ""
 "Завантажувальний файл: %s\n"
 "----- Елементи каталогу -----\n"
 
-#: fdisk/fdisksgilabel.c:248
+#: fdisk/fdisksgilabel.c:250
 #, c-format
 msgid "%2d: %-10s sector%5u size%8u\n"
 msgstr "%2d: %-10s сектор%5u розмір%8u\n"
 
 #. "/a\n" is minimum
-#: fdisk/fdisksgilabel.c:302
+#: fdisk/fdisksgilabel.c:304
 msgid ""
 "\n"
 "Invalid Bootfile!\n"
@@ -3479,7 +3479,7 @@ msgstr ""
 "\tЗавантажувальний файл повинен мати не-нульовий абсолютний шлях,\n"
 "\tнаприклад,  \"/unix\" або \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:308
+#: fdisk/fdisksgilabel.c:310
 msgid ""
 "\n"
 "\tName of Bootfile too long:  16 bytes maximum.\n"
@@ -3487,7 +3487,7 @@ msgstr ""
 "\n"
 "\tНазва завантажувального файлу надто велика:  максимум 16 байт.\n"
 
-#: fdisk/fdisksgilabel.c:313
+#: fdisk/fdisksgilabel.c:315
 msgid ""
 "\n"
 "\tBootfile must have a fully qualified pathname.\n"
@@ -3495,7 +3495,7 @@ msgstr ""
 "\n"
 "\tЗавантажувальний файл повинен мати абсолютний шлях.\n"
 
-#: fdisk/fdisksgilabel.c:320
+#: fdisk/fdisksgilabel.c:322
 msgid ""
 "\n"
 "\tBe aware, that the bootfile is not checked for existence.\n"
@@ -3505,7 +3505,7 @@ msgstr ""
 "\tЗнайте, що існування завантажувального файлу не перевіряється.\n"
 "\tТипові для SGI -  \"/unix\" та резервна копія \"/unix.save\".\n"
 
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
 #, c-format
 msgid ""
 "\n"
@@ -3514,19 +3514,19 @@ msgstr ""
 "\n"
 "\tЗавантажувальний файл змінено на \"%s\".\n"
 
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
 msgid "More than one entire disk entry present.\n"
 msgstr "Присутній більш ніж один елемент диску.\n"
 
-#: fdisk/fdisksgilabel.c:443 fdisk/fdisksunlabel.c:479
+#: fdisk/fdisksgilabel.c:445 fdisk/fdisksunlabel.c:479
 msgid "No partitions defined\n"
 msgstr "Не визначено розділів\n"
 
-#: fdisk/fdisksgilabel.c:449
+#: fdisk/fdisksgilabel.c:451
 msgid "IRIX likes when Partition 11 covers the entire disk.\n"
 msgstr "IRIX покладається на те, що розділ 11 займає весь диск.\n"
 
-#: fdisk/fdisksgilabel.c:451
+#: fdisk/fdisksgilabel.c:453
 #, c-format
 msgid ""
 "The entire disk partition should start at block 0,\n"
@@ -3535,7 +3535,7 @@ msgstr ""
 "Розділ на весь диск повинен починатись з блоку 0,\n"
 "а не з блоку диску %d.\n"
 
-#: fdisk/fdisksgilabel.c:457
+#: fdisk/fdisksgilabel.c:459
 #, c-format
 msgid ""
 "The entire disk partition is only %d diskblock large,\n"
@@ -3544,31 +3544,31 @@ msgstr ""
 "Розділ на весь диск довжиною лише %d дискових блоків,\n"
 "але довжина диску складає %d дискових блоків.\n"
 
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
 msgid "One Partition (#11) should cover the entire disk.\n"
 msgstr "Розділ (#11) повинен займати весь диск.\n"
 
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
 #, c-format
 msgid "Partition %d does not start on cylinder boundary.\n"
 msgstr "Розділ %d не починається з межі циліндру.\n"
 
-#: fdisk/fdisksgilabel.c:479
+#: fdisk/fdisksgilabel.c:481
 #, c-format
 msgid "Partition %d does not end on cylinder boundary.\n"
 msgstr "Розділ %d не закінчується на межі циліндру.\n"
 
-#: fdisk/fdisksgilabel.c:486
+#: fdisk/fdisksgilabel.c:488
 #, c-format
 msgid "The Partition %d and %d overlap by %d sectors.\n"
 msgstr "Розділи %d та %d перекриваються на %d секторів.\n"
 
-#: fdisk/fdisksgilabel.c:494 fdisk/fdisksgilabel.c:512
+#: fdisk/fdisksgilabel.c:496 fdisk/fdisksgilabel.c:514
 #, c-format
 msgid "Unused gap of %8u sectors - sectors %8u-%u\n"
 msgstr "Невикористаний простір з %8u секторів - сектори %8u-%u\n"
 
-#: fdisk/fdisksgilabel.c:523
+#: fdisk/fdisksgilabel.c:525
 msgid ""
 "\n"
 "The boot partition does not exist.\n"
@@ -3576,7 +3576,7 @@ msgstr ""
 "\n"
 "Завантажувальний розділ не існує.\n"
 
-#: fdisk/fdisksgilabel.c:526
+#: fdisk/fdisksgilabel.c:528
 msgid ""
 "\n"
 "The swap partition does not exist.\n"
@@ -3584,7 +3584,7 @@ msgstr ""
 "\n"
 "Розділ підкачки не існує.\n"
 
-#: fdisk/fdisksgilabel.c:530
+#: fdisk/fdisksgilabel.c:532
 msgid ""
 "\n"
 "The swap partition has no swap type.\n"
@@ -3592,16 +3592,16 @@ msgstr ""
 "\n"
 "Розділ підкачки має тип не підкачки.\n"
 
-#: fdisk/fdisksgilabel.c:533
+#: fdisk/fdisksgilabel.c:535
 msgid "\tYou have chosen an unusual boot file name.\n"
 msgstr "\tВи вибрали незвичайну назву файлу завантаження.\n"
 
 #. caught already before, ...
-#: fdisk/fdisksgilabel.c:542
+#: fdisk/fdisksgilabel.c:544
 msgid "Sorry You may change the Tag of non-empty partitions.\n"
 msgstr "Пробачте, Ви можете змінити тег не-порожніх розділів.\n"
 
-#: fdisk/fdisksgilabel.c:548
+#: fdisk/fdisksgilabel.c:550
 msgid ""
 "It is highly recommended that the partition at offset 0\n"
 "is of type \"SGI volhdr\", the IRIX system will rely on it to\n"
@@ -3615,28 +3615,28 @@ msgstr ""
 "Не дотримуватись цього можуть лише \"SGI volume\" на весь диск.\n"
 "Введіть YES, якщо ви впевнені, що хочете позначити цей розділ по-іншому.\n"
 
-#: fdisk/fdisksgilabel.c:553 fdisk/fdisksunlabel.c:628
+#: fdisk/fdisksgilabel.c:555 fdisk/fdisksunlabel.c:628
 msgid "YES\n"
 msgstr "YES\n"
 
 #. rebuild freelist
-#: fdisk/fdisksgilabel.c:577
+#: fdisk/fdisksgilabel.c:579
 msgid "Do You know, You got a partition overlap on the disk?\n"
 msgstr "Ви знаєте, що на диску є розділи, що перекриваються?\n"
 
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
 msgid "Attempting to generate entire disk entry automatically.\n"
 msgstr "Спроба створити весь диск автоматично.\n"
 
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
 msgid "The entire disk is already covered with partitions.\n"
 msgstr "Весь диск вже зайнятий розділами.\n"
 
-#: fdisk/fdisksgilabel.c:644
+#: fdisk/fdisksgilabel.c:646
 msgid "You got a partition overlap on the disk. Fix it first!\n"
 msgstr "На диску є розділи, що перекриваються. Спочатку виправте це!\n"
 
-#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
+#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
 msgid ""
 "It is highly recommended that eleventh partition\n"
 "covers the entire disk and is of type `SGI volume'\n"
@@ -3644,16 +3644,16 @@ msgstr ""
 "Наполегливо рекомендується, щоб одинадцятий розділ\n"
 "займав увесь диск та мав тип `SGI volume'\n"
 
-#: fdisk/fdisksgilabel.c:669
+#: fdisk/fdisksgilabel.c:671
 msgid "You will get a partition overlap on the disk. Fix it first!\n"
 msgstr "Ваші розділи на диску будуть перекриватись. Виправте це!\n"
 
-#: fdisk/fdisksgilabel.c:674
+#: fdisk/fdisksgilabel.c:676
 #, c-format
 msgid " Last %s"
 msgstr " Останній %s"
 
-#: fdisk/fdisksgilabel.c:704
+#: fdisk/fdisksgilabel.c:706
 msgid ""
 "Building a new SGI disklabel. Changes will remain in memory only,\n"
 "until you decide to write them. After that, of course, the previous\n"
@@ -3665,7 +3665,7 @@ msgstr ""
 "буде втрачено.\n"
 "\n"
 
-#: fdisk/fdisksgilabel.c:726
+#: fdisk/fdisksgilabel.c:728
 #, c-format
 msgid ""
 "Warning:  BLKGETSIZE ioctl failed on %s.  Using geometry cylinder value of %"
@@ -3676,12 +3676,12 @@ msgstr ""
 "значення геометрії циліндру %d.\n"
 "Це значення може бути відсічене для пристроїв > 33.8 ГБ.\n"
 
-#: fdisk/fdisksgilabel.c:739
+#: fdisk/fdisksgilabel.c:741
 #, c-format
 msgid "Trying to keep parameters of partition %d.\n"
 msgstr "Спроба зберегти параметри розділу %d.\n"
 
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
 #, c-format
 msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
 msgstr "ІД=%02x\tПОЧАТОК=%d\tДОВЖИНА=%d\n"
@@ -8481,42 +8481,42 @@ msgstr ""
 "       umount -a [-f] [-r] [-n] [-v] [-t тип_фс] [-O параметри]\n"
 "       umount [-f] [-r] [-n] [-v] спец_файл | каталог...\n"
 
-#: mount/umount.c:554
+#: mount/umount.c:557
 #, c-format
 msgid "Trying to umount %s\n"
 msgstr "Спроба відключити %s\n"
 
-#: mount/umount.c:560
+#: mount/umount.c:563
 #, c-format
 msgid "Could not find %s in mtab\n"
 msgstr "не вдається знайти %s у mtab\n"
 
-#: mount/umount.c:567
+#: mount/umount.c:570
 #, c-format
 msgid "umount: %s is not mounted (according to mtab)"
 msgstr "umount: %s не є підключеним (згідно mtab)"
 
-#: mount/umount.c:571
+#: mount/umount.c:574
 #, c-format
 msgid "umount: it seems %s is mounted multiple times"
 msgstr "umount: здається %s підключений декілька разів"
 
-#: mount/umount.c:584
+#: mount/umount.c:587
 #, c-format
 msgid "umount: %s is not in the fstab (and you are not root)"
 msgstr "umount: %s відсутній у fstab (та ви не адміністратор)"
 
-#: mount/umount.c:588
+#: mount/umount.c:591
 #, c-format
 msgid "umount: %s mount disagrees with the fstab"
 msgstr "umount: підключений %s відрізняється від fstab"
 
-#: mount/umount.c:629
+#: mount/umount.c:632
 #, fuzzy, c-format
 msgid "umount: only %s can unmount %s from %s"
 msgstr "umount: лише адміністратор може відключити %s від %s"
 
-#: mount/umount.c:710
+#: mount/umount.c:713
 msgid "umount: only root can do that"
 msgstr "umount: це може робити лише адміністратор(root)"
 
index 8064b1d0e585c1e3c0dca199d6e731f69a2c5e94..36ce06ac12a605cb88130053185290702a7d83f3 100644 (file)
@@ -54,5 +54,5 @@ When both options are used, only the last option on the command line will
 have an effect.
 .SH SEE ALSO
 .BR syslogd (8)
-.SH AUTHOR
-Theodore Ts'o (tytso@athena.mit.edu)
+.\" .SH AUTHOR
+.\" Theodore Ts'o (tytso@athena.mit.edu)