summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--HISTORY10
-rw-r--r--VERSION2
-rw-r--r--fdisk/fdisk.h8
-rw-r--r--fdisk/fdisksgilabel.c12
-rw-r--r--fdisk/fdisksunlabel.c2
-rw-r--r--fdisk/sfdisk.86
-rw-r--r--fdisk/sfdisk.c2
-rw-r--r--hwclock/Makefile1
-rw-r--r--hwclock/cmos.c1
-rw-r--r--hwclock/hwclock.812
-rw-r--r--hwclock/hwclock.c1
-rw-r--r--hwclock/kd.c1
-rw-r--r--hwclock/rtc.c1
-rw-r--r--login-utils/simpleinit.c2
-rw-r--r--misc-utils/ddate.12
-rw-r--r--mount/swapon.c5
-rw-r--r--mount/umount.c5
-rw-r--r--po/Makefile2
-rw-r--r--po/ca.po108
-rw-r--r--po/cat-id-tbl.c2533
-rw-r--r--po/cs.po108
-rw-r--r--po/da.po108
-rw-r--r--po/de.po108
-rw-r--r--po/es.po108
-rw-r--r--po/et.po108
-rw-r--r--po/fi.po108
-rw-r--r--po/fr.po108
-rw-r--r--po/it.po108
-rw-r--r--po/ja.po108
-rw-r--r--po/nl.po108
-rw-r--r--po/pt_BR.po108
-rw-r--r--po/sl.po104
-rw-r--r--po/sv.po108
-rw-r--r--po/tr.po108
-rw-r--r--po/uk.po108
-rw-r--r--sys-utils/dmesg.84
36 files changed, 919 insertions, 3417 deletions
diff --git a/HISTORY b/HISTORY
index a3f32b424..3cdcef28a 100644
--- 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 5a43192dd..64d500a2f 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.12k
+2.12l
diff --git a/fdisk/fdisk.h b/fdisk/fdisk.h
index 6daadd90b..13c07147b 100644
--- a/fdisk/fdisk.h
+++ b/fdisk/fdisk.h
@@ -29,6 +29,12 @@
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,
diff --git a/fdisk/fdisksgilabel.c b/fdisk/fdisksgilabel.c
index 663e925aa..b46515e28 100644
--- a/fdisk/fdisksgilabel.c
+++ b/fdisk/fdisksgilabel.c
@@ -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);
diff --git a/fdisk/fdisksunlabel.c b/fdisk/fdisksunlabel.c
index edfe4b9bf..f4a67bd92 100644
--- a/fdisk/fdisksunlabel.c
+++ b/fdisk/fdisksunlabel.c
@@ -379,8 +379,8 @@ void create_sunlabel(void)
}
set_all_unchanged();
- set_changed(0);
get_boot(create_empty_sun);
+ set_changed(0);
}
void
diff --git a/fdisk/sfdisk.8 b/fdisk/sfdisk.8
index 8fe8448dc..554286469 100644
--- a/fdisk/sfdisk.8
+++ b/fdisk/sfdisk.8
@@ -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),
diff --git a/fdisk/sfdisk.c b/fdisk/sfdisk.c
index 8122d7539..9b1e0a575 100644
--- a/fdisk/sfdisk.c
+++ b/fdisk/sfdisk.c
@@ -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
diff --git a/hwclock/Makefile b/hwclock/Makefile
index 88aa50cd8..730a355a8 100644
--- a/hwclock/Makefile
+++ b/hwclock/Makefile
@@ -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
diff --git a/hwclock/cmos.c b/hwclock/cmos.c
index 8d497b27e..399a912c9 100644
--- a/hwclock/cmos.c
+++ b/hwclock/cmos.c
@@ -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"
diff --git a/hwclock/hwclock.8 b/hwclock/hwclock.8
index 0d5f014c9..e3fcb4147 100644
--- a/hwclock/hwclock.8
+++ b/hwclock/hwclock.8
@@ -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
diff --git a/hwclock/hwclock.c b/hwclock/hwclock.c
index eeabc3726..7b7a4ef3b 100644
--- a/hwclock/hwclock.c
+++ b/hwclock/hwclock.c
@@ -82,6 +82,7 @@
#include <getopt.h>
#include <sysexits.h>
+#include "../defines.h" /* for HAVE_tm_gmtoff */
#include "clock.h"
#include "nls.h"
diff --git a/hwclock/kd.c b/hwclock/kd.c
index cac767888..2581fa5dd 100644
--- a/hwclock/kd.c
+++ b/hwclock/kd.c
@@ -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>
diff --git a/hwclock/rtc.c b/hwclock/rtc.c
index cbb2dddea..a2aa0b825 100644
--- a/hwclock/rtc.c
+++ b/hwclock/rtc.c
@@ -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 */
diff --git a/login-utils/simpleinit.c b/login-utils/simpleinit.c
index 093c00303..89c14a8dc 100644
--- a/login-utils/simpleinit.c
+++ b/login-utils/simpleinit.c
@@ -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>
diff --git a/misc-utils/ddate.1 b/misc-utils/ddate.1
index 7d17c8248..32e80c5a2 100644
--- a/misc-utils/ddate.1
+++ b/misc-utils/ddate.1
@@ -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
diff --git a/mount/swapon.c b/mount/swapon.c
index dce1bf877..17c45cbdd 100644
--- a/mount/swapon.c
+++ b/mount/swapon.c
@@ -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);
diff --git a/mount/umount.c b/mount/umount.c
index 34ca1084f..15d94f938 100644
--- a/mount/umount.c
+++ b/mount/umount.c
@@ -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);
diff --git a/po/Makefile b/po/Makefile
index ad1a6a3e1..6742fac5e 100644
--- a/po/Makefile
+++ b/po/Makefile
@@ -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
diff --git a/po/ca.po b/po/ca.po
index 1156a0e0f..3217486d0 100644
--- 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
index c6738c93e..000000000
--- a/po/cat-id-tbl.c
+++ /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;
diff --git a/po/cs.po b/po/cs.po
index b124f4e73..76ecb76b8 100644
--- 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 "Neznm"
@@ -2697,7 +2697,7 @@ msgstr ""
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Boot Zatek Konec Bloky Id Systm\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 "Zazen"
@@ -2780,14 +2780,14 @@ msgstr "Celkov poet alokovanch sektor (%d) je vt ne maximum (%d).\n"
msgid "%lld unallocated sectors\n"
msgstr "nealokovanch 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 oddl %d je ji definovn. Ped optovnm vytvoenm jej muste\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 chybnm kontrolnm soutem.\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 oddly -----\n"
"Od# %*s Info Zatek Konec Sektory Id Systm\n"
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
#, c-format
msgid ""
"----- Bootinfo -----\n"
@@ -3435,13 +3435,13 @@ msgstr ""
"Startovac soubor: %s\n"
"----- adresov poloky -----\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 bt zadn plnm nzvem, 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"
"\tNzev startovacho souboru je pli 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 bt zadn plnm nzvem.\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 ""
"Uvdomte si, e existence startovacho souboru nen ovovna.\n"
"\tImplicitn se pouije \"/unix\" a jako zloha \"/unix.save\".\n"
-#: fdisk/fdisksgilabel.c:346
+#: fdisk/fdisksgilabel.c:348
#, c-format
msgid ""
"\n"
@@ -3488,19 +3488,19 @@ msgstr ""
"\n"
"\tStartovac soubor byl zmnn na \"%s\".\n"
-#: fdisk/fdisksgilabel.c:436
+#: fdisk/fdisksgilabel.c:438
msgid "More than one entire disk entry present.\n"
msgstr "Existuje vce ne jedna poloka celho 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 definovny dn diskov oddly\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 oddl 11 zaujm 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 oddl zaujmajc cel disk by ml zanat 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 oddl zaujmajc cel disk m velikost v blocch pouze %d,\n"
"ale velikost disku v blocch je %d.\n"
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
msgid "One Partition (#11) should cover the entire disk.\n"
msgstr "Jeden Diskov Oddl (#11) by ml zaujmat 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 oddl %d nezan 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 oddl %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 oddly %d a %d se navzjem pekrvaj %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 "Nevyuvan 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 oddl 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 oddl pro odkldac 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 oddl pro odkldac prostor nem zadn 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 nzev 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, mete mnit znaku neprzdnch diskovch oddl.\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 oznait tento diskov oddl "
"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 "Vte, e na Vaem disku se diskov oddly pekrvaj?\n"
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Pokoum se automaticky vytvoit poloku pro cel disk.\n"
-#: fdisk/fdisksgilabel.c:640
+#: fdisk/fdisksgilabel.c:642
msgid "The entire disk is already covered with partitions.\n"
msgstr "Diskov oddly ji zabraj 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 oddly se pekrvaj. 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 ""
"Doporuuje se, aby jedenct diskov oddl zaujmal 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 oddly budou navzjem pekrvat. 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 "Pokoum se zachovat parametry diskovho oddlu %d.\n"
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tZATEK=%d\tDLKA=%d\n"
@@ -8431,42 +8431,42 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t typy vfs]\n"
" umount [-f] [-r] [-n] [-v] speciln soubor | uzel...\n"
-#: mount/umount.c:554
+#: mount/umount.c:557
#, c-format
msgid "Trying to umount %s\n"
msgstr "Zkoum 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 najt\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 pipojeno"
-#: 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 pipojeno vce 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: pipojen %s neodpovd fstab"
-#: mount/umount.c:629
+#: mount/umount.c:632
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "unmount: pouze uivatel %s me odpojit %s ze %s"
-#: mount/umount.c:710
+#: mount/umount.c:713
msgid "umount: only root can do that"
msgstr "umount: toto me provst pouze uivatel root"
diff --git a/po/da.po b/po/da.po
index 4501ea213..96c51eb80 100644
--- 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 fr du tilfjer 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 diskmrkat 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 strrelse%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 vre 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: hjst 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 ""
"\tBemrk, 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 fuldstndig 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, nr 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 br 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) br 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 cylindergrnse.\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 cylindergrnse.\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 mrket (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 mrke 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 "Forsger 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 frst!\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 frst!\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 ""
"cylindervrdien %d.\n"
"Denne vrdi kan blive afkortet p enheder, der er strre 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 "Forsger 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\tLNGDE=%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 "Forsger 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 (iflge 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 gre"
diff --git a/po/de.po b/po/de.po
index ecac5007c..210d916b3 100644
--- 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"
diff --git a/po/es.po b/po/es.po
index 86728eebb..30b60f98f 100644
--- 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 " Lgica"
#. 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 lnea.
-#: 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 mximo %lld\n"
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 particin %d ya est definida. Suprmala antes de volver a aadirla.\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 tamao%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 mximo.\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 ms 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 particin 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 particin 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 particin 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 particin de disco completo slo tiene un tamao 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 particin (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 particin %d no empieza en un lmite 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 particin %d no termina en un lmite 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 particin 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 particin 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 particin 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 "Slo puede cambiar la etiqueta de las particiones no vacas.\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 "
"particin.\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 particin 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 automticamente.\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. Corrjalo 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 particin 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. Corrjalo 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 ""
"operacin, 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 geometra del cilindro de %d. Este valor podra 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 parmetros de la particin %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 (segn 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: slo %s puede desmontar %s desde %s"
-#: mount/umount.c:710
+#: mount/umount.c:713
msgid "umount: only root can do that"
msgstr "umount: slo el usuario root puede efectuar esta accin"
diff --git a/po/et.po b/po/et.po
index 00d6ff4d4..3bf6d8dce 100644
--- 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 Lpp Plokke Id Ssteem\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 Lpp Sektoreid Id Ssteem\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 mittethi string,\n"
"\tniteks \"/unix\" vi \"/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 tisteega\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 vaikevrtus on \"/unix\" ja varuvrtus \"/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 lppe 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 tp\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 "Tpi saab muuta ainult mittethjadel 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 tpi 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 mned 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 kigepealt!\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 tpi \"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 kigepealt 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. Prast 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 silitada 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 ""
diff --git a/po/fi.po b/po/fi.po
index 81e494c45..8fa9573b8 100644
--- 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 Kynn Alku Loppu Lohkot Id Jrjestelm\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 kokonaismr %d on suurempi kuin maksimi %d\n"
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 mritelty. Poista se ennen uudelleen lismist.\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 vr 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 ""
"Yksikt = %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 ""
"Yksikt = %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 Jrjestelm\n"
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
#, c-format
msgid ""
"----- Bootinfo -----\n"
@@ -3457,13 +3457,13 @@ msgstr ""
"Kynnistystiedosto: %s\n"
"----- Hakemistomerkinnt -----\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 ""
"\tKynnistystiedoston 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"
"\tKynnistystiedoston 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"
"\tKynnistystiedoston polun on oltava tydellinen.\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 kynnistystiedoston 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"
"\tKynnistystiedostoksi 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 mriteltyj 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 tytt 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 tytt 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 pllekkiset %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 "Kyttmtn %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"
"Kynnistysosiota 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 kynnistystiedoston nimi on eptavallinen.\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 tt snt.\n"
"Kirjoita KYLL, jos olet varma tmn 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 "Tiedtk, ett levyll on pllekkisi osioita?\n"
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Yritetn 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 kytss.\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 pllekkisi osioita. Tm 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 erittin 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 pllekkisi osioita. Tm 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 ""
"tietenkn 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. Tm 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 "Yritetn silytt 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 "Yritetn irrottaa %s\n"
-#: mount/umount.c:560
+#: mount/umount.c:563
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "%s ei lytynyt 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 tmn"
diff --git a/po/fr.po b/po/fr.po
index ce58beba1..11bfd6178 100644
--- 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 Dbut Fin Blocs Id Systme\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 "Priphrique"
@@ -2851,12 +2851,12 @@ msgstr ""
msgid "%lld unallocated sectors\n"
msgstr "%lld secteurs non-allous\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 dj dfini. La dtruire 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 "tiquette de disque SGI dtecte avec une somme de contrle errone.\n"
# 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 ""
"Units = %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 ""
"Units = %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 Dbut Fin Secteurs Id Systme\n"
-#: fdisk/fdisksgilabel.c:240
+#: fdisk/fdisksgilabel.c:242
#, c-format
msgid ""
"----- Bootinfo -----\n"
@@ -3517,13 +3517,13 @@ msgstr ""
"Fichier d'amorce: %s\n"
"----- Entres de rpertoire -----\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 ""
"zro),\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'accs compltement 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 vrifi pour son existence.\n"
"\tPar dfaut 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 entre entire de disque prsente.\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 dfinie\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 entirement 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 entire du disque doit dbuter 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 entire 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 dbute pas sur une frontire 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 frontire 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 "Dsol. Vous pouvez modifi l'tiquette des partitions occupes.\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 diffrent 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 gnration d'une entre complte 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 dj 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 ""
"irrcuprable.\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 utilise. Cette valeur peut tre tronque pour les priphrique 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 paramtres 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\tDBUT=%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] spcial | noeud...\n"
-#: mount/umount.c:554
+#: mount/umount.c:557
#, c-format
msgid "Trying to umount %s\n"
msgstr "Tentative pour dmonter %s\n"
-#: mount/umount.c:560
+#: mount/umount.c:563
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Ne peut reprer %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 dsaccord 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 dmonter %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 excuter la commande"
diff --git a/po/it.po b/po/it.po
index 0ad092b75..95b3616b9 100644
--- 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"
diff --git a/po/ja.po b/po/ja.po
index c5249d949..2473c3e69 100644
--- 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 "׳ݥ %d Ϻ %d 礭Ǥ\n"
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 Ԥʤޤ"
diff --git a/po/nl.po b/po/nl.po
index 298c79e26..b0a2942a4 100644
--- 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"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 870179ef1..a29a2a885 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -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 " Lgica"
#. 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 Incio 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, maior do que o mximo: %d\n"
msgid "%lld unallocated sectors\n"
msgstr "%d setores no 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 partio %d j est definida. Exclua essa partio 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 rtulo de disco SGI com soma de verificao 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 ""
"----- parties -----\n"
"%*s Info Incio 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 inicializao: %s\n"
"----- entradas de diretrio -----\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 inicializao 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 inicializao longo demais: o mximo 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 inicializao 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 padro 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 inicializao 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 partio 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 partio 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 partio de disco inteiro deve iniciar no bloco 0,\n"
"no 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 partio 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 partio (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 partio %d no 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 partio %d no 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 parties %d e %d se sobrepem 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 no 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 partio de inicializao no 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 partio de permuta no 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 partio de permuta no 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 inicializao 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 parties no 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 partio 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 sobreposio de parties 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 parties.\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 sobreposio de parties 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 partio 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 sobreposio de parties 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 contedo anterior no 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 parmetros da partio %d.\n"
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tINCIO=%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 "No foi possvel 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 no 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 mltiplas 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 no est na fstab (e voc no 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 no 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: operao exclusiva de root"
diff --git a/po/sl.po b/po/sl.po
index 04ca92e4a..246816264 100644
--- 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 " Logien"
#. 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 ""
diff --git a/po/sv.po b/po/sv.po
index ea8f19937..3ffc7011f 100644
--- 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 "Oknd"
@@ -2743,7 +2743,7 @@ msgstr ""
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Start Brjan 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 strre n maximala %lld\n"
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 lgger 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 Brjan 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 mste vara en absolut icketom skvg,\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 fr lngt: 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 mste ha en fullstndig skvg.\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"
"\tfr skerhetskopior.\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 tcker hela hrddisken.\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 mste brja 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 hrddisken r %d diskblock lng.\n"
-#: fdisk/fdisksgilabel.c:463
+#: fdisk/fdisksgilabel.c:465
msgid "One Partition (#11) should cover the entire disk.\n"
msgstr "En partition (11) mste tcka hela hrddisken.\n"
-#: fdisk/fdisksgilabel.c:473
+#: fdisk/fdisksgilabel.c:475
#, c-format
msgid "Partition %d does not start on cylinder boundary.\n"
msgstr "Partition %d brjar inte p en jmn cylindergrns.\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 jmn cylindergrns.\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 "Oanvnt 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"
"Vxlingspartitionen 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"
"Vxlingspartitionen har ingen vxlingstyp.\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 "Tyvrr, 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 ""
"fr lov att bryta mot detta. Skriv in JA om du r sker 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 hrddisken?\n"
-#: fdisk/fdisksgilabel.c:635
+#: fdisk/fdisksgilabel.c:637
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Frsker att generera fullstndig 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 tckt 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 frst!\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"
"tcker hela hrddisken 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 hrddisken. Fixa det frst!\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 innehllet att vara sprlst 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 ""
"geometricylindervrdet %d.\n"
"Detta vrde kan vara avkortat fr 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 "Frsker att behlla parametrarna fr partition %d.\n"
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:743
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tBRJAN=%d\tLNGD=%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 "Frsker 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 gnger"
-#: 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 stmmer 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 frn %s"
-#: mount/umount.c:710
+#: mount/umount.c:713
msgid "umount: only root can do that"
msgstr "umount: endast root kan gra det"
diff --git a/po/tr.po b/po/tr.po
index c372ba46a..90e0cd966 100644
--- 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"
diff --git a/po/uk.po b/po/uk.po
index 32cbb89bc..1460c84db 100644
--- 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)"
diff --git a/sys-utils/dmesg.8 b/sys-utils/dmesg.8
index 8064b1d0e..36ce06ac1 100644
--- a/sys-utils/dmesg.8
+++ b/sys-utils/dmesg.8
@@ -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)