summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarel Zak2006-12-07 00:26:22 +0100
committerKarel Zak2006-12-07 00:26:22 +0100
commit0b0bb92085fc7a7e7d2afe984e43161a2f4ec140 (patch)
treee560f6b005f0e83713e8259f2f12806dd8d39ec6
parentImported from util-linux-2.12h tarball. (diff)
downloadkernel-qcow2-util-linux-0b0bb92085fc7a7e7d2afe984e43161a2f4ec140.tar.gz
kernel-qcow2-util-linux-0b0bb92085fc7a7e7d2afe984e43161a2f4ec140.tar.xz
kernel-qcow2-util-linux-0b0bb92085fc7a7e7d2afe984e43161a2f4ec140.zip
Imported from util-linux-2.12i tarball.
-rw-r--r--HISTORY13
-rw-r--r--MCONFIG5
-rw-r--r--VERSION2
-rwxr-xr-xconfigure26
-rw-r--r--fdisk/disksize.c2
-rw-r--r--fdisk/fdisksgilabel.c10
-rw-r--r--fdisk/sfdisk.c53
-rw-r--r--hwclock/cmos.c6
-rw-r--r--hwclock/kd.c16
-rw-r--r--login-utils/Makefile9
-rw-r--r--login-utils/chfn.c4
-rw-r--r--login-utils/chsh.c4
-rw-r--r--mount-2.12-fat.patch319
-rw-r--r--mount/fstab.c4
-rw-r--r--po/ca.po1025
-rw-r--r--po/cs.po1023
-rw-r--r--po/da.po1024
-rw-r--r--po/de.po1025
-rw-r--r--po/es.po1026
-rw-r--r--po/et.po1019
-rw-r--r--po/fi.po1024
-rw-r--r--po/fr.po1025
-rw-r--r--po/it.po1023
-rw-r--r--po/ja.po1024
-rw-r--r--po/nl.po1024
-rw-r--r--po/pt_BR.po1023
-rw-r--r--po/sl.po1017
-rw-r--r--po/sv.po1024
-rw-r--r--po/tr.po1024
-rw-r--r--po/uk.po1024
-rw-r--r--sys-utils/Makefile1
-rw-r--r--sys-utils/cyclades.h16
-rw-r--r--sys-utils/cytune.c7
33 files changed, 8828 insertions, 8043 deletions
diff --git a/HISTORY b/HISTORY
index 037f6ce69..4ce2b65c3 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,3 +1,16 @@
+util-linux 2.12i
+
+* MCONFIG: fix build conditions
+* chfn, chsh: add error checking
+* cytune: use local header cyclades.h
+* fdisk: fix default SGI volume header size (Eric Sandeen)
+* fstab.c: use strsignal() instead of sys_siglist[]
+* hwclock: use <sys/io.h> when available on i386
+* hwclock: dont try KDGHWCLK on archs other than __m68k__
+* sfdisk: correct typo in __attribute__used nonsense
+* sfdisk: use PACKED on __arm__ (Jeroen Dobbelaere)
+* sfdisk: fix warning printout
+
util-linux 2.12e,f,g,h
* cfdisk: avoid crash if no partition table
diff --git a/MCONFIG b/MCONFIG
index 230879269..1e6a6f87c 100644
--- a/MCONFIG
+++ b/MCONFIG
@@ -34,8 +34,7 @@ HAVE_SELINUX=no
HAVE_SHADOW=yes
# If HAVE_PASSWD is set to "yes", then passwd will not be built or
-# installed from the login-utils subdirectory (but login, chfn, chsh,
-# newgrp, and vipw *will* be installed).
+# installed from the login-utils subdirectory.
HAVE_PASSWD=no
# If you use chfn and chsh from this package, REQUIRE_PASSWORD will require
@@ -119,6 +118,8 @@ ifeq "$(ARCH)" "intel"
CPUHEAD=-m
else
CPUHEAD=-mcpu=i
+# recent versions want -march=i
+# must add the right test
endif
ifeq "$(CPU)" "i386"
CPUTAIL=386
diff --git a/VERSION b/VERSION
index b9fd55782..b40f0e4ae 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.12h
+2.12i
diff --git a/configure b/configure
index 8b0a96dbc..f98df5601 100755
--- a/configure
+++ b/configure
@@ -16,6 +16,7 @@
# H8. For nfsmount.h (nfsmount_xdr.c: int32_t): do we have <asm/types.h>?
# H9. For raw.c: do we have <linux/raw.h>?
# H10. For md5.c: do we have <stdint.h>?
+# H11. For cmos.c: do we have <sys/io.h>?
#
# Existence of functions:
# F1. For nfsmount.c: is inet_aton() available?
@@ -28,7 +29,7 @@
# F8. For fsck.cramfs.c: is lchown() available?
# F9. For cfdisk.c: is rpmatch() available?
#
-# 1. For sys-utils/cytune.c: do we need <linux/tqueue.h>?
+# 1. Deleted.
# 2. For cfdisk, setterm, more, ul: do we have ncurses? How installed?
# 3. For more: do we have libtermcap?
# 4. For chfn, chsh, login, newgrp, passwd: do we need -lcrypt?
@@ -174,6 +175,12 @@ if ./testincl "stdint.h"; then
fi
#
+# H11. For cmos.c: do we have <sys/io.h>?
+if ./testincl "sys/io.h"; then
+ echo "#define HAVE_sys_io_h" >> defines.h
+fi
+
+#
# Find out about the existence of functions
#
@@ -363,23 +370,6 @@ fi
rm -f conftest conftest.c
#
-# 1. cytune.c may need struct tq_struct
-#
-echo "
-#include <sys/types.h>
-#include <linux/cyclades.h>
-int main(){ exit(0); }
-" > conftest.c
-eval $compile
-if test -s conftest; then
- echo "You don't need <linux/tqueue.h>"
-else
- echo "#define NEED_tqueue_h" >> defines.h
- echo "You need <linux/tqueue.h>"
-fi
-rm -f conftest conftest.c
-
-#
# 2. How is [n]curses installed?
#
test_curses_h=0
diff --git a/fdisk/disksize.c b/fdisk/disksize.c
index a0a210e98..f5687d266 100644
--- a/fdisk/disksize.c
+++ b/fdisk/disksize.c
@@ -5,7 +5,7 @@ int disksize(int fd, unsigned long long *sectors) {
long sz;
long long b;
- err = ioctl (fd, BLKGETSIZE, &sz);
+ err = ioctl(fd, BLKGETSIZE, &sz);
if (err)
return err;
err = ioctl(fd, BLKGETSIZE64, &b);
diff --git a/fdisk/fdisksgilabel.c b/fdisk/fdisksgilabel.c
index c9ccd3e39..663e925aa 100644
--- a/fdisk/fdisksgilabel.c
+++ b/fdisk/fdisksgilabel.c
@@ -598,13 +598,11 @@ sgi_set_volhdr(void)
for (n=8; n<partitions; n++) {
if (!sgi_get_num_sectors(n)) {
/*
- * 5 cylinders is an arbitrary value I like
- * IRIX 5.3 stored files in the volume header
- * (like sash, symmon, fx, ide) with ca. 3200
- * sectors.
+ * Choose same default volume header size
+ * as IRIX fx uses.
*/
- if (heads * sectors * 5 < sgi_get_lastblock())
- sgi_set_partition(n, 0, heads * sectors * 5, SGI_VOLHDR);
+ if (4096 < sgi_get_lastblock())
+ sgi_set_partition(n, 0, 4096, SGI_VOLHDR);
break;
}
}
diff --git a/fdisk/sfdisk.c b/fdisk/sfdisk.c
index ea9773af2..5c0c8d29f 100644
--- a/fdisk/sfdisk.c
+++ b/fdisk/sfdisk.c
@@ -28,6 +28,7 @@
*
* Changes:
* 19990319 - Arnaldo Carvalho de Melo <acme@conectiva.com.br> - i18n
+ * 20040428 - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com> - added PACKED
* 20040824 - David A. Wheeler <dwheeler@dwheeler.com> - warnings to stderr
*/
@@ -99,8 +100,11 @@ warn(char *s, ...) {
va_list p;
va_start(p, s);
- if (!quiet)
- do_warn(s, p);
+ if (!quiet) {
+ fflush(stdout);
+ vfprintf(stderr, s, p);
+ fflush(stderr);
+ }
va_end(p);
}
@@ -131,14 +135,26 @@ fatal(char *s, ...) {
/*
* GCC nonsense - needed for GCC 3.4.x with -O2
+ *
+ * Maybe just test with #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 4) ?
*/
-#if defined(__GNUC__PREREQ) && __GNUC_PREREQ(3,4)
+#ifndef __GNUC_PREREQ
+#define __GNUC_PREREQ(x,y) 0
+#endif
+#if __GNUC_PREREQ(3,4)
#define __attribute__used __attribute__ ((used))
#else
#define __attribute__used
#endif
-/* Or test with #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 4) */
+/*
+ * arm needs PACKED - use it everywhere?
+ */
+#if defined(__GNUC__) && defined(__arm__)
+# define PACKED __attribute__ ((packed))
+#else
+# define PACKED
+#endif
/*
@@ -418,7 +434,8 @@ restore_sectors(char *dev) {
* 0 means unspecified / unknown
*/
struct geometry {
- unsigned long cylindersize;
+ unsigned long long total_size; /* in sectors */
+ unsigned long cylindersize; /* in sectors */
unsigned long heads, sectors, cylinders;
unsigned long start;
} B, F, U;
@@ -441,17 +458,27 @@ get_geometry(char *dev, int fd, int silent) {
R.sectors = g.sectors;
R.cylindersize = R.heads * R.sectors;
R.cylinders = 0;
+ R.total_size = 0;
if (disksize(fd, &sectors)) {
- if (!silent)
+ /* maybe an ordinary file */
+ struct stat s;
+
+ if (fstat(fd, &s) == 0 && S_ISREG(s.st_mode))
+ R.total_size = (s.st_size >> 9);
+ else if (!silent)
do_warn(_("Disk %s: cannot get size\n"), dev);
- } else if (R.cylindersize) {
+ } else
+ R.total_size = sectors;
+
+ if (R.cylindersize && R.total_size) {
sectors /= R.cylindersize;
cyls = sectors;
if (cyls != sectors)
cyls = ~0;
R.cylinders = cyls;
}
+
return R;
}
@@ -466,6 +493,10 @@ get_cylindersize(char *dev, int fd, int silent) {
B.cylinders = (U.cylinders ? U.cylinders : R.cylinders);
B.cylindersize = B.heads * B.sectors;
+ B.total_size = R.total_size;
+
+ if (B.cylinders == 0 && B.cylindersize != 0)
+ B.cylinders = B.total_size / B.cylindersize;
if (R.start && !force) {
warn(
@@ -495,7 +526,7 @@ get_cylindersize(char *dev, int fd, int silent) {
dev, B.cylinders, B.heads, B.sectors);
}
-typedef struct { unsigned char h,s,c; } chs; /* has some c bits in s */
+typedef struct { unsigned char h,s,c; } PACKED chs; /* has some c bits in s */
chs zero_chs = { 0,0,0 };
typedef struct { unsigned long h,s,c; } longchs;
@@ -652,8 +683,8 @@ struct partition {
unsigned char sys_type;
chs end_chs;
unsigned int start_sect; /* starting sector counting from 0 */
- unsigned int nr_sects; /* nr of sectors in partition */
-};
+ unsigned int nr_sects; /* nr of sectors in partition */
+} PACKED;
/* Unfortunately, partitions are not aligned, and non-Intel machines
are unhappy with non-aligned integers. So, we need a copy by hand. */
@@ -2936,7 +2967,7 @@ do_fdisk(char *dev){
fatal(_("Fatal error: cannot find %s\n"), dev);
}
if (!S_ISBLK(statbuf.st_mode)) {
- warn(_("Warning: %s is not a block device\n"), dev);
+ do_warn(_("Warning: %s is not a block device\n"), dev);
no_reread = 1;
}
fd = my_open(dev, !no_write, 0);
diff --git a/hwclock/cmos.c b/hwclock/cmos.c
index a5eec0372..8d497b27e 100644
--- a/hwclock/cmos.c
+++ b/hwclock/cmos.c
@@ -46,11 +46,15 @@
#include <unistd.h> /* for geteuid() */
#include <fcntl.h> /* for O_RDWR */
-
+#include "../defines.h" /* for HAVE_sys_io_h */
#include "nls.h"
#if defined(__i386__)
+#ifdef HAVE_sys_io_h
+#include <sys/io.h>
+#else
#include <asm/io.h> /* for inb, outb */
+#endif
#elif defined(__alpha__)
/* <asm/io.h> fails to compile, probably because of u8 etc */
extern unsigned int inb(unsigned long port);
diff --git a/hwclock/kd.c b/hwclock/kd.c
index dbbe758f4..cac767888 100644
--- a/hwclock/kd.c
+++ b/hwclock/kd.c
@@ -1,4 +1,15 @@
-/* kd.c - KDGHWCLK stuff, possibly m68k only */
+/* kd.c - KDGHWCLK stuff, possibly m68k only - deprecated */
+#ifndef __m68k__
+
+#include "clock.h"
+
+struct clock_ops *
+probe_for_kd_clock() {
+ return NULL;
+}
+
+#else /* __m68k__ */
+
#include <unistd.h> /* for close() */
#include <fcntl.h> /* for O_RDONLY */
#include <sysexits.h>
@@ -162,9 +173,7 @@ probe_for_kd_clock() {
}
if (con_fd < 0) {
/* probably KDGHWCLK exists on m68k only */
-#ifdef __m68k__
outsyserr(_("Can't open /dev/tty1 or /dev/vc/1"));
-#endif
} else {
if (ioctl(con_fd, KDGHWCLK, &t) == -1) {
if (errno != EINVAL)
@@ -174,3 +183,4 @@ probe_for_kd_clock() {
}
return ret;
}
+#endif /* __m68k__ */
diff --git a/login-utils/Makefile b/login-utils/Makefile
index baefa434c..6b05a1683 100644
--- a/login-utils/Makefile
+++ b/login-utils/Makefile
@@ -55,14 +55,13 @@ SELINUXOBJS=selinux_utils.o
endif
ifeq "$(HAVE_SHADOW)" "no"
+WHAT_TO_BUILD:=$(WHAT_TO_BUILD) all-putils
+WHAT_TO_INSTALL:=$(WHAT_TO_INSTALL) install-putils
ifeq "$(HAVE_PAM)" "no"
ifeq "$(HAVE_PASSWD)" "no"
-WHAT_TO_BUILD:=$(WHAT_TO_BUILD) all-passwd all-putils
-WHAT_TO_INSTALL:=$(WHAT_TO_INSTALL) install-passwd install-putils
+WHAT_TO_BUILD:=$(WHAT_TO_BUILD) all-passwd
+WHAT_TO_INSTALL:=$(WHAT_TO_INSTALL) install-passwd
endif
-else
-WHAT_TO_BUILD:=$(WHAT_TO_BUILD) all-putils
-WHAT_TO_INSTALL:=$(WHAT_TO_INSTALL) install-putils
endif
endif
diff --git a/login-utils/chfn.c b/login-utils/chfn.c
index 643a16319..834dedfd4 100644
--- a/login-utils/chfn.c
+++ b/login-utils/chfn.c
@@ -184,9 +184,9 @@ int main (int argc, char **argv) {
exit(1);
}
retcode = pam_acct_mgmt(pamh, 0);
- if (retcode == PAM_NEW_AUTHTOK_REQD) {
+ if (retcode == PAM_NEW_AUTHTOK_REQD)
retcode = pam_chauthtok(pamh, PAM_CHANGE_EXPIRED_AUTHTOK);
- } else if (retcode) {
+ if (retcode) {
puts(_("Password error."));
exit(1);
}
diff --git a/login-utils/chsh.c b/login-utils/chsh.c
index 03c0ec483..aa8e10dcd 100644
--- a/login-utils/chsh.c
+++ b/login-utils/chsh.c
@@ -181,9 +181,9 @@ main (int argc, char *argv[]) {
exit(1);
}
retcode = pam_acct_mgmt(pamh, 0);
- if (retcode == PAM_NEW_AUTHTOK_REQD) {
+ if (retcode == PAM_NEW_AUTHTOK_REQD)
retcode = pam_chauthtok(pamh, PAM_CHANGE_EXPIRED_AUTHTOK);
- } else if (retcode) {
+ if (retcode) {
puts(_("Password error."));
exit(1);
}
diff --git a/mount-2.12-fat.patch b/mount-2.12-fat.patch
new file mode 100644
index 000000000..0099bbf0a
--- /dev/null
+++ b/mount-2.12-fat.patch
@@ -0,0 +1,319 @@
+diff -uNr util-linux-2.12/mount/get_label_uuid.c ../patch/util-linux-2.12/mount/get_label_uuid.c
+--- util-linux-2.12/mount/get_label_uuid.c 2002-11-26 12:18:01.000000000 +0100
++++ ../patch/util-linux-2.12/mount/get_label_uuid.c 2003-10-20 18:27:56.000000000 +0200
+@@ -43,7 +43,139 @@
+ #endif
+ }
+
+-/* for now, only ext2, ext3, xfs, ocfs are supported */
++/* Remove trailing spaces */
++static void remtrailspc(char *label) {
++ char *c;
++
++ c = strchr(label, 0)-1;
++ while (c >= label && *c == ' ')
++ *(c--) = 0;
++}
++
++static int handle_fat_dirent(struct fat_dirent *dirent, char **label) {
++ size_t namesize;
++
++ /* end-of-directory marker */
++ if (!dirent->s_filename[0])
++ return -1;
++
++ /* valid volume label */
++ if ((dirent->s_attr == 0x08 || dirent->s_attr == 0x28) && dirent->s_filename[0] != 0xe5) {
++
++ /* sanity check */
++ if (dirent->s_size[0] || dirent->s_size[1] || dirent->s_size[2] || dirent->s_size[3] ||
++ dirent->s_cluster[0] || dirent->s_cluster[1])
++ return -1;
++
++ namesize = sizeof(dirent->s_filename);
++ if (!(*label = calloc(namesize + 1, 1)))
++ return -1;
++ memcpy(*label, dirent->s_filename, namesize);
++ (*label)[namesize] = 0;
++ remtrailspc(*label);
++
++ return 0;
++ }
++
++ return 1;
++}
++
++static int read_volume_label_fat(int fd, struct fat_super_block *fatsb, char **label) {
++ unsigned i, m;
++ off_t o;
++
++ m = assemble2le(fatsb->s_dirents); /* root directory entries */
++
++ o = (off_t) assemble2le(fatsb->s_ssec) * /* bytes per sector */
++ ((off_t) assemble2le(fatsb->s_rsecs) + /* reserved sectors */
++ (off_t) assemble2le(fatsb->s_spfat) * /* sectors per fat */
++ (off_t) fatsb->s_nfats); /* number of fats */
++
++ for (i = 0; i < m; i++) {
++ struct fat_dirent dirent;
++ int rv;
++
++ if (lseek(fd, o, SEEK_SET) != o ||
++ read(fd, &dirent, sizeof(dirent)) != sizeof(dirent))
++ return -1;
++
++ if ((rv = handle_fat_dirent(&dirent, label)) != 1)
++ return rv;
++
++ o += sizeof(dirent);
++ }
++
++ return -1;
++}
++
++static int read_volume_label_fat32(int fd, struct fat32_super_block *fat32sb, char **label) {
++ unsigned c;
++ off_t fo, b, o;
++ int i, ifat;
++ size_t m, cs;
++
++ ifat = fat32sb->s_mirror[0] & 128 ? (fat32sb->s_mirror[0] & 0xF) : 0;
++
++ if (ifat >= fat32sb->s_nfats)
++ return -1;
++
++ fo = (off_t) assemble2le(fat32sb->s_ssec) * /* bytes per sector */
++ ((off_t) assemble2le(fat32sb->s_rsecs) + /* reserved sectors */
++ (off_t) assemble4le(fat32sb->s_spfat) * /* sectors per fat */
++ (off_t) ifat); /* number of FAT used */
++
++ b = (off_t) assemble2le(fat32sb->s_ssec) * /* bytes per sector */
++ ((off_t) assemble2le(fat32sb->s_rsecs) + /* reserved sectors */
++ (off_t) assemble4le(fat32sb->s_spfat) * /* sectors per fat */
++ (off_t) fat32sb->s_nfats); /* number of FATs */
++
++ c = assemble4le(fat32sb->s_rcluster) & 0x0fffffffL;
++ if (c < 2 || c >= 0x0ffffff0)
++ return -1;
++
++ m = cs = assemble2le(fat32sb->s_ssec) * (size_t) fat32sb->s_scluster;
++ o = b + (off_t) cs*(c-2);
++
++ for (i = 0; i < 0xFFFF; i++) { /* safety against DoS attack */
++ struct fat_dirent dirent;
++ int rv;
++
++ if (lseek(fd, o, SEEK_SET) != o ||
++ read(fd, &dirent, sizeof(dirent)) != sizeof(dirent))
++ return -1;
++
++ if ((rv = handle_fat_dirent(&dirent, label)) != 1)
++ return rv;
++
++ if (m > sizeof(dirent)) {
++ m -= sizeof(dirent);
++ o += sizeof(dirent);
++ } else {
++ off_t d;
++
++ /* next cluster */
++
++ d = fo+4*c;
++ if (lseek(fd, d, SEEK_SET) != d ||
++ read(fd, &c, 4) != 4)
++ return -1;
++
++ c = assemble4le((char*) &c) & 0x0fffffffL;
++ if (c < 2 || c >= 0x0ffffff0) {
++ return -1;
++ }
++
++ m = cs;
++ o = b + cs*(c-2);
++ }
++ }
++
++
++ return -1;
++}
++
++
++/* for now, only ext2, ext3, xfs, ocfs, fat, fat32 are supported */
+ int
+ get_label_uuid(const char *device, char **label, char *uuid) {
+ int fd;
+@@ -54,8 +186,10 @@
+ struct jfs_super_block jfssb;
+ struct ocfs_volume_header ovh; /* Oracle */
+ struct ocfs_volume_label olbl;
++ struct fat_super_block fatsb;
++ struct fat32_super_block fat32sb;
+
+- fd = open(device, O_RDONLY);
++ fd = open(device, O_RDONLY);
+ if (fd < 0)
+ return rv;
+
+@@ -111,7 +245,87 @@
+ memcpy(*label, jfssb.s_label, namesize);
+ }
+ rv = 0;
+- }
++ } else if (lseek(fd, 0, SEEK_SET) == 0
++ && read(fd, (char*) &fat32sb, sizeof(fat32sb)) == sizeof(fat32sb)
++ && fat32sb.s_sig[0] == 0x55
++ && fat32sb.s_sig[1] == 0xAA
++ && (fat32sb.s_media & 0xF0) == 0xF0
++ && (fat32sb.s_spfat_old[0] == 0)
++ && (fat32sb.s_spfat_old[1] == 0)
++ && fat32sb.s_extsig == 0x29
++ && (memcmp(fat32sb.s_fs, "FAT32 ", 8) == 0)) {
++
++ *label = NULL;
++
++ /* If no root directory entry volume name was found use the one from the boot sector */
++ if (read_volume_label_fat32(fd, &fat32sb, label) != 0) {
++ if (memcmp(fat32sb.s_label, "NO NAME ", 11) != 0 &&
++ memcmp(fat32sb.s_label, " ", 11) != 0 &&
++ memcmp(fat32sb.s_label, "\0\0\0\0\0\0\0\0", 8) != 0) {
++
++ namesize = sizeof(fat32sb.s_label);
++ if ((*label = calloc(namesize + 1, 1)) != NULL) {
++ memcpy(*label, fat32sb.s_label, namesize);
++ (*label)[namesize] = 0;
++ remtrailspc(*label);
++ }
++ }
++ }
++
++ if (*label) {
++
++ /* Set UUID from serial */
++ uuid[0] = fat32sb.s_serial[3];
++ uuid[1] = fat32sb.s_serial[2];
++ uuid[2] = fat32sb.s_serial[1];
++ uuid[3] = fat32sb.s_serial[0];
++ memset(uuid+4, 0, 12);
++
++ rv = 0;
++ }
++ } else if (lseek(fd, 0, SEEK_SET) == 0
++ && read(fd, (char*) &fatsb, sizeof(fatsb)) == sizeof(fatsb)
++ && fatsb.s_sig[0] == 0x55
++ && fatsb.s_sig[1] == 0xAA
++ && (fatsb.s_media & 0xF0) == 0xF0
++ && fatsb.s_extsig == 0x29
++ && (memcmp(fatsb.s_fs, "FAT12 ", 8) == 0
++ || memcmp(fatsb.s_fs, "FAT16 ", 8) == 0
++ || memcmp(fatsb.s_fs, "FAT ", 8) == 0
++ || memcmp(fatsb.s_fs, "\0\0\0\0\0\0\0\0", 8) == 0)
++ && memcmp(fatsb.s_fs2, "FAT32 ", 8) != 0) {
++
++ *label = NULL;
++
++ if (read_volume_label_fat(fd, &fatsb, label) != 0) {
++
++ /* If no root directory entry volume name was found use the one from the boot sector */
++ if (memcmp(fatsb.s_label, "NO NAME ", 11) != 0 &&
++ memcmp(fatsb.s_label, " ", 11) != 0 &&
++ memcmp(fatsb.s_label, "\0\0\0\0\0\0\0\0", 8) != 0) {
++
++ namesize = sizeof(fatsb.s_label);
++ if ((*label = calloc(namesize + 1, 1)) != NULL) {
++ memcpy(*label, fatsb.s_label, namesize);
++ (*label)[namesize] = 0;
++ remtrailspc(*label);
++ }
++
++ }
++ }
++
++ if (*label) {
++
++ /* Set UUID from serial */
++ uuid[0] = fatsb.s_serial[3];
++ uuid[1] = fatsb.s_serial[2];
++ uuid[2] = fatsb.s_serial[1];
++ uuid[3] = fatsb.s_serial[0];
++ memset(uuid+4, 0, 12);
++
++ rv = 0;
++ }
++ }
+
+ close(fd);
+ return rv;
+diff -uNr util-linux-2.12/mount/linux_fs.h ../patch/util-linux-2.12/mount/linux_fs.h
+--- util-linux-2.12/mount/linux_fs.h 2003-07-05 22:16:32.000000000 +0200
++++ ../patch/util-linux-2.12/mount/linux_fs.h 2003-10-20 18:07:06.000000000 +0200
+@@ -122,13 +122,65 @@
+ u_char s_dummy[3];
+ u_char s_os[8]; /* "MSDOS5.0" or "MSWIN4.0" or "MSWIN4.1" */
+ /* mtools-3.9.4 writes "MTOOL394" */
+- u_char s_dummy2[32];
++ u_char s_ssec[2]; /* bytes per sector */
++ u_char s_scluster; /* sectors per cluster */
++ u_char s_rsecs[2]; /* reserved sectors */
++ u_char s_nfats; /* number of FATs */
++ u_char s_dirents[2]; /* maximum root directory entries */
++ u_char s_nsecs[2]; /* total number of sectors */
++ u_char s_media; /* media type, upper nibble is 0xF */
++ u_char s_spfat[2]; /* sectors per fat */
++
++ u_char s_dummy2[14];
++ u_char s_extsig; /* extended signature */
++ u_char s_serial[4]; /* serial number */
+ u_char s_label[11]; /* for DOS? */
+- u_char s_fs[8]; /* "FAT12 " or "FAT16 " or all zero */
++ u_char s_fs[8]; /* "FAT12 " or "FAT16 " or all zero */
+ /* OS/2 BM has "FAT " here. */
+- u_char s_dummy3[9];
+- u_char s_label2[11]; /* for Windows? */
+- u_char s_fs2[8]; /* garbage or "FAT32 " */
++
++ u_char s_dummy3[20];
++ u_char s_fs2[8]; /* "FAT32 " */
++
++ u_char s_dummy4[420];
++ u_char s_sig[2]; /* 55 AA */
++};
++
++struct fat32_super_block {
++ u_char s_dummy[3];
++ u_char s_os[8]; /* "MSDOS5.0" or "MSWIN4.0" or "MSWIN4.1" */
++ /* mtools-3.9.4 writes "MTOOL394" */
++
++ u_char s_ssec[2]; /* bytes per sector */
++ u_char s_scluster; /* sectors per cluster */
++ u_char s_rsecs[2]; /* reserved sectors */
++ u_char s_nfats; /* number of FATs */
++ u_char s_dirents[2]; /* maximum root directory entries */
++ u_char s_nsecs[2]; /* total number of sectors */
++ u_char s_media; /* media type, upper nibble is 0xF */
++ u_char s_spfat_old[2]; /* sectors per fat */
++
++ u_char s_dummy2[12];
++ u_char s_spfat[4]; /* sectors per FAT */
++ u_char s_mirror[2]; /* mirror flag */
++ u_char s_version[2]; /* fs version */
++ u_char s_rcluster[4]; /* root directory cluster */
++
++ u_char s_dummy3[18];
++ u_char s_extsig; /* extended signature 0x29 */
++ u_char s_serial[4]; /* serial number */
++ u_char s_label[11]; /* label */
++ u_char s_fs[8]; /* filesystem type "FAT32 " */
++
++ u_char s_dummy4[420];
++ u_char s_sig[2]; /* 55 AA */
++};
++
++struct fat_dirent {
++ u_char s_filename[11]; /* Filename with extension */
++ u_char s_attr; /* File attribute flags */
++ u_char s_dummy[14];
++ u_char s_cluster[2]; /* Starting cluster */
++ u_char s_size[4]; /* File size */
+ };
+
+ #define XFS_SUPER_MAGIC "XFSB"
diff --git a/mount/fstab.c b/mount/fstab.c
index 2f28f12c0..b1343f32b 100644
--- a/mount/fstab.c
+++ b/mount/fstab.c
@@ -399,9 +399,11 @@ static int we_created_lockfile = 0;
static int signals_have_been_setup = 0;
/* Ensure that the lock is released if we are interrupted. */
+extern char *strsignal(int sig); /* not always in <string.h> */
+
static void
handler (int sig) {
- die (EX_USER, "%s", sys_siglist[sig]);
+ die(EX_USER, "%s", strsignal(sig));
}
static void
diff --git a/po/ca.po b/po/ca.po
index b34e17f69..1f5c63baf 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-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+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"
@@ -115,7 +115,7 @@ msgstr "%s: Error de ioctl en %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr "RO RA SSZ BSZ Comença Sec. Mida Dispositiu\n"
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "ús:\n"
@@ -1264,11 +1264,11 @@ msgstr " %s [ -c | -y | -n | -d ] dispositiu\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] dispositiu\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Inutilitzable"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Espai lliure"
@@ -1410,8 +1410,8 @@ msgstr "Tecla no permesa"
msgid "Press a key to continue"
msgstr "Premeu una tecla per a continuar"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primària"
@@ -1419,8 +1419,8 @@ msgstr "Primària"
msgid "Create a new primary partition"
msgstr "Crear una nova partició primària"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Lògica"
@@ -1428,7 +1428,7 @@ msgstr "Lògica"
msgid "Create a new logical partition"
msgstr "Crear una nova partició lògica"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Cancel·lar"
@@ -1464,163 +1464,179 @@ msgstr "Afegir partició al final de l'espai lliure"
msgid "No room to create the extended partition"
msgstr "No hi ha espai per a crear la partició estesa"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "no hi ha cap taula de particions.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "No hi ha taula de partició o aquesta té una firma desconeguda"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Sols imprimir la taula de particions"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "no hi ha cap taula de particions.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Desitgeu començar amb una taula buida [s/N]?"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Heu especificat més cilindres dels que caben al disc"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "No es pot obrir la unitat de disc"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "El disc obert és de sols lectura; no teniu permís per a escriure-hi"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "No es pot obtindre la mida del disc"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Partició primària incorrecta"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Partició lògica incorrecta"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Atenció!! Això pot destruir les dades del vostre disc!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Esteu segurs de que voleu escriure la taula de particions al disc? (si o "
"no): "
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "no"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "No s'ha escrit la taula de particions al disc"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "si"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Si us plau escriviu `si' o `no'"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Escrivint la taula de particions al disc..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Taula de particions del disc, escrita"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"S'ha escrit la taula de particions, però la nova lectura de la taula ha "
"fallat. Reinicieu per a actualitzar-la."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"No hi han particions primàries marcades com a d'arrencada. Així la MBR del "
"DOS no podrà arrencar."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Hi ha més d'una partició primària marcada com d'arrencada. Així la MBR del "
"DOS no podrà arrencar."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr ""
"Escriviu el nom del fitxer o premeu Intro per a visualitzar-lo en pantalla: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "No es pot obrir el fitxer '%s'"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Unitat de disc: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Sector 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Sector %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Cap "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/Lòg"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primària"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Lògica"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Desconegut"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Arrencada"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
msgid "None"
msgstr "Cap"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Taula de particions per a %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
msgid " First Last\n"
msgstr " Primer Últim\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1630,7 +1646,7 @@ msgstr ""
" # Tipus Sector Sector Despl. Long. (ID) Sist. Fitxers "
"Etiqueta\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1639,467 +1655,467 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Inici--- ----Final---- Inici Nombre de\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Indi. Cap. Sec. Cil. ID Cap. Sec. Cil. Sector Sectors\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "En cru"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Imprimeix la taula utilitzant el format de dades en cru"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Sectors"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Imprimeix la taula ordenada per sectors"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Taula"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Sols imprimir la taula de particions"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "No imprimir la taula"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Pantalla d'ajuda per a cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Això és el cfdisk, un programa per al particionament del disc basat en"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "curses, el qual us permetrà crear, suprimir i modificar particions en"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "el vostre disc dur."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Comandament Significat"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "----------- ----------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b Fixa l'etiqueta d'arrencada en la partició actual"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Suprimeix l'actual partició"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g Canvia paràmetres de cilindres, capçals i sectors per pista"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " ATENCIÓ: Aquesta opció sols hauria de ser usada per gent"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " que conegui el funcionament de la mateixa."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Imprimeix aquesta pantalla"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximitza l'utilització de disc de la partició actual"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Nota: Aquesta opció pot fer la partició incompatible"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " amb DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Crea una nova partició des de l'espai lliure"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr ""
" p Imprimeix la taula de particions en la pantalla o en un fitxer"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Hi han diversos formats diferents per a la partició"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " entre els que podeu escollir:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - Dades en cru (exactament el que s'escriurà al disc)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Taula ordenada per sectors"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Taula en format en cru"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q Surt del programa sense escriure la taula de particions"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Canvia el tipus del sistema de fitxers"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Canvia les unitats de la mida visualitzava de la partició"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Alterna entre MB, sectors i cilindres"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr " W Escriu la taula de particions al disc (W en majúscula)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Donat que això destruirà les dades del disc, haureu"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr " de confirmar o denegar escrivint `si' o"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " `no'"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Fletxa amunt Desplaça el cursor a l'anterior partició"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Fletxa avall Desplaça el cursor a la següent partició"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "Ctrl-L Redibuixa la pantalla"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Imprimeix aquesta pantalla"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Nota: Tots els comandaments es poden escriure en majúscules o"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "minúscules (excepte W per a escriure)."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cilindres"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Canviar la geometria dels cilindres"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Capçals"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Canviar la geometria dels capçals"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Canviar la geometria dels sectors"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Fet"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "S'ha finalitzat el canvi de geometria"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Escriviu el nombre de cilindres: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Valor dels cilindres no permes"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Escriviu el nombre de capçals: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Valor dels capçals no permes"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Escriviu el nombre de sectors per pista: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Valor dels sectors no permes"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Escriviu el tipus del sistema de fitxers: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "No es pot canviar el tipus del sistema de fitxers a buit"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "No es pot canviar el tipus del sistema de fitxers a estes"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Desc.(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Pri/Lòg"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Desconegut (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Unitat de disc: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Mida: %lld octets, %lld MB"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Mida: %lld octets, %lld.%lld GB"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Capçals: %d Sectors per pista: %d Cilindres: %lld"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Nom"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Etiquetes"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Tipus part."
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Tipus Sis.Fitx."
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Etiqueta]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
msgid " Sectors"
msgstr " Sectors"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
msgid " Cylinders"
msgstr " Cilindres"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
msgid " Size (MB)"
msgstr " Mida (MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
msgid " Size (GB)"
msgstr " Mida (GB)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Arrencada"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Establir l'etiqueta de la partició actual com d'arrencada"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Suprimir"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Suprimir l'actual partició"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometria"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Canviar la geometria del disc (sols usuaris experts)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Ajuda"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Imprimir pantalla d'ajuda"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Maximitza"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr ""
"Maximitzar la utilització del disc en la partició actual (sols usuaris "
"experts)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Nova"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Crear una nova partició des de l'espai lliure"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Imprimir"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Imprimir la taula de particions en la pantalla o en un fitxer"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Sortir"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Sortir del programa sense escriure la taula de particions"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Tipus"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Canviar el tipus del sistema de fitxers (DOS, Linux, OS/2, etc.)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Unitats"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Canviar les unitats de la mida de la partició (MB, sect., cil.)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Escriure"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "Escriure la taula de particions al disc (això pot destruir les dades)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "No es pot fer aquesta partició arrencable"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "No es pot suprimir una partició buida"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "No es pot maximitzar aquesta partició"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Aquesta partició és inutilitzable"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Aquesta partició ja està en ús"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "No es pot canviar el tipus d'una partició buida"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "No hi ha més particions"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Comandament no permès"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2378,12 +2394,12 @@ msgstr "Heu de definir els"
msgid "heads"
msgstr "capçals"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "sectors"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "cilindres"
@@ -2793,13 +2809,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:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2954,7 +2970,7 @@ msgstr "El disc %s no conté una taula de particions vàlida\n"
msgid "Cannot open %s\n"
msgstr "No es pot obrir %s\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "no es pot obrir %s\n"
@@ -3623,20 +3639,20 @@ msgstr "SI\n"
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:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "S'intenta generar una entrada de disc sencer automàticament.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "El disc sencer ja està cobert amb particions.\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3644,17 +3660,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:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " Últim %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3666,7 +3682,7 @@ msgstr ""
"contingut serà irrecuperable.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3678,12 +3694,12 @@ msgstr ""
"la geometria del cilindre. Aquest valor es podria tuncar per a dispositius > "
"33,8 GB.\n"
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, 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:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tCOMENÇAMENT=%d\tLONGITUD=%d\n"
@@ -4285,90 +4301,90 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "error cercant en %s - no es pot cercar a %lu\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "error cercant: S'esperava 0x%08x%08x, s'ha obtingut 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "memòria esgotada - abandonant\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "error de lectura en %s - no es pot llegir el sector %lu\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "ERROR: El sector %lu no té una signatura msdos\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "error d'escriptura en %s - no es pot escriure el sector %lu\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "no es pot obrir el sector de la partició desat al fitxer (%s)\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "error d'escriptura en %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "no es pot fer stat al fitxer de restaurar la partició (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
"mida incorrecte del fitxer de restitució de la partició - no es restituirà\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "memòria esgotada?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "no es pot obrir el fitxer de restituir la partició (%s)\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "error llegint %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "no es pot obrir per a escriptura el dispositiu %s\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "error escrivint el sector %lu en %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Disc %s: No es pot obtindre la geometria\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Disc %s : No es pot obtrindre'n la mida.\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4380,22 +4396,22 @@ msgstr ""
"probablement no tingui cap sentit.\n"
"[Useu l'opció --force si de veres ho desitgeu.]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Atenció: HDIO_GETGEO indica que hi han %lu capçals\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Atenció: HDIO_GETGEO indica que hi han %lu sectors\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Atenció: HDIO_GETGEO indica que hi han %lu cilindres\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4404,7 +4420,7 @@ msgstr ""
"Atenció: Improbable nombre de sectors (%lu); normalment com a molt 63\n"
"Això donarà problemes amb el programari que usi adreces Cil./Capç./Sector\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4413,7 +4429,7 @@ msgstr ""
"\n"
"Disc %s: %lu cilindres, %lu capçals, %lu sectors/pista\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
@@ -4421,7 +4437,7 @@ msgstr ""
"%s de partició %s té un valor imposible per al capçal: %lu (hauria d'estar "
"entre 0 i %lu)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4430,7 +4446,7 @@ msgstr ""
"%s de partició %s té un valor imposible per al sector: %lu (hauria d'estar "
"entre 1 i %lu)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4439,7 +4455,7 @@ msgstr ""
"%s de partició %s té un valor imposible per als cilindres: %lu (hauria "
"d'estar entre 0 i %lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4447,11 +4463,11 @@ msgstr ""
"Id Nom\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Rellegint la taula de particions...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4459,31 +4475,31 @@ msgstr ""
"El comandament per a rellegir la taula de particions ha fallat\n"
"Reinicieu el sistema ara, avans d'usar mkfs\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Error tancant %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: Aquesta partició no existeix\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "Format no reconegut; usant els sectors\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# taula de particions de %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "format no implementat; usant %s\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4492,11 +4508,11 @@ msgstr ""
"Unitats = cilindres de %lu octets, blocs de 1024 octets, contant des de %d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Disp. Arr. Comença Acaba #cil. #blocs Id Sistema\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4505,11 +4521,11 @@ msgstr ""
"Unitats = sectors de 512 octets, contant des de %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Disp. Arr Comença Acaba #sectors Id Sistema\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4518,11 +4534,11 @@ msgstr ""
"Unitats = blocs de 1024 octets, contant des de %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Disp. Arr. Comença Acaba #blocs Id Sistema\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4531,33 +4547,33 @@ msgstr ""
"Unitats = MiB de 1048576 octets, blocs de 1024 octets, comptant des de %d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Disp. Arr. Comen. Acaba MB #blocs Id Sistema\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"\t\tcomença: (cil.,capç.,sect.) esperat (%ld,%ld,%ld) trobat (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"\t\tacaba: (cil.,capç.,sect.) esperat (%ld,%ld,%ld) trobat (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr ""
"la partició cava en el cilindre %ld, més enllà de l'acabament del disc\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "No s'han trobat particions\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4568,52 +4584,52 @@ msgstr ""
" per a Cil./Capç./Sect.=*/%ld/%ld (en comptes de %ld/%ld/%ld).\n"
"Per a aquest llistat s'assumirà aquesta geometria.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "no hi ha cap taula de particions.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "estranyament, sols hi han definides %d particions.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr ""
"Atenció: La partició %s té una mida 0 però no està marcada com a buida\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Atenció: La partició %s té una mida 0 i és d'arrencada\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "Atenció: La partició %s té una mida 0 i no comença en el zero\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Atenció: La partició %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "no està contingut a dins de la partició %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Atenció: Les particions %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "i %s es solapen\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4622,17 +4638,17 @@ msgstr ""
"Atenció: La partició %s conté part de la taula de particions\n"
"(sector %lu) i la destruirà en quant s'ompli\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Atenció: La partició %s comença en el sector 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Atenció: La partició %s acaba més enllà de l'acabament del disc\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4640,17 +4656,17 @@ msgstr ""
"Entre les particions primàries, almenys una pot ser estesa\n"
" (encara que això no és un problema sota Linux)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Atenció: La partició %s no comença en al límit d'un cilindre\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Atenció: La partició %s no acaba al límit d'un cilindre\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4659,7 +4675,7 @@ msgstr ""
"Això no és problema per al LILO, però el MBR del DOS no arrencarà aquest "
"disc.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4667,7 +4683,7 @@ msgstr ""
"Atenció: Usualment sols es pot arrencar des de particions primàries.\n"
"El LILO no tindrà en compte l'etiqueta `d'arrencada'.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4676,11 +4692,11 @@ msgstr ""
"Això no és problema per al LILO, però el MBR de DOS no arrencarà aquest "
"disc.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
msgid "start"
msgstr "començament"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
@@ -4688,24 +4704,24 @@ msgstr ""
"partició %s: Començament: (cil.,capç.,sect.) s'esperava (%ld,%ld,%ld) s'ha "
"trobat (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
msgid "end"
msgstr "acaba"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"partició %s: Acaba: (cil.,capç.,sect.) s'esperava (%ld,%ld,%ld) s'ha trovat "
"(%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr ""
"La partició %s acaba en el cilindre %ld, més enllà de l'acabament del disc\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
@@ -4714,7 +4730,7 @@ msgstr ""
"Atenció: Es desplaça el començament de la partició estesa de %ld a %ld\n"
"(Sols amb el propòsit de llistar-la. No es canviarà el seu contingut).\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4723,133 +4739,133 @@ msgstr ""
"El DOS i Linux interpretaran el contingut d'un mode diferent.\n"
"\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "masses particions - s'ignoran les anteriors al núm: (%d)\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "l'arbre de particions?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "detectat Gestor de Disc - no es pot tractar això\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "signatura DM6 trobada - abandonant\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "estrany..., una partició estesa de mida 0?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "estrany..., una partició BSD de mida 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: Partició no reconeguda\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "s'ha especificat l'etiqueta -n: No s'ha canviat res\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Falla al desar els antics sectors - avortant\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "Falla a l'escriure la partició en %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "línia d'entrada llarga o incompleta - abandonant\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "error d'entrada: S'esperava `=' després del camp %s\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "error d'entrada: Caràcter inesperat %c després del camp %s\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "entrada desconeguda: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "número massa gran\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "dades estranyes després del número\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "no hi ha espai per al descriptor de partició\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "no es pot crear una partició estesa adjunta\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "masses camps a l'entrada\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "No queda més espai\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Tipus no permés\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
"Atenció: La mida aconseguida (%lu) excedeix la màxima acceptable de (%lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Atenció: Partició buida\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Atenció: Començament de la partició incorrecte (abans %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "Etiqueta d'arrencada desconeguda - escolliu - o *\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "especificació parcial de cil,capç,sect?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Partició estesa a on no s'esperava\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "entrada dolenta\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "masses particions\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4861,48 +4877,48 @@ msgstr ""
"Normalment sols necessitarieu especificar <començament> i <mida> (i potser "
"<tipus>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "versió"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Ús: %s [opcions] dispositiu ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "dispositiu: Semblant a /dev/hda o /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "opcions útils:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [o --show-size]: Mostra la mida d'una partició"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr ""
" -c [o --id]: Imprimeix o canvia l'identificador de la partició"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [o --list]: Mostra les particions de cada dispositiu"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
" -d [o --dump]: Igual, però amb un format adequat per l'entrada "
"posterior"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr ""
" -i [o --increment]: Nombre de cilindres, etc. des de 1 en comptes de 0"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
@@ -4910,56 +4926,56 @@ msgstr ""
" -uS, -uB, -uC, -uM: Accepta/reporta en unitats de sectors/blocs/"
"cilindres/MB"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [o --list-types]: Llista els tipus de particions conegudes"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
" -D [o --DOS]: Per compatibilitat amb DOS: Es perd una mica d'espai"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr ""
" -R [o --re-read]: Fa que el nucli rellegeixi la taula de particions"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# : Sols canvia la partició amb el número #"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : No escriu realment al disc"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr ""
" -O fitxer : Desa els sectors que es sobreescriuran en un fitxer"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I fitxer: Restaura aquests sectors altra vegada"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [o --version]: Imprimeix la versió"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [o --help]: Imprimeix aquest missatge"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "opcions perilloses:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr ""
" -g [o --show-geometry]: Imprimeix la idea del nucli de la geometria"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -4968,119 +4984,119 @@ msgstr ""
"esteses\n"
" o espera els seus descriptors en l'entrada"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
" -L [o --Linux]: No mostra avisos sobre aspectes irrellevants per "
"a Linux"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [o --quiet]: Suprimeix els missatges d'advertència"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " Podeu modificar la geometria detectada usant:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr ""
" -C# [o --cylinders #]: Estableix el nombre de cilindres que s'usaran"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -H# [o --heads #]: Estableix el nombre de capçals que s'usaran"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr " -S# [o --sectors #]: Estableix el nombre de sectors que s'usaran"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Podeu desactivar tota comprovació de consistència amb:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr ""
" -f [o --force]: Farà el que li digueu, encara que sigui estúpid"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Ús:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s dispositiu\t\t enumera les particions actives del dispositiu\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr ""
"%s dispositiu n1 n2 ... activar particions n1 ..., desactivar la resta\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr "%s -Un perifèric\t activa la partició n, desactiva la resta\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "cap comandament?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "total: %d blocs\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "ús: sfdisk --print-id dispositiu partició_número\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "ús: sfdisk --change-id dispositiu número_partició Id\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "ús: sfdisk --id dispositiu partició_número [Id]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "sols podeu especificar un dispositiu (excepte amb -l o -s)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "no es pot obrir %s per a lectura-escriptura\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "no es pot obrir %s per a lectura\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: Correcte\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s : %ld cilindres, %ld capçals, %ld sectors/pista\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "no es pot aconseguir la mida de %s"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "octet actiu incorrecte: 0x%x en comptes de 0x80\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5088,7 +5104,7 @@ msgstr ""
"Fet\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5097,35 +5113,35 @@ msgstr ""
"Teniu %d particions primàries actives. Això no és important per al LILO,\n"
"però el MBR del DOS sols pot arrencar discs amb una partició activa.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "la partició %s té l'identificador %x i no està oculta\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "Identificador dolent %lx\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Aquest disc està actualment en ús.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Error fatal: No es pot trobar %s\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Atenció: %s no és un dispositiu de blocs\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Comprovant que en aquest moment ningú estigui usant aquest disc...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5138,28 +5154,28 @@ msgstr ""
"swapoff en totes les particions d'intercanvi del disc.\n"
"Useu l'etiqueta --no-reread per a suprimir aquesta comprovació.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Useu l'etiqueta --force per a obviar totes les comprovacions.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "Correcte\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Antiga situació:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "La partició %d no existeix; no es pot canviar\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Nova situació:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5167,19 +5183,19 @@ msgstr ""
"No veig aquestes particions adequades - no he canviat res.\n"
"(Si realment desitgeu fer això, useu l'opció --force).\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "No veig això adequat - probablement hagueu de respondre No\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Esteu satisfet amb això? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Desitgeu escriure això al disc? [ynq] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5187,15 +5203,15 @@ msgstr ""
"\n"
"sfdisk: Final prematur de l'entrada\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Sortint - no s'ha canviat res\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Si us plau responeu amb una: y,n,q\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5203,7 +5219,7 @@ msgstr ""
"S'ha escrit correctament la nova taula de particions\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5309,44 +5325,44 @@ msgstr "getopt (millorat) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "error intern; contacteu amb l'autor."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "arrencant des de MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Rellotge BCD Ruffian\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "port del rellotge ajustat a 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: Comprovació de %s atòmic ha fallat per 1000 iteracions!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "No es pot obrir /dev/port: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "Ha fallat l'obtenció del permís perque no s'ha intentat.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr ""
"%s no pot aconseguir l'accés al port de E/S: La crida iopl(3) ha fallat.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Probablement necessitareu privilegis de root.\n"
@@ -5821,36 +5837,37 @@ msgstr ""
"Useu l'opció --debug per a veure els detalls de la recerca d'un mètode "
"d'accés.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Esperant en bucle a que canviï l'hora de KDGHWCLK\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "Falla de ioctl KDGHWCLK al llegir l'hora"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Temps excedit durant l'espera del canvi d'hora.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "Falla de ioctl KDGHWCLK al llegir l'hora en el bucle"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "La comprovació de ioctl() no ha llegit l'hora des de %s"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "Falla de ioctl KDGHWCLK"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "No es pot obrir /dev/tty1 o /dev/vc/1"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "Falla de ioctl KDGHWCLK"
@@ -6189,7 +6206,7 @@ msgstr "Error de contrasenya."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Contrasenya: "
@@ -6248,7 +6265,7 @@ msgstr ""
msgid "Finger information changed.\n"
msgstr "Informació del finger modificada.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "l'assignació de memòria (malloc) ha fallat"
@@ -6992,7 +7009,7 @@ msgstr "No es pot executar executar umount, abandonant l'operació umount."
msgid "Unmounting any remaining filesystems..."
msgstr "Desmuntant els sistemes de fitxers restants..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: No es pot desmuntar %s: %s\n"
@@ -7637,17 +7654,17 @@ msgstr "Missatge des de %s@%s (com a %s) el %s a les %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Missatge des de %s@%s el %s a les %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "advertència: Error al llegir %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "advertència: No es pot obrir %s: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: No es pot obrir %s; en el seu lloc s'usarà %s\n"
@@ -7656,42 +7673,42 @@ msgstr "mount: No es pot obrir %s; en el seu lloc s'usarà %s\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"no es pot crear el fitxer de blocat %s: %s (useu l'etiqueta -n per a "
"modificar aquest valor)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"no es pot enllaçar el fitxer de blocat %s: %s (useu l'etiqueta -n per a "
"modificar aquest valor)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
"no es pot obrir el fitxer de blocat %s: %s (useu l'etiqueta -n per a "
"modificar aquest valor)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "No es pot blocar al fitxer de blocat %s: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "no es pot blocar al fitxer de blocat %s: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "temps d'espera excedit"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7700,22 +7717,22 @@ msgstr ""
"No es pot crear l'enllaç %s\n"
"Potser hi hagi un fitxer de blocat obsolet?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "no es pot obrir %s (%s) - mtab no actualitzat"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "error escrivint %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "error al canviar el mode de %s: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "no es pot reanomenar %s per %s: %s\n"
@@ -7775,27 +7792,27 @@ msgstr "mount: No es pot trobar cap dispositiu loop lliure"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "No es pot blocar en memòria, sortint.\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): Correcte\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: No es pot suprimir el dispositiu %s: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): Correcte\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
"Aquest mount s'ha compilat sense suport loop. Si us plau, recompileu-lo.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7808,191 +7825,191 @@ msgstr ""
" %s -d dispositiu_loop # elimina\n"
" %s [ -e xifrat ] [ -o desplaça. ] disp_loop fitxer # configura\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "no hi ha prou memòria"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Quan es va compilar el suport loop no estava disponible. Si us plau, "
"recompileu.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr "[mntent]: Atenció: No hi ha cap nova línia al final de %s\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: La línia %d de %s és incorrecta%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; la resta del fitxer s'ignorarà"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: Segons mtab, %s ja està muntat en %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: Segons mtab, %s està muntat en %s"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: No es pot obrir %s per a escriptura: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: Error escrivint %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: Error al canviar el mode de %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s sembla espai d'intercanvi - no muntat"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "el muntatge ha fallat"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: Sols l'usuari root pot muntar %s en %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: El dispositiu loop està especificat dues vegades"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: El tipus està especificat dues vegades"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: Saltant-se la configuració d'un dispositiu loop\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: S'usarà el dispositiu loop %s\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: Falla al configurar el dispositiu loop\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: Configuració correcta del dispositiu loop\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: No es pot obrir %s: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: L'argument per a -p o --pass-fd hauria de ser un número"
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: No es pot obrir %s per a establir-ne la velocitat"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: No es pot establir la velocitat de: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: No es pot establir el canvi: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr ""
"mount: Aquesta versió ha estat compilada sense suport per al tipus `nfs'"
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount : Falla al muntar la versió 4 de nfs, escolliu la 3...\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: No es pot determinar el tipus del sistema de fitxers i no n'heu "
"especificat cap"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: Haureu d'especificar el tipus del sistema de fitxers"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: El muntatge ha fallat"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: El punt de muntatge %s no és un directori"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: Permís denegat"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: Haureu de ser un superusuari per a usar mount"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s està ocupat"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc ja està muntat"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s ja està muntat o %s està ocupat"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: El punt de muntatge %s no existeix"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: El punt de muntatge %s és un enllaç simbòlic sense destí"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: El dispositiu especial %s no existeix"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8001,12 +8018,12 @@ msgstr ""
"mount: El dispositiu especial %s no existeix\n"
" (una ruta prefixada no és un directori)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s encara no està muntat o una opció és incorrecta"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -8015,35 +8032,41 @@ msgstr ""
"mount: Tipus del sistema de fitxers incorrecte, opció incorrecta,\n"
" superbloc incorrecte en %s o masses sistemes de fitxers muntats"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "taula de dispositius muntats completa"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: No es pot llegir el superbloc"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "umount: %s: Dispositiu desconegut"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: El tipus del sistema de fitxers %s no està suportat pel nucli"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l Llistar els tipus de sistemes de fitxers coneguts"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: Probablement volíeu referir-vos a %s"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: Potser volíeu referir-vos a iso9660 ?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: Potser volíeu referir-vos a iso9660 ?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8051,12 +8074,12 @@ msgstr ""
"fitxers %s no està suportat"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s no és un dispositiu de blocs, i stat falla?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8065,51 +8088,51 @@ msgstr ""
"mount: El nucli no reconeix %s com a un dispositiu de blocs\n"
" (potser fent `insmod controlador'?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s no és un dispositiu de blocs (proveu amb `-o loop')"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s no és un dispositiu de blocs"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s no és un dispositiu de blocs vàlid"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "dispositiu de blocs "
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount : No es pot muntar %s%s com a sols lectura"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr ""
"mount : %s%s està protegit contra escriptura però se li ha donat l'etiqueta "
"explicita `-w'"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr ""
"mount: %s%s està protegit contra escriptura; es muntarà en sols lectura"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
"mount: No s'ha especificat cap tipus; s'assumeix nfs per als dos punts\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: No s'ha especificat cap tipus - s'assumeix smbfs per al prefix //\n"
@@ -8117,22 +8140,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: Executant en segon plà \"%s\"\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: Abandonant \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s ja està muntat en %s\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8178,34 +8201,34 @@ msgstr ""
"usant -U uuid. D'altres opcions: [-nfFrsvw] [-o opcions].\n"
"Per a més detalls, escriviu man 8 mount.\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: Sols l'usuari root pot fer això"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: No s'ha trobat %s; s'està creant...\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: No troba aquesta partició"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: Muntant %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "no s'ha muntat res"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: No es pot trobar %s en %s"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: No es pot trobar %s en %s o %s"
@@ -8222,30 +8245,30 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: UUID incorrecte"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: Error a l'intentar endevinar el tipus del sistema de fitxers\n"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: No heu especificat un tipus de sistema de fitxers per a %s\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " Es provarà amb tots els tipus indicats en %s o %s\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " i sembla que això és espai d'intercanvi\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " Provaré amb el tipus %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Provant amb %s\n"
@@ -8478,12 +8501,12 @@ msgstr "umount: No es pot tornar a muntar %s en sols lectura\n"
msgid "%s umounted\n"
msgstr "%s desmuntat\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr ""
"umount: No es pot trobar la llista dels sistemes de fitxers per a desmuntar"
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
@@ -8494,42 +8517,42 @@ msgstr ""
"opcions]\n"
" umount [-f] [-r] [-n] [-v] especial | node...\n"
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "S'intenta desmuntar %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "No es pot trobar a %s en mtab\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s no està muntat (segons mtab)"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: Sembla que %s ha estat muntat diverses vegades"
-#: mount/umount.c:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: El muntatge de %s no concorda amb el fstab"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, 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:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: Sols el root pot fer això"
@@ -8542,7 +8565,7 @@ msgstr ""
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Ús: ctrlaltdel maquin.|progr.\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8552,7 +8575,7 @@ msgstr ""
"de %d\n"
"i la velocitat de transferència màxima en caracteres per segon fou de %f\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8563,32 +8586,32 @@ msgstr ""
"el màxim de caràcters en fifo fou de %d\n"
"i la velocitat de transferència màxima en caracteres per segon fou de %f\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Valor d'interval no vàlid: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Valor establert no vàlid: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Valor per defecte no vàlid: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Valor de l'hora establerta no vàlid: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Valor de l'hora per defecte no vàlid: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8597,56 +8620,56 @@ msgstr ""
"Ús: %s [-q [-i interval]] ([-s valor]|[-S valor]) ([-t valor]|[-T valor]) [-"
"g|-G] fitxer [fitxer...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "No es pot obrir %s: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "No es pot establir %s al llindar %d: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "No es pot establir %s al llindar de l'hora %d: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "No es pot obtindre el llindar per a %s: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "No es pot obtindre el temps d'espera per a %s: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld el llindar i %ld el temps d'espera actuals\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld el llindar i %ld el temps d'espera per defecte\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "No es pot determinar el manegador de senyals"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "gettimeofday ha fallat"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "No es pot emetre CYGETMON en %s: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8654,12 +8677,12 @@ msgstr ""
"%s: %lu enters, %lu/%lu caràcters; fifo: %lu llindar, %lu temps_espera, %lu "
"màxim, %lu ara\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f enters/seg.; %f rebut, %f enviat (caràcters/seg.)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8667,7 +8690,7 @@ msgstr ""
"%s: %lu enters, %lu caràcters; fifo: %lu llindar, %lu temps_espera, %lu "
"màxim, %lu ara\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f enters/seg.; %f rebut (caràcters/seg.)\n"
@@ -9960,6 +9983,10 @@ msgstr "Línia d'entrada massa llarga.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Memòria esgotada a l'augmentar la mida de la memòria temporal.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr ""
+#~ "mount: El tipus del sistema de fitxers %s no està suportat pel nucli"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "Falla del ioctl BLKGETSIZE per a %s\n"
diff --git a/po/cs.po b/po/cs.po
index cb3d5e8cf..bd2b1530d 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-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+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"
@@ -111,7 +111,7 @@ msgstr "%s: chyba zpisu na %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr ""
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "Pouit:\n"
@@ -1219,11 +1219,11 @@ msgstr " %s [ -c | -y | -n | -d ] zazen\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] zazen\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Nepouiteln"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Voln prostor"
@@ -1369,8 +1369,8 @@ msgstr "Chybn klvesa"
msgid "Press a key to continue"
msgstr "Stisknte klvesu pro pokraovn"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primrn"
@@ -1378,8 +1378,8 @@ msgstr "Primrn"
msgid "Create a new primary partition"
msgstr "Vytvoit nov primrn diskov oddl"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Logick"
@@ -1387,7 +1387,7 @@ msgstr "Logick"
msgid "Create a new logical partition"
msgstr "Vytvoit nov logick diskov oddl"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Zruit"
@@ -1423,161 +1423,176 @@ msgstr "Vytvoit diskov oddl na konci volnho prostoru"
msgid "No room to create the extended partition"
msgstr "Pro rozen diskov oddl nen dostatek msta"
-#: fdisk/cfdisk.c:1503
+#: fdisk/cfdisk.c:1502
#, fuzzy
-msgid "No partition table or unknown signature on partition table"
+msgid "No partition table.\n"
+msgstr "Nebyla nalezena dn tabulka rozdlen disku.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Chybn podpis na tabulce rozdlen disku"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Vytisknout pouze tabulku rozdlen disku"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "Nebyla nalezena dn tabulka rozdlen disku.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr ""
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Zadal jste vt poet cylindr, ne se vejde na disk."
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "Disk nelze otevt"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "Disk byl oteven pouze pro ten - nemte prva pro zpis"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Velikost disku nelze zjistit"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Chybn primrn diskov oddl"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Chybn logick diskov oddl"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Varovn!! Toto me vst ke znien dat na Vaem disku!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Jste si jist, e chcete uloit tabulku rozdlen disku na disk? (ano i ne):"
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "ne"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "Tabulka rozdlen disku nebyla uloena"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "ano"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Zadejte `ano' i `ne'"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Ukldm tabulku rozdlen disku na disk"
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Tabulka rozdlen disku byla uloena na disk"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Tabulka byla uloena, ale nepodailo se ji znovu nast. Restartujte systm."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"dn primrn diskov oddl nen startovac. DOS MBR takto nenastartuje."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Vce ne 1 primrn diskov oddl je startovac. DOS MBR takto nenastartuje."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Zadejte nzev souboru i stisknte RETURN pro zobrazen: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "Soubor '%s' nelze otevt"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Disk: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " dn "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primrn"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Logick"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Neznm"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Startovac"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, fuzzy, c-format
msgid "(%02X)"
msgstr "Nez(%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
#, fuzzy
msgid "None"
msgstr "Hotovo"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Tabulka rozdlen disku pro %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
#, fuzzy
msgid " First Last\n"
msgstr " Prvn Posledn\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
#, fuzzy
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
@@ -1586,7 +1601,7 @@ msgstr ""
" # Typ Sektor Sektor Posun Dlka ID systmu soubor "
"Pznaky\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1596,472 +1611,472 @@ msgstr ""
"---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Potek--- ----Konec---- Poten\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
#, fuzzy
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Pz Hlav Sekt Cyl ID Hlav Sekt Cyl sektor Sektor\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "Pm"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Vytisknout tabulku v pmm datovm formtu"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Sektory"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Vytisknout tabulku seazenou dle sektor"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Tabulka"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Vytisknout pouze tabulku rozdlen disku"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Netisknout tabulku"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Npovda pro cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Toto je cfdisk, program pro vytven diskovch oddl zaloen"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "na knihovn curses. Umouje vytven, mazn a modifikaci"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "diskovch oddl na Vaem pevnm disku."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Pkaz Vznam"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b Pepne aktulnmu oddlu pznak startovatelnosti"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Smae aktuln oddl"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Zmn geometrii"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " VAROVN: Tato volba by mla bt pouvna pouze lidmi,"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " kte vd, co in."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Vype tuto npovdu"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximln zvt aktuln diskov oddl "
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Poznmka: Toto me uinit oddl nekompatibiln s"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2 ..."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Vytvoit na volnm mst nov oddl"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p Vype tabulku rozdlen disku na obrazovku i do souboru"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Pi vpisu tabulky rozdlen disku si mete zvolit"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " z nkolika formt:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - Pm (pesn to, co by bylo zapsno na disk)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Tabulka seazen dle sektor"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Tabulka v pmm formtu"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q Ukon program bez uloen tabulky rozdlen disku"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Zmn typ systmu soubor"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Zmn jednotky pro zobrazen velikosti oddlu"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Cykluje mezi MB, sektory a cylindry"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr " W Ulo tabulku rozdlen disku (pouze velk W)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Jeliko to me zniit na disku, muste to potvrdit"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr " nebo odmtnout napsnm `yes' nebo"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " `no'"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Nahoru Pesune kurzor na pedchzejc oddl."
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Dol Pesune kurzor na dal oddl."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Pekresl obrazovku"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Vype tuto npovdu"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Poznmka: Vechny pkazy mohou bt zadny malmi i velkmi psmeny"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "(s vyjmkou zpisu - W)."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cylindry"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Zmn geometrii cylindr"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Hlavy"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Zmn geometrii hlav"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Zmn geometrii sektor"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Hotovo"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Geometrie zmnna"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Zadejte poet cylindr: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Chybn poet cylindr"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Zadejte poet hlav: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Chybn poet hlav"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Zadejte poet sektor na stopu: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Chybn poet sektor"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Zadejte typ systmu soubor: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Nelze nastavit typ SS na przdn"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Nelze nastavit typ SS na rozen"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Nez(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Neznm (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Disk: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Velikost v bajtech: %lld"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Velikost v bajtech: %lld"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Hlav: %d Sektor na stopu: %d Cylindr: %d"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Nzev"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Pznaky"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Typ oddlu"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Typ SS"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Popis]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
#, fuzzy
msgid " Sectors"
msgstr " Sektory"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
#, fuzzy
msgid " Cylinders"
msgstr "Cylindry"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
#, fuzzy
msgid " Size (MB)"
msgstr "Velikost (MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
#, fuzzy
msgid " Size (GB)"
msgstr "Velikost (GB)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Start"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Pepne pznak startovatelnosti aktulnmu diskovmu oddlu"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Smazat"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Smae aktuln diskov oddl"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometrie"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Zmn geometrii disku (pouze pro odbornky)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Npovda"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Vype npovdu"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Zvten"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr ""
"Zvt velikost aktulnho diskovho oddlu na maximum (pouze pro odbornky)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Nov"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Vytvo nov diskov oddl ve volnm prostoru"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Tisk"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Vype tabulku rozdlen disku (na obrazovku i do souboru)"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Konec"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Ukon program bez uloen tabulky rozdlen disku"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Druh"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Zmn typ systmu soubor (DOS, Linux, OS/2 atd.)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Jednotky"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Zmn jednotky, ve kterch je udvna velikost diskovho oddlu"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Uloit"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "Ulo tabulku rozdlen disku na disk (me zniit data)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Tento oddl nelze nastavit jako startovac."
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Przdn diskov oddl nelze smazat."
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "Tento diskov oddl nelze zvtit."
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Tento diskov oddl je nepouiteln."
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Tento diskov oddl je ji pouvn."
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Typ przdnho diskovho oddlu nelze zmnit."
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "dn dal diskov oddly"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Chybn pkaz"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
#, fuzzy
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-2000 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2341,12 +2356,12 @@ msgstr "Muste nastavit"
msgid "heads"
msgstr "hlavy"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "sektory"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "cylindry"
@@ -2755,14 +2770,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:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2906,7 +2921,7 @@ msgstr "Na disku %s nen korektn tabulka rozdlen disku.\n"
msgid "Cannot open %s\n"
msgstr "%s nelze otevt.\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "%s nelze otevt.\n"
@@ -3573,19 +3588,19 @@ msgstr ""
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:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Pokoum se automaticky vytvoit poloku pro cel disk.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "Diskov oddly ji zabraj cel prostor disky.\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3593,17 +3608,17 @@ msgstr ""
"Doporuuje se, aby jedenct diskov oddl zaujmal cel\n"
"prostor disku a byl typu `SGI svazek'\n"
-#: fdisk/fdisksgilabel.c:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " Posledn %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3615,7 +3630,7 @@ msgstr ""
"pochopiteln dostupn.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3623,12 +3638,12 @@ msgid ""
"This value may be truncated for devices > 33.8 GB.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr "Pokoum se zachovat parametry diskovho oddlu %d.\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tZATEK=%d\tDLKA=%d\n"
@@ -4236,90 +4251,90 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "chyba posunu ukazovtka na %s - ukazovtko nelze posunout na %lu\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr ""
"chyba pi posunu ukazovtka: poadavek 0x%08x%08x, vsledek 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "nedostatek pamti - konm\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "chyba ten na %s - sektor %lu nelze st\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "CHYBA: sektor %lu nem msdos podpis\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "chyba zpisu na %s - sektor %lu nelze zapsat\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "soubor pro uloen sektor (%s) nelze otevt\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "chyba zpisu na %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "voln stat pro soubor s uloenmi sektory (%s) selhalo\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr "soubor s uloenmi sektory m chybnou velikost - nebude obnoven\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "nedostatek pamti?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "soubor s uloenmi sektory (%s) nelze otevt\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "chyba pi ten %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "zazen %s nelze otevt pro zpis\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "chyba pi zpisu sektoru %lu na %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Disk %s: geometrii nelze zjistit\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Disk %s: velikost nelze zjistit\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4330,22 +4345,22 @@ msgstr ""
"cel disk. Pouit fdisku je v tom ppad pravdpodobn zbyten\n"
"[Pouijte pepna --force pokud to opravdu chcete.]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Varovn: dle HDIO_GETGEO je poet hlav %lu\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Varovn: dle HDIO_GETGEO je poet sektor %lu\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Varovn: dle BLKGETSIZE/HDIO_GETGEO je poet cylindr %lu\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4354,7 +4369,7 @@ msgstr ""
"Varovn: podivn poet sektor (%lu) - obvykle nebv vce ne 63\n"
"To zpsob problmy vem programm, kter pouvaj CHS adresovn.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4363,13 +4378,13 @@ msgstr ""
"\n"
"Disk %s: cylindr: %lu, hlav: %lu, sektor/stopu: %lu\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
msgstr "%s diskovho oddlu %s m chybn poet hlav: %lu (mlo by bt 0-%lu)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4377,7 +4392,7 @@ msgid ""
msgstr ""
"%s diskovho oddlu %s m chybn poet sektor: %lu (mlo by bt 1-%lu)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4385,17 +4400,17 @@ msgid ""
msgstr ""
"%s diskovho oddlu %s m chybn poet cylindr: %lu (mlo by bt 0-%lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
msgstr "Id Nzev\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Natm znovu tabulku rozdlen disku ...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4403,31 +4418,31 @@ msgstr ""
"Nepodailo se znovu nast tabulku rozdlen disku.\n"
"Restartujte nyn, ped pouitm mkfs, systm.\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Chyba pi zavrn %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "diskov oddl %s neexistuje\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "Neznm formt - pouvm sektory\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# tabulka rozdlen disku pro %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "nepouvan formt - pouvm %s\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4436,12 +4451,12 @@ msgstr ""
"Jednotky = cylindry po %lu bajtech, bloky po 1024 bajtech, potno od %d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
#, fuzzy
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Zaz Boot Zatek Konec #cylind #bloky Id Systm\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4450,12 +4465,12 @@ msgstr ""
"Jednotky = sektory po 512 bajtech, potno od %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
#, fuzzy
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Zaz Boot Zatek Konec #sektory Id Systm\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4464,12 +4479,12 @@ msgstr ""
"Jednotky = bloky po 1024 bajtech, potno od %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
#, fuzzy
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Zaz Boot Zatek Konec #bloky Id Systm\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, fuzzy, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4479,31 +4494,31 @@ msgstr ""
"d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
#, fuzzy
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Zaz Boot Zatek Konec MB #bloky Id Systm\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tzatek: (c,h,s) pedpoklad (%ld,%ld,%ld) nalezeno (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tkonec: (c,h,s) pedpoklad (%ld,%ld,%ld) nalezeno (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr "diskov oddl kon na cylindru %ld, t.j. za koncem disku\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Nebyly nalezeny dn diskov oddly\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, fuzzy, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4514,52 +4529,52 @@ msgstr ""
"pro C/H/S=*/%ld/%ld (msto %ld/%ld/%ld).\n"
"Zobrazuji za pouit tto geometrie.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "Nebyla nalezena dn tabulka rozdlen disku.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "Zvltn - poet definovanch diskovch oddl je pouze %d.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr ""
"Varovn: diskov oddl %s m velikost 0 a nen oznaen jako przdn.\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Varovn: diskov oddl %s m velikost 0 a je startovac.\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "Varovn: diskov oddl %s m velikost 0 a nenulov zatek.\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Varovn: diskov oddl %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "nen obsaen v diskovm oddlu %s.\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Varovn: diskov oddly %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "a %s se navzjem pekrvaj.\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4569,17 +4584,17 @@ msgstr ""
"lu)\n"
"a v ppad zaplnn ji zni\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Varovn: diskov oddl %s zan na sektoru 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Varovn: diskov oddl %s pesahuje za konec disku.\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4587,17 +4602,17 @@ msgstr ""
"Pouze jeden z primrnch diskovch oddl me bt rozenm.\n"
" (akoliv v Linux to nen problm)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Varovn: diskov oddl %s nezan na hranici cylindru.\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Varovn: diskov oddl %s nekon na hranici cylindru.\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4605,7 +4620,7 @@ msgstr ""
"Varovn: vce ne jeden primrn diskov oddl je oznaen jako startovac.\n"
"LILU to nein problmy, ale DOS MBR z tohoto disku nenastartuje.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4613,7 +4628,7 @@ msgstr ""
"Varovn: obyejn je mon startovat pouze z primrnch diskovch oddl|.\n"
"LILO nebude brt ohled na pznak 'startovac'.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4621,12 +4636,12 @@ msgstr ""
"Varovn: dn primrn diskov oddl nen oznaen jako startovac.\n"
"LILU to nein problmy, ale DOS z tohoto disku nenastartuje.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
#, fuzzy
msgid "start"
msgstr "stav"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
@@ -4634,24 +4649,24 @@ msgstr ""
"diskov oddl %s: zatek: (c,h,s) pedpoklad (%ld,%ld,%ld), nalezeno\n"
"(%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
#, fuzzy
msgid "end"
msgstr "odesln"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"diskov oddl %s: konec: (c,h,s) pedpoklad (%ld,%ld,%ld), nalezeno\n"
"(%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr "diskov oddl %s kon na cylindru %ld, t.j. za koncem disku\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
@@ -4660,7 +4675,7 @@ msgstr ""
"Varovn: zatek rozenho diskovho oddlu posunut z %ld na %ld.\n"
"(Pouze pro ely vpisu. Nemte jeho obsah.)\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4668,134 +4683,134 @@ msgstr ""
"Varovn: rozen diskov oddl nezan na hranici cylindru.\n"
"DOS a Linux budou jeho obsah interpretovat rozdln.\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "pli mnoho diskovch oddl - ignoruji > %d\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "strom diskovch oddl?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "nalezen Disk Manager - s tm neumm pracovat\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "nalezen DM6 podpis - konm\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "zvltn..., rozen diskov oddl o velikosti 0?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "zvltn..., BSD diskov oddl o velikosti 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " diskov oddl %s nen znm\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "byl zadn pepna -n: Nic nebylo zmnno\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Chyba pi ukldn starch sektor - konm\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "Chyba pi zpisu na diskov oddl %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "pli dlouh i nepln dek - konm\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "vstupn chyba: po poloce %s jsem oekval znak `='\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "vstupn chyba: neoekvan znak %c po poloce %s\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "nerozpoznan vstup: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "slo je pli velik\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "nesmysly za slem\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "nen msto pro popis diskovho oddlu\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "okoln roziujc diskov oddl nelze vytvoit\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "pli mnoho vstupnch poloek\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "Ji nejsou voln bloky\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Chybn typ\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
"Varovn: zadan velikost(%ld) pekrauje maximln povolenou velikost (%"
"lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Varovn: przdn diskov oddl\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Varovn: chybn zatek diskovho oddlu (dvj %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "nerozpoznan pznak 'startovac' - zvolte - i *\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "nepln c,h,s specifikace?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Rozen diskov oddl na neoekvanm mst\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "chybn vstup\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "pli mnoho diskovch oddl\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4807,100 +4822,100 @@ msgstr ""
"<zatek> <velikost> <typ [E,S,L,X,hex]> <startovac [-,*]> <c,h,s> <c,h,s>\n"
"Obvykle je teba zadat pouze <zatek> a <velikost> (a mon <typ>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "verze"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Pouit: %s [pepnae] zazen ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "zazen: nco jako /dev/hda i /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "uiten pepnae:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [i --show-size]: vype velikost diskovho oddlu"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr " -c [i --id]: vype i zmn Id diskovho oddlu"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [i --list]: ke kadmu zazen vype diskov oddly"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
" -d [i --dump]: idem, ale ve formtu vhodnm k dalmu zpracovn"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr " -i [i --increment]: sluje cylindry etc. od 1 msto od 0"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
msgstr ""
" -uS, -uB, -uC, -uM: jako jednotky pouije Sektory/Bloky/Cylindry i MB"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [i --list-types]:vype znm typy diskovch oddl"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr " -D [i --DOS]: pro kompatibilitu s DOSEM: ubr trochu msta"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr ""
" -R [i --re-read]: donut jdro znovu nast tabulku rozdlen disku"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# : zmn pouze diskov oddl s slem #"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : dn zmny nebudou uloeny na disk"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr " -O SOUBOR : ulo zmnn sektory do SOUBORU"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I SOUBOR : obnov tyto sektory ze SOUBORU"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [i --version]: vype informace o verzi"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [i --help]: vype tuto npovdu"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "nebezpen pepnae:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr ""
" -g [i --show-geometry]: vype informace o geometrii, kter\n"
" udruje jdro"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -4908,116 +4923,116 @@ msgstr ""
" -x [i --show-extended]: vype informace o rozench diskovch\n"
" oddlech a na vstupu bude oekvat jejich popis"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
" -L [i --Linux]: problmy nepodstatn pro Linux budou ignorovny"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [i --quiet]: nebude vypisovat varovn hlky"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " Nalezenou geometrii mete pepsat pomoc:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr " -C# [i --cylinders #]:nastav poet cylindr"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -H# [i --heads #]: nastav poet hlav"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr " -S# [i --sectors #]: nastav poet cylindr"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Ovovn konzistence mete vypnout pomoc:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr " -f [i --force]: akceptuje veker - i nesmysln - poadavky"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Pouit:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s zazen\t\t vype aktivn diskov oddly na danm zazen\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr ""
"%s zazen n1 n2 ... aktivuje diskov oddly n1 ..., deaktivuje ostatn\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr "%s -An zazen\t aktivuje diskov oddly n ..., deaktivuje ostatn\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "dn pkaz?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "celkov poet blok: %d\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "Pouit: sfdisk --print-id zazen slo diskovho oddlu\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "Pouit: sfdisk --change-id zazen Id diskovho oddlu\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "Pouit: sfdisk --id zazen slo diskovho oddlu [Id]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "mete zadat pouze jedno zazen (vyjmkou jsou pepnae -l a -s)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, fuzzy, c-format
msgid "cannot open %s read-write\n"
msgstr "%s nelze otevt.\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, fuzzy, c-format
msgid "cannot open %s for reading\n"
msgstr "%s pro ten nelze otevt"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: OK\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ld cylindr, %ld hlav, %ld sektor/stopu\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "nelze zjistit velikost %s"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "chybn aktivn bajt: 0x%x msto 0x80\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5025,7 +5040,7 @@ msgstr ""
"Hotovo\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5035,35 +5050,35 @@ msgstr ""
"MBR\n"
"nastartuje pouze z disku s jednm aktivnm diskovm oddlem.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "diskov oddl %s m id %x a nen skryt\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "Id %lx je chybn\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Tento disk je prv pouvn.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Fatln chyba: %s nelze nalzt\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Varovn: %s nen blokovm zazenm\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Ovuji, zda tento disk nen prv pouvn ...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5076,28 +5091,28 @@ msgstr ""
"vechny odkldac prostory na tomto disku. K potlaen tto kontroly mete\n"
"pout pepna --no-reread.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Pouijte pepna --force k potlaen vekerch kontrol.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "OK\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Star situace:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "Diskov oddl %d neexistuje. Nelze jej zmnit.\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Nov situace:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5105,19 +5120,19 @@ msgstr ""
"Toto rozloen diskovch oddl se mi nelb - nic nemnm.\n"
"(Pokud jej opravdu chcete pout, pak zadejte pepna --force.)\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "Toto se mi nelb - ml byste odpovdt NO\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Vyhovuje Vm to? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Uloit na disk? [ynq] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5125,15 +5140,15 @@ msgstr ""
"\n"
"sfdisk: pedasn konec vstupu\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Konm - nebyly uinny dn zmny\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Odpovzte prosm y,n i q\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5141,7 +5156,7 @@ msgstr ""
"Nov tabulka rozdlen disku byla spn uloena.\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5243,43 +5258,43 @@ msgstr "getopt (rozen) 1.1.2\n"
msgid "internal error, contact the author."
msgstr "Vnitn chyba, oznamte ji autorovi."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "sputn pomoc MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "hodnoty uloeny v BCD tvaru\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "vstupn/vstupn port pro pstup k hodinm nastaven na 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "pouit pepna --funky-toy!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: 1000 nespnch pokus o atomick proveden %s!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "/dev/port nelze otevt: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "Jeliko jsem se nesnail, nepodailo se mi zskat prva pro pstup.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s: pstup k portu nelze zskat: voln iopl(3) selhalo.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Pravdpodobn je teba mt prva superuivatele.\n"
@@ -5733,36 +5748,37 @@ msgid ""
"method.\n"
msgstr "Pro zjitn podrobnost pouijte pepna --debug.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Ve smyce se pokoum zjistit as pomoc KDGHWCLK.\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "voln KDGHWCLK ioctl selhalo."
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "V asovm limitu se nepodailo zjistit as.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "voln KDGHWCLK ioctl ve smyce selhalo."
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "as se pomoc voln ioctl() pro %s nepodailo zjistit"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "voln ioctl KDSHWCLK selhalo"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "/dev/tty1 ani /dev/vc/1 nelze otevt"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "voln ioctl KDGHWCLK selhalo"
@@ -6089,7 +6105,7 @@ msgstr "Chybn heslo."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Heslo: "
@@ -6147,7 +6163,7 @@ msgstr "Finger informace *NEBYLY* zmnny. Zkuste to opt pozdji.\n"
msgid "Finger information changed.\n"
msgstr "Finger informace byly zmnny.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "voln malloc selhalo"
@@ -6884,7 +6900,7 @@ msgstr ""
msgid "Unmounting any remaining filesystems..."
msgstr "Odpojuji vechny zbvajc systmy soubor..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: %s nelze odpojit: %s\n"
@@ -7531,17 +7547,17 @@ msgstr "Zprva od %s@%s (jako %s) na %s v %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Zprva od %s@%s na %s v %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "varovn: chyba pi ten %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "varovn: %s nelze otevt: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: %s nelze otevt - pouvm %s\n"
@@ -7550,42 +7566,42 @@ msgstr "mount: %s nelze otevt - pouvm %s\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"zamykac soubor %s nelze vytvoit: %s\n"
"(pouijte pepna -n pro vynechn zpisu do mtab)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"voln link pro zamykac soubor %s selhalo: %s\n"
"(pouijte pepna -n pro vynechn zpisu do mtab)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
"zamykac soubor %s nelze otevt: %s\n"
"(pouijte pepna -n pro vynechn zpisu do mtab)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Zamykac soubor %s nelze zamknout: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "Zamykac soubor %s nelze zamknout: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "vyprel as"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7594,22 +7610,22 @@ msgstr ""
"Odkaz %s nelze vytvoit.\n"
"Nen nkde zastaral zamykac soubor?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "nelze otevt %s (%s) - mtab nebyl aktualizovn"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "chyba pi zpisu %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "chyba pi zmn mdu %s: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "%s nelze pejmenovat na %s: %s\n"
@@ -7671,26 +7687,26 @@ msgstr "mount: dn voln loop zazen nelze najt"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Nelze zamknout v pamti. Konm.\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): spch\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: zazen %s nelze smazat: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): spch\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Tento program byl peloen bez podpory pro loop. Pelote jej znovu.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7703,186 +7719,186 @@ msgstr ""
" %s -d loop zazen # smae\n"
" %s [ -e ifra ] [ -o posun ] loop zazen soubor # nastav\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "Nedostatek pamti"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr "Podpora pro loop nebyla pi pekladu zadna. Pelote program znovu.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr "[mntent]: varovn: %s nen ukoneno novou dkou\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: dek %d v %s je chybn%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; ignoruji zbytek souboru"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: podle mtab je %s ji pipojeno na %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: podle mtab je %s pipojeno na %s"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: %s nelze otevt pro zpis: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: chyba pi zpisu %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: chyba pi zmn mdu %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s vypad jako odkldac prostor - nepipojeno"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "pipojen se nezdailo"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: pouze superuivatel me pipojit %s na %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: zazen loop bylo zadno dvakrt"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: typ byl zadn dvakrt"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: peskakuji nastaven loop zazen\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: chystm se pout zazen loop %s\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: nepodailo se nastavit zazen loop\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: zazen loop bylo korektn nastaveno\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: %s nelze otevt: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:687
+#: mount/mount.c:669
#, fuzzy, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: %s nelze pro nastaven rychlosti otevt"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: rychlost nelze nastavit: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: voln fork selhalo: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: tato verze byla peloena bez podpory pro typ `nfs'"
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: chyba s nfs mount verze 4, zkoum verzi 3..\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr "mount: typ systmu soubor nebyl zadn a ani jej nelze zjistit"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: muste zadat typ systmu soubor"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: pipojen se nezdailo"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: ppojn bod %s nen adresem"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: pstup odmtnut"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: mount me pouvat pouze superuivatel"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s je ji pipojeno"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc je ji pipojeno"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s je ji pipojeno, i je %s ji pouvno"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: ppojn bod %s neexistuje"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: ppojn bod %s je symbolickm odkazem, jen nikam neukazuje"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: speciln zazen %s neexistuje"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7891,12 +7907,12 @@ msgstr ""
"mount: speciln zazen %s neexistuje\n"
" (nzev cesty nezan adresem)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s jet nen pipojeno i chybn pepna"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -7905,46 +7921,52 @@ msgstr ""
"mount: chybn typ ss, chybn pepna, chybn superblok na %s\n"
" nebo pli mnoho pipojench systm soubor"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "tabulka pipojen je pln"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: superblok nelze pest"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "umount: blokov zazen %s je neznm"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: typ ss %s nen podporovn jdrem"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l vypsat znm typy systm soubor"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: pravdpodobn jste myslel %s"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: mon jste myslel iso9660 ?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: mon jste myslel iso9660 ?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr "mount: %s m chybn slo zazen, i ss typ %s nen podporovn"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s nen blokovm zazenm a voln stat selhalo?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -7952,47 +7974,47 @@ msgid ""
msgstr ""
"mount: jdro nerozpoznalo %s jako blokov zazen (mon `insmod ovlada'?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s nen blokovm zazenm (mon pome `-o loop'?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s nen blokovm zazenm"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s nen platnm blokovm zazenm"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "blokov zazen"
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "umount: %s%s nelze pipojit v reimu pouze pro ten"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s je chrnno proti zpisu, pipojuji pouze pro ten"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s je chrnno proti zpisu, pipojuji pouze pro ten"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr "mount: nebyl zadn typ - budu pouvat nfs kvli dvojtece\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
#, fuzzy
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr "mount: nebyl zadn typ - budu pouvat smbfs kvli dvojtece\n"
@@ -8000,22 +8022,22 @@ msgstr "mount: nebyl zadn typ - budu pouvat smbfs kvli dvojtece\n"
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: pracuji na pozad \"%s\"\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: konm \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s je ji pipojeno na %s\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
#, fuzzy
msgid ""
"Usage: mount -V : print version\n"
@@ -8064,34 +8086,34 @@ msgstr ""
"Dal pepnae: [-nfFrsvw] [-o volby].\n"
"Dal informace viz man(8).\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: toto me provst pouze superuivatel"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: %s nebylo nalezeno - vytvm jej..\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: dn odpovdajc diskov oddl nebyl nalezen"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: pipojuji %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "nebyl pipojen dn diskov oddl"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: %s nelze v %s nalzt"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: %s nelze nalzt v %s ani %s"
@@ -8107,31 +8129,31 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: chybn UUID"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
#, fuzzy
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: muste zadat typ systmu soubor"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: nezadal jste typ systmu soubor pro %s\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " Vyzkoum vechny typy v %s i %s\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " a vypad to, e se jedn o odkldac prostor\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " Vyzkoum typ %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Pouvm %s.\n"
@@ -8366,11 +8388,11 @@ msgstr "umount: %s nelze znovu pipojit v reimu pouze pro ten\n"
msgid "%s umounted\n"
msgstr "%s odpojeno\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr "umount: seznam systm soubor na odpojen nelze nalzt"
-#: mount/umount.c:467
+#: mount/umount.c:469
#, fuzzy
msgid ""
"Usage: umount [-hV]\n"
@@ -8381,42 +8403,42 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t typy vfs]\n"
" umount [-f] [-r] [-n] [-v] speciln soubor | uzel...\n"
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Zkoum odpojit %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "%s nelze v mtab najt\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: podle mtab nen %s pipojeno"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, 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:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: pipojen %s neodpovd fstab"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "unmount: pouze uivatel %s me odpojit %s ze %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: toto me provst pouze uivatel root"
@@ -8428,7 +8450,7 @@ msgstr "Pouze uivatel root me nastavit chovn Ctrl-Alt-Del.\n"
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Pouit: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8437,7 +8459,7 @@ msgstr ""
"Soubor %s, pro prahovou hodnotu %lu, maximln poet znak ve fifo byl %d\n"
"a maximln penosov rychlost ve znacch za sekundu byla %f\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8448,32 +8470,32 @@ msgstr ""
"znak\n"
"ve fifo byl %d a maximln penosov rychlost ve znacch za sekundu byla %f\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Chybn rozpt: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Chybn hodnota: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Chybn implicitn hodnota: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Chybn asov daj: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Chybn implicitn asov daj: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8482,56 +8504,56 @@ msgstr ""
"Pouit: %s [-q [-i interval]] ([-s hodnota]|[-S hodnota]) ([-t hodnota]|[-T "
"hodnota]) [-g|-G] soubor [soubor...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "%s nelze otevt: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "%s nelze nastavit na prahovou hodnotu %d: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "%s nelze nastavit na asov limit %d: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "Prahovou hodnotu pro %s nelze zjistit: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "asov limit pro %s nelze zjistit: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, fuzzy, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld %s prahov hodnota a %ld %s asov limit\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, fuzzy, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld %s prahov hodnota a %ld %s asov limit\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "Zpracovn signlu nelze nastavit"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "voln gettimeofday selhalo"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "CYGETMON nelze na %s provst: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, fuzzy, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8539,12 +8561,12 @@ msgstr ""
"%s: %lu peruen, %lu znak; fifo: %lu prh, %lu asov limit, %lu max, %lu "
"nyn\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f per/sek; %f pj, %f odesl (znak/sek)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8552,7 +8574,7 @@ msgstr ""
"%s: %lu peruen, %lu znak; fifo: %lu prh, %lu asov limit, %lu max, %lu "
"nyn\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f per/sek; %f pj (znak/sek)\n"
@@ -9846,6 +9868,9 @@ msgstr "Vstupn dka je pli dlouh.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Nedostatek pamti pro rostouc buffer.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: typ ss %s nen podporovn jdrem"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "voln BLKGETSIZE ioctl pro %s selhalo\n"
diff --git a/po/da.po b/po/da.po
index cf037b391..5fce7f3ea 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-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+0100\n"
"PO-Revision-Date: 2002-12-02 21:15GMT\n"
"Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
@@ -117,7 +117,7 @@ msgstr "%s: ioctl-fejl p %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr "RO RA SST BST StartSekt Strr. Enhed\n"
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "brug:\n"
@@ -1255,11 +1255,11 @@ msgstr " %s [ -c | -y | -n | -d ] enh\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] enh\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Ubrugelig"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Frit omrde"
@@ -1400,8 +1400,8 @@ msgstr "Ugyldig tast"
msgid "Press a key to continue"
msgstr "Tryk en tast for at fortstte"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primr"
@@ -1409,8 +1409,8 @@ msgstr "Primr"
msgid "Create a new primary partition"
msgstr "Opret en ny primr partition"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Logisk"
@@ -1418,7 +1418,7 @@ msgstr "Logisk"
msgid "Create a new logical partition"
msgstr "Opret en ny logisk partition"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Fortryd"
@@ -1454,163 +1454,179 @@ msgstr "Tilfj partition i slutningen af det frie omrde"
msgid "No room to create the extended partition"
msgstr "Ikke plads til at oprette udvidet partition"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "der er ingen partitionstabel.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Ingen partitionstabel eller ugyldig signatur p partitionstabellen"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Vis kun partitionstabellen"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "der er ingen partitionstabel.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Vil du starte med nulstillet tabel [j/N] ?"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Du angav flere cylindre end der kan vre p disken"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "Kan ikke bne drev"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "bnede drev skrivebeskyttet - du har ikke adgang til at skrive"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Kan ikke f diskstrrelsen"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Ugyldig primrpartition"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Ugyldig logisk partition"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Advarsel!! Dette delgger muligvis data p din disk!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Er du sikke p, at du vil skrive partitionstabellen til disken? (ja eller "
"nej): "
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "nej"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "Skrev ikke partitionstabellen til disken"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "ja"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Skriv venligst 'ja' eller 'nej'"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Skriver partitionstabel til disken..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Skrev partitionstabel til disken"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Skrev partitionstabel, men genindlsning mislykkedes. Genstart for at "
"opdatere tabellen."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Ingen primrpartitioner er markeret opstartbar. DOS MBR vil ikke kunne "
"starte op."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Da flere primrpartitioner er opstartbare, vil DOS MBR ikke kunne starte op."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Angiv filnavn eller tryk RETUR for at vise p skrmen: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "Kan ikke bne filen '%s'"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Drev: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Ingen "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primr"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Logisk "
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Ukendt"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Opstart"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, fuzzy, c-format
msgid "(%02X)"
msgstr "Ukt(%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
#, fuzzy
msgid "None"
msgstr "Frdig"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Partitionstabel for %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
#, fuzzy
msgid " First Last\n"
msgstr " Frste Sidste\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
#, fuzzy
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
@@ -1618,7 +1634,7 @@ msgid ""
msgstr ""
" # Type Sektor Sektor Forskyd Lngde Filsystem type (ID) Flag\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1628,470 +1644,470 @@ msgstr ""
"---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " --- Start----- -----Slut----- Start antal af\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
#, fuzzy
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Flag Hovd Sekt Cyl ID Hovd Sekt Cyl Sektor Sektorer\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "R"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Vis tabellen i rtdata format"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Sektorer"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Vis tabellen ordnet efter sektorer"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Tabel"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Vis kun partitionstabellen"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Vis ikke tabellen"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Hjlpeskrm for cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Dette er cfdisk, et curses-baseret diskpartitionerings-program, som"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "lader dig oprette, slette eller modificere partitioner p din"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "harddisk."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Kommando Betydning"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b Skift opstartbar-flaget for partitionen ('bootable')"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Slet partitionen"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Ret cylinder, hoved, sektorer-per-spor parametre"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " ADVARSEL: Denne kommando br kun bruges af folk, der"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " er klar over, hvad de gr."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Vis denne skrm"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maksimr partitionens diskforbrug"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Bemrk: Dette kan gre partitionen inkompatibel med"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Opret ny partition i frit omrde"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p Udls partitionstabellen til skrmen eller en fil"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Der er flere forskellige formater p partitionen,"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " som du kan vlge mellem:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - Rdata (njagtig de, som ville skrives p disken)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Tabel ordnet efter sektorer"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Tabel i rdata format"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q Afslut program uden at skrive partitionstabellen"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Skift filsystem type"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Skift enhed for visning af partitionsstrrelser"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Skifter mellem MB, sektorer og cylindre"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr " W Skriv partitionstabellen til disk (skal vre stort W)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Siden dette kan delgge data p disken, skal du enten"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr " bekrfte eller afvise ved at skrive henholdsvis 'ja'"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " eller 'nej'"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Pil op Flyt markren til forrige partition"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Pil ned Flyt markren til nste partition"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Gentegner skrmen"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Vis denne skrm"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Bemrk: Alle kommandoerne kan angives med enten store eller sm"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "bogstaver (undtagen W)."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cylindre"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Skift cylindergeometri"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Hoveder"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Skift hovedgeometri"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Skift sektorgeometri"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Frdig"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Frdig med geometrindring"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Angiv antallet af cylindre: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Ugyldigt cylinderantal"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Angiv antallet af hoveder: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Ugyldig hovedantal"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Angiv antallet af sektorer per spor: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Ugyldig sektorantal"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Angiv filsystemtype: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Kan ikke ndre filsystemtype til tom"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Kan ikke ndre filsystemtype til udvidet"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Ukt(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Ukendt (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Drev: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Strrelse: %lld byte, %ld Mb"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Strrelse: %lld byte, %ld.%ld Gb"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Hoveder: %d Sektorer per spor: %d Cylindre: %d"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Navn"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Flag"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Part-type"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Fs-type"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Mrkat]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
#, fuzzy
msgid " Sectors"
msgstr " Sektorer"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
#, fuzzy
msgid " Cylinders"
msgstr "Cylindre"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
#, fuzzy
msgid " Size (MB)"
msgstr "Strrelse (MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
#, fuzzy
msgid " Size (GB)"
msgstr "Strrelse (GB)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Opstartbar"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Skift opstartbar-flaget for partitionen ('bootable')"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Slet"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Slet partitionen"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometri"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Skift diskgeometri (kun for eksperter)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Hjlp"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Vis hjlpeskrm"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Maksimr"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Maksimr diskforbruget for partitionen (kun for eksperter)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Ny"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Opret ny partition i frit omrde"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Udls"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Udls partitionstabellen til skrmen eller til en fil"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Afslut"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Afslut program uden at ndre partitionstabellen"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Type"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Skift filsystemtype (DOS, Linux, OS/2 osv.)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Enheder"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Skift enheder for visning af partitionstabellen (MB, sekt, cyl)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Skriv"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "Skriv partitionstabellen til disk (dette kan delgge data)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Kan ikke gre denne partition opstartbar"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Kan ikke slette en tom partition"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "Kan ikke maksimere denne partition"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Denne partition er ubrugelig"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Denne partition er allerede i brug"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Kan ikke ndre en tom partitions type"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Ikke flere partitioner"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Ugyldig kommando"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2368,12 +2384,12 @@ msgstr "Du skal angive"
msgid "heads"
msgstr "hoveder"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "sektorer"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "cylindre"
@@ -2780,13 +2796,13 @@ msgstr "Allokerede sektorer i alt %d er strre end de maksimale %d\n"
msgid "%lld unallocated sectors\n"
msgstr "%d ikke-allokerede sektorer\n"
-#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2940,7 +2956,7 @@ msgstr "Disk %s indeholder ikke en gyldig partitionstabel\n"
msgid "Cannot open %s\n"
msgstr "Kunne ikke bne %s\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "kunne ikke bne %s\n"
@@ -3600,19 +3616,19 @@ msgstr "JA\n"
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:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Forsger at genere hele-disk-indgang automatisk.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "Hele disken er allerede fyldt med partitioner.\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3620,16 +3636,16 @@ msgstr ""
"Det anbefales kraftigt at den ellevte partition\n"
"fylder hele disken og er af typen 'SGI volume'\n"
-#: fdisk/fdisksgilabel.c:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " Sidste %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3641,7 +3657,7 @@ msgstr ""
"naturligvis ikke kunne genskabes.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3649,12 +3665,12 @@ msgid ""
"This value may be truncated for devices > 33.8 GB.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr "Forsger at bibeholde parametrene for partition %d.\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tSTART=%d\tLNGDE=%d\n"
@@ -4263,89 +4279,89 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "sgefejl p %s - kunne ikke sge til %lu\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "sgefejl: nskede 0x%08x%08x, fik 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "lbet tr for hukommelse - opgiver\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "lsefejl p %s - kunne ikke lse sektor %lu\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "FEJL: sektor %lu har ikke en MSDOS-signatur\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "skrivefejl p %s - kan ikke skrive sektor %lu\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "kunne ikke bne partitionssektor-redningsfil (%s)\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "skrivefejl p %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "kunne ikke finde partitions-genskabelsesfil (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr "partitions-genskabelsesfil har forkert strrelse - genskaber ikke\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "lbet tr for hukommelse?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "kan ikke bne partitions-genskabelsesfilen (%s)\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "fejl under lsning af %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "kan ikke bne enheden %s for skrivning\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "fejl ved skrivning af sektor %lu p %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Disk %s: kan ikke bestemme geometrien\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Disk %s: kan ikke bestemme strrelsen\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4356,22 +4372,22 @@ msgstr ""
"hel disk. Brug af fdisk p den er sikkert meningslst.\n"
"[Brug tilvalget --force hvis du virkelig gerne vil]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Advarsel: HDIO_GETGEO siger,at der er %lu hoveder\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Advarsel: HDIO_GETGEO siger, at der er %lu sektorer\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Advarsel: BLKGETSIZE/HDIO_GETGEO siger, at der er %lu cylindre\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4380,7 +4396,7 @@ msgstr ""
"Advarsel: usandsynligt antal sektorer (%lu) - normalt hjst 63\n"
"Dette vil give problemer med al programmel, der bruger C/H/S-adressering.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4389,14 +4405,14 @@ msgstr ""
"\n"
"Disk %s: %lu cylindre, %lu hoveder, %lu sektorer/spor\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
msgstr ""
"%s for partition %s har umulig hoved-vrdi: %lu (burde vre mellem 0-%lu)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4404,7 +4420,7 @@ msgid ""
msgstr ""
"%s for partition %s har umulig sektor-vrdi: %lu (burde vre mellem 1-%lu)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4413,7 +4429,7 @@ msgstr ""
"%s for partition %s har umulig cylinder-vrdi: %lu (burde vre mellem 0-%"
"lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4421,11 +4437,11 @@ msgstr ""
"Id Navn\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Genindlser partitionstabel ...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4433,31 +4449,31 @@ msgstr ""
"Kommandoen for genindlsning af partitionstabellen mislykkedes\n"
"Genstart dit system nu, fr du formatterer med mkfs\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Fejl ved lukning af %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: ingen sdan partition\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "ukendt format - benyttet sektorer\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# partitionstabel for %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "ikke-implementeret format - benytter %s\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4466,11 +4482,11 @@ msgstr ""
"Enheder = cylindre %lu byte, blokke 1024 byte, tller fra %d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Enhed Opst Start Slut #cyldr. #blokke Id System\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4479,11 +4495,11 @@ msgstr ""
"Enheder = sektorer 512 byte, tller fra %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Enhed Opstart Start Slut #sektorer Id System\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4492,11 +4508,11 @@ msgstr ""
"Enheder = blokke 1024 byte, tller fra %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Enhed Opstrt Start Slut #blokke Id System\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, fuzzy, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4505,31 +4521,31 @@ msgstr ""
"Enheder = megabyte 1048576 byte, blokke 1024 byte, tller fra %d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
#, fuzzy
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Enhed Opst Start End Mb #blokke Id System\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tstart: (c,h,s) forventede (%ld,%ld,%ld) fandt (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tslut: (c,h,s) forventede (%ld,%ld,%ld) fandt (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr "partitionen slutter p cylinder %ld, efter diskens slutning\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Fandt ingen partitioner\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4540,51 +4556,51 @@ msgstr ""
" til C/H/S=*/%ld/%ld (i stedet for %ld/%ld/%ld).\n"
"I denne visning vil jeg g ud fra denne geometri.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "der er ingen partitionstabel.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "mrkeligt, kun %d partitioner er defineret.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr "Advarsel: partition %s har strrelsen 0, men er ikke markeret tom\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Advarsel: partition %s har strrelsen 0, men er opstartbar\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "Advarsel: partition %s har strrelsen 0, men starter ikke i 0\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Advarsel: partition %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "indeholdes ikke i partition %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Advarsel: partitionerne %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "og %s overlapper hinanden\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4594,17 +4610,17 @@ msgstr ""
"lu),\n"
"og vil delgge denne, nr der skrives til partitionen.\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Advarsel: partition %s starter i sektor 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Advarsel: partition %s nr ud over diskens slutning\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4612,17 +4628,17 @@ msgstr ""
"Kun n af primrpatitionerne m vre udvidet\n"
" (dette er dog ikke noget problem under Linux)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Advarsel: partition %s starter ikke p en cylindergrnse\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Advarsel: partition %s slutter ikke p en cylindergrnse\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4631,7 +4647,7 @@ msgstr ""
"Dette generer ikke LILO, men DOS MBR vil ikke kunne starte op fra denne "
"disk.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4639,7 +4655,7 @@ msgstr ""
"Advarsel: normalt kan man kun starte op fra primrpartitioner\n"
"LILO ignorerer opstartbar flaget.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4647,35 +4663,35 @@ msgstr ""
"Advarsel: ingen primrpartition er markeret opstartbar (aktiv)\n"
"Det generer ikke LILO, men DOS MBR vil ikke kunne starte op fra denne disk.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
#, fuzzy
msgid "start"
msgstr "status"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"partition %s: start: (c,h,s) forventede (%ld,%ld,%ld) fandt (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
#, fuzzy
msgid "end"
msgstr "send"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"partition %s: end: (c,h,s) forventede (%ld,%ld,%ld) fandt (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr "partition %s slutter p cylinder %ld, efter diskens slutning\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
@@ -4684,7 +4700,7 @@ msgstr ""
"Advarsel: ndrede starten p udvidet partition fra %ld til %ld\n"
"(Vedrrer kun oplistningen. ndrer ikke indholdet.)\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4692,134 +4708,134 @@ msgstr ""
"Advarsel: udvidet partition starter ikke p en cylindergrnse.\n"
"DOS og Linux vil opfatte indholdet forskelligt.\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "for mange partitioner - ignorerer dem efter nr. (%d)\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "tr med partitioner?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "fandt Disk Manager - kan ikke hndtere sdan en\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "fandt DM6 signatur - opgiver\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "mrkeligt... en udvidet partition med strrelsen 0?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "mrkeligt..., en BSD-partition med strrelsen 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: ukendt partition\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "flaget -n blev givet: Intet ndret\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Kunne ikke gemme de gamle sektorer- afbryder\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "Mislykket skrivning af partition p %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "lang eller uafsluttet inddatalinje - afbryder\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "inddatafejl: forventer '=' efter %s-felt\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "inddatafejl: uventet tegn %c efter %s-felt\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "ukendt inddata: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "tal for stort\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "uvedkommende tegn efter tallet\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "ikke plads til partitionsbeskrivelse\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "kunne ikke opbygge den omgivende udvidede partition\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "for mange inddatafelter\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "Ikke plads til mere\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Ugyldig type\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
"Advarsel: den angiven strrelse(%lu) overstiger den maksimalt tilladte (%"
"lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Advarsel: tom partition\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Advarsel: ugyldigt partitionsbegyndelse (tidligst %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "ukendt opstartbar-flag, vlg - eller *\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "delvis c,h,s-specifikation?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Udvidet partition ikke hvor den forventedes\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "ugyldige inddata\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "for mange partitioner\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4829,47 +4845,47 @@ msgstr ""
"<start> <strr> <type [E,S,L,X,hex]> <bootable [-,*]> <c,h,s> <c,h,s>\n"
"Du behver normalt kun at angive <start> og <strr> (og mske <type>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "version"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Brug: %s [tilvalg] enhed ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "enhed: noget lignende /dev/hda eller /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "nyttige tilvalg:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [eller --show-size]: vis partitionens strrelse"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr " -c [eller --id]: vis eller ndr partitions-id"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [eller --list]: vis hver enheds partitioner"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
" -d [eller --dump]: det samme, men i et format, der vil passe til "
"senere inddata"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr ""
" -i [eller --increment]: antal cylindre osv. fra 1 i stedet for fra 0"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
@@ -4877,52 +4893,52 @@ msgstr ""
" -uS, -uB, -uC, -uM: indls/vis i enhederne sektorer/blokke/cylindre/"
"MB"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [eller --list-types]:vis kendte partitionstyper"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr " -D [eller --DOS]: DOS-kompatibilitet: spilder lidt plads"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr " -R [eller --re-read]: lad kernen genindlse partitionstabellen"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# : ret kun partitionen med nummer #"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : undlad at skrive ndringerne til disken"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr " -O fil : gem de sektorer, der overskrives, i en fil"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I fil : genskab disse sektorer"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [eller --version]: vis version"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [eller --help]: vis denne besked"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "farlige tilvalg:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr " -g [eller --show-geometry]: vis kernens bud p den geometri"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -4930,114 +4946,114 @@ msgstr ""
" -x [eller --show-extended]: medtag udvidede partitioner i uddata\n"
" eller forvent beskrivelser af dem i inddata"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr " -L [eller --Linux]: giv ikke rd, der ikke vedrrer Linux"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [eller --quiet]: undertryk advarsler"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " Du kan tilsidestte den detekterede geometri med:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr " -C# [eller --cylinders #]:angiv det cylinderantal, der skal bruges"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -H# [eller --heads #]: angiv det hovedantal, der skal bruges"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr " -S# [eller --sectors #]: angiv det sektorantal, der skal bruges"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Du kan undertrykke alle forenelighedstjek med:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr " -f [eller --force]: gr hvad jeg siger, selvom det er dumt"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Brug:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s enhed\t\t vis aktive partitioner p enhed\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr "%s enhed n1 n2 ... aktivr partitionerne p n1 ..., deaktivr resten\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr "%s -An enhed\t aktivr partition n, deaktivr de andre\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "ingen kommando?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "i alt: %d blokke\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "brug: sfdisk --print-id enhed partitionsnummer\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "brug: sfdisk --change-id enhed partitionsnummer id\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "brug: sfdisk --id enhed partitionsnummer [id]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "du kan kun angive n enhed (undtagen med -l eller -s)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "kunne ikke bne %s for skrivning\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "kunne ikke bne %s for lsning\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: O.k.\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ld cylindre, %ld hoveder, %ld sektorer/spor\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "Kan ikke f strrelsen af %s"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "ugyldig aktiv-byte: 0x%x i stedet for 0x80\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5045,7 +5061,7 @@ msgstr ""
"Frdig\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5054,35 +5070,35 @@ msgstr ""
"Du har %d aktive primrpartitioner. Dette generer ikke LILO,\n"
"men DOS MBR vil kun kunne starte op fra en disk med n aktiv partition.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "partition %s har id %x og er ikke skjult\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "Ugyldig id %lx\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Denne disk er i brug for jeblikket.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Fatal fejl: kunne ikke finde %s\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Advarsel: %s er ikke en blokenhed\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Tjekker, at ingen benytter denne disk for jeblikket...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5095,28 +5111,28 @@ msgstr ""
"Afmonter alle filsystemer og 'swapoff' alle swappartitioner p denne disk.\n"
"Brug flaget --no-reread for at undertrykke dette tjek.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Brug flaget --force for at undertrykke alle tjek.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "O.k.\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Gammel situation:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "Partitionen %d eksisterer ikke. Kan ikke ndre den\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Ny situation:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5124,19 +5140,19 @@ msgstr ""
"Jeg kan ikke lide disse partitioner - intet blev ndret.\n"
"(Hvis du virkelig nsker det, kan du bruge flaget --force.)\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "Jeg kan ikke lide detteher - du br nok svare Nej\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Er du tilfreds med dette? [jna] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Vil du virkelig skrive dette til disken? [jna] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5144,15 +5160,15 @@ msgstr ""
"\n"
"sfdisk: inddata sluttede for tidligt\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Afslutter - intet blev ndret\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Svar venligst j,n,a\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5160,7 +5176,7 @@ msgstr ""
"Skrivning af ny partitionstabel lykkedes\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5259,43 +5275,43 @@ msgstr "getopt (udvidet) 1.1.2\n"
msgid "internal error, contact the author."
msgstr "intern fejl, kontakt programmren."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "startede op med MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "'Ruffian' BCD-ur\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "urport justeret til 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "'funky TOY' (tid-p-ret)!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: momentan %s mislykkedes i 1000 iterationer!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Kan ikke bne /dev/port: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "Jeg kunne ikke f adgang fordi jeg ikke forsgte.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s kan ikke f adgang til I/O-port: kaldet 'iopl(3)' mislykkedes.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Du behver nok root-rettigheder.\n"
@@ -5752,36 +5768,37 @@ msgstr ""
"Benyt tilvalget --debug for at se detaljerne fra vores sgning efter en "
"tilgangsmetode.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Venter i en lkke for at tiden fra KDGHWCLK ndres\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK ioctl for at aflse tiden mislykkedes"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Tidsudlb mens der ventedes p tidsndring.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK ioctl for at aflse tiden mislykkedes i lkke"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() kunne ikke aflse tiden fra %s"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "KDGHWCLK-ioctl mislykkedes"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Kunne ikke bne /dev/tty1 eller /dev/vc/1"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK ioctl mislykkedes"
@@ -6108,7 +6125,7 @@ msgstr "Fejl i adgangskode."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Adgangskode: "
@@ -6166,7 +6183,7 @@ msgstr "Finger-informationer *IKKE* ndret. Prv igen senere.\n"
msgid "Finger information changed.\n"
msgstr "Finger-informationer ndret.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "hukommelsesallokering mislykkedes (malloc)"
@@ -6902,7 +6919,7 @@ msgstr "Kunne ikke udfre umount, opgiver afmontering."
msgid "Unmounting any remaining filesystems..."
msgstr "Afmonterer resterende filsystemer..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: Kunne ikke afmontere %s: %s\n"
@@ -7543,17 +7560,17 @@ msgstr "Besked fra %s@%s (som %s) p %s klokken %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Besked fra %s@%s p %s klokken %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "advarsel: fejl ved lsning af %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "advarsel: kunne ikke bne %s: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: kunne ikke bne %s - bruger %s i stedet\n"
@@ -7562,36 +7579,36 @@ msgstr "mount: kunne ikke bne %s - bruger %s i stedet\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr "kunne ikke oprette lsefil %s: %s (gennemtving med flaget -n)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr "kunne ikke lnke lsefilen %s: %s (gennemtving med flaget -n)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr "kunne ikke bne lsefilen %s: %s (gennemtving med flaget -n)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Kunne ikke lse lsefilen %s: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "kunne ikke lse lsefilen %s: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "tidsoverlb"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7600,22 +7617,22 @@ msgstr ""
"Kunne ikke oprette lnken %s\n"
"Mske er der en efterladt lsefil?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "kunne ikke bne %s (%s) - mtab ikke opdateret"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "fejl ved skrivning af %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "fejl ved ndring af filmodus for %s: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "kunne ikke omdbe %s til %s: %s\n"
@@ -7677,27 +7694,27 @@ msgstr "mount: kunne ikke finde nogen ledig loop-enhed"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Kunne ikke lse ind i hukommelsen, afslutter.\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): lykkedes\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: kunne ikke slette enheden %s: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): lykkedes\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
"Denne 'mount' er oversat uden loop-understttelse. Genoverst venligst.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7710,189 +7727,189 @@ msgstr ""
" %s -d loop_enhed # slet\n"
" %s [ -e kryptering ] [ -o forskydning ] loop_enhed fil # klargr\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "ikke nok hukommelse"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Der var ingen loop-understttelse tilgngelig ved oversttelsen. Genoverst "
"venligst.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr ""
"[mntent]: advarsel: intet afsluttende linjeskift ved slutningen af %s\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: linje %d i %s er ugyldig%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; resten af filen blev ignoreret"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: iflge mtab er %s allerede monteret som %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: iflge mtab er %s monteret som %s"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: kunne ikke bne %s for skrivning: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: fejl ved skrivning til %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: fejl ved ndring af filmodus for %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s ligner et swap-omrde - ikke monteret"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "montering mislykkedes"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: kun root kan montere %s som %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: loop-enheden angivet to gange"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: type angivet to gange"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: dropper opstning af loop-enhed\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: skal til at benytte loop-enheden %s\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: klargring af loop-enhed mislykkedes\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: klargringen af loop-enhed lykkedes\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: kunne ikke bne %s: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: kunne ikke bne %s for at stte hastigheden"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: kunne ikke stte hastigheden: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: kunne ikke forgrene: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: denne version blev oversat uden understttelse for 'nfs'-typen"
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: montering af nfs version 4 mislykkedes, prver version 3..\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr "mount: Jeg kunne ikke bestemme filsystemtypen, og ingen var angivet"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: du skal angive filsystemtypen"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: montering mislykkedes"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: monteringspunkt %s er ikke et katalog"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: adgang ngtet"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: skal vre superbruger for at bruge 'mount'"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s er optaget"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc er allerede monteret"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: enten er %s allerede monteret eller %s optaget"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: monteringspunkt %s eksisterer ikke"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: monteringspunkt %s er en symbolsk lnke ud i ingenting"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: specialenhed %s eksisterer ikke"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7901,12 +7918,12 @@ msgstr ""
"mount: specialenhed %s eksisterer ikke\n"
" (en sti er ikke et katalog)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s ikke allerede monteret, eller forkert tilvalg"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -7915,47 +7932,53 @@ msgstr ""
"mount: forkert filsystemtype, forkert tilvalg, ugyldig superblok p %s,\n"
" eller for mange monterede filsystemer"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "monteringstabellen er fuld"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: kunne ikke lse superblokken"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: ukendt enhed"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: filsystemtype %s understttes ikke af kernen"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l vis liste over filsystemtyper"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: du mente sikkert %s"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: du mente mske iso9660 ?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: du mente mske iso9660 ?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
"mount: %s har forkert enhedsnummer eller filsystemtypen %s understttes ikke"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s er ikke en blokenhed, og 'stat' fejler?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -7964,47 +7987,47 @@ msgstr ""
"mount: kernen genkender ikke %s som en blokenhed\n"
" (mske hjlper 'insmod enheds-driver'?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s er ikke en blokenhed (brug eventuelt '-o loop'?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s er ikke en blokenhed"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s er ikke en gyldig blokenhed"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "blokenhed "
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: kunne ikke montere %s%s skrivebeskyttet"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s er skrivebeskyttet, men eksplicit '-w'-tilvalg blev givet"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s er skrivebeskyttet, monterer skrivebeskyttet"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr "mount: ingen type blev angive - Jeg antager nfs p grund af kolonnet\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: ingen type blev angivet - Jeg antager smbfs p.g.a. det "
@@ -8013,22 +8036,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: krer \"%s\" i baggrunden\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: opgiver \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s er allerede monteret som %s\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
#, fuzzy
msgid ""
"Usage: mount -V : print version\n"
@@ -8075,34 +8098,34 @@ msgstr ""
"Andre tilvalg: [-nfFrsvw] [-o tilvalg].\n"
"Ls mange flere detaljer med 'man 8 mount'.\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: dette kan kun root gre"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: ingen %s fundet - opretter den..\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: fandt ingen sdan partition"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: monterer %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "intet blev monteret"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: kunne ikke finde %s i %s"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: kunne ikke finde %s i %s eller %s"
@@ -8119,30 +8142,30 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: ugyldig UUID"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: fejl ved gt af filsystemtype\n"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: du angav ikke filsystemtype for %s\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " Jeg vil forsge alle typerne, der nvnes i %s eller %s\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " og det ser ud til, at dette er swapomrde\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " Jeg vil forsge type %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Forsger %s\n"
@@ -8373,12 +8396,12 @@ msgstr "umount: kunne ikke montere %s skrivebeskyttet\n"
msgid "%s umounted\n"
msgstr "%s afmonteret\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr ""
"umount: kunne ikke finde listen over filsystemer, der skulle afmonteres"
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
@@ -8388,42 +8411,42 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t vfstyper] [-O tilvalg]\n"
" umount [-f] [-r] [-n] [-v] speciel | knude...\n"
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Forsger at afmontere %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Kunne ikke finde %s i mtab\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s er ikke monteret (iflge mtab)"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, 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:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s montering stemmer ikke med fstab"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, fuzzy, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: kun root kan afmontere %s fra %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: dette kan kun root gre"
@@ -8435,7 +8458,7 @@ msgstr "Du skal vre root for at stte Ctrl-Alt-Del-opfrslen.\n"
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Brug: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8444,7 +8467,7 @@ msgstr ""
"Filen %s, For grnsevrdi %lu, Maksimale antal tegn i fifo var %d,\n"
"og den maksimale overfrselshastighed var %f tegn/sekund\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8455,32 +8478,32 @@ msgstr ""
"i fifo var %d,\n"
"og den maksimale overfrselshastighed var %f tegn/sekund\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Ugyldig intervalvrdi: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Ugyldig sat vrdi: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Ugyldig standardvrdi: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Ugyldig sat tidsvrdi: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Ugyldig standard tidsvrdi: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8489,75 +8512,75 @@ msgstr ""
"Brug: %s [-q [-i interval]] ([-s vrdi]|[-S vrdi]) ([-t vrdi]|[-T vrdi]) "
"[-g|-G] fil [fil...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "Kunne ikke bne %s: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "Kunne ikke stte %s til grnsen %d: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "Kunne ikke stte %s til tidsgrnsen %d: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "Kunne ikke f grnsen for %s: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "Kunne ikke f tidsoverlbet for %s: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld aktuelle grnse og %ld aktuelle tidsoverlb\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld standard grnse og %ld standard tidsoverlb\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "Kunne ikke stte signalhndteringen"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "gettimeofday (aflsning af ur) mislykkedes"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "Kunne ikke udfre CYGETMON p %s: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
"%s: %lu htal, %lu/%lu tegn; fifo: %lu grnse, %lu t-ovl, %lu maks, %lu nu\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f tal/sek; %f flt, %f send (tegn/sek)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
"%s: %lu htal, %lu tegn; fifo: %lu grnse, %lu t-ovl, %lu maks, %lu nu\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f tal/sek; %f flt (tegn/sek)\n"
@@ -9836,6 +9859,9 @@ msgstr "For lang inddatalinje.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Lb tr for hukommelse under forstrring af buffer.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: filsystemtype %s understttes ikke af kernen"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "BLKGETSIZE ioctl mislykkedes for %s\n"
diff --git a/po/de.po b/po/de.po
index cd3c65d1b..a992b24f6 100644
--- a/po/de.po
+++ b/po/de.po
@@ -44,7 +44,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+0100\n"
"PO-Revision-Date: 2003-08-14 15:43:31+0200\n"
"Last-Translator: Michael Piefel <piefel@informatik.hu-berlin.de>\n"
"Language-Team: German <de@li.org>\n"
@@ -148,7 +148,7 @@ msgstr "%s: IOCTL-Fehler bei %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr "NurL RA SGr BGr Startsek Größe Gerät\n"
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "Aufruf:\n"
@@ -1303,11 +1303,11 @@ msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] Gerät\n"
# "Unbrauchbar"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Unbenutzbar"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Freier Bereich"
@@ -1450,8 +1450,8 @@ msgstr "Diese Taste ist hier nicht verwendbar"
msgid "Press a key to continue"
msgstr "Eine Taste drücken, um fortzufahren"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primäre"
@@ -1459,8 +1459,8 @@ msgstr "Primäre"
msgid "Create a new primary partition"
msgstr "Erzeuge eine neue primäre Partition"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Logische"
@@ -1468,7 +1468,7 @@ msgstr "Logische"
msgid "Create a new logical partition"
msgstr "Erzeuge eine neue logische Partition"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Abbruch"
@@ -1504,93 +1504,110 @@ msgstr "Erzeuge Partition am Ende des freien Bereiches"
msgid "No room to create the extended partition"
msgstr "Kein Platz, um die erweiterte Partition anzulegen"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "# Partitionstabelle von %s\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr ""
"Keine Partitionstabelle oder unbekannte Signatur in der Partitionstabelle"
-#: fdisk/cfdisk.c:1505
+# "Nur die Partitionstabelle ausgeben" (joey)
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Einfach die Tabelle ausgeben"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr " %s: nicht erkannte Partition\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Möchten Sie mit einer Null-Tabelle beginnen [y/N]"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Sie haben mehr Zylinder angegeben, als auf die Festplatte passen"
# That's not a direct translation, but I've tried to be
# more informative.
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "Konnte nicht auf die Festplatte zugreifen"
# "Nur lesender Zugriff möglich - Sie haben keine Schreibberechtigung" (joey)
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr ""
"Platte wurde nur zum Lesen geöffnet - Sie haben keine Rechte zum Schreiben"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Konnte die Größe der Festplatte nicht feststellen"
# "Ungültige primäre Partition"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Beschädigte primäre Partition"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Beschädigte logische Partition"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Warnung!! Dies kann Daten auf der Festplatte zerstören!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Sind Sie sicher, dass Sie die Partitionstabelle schreiben wollen? (ja/nein): "
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "nein"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "Die Partitionstabelle wurde nicht auf die Festplatte geschrieben"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "ja"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Bitte „ja“ oder „nein“ eingeben"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Die Partitionstabelle wird auf die Festplatte geschrieben..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Die Partitionstabelle wurde auf die Festplatte geschrieben"
# That's not a good translation, but I guess, I can't make it longer.
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Die Tabelle wurde geschr., aber das Neueinlesen schlug fehl. Rebooten Sie."
# This one isn't really correct.
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Keine primäre Partition als bootfähig markiert; der DOS-MBR kann nicht "
"booten."
# This one isn't really correct.
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
@@ -1599,76 +1616,76 @@ msgstr ""
# "Geben sie einen Dateinamen ein oder drücken Sie Return, um es auf dem Bildschirm anzuzeigen: "
# is too long
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Dateiname oder Return um es auf dem Bildschirm anzuzeigen: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "Konnte „%s“ nicht öffnen"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Festplatte: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Keine "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primäre"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Logische"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Unbekannt"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Boot"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
msgid "None"
msgstr "Kein"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Partitionstabelle von %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
msgid " First Last\n"
msgstr " Erster Letzter\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1676,7 +1693,7 @@ msgstr ""
" # Typ Sektor Sektor Offset Länge Dateisystemtyp (ID) "
"Flags\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1685,488 +1702,488 @@ msgstr ""
"-----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Anfangs---- -----End------ Anfangs- Anzahl der\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Flags Kopf Sekt Zyl. ID Kopf Sekt Zyl Sektor Sektoren\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "„Roh“"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Die „rohen“ Daten der Tabelle ausgeben"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Sektoren"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Die Tabelle nach Sektoren sortiert ausgeben"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Tabelle"
# "Nur die Partitionstabelle ausgeben" (joey)
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Einfach die Tabelle ausgeben"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Zeige die Tabelle nicht an"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Hilfe für cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Dies ist cfdisk, ein Programm das curses benutzt und es ihnen"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "erlaubt, auf Ihren Festplatten Partitionen anzulegen, zu löschen"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "und zu verändern."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
# "Befehl"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Befehl Bedeutung"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "-------- ---------"
# " b Wechselt zwischen bootfähig und nicht bootfähig."
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr ""
" b (De)Aktivieren des bootfähig-flags der aktuellen Partition"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Die aktuelle Partition löschen"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g Die Anzahl der Zylinder, Köpfe und Sektoren pro Spur ändern"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " WARNUNG: Diese Funktion sollte nur von Leuten benutzt"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " werden, die wissen, was sie tun."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Diese Hilfe anzeigen"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximieren der Nutzung der aktuellen Partition"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr ""
" Beachten Sie, dass dies die Partition nicht mehr kompatibel"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " zu DOS, OS/2, ... machen kann"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Aus dem freien Bereich eine neue Partition erzeugen"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr ""
" p Die Partitionstab. auf dem Bildschirm oder in eine Datei "
"ausgeben"
# "verschiedene"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Es gibt mehrere Formate für die Partitionstabelle, aus"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " denen man wählen kann"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - „Rohe“ Daten (was auf die Festplatte geschrieben würde)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Tabelle nach Sektoren sortiert"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Tabelle mit den reinen Daten"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr ""
" q Das Programm beenden ohne die Partitionstabelle zu schreiben"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Den Dateisystemtyp ändern"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Einheit für die Größenanzeige ändern"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Wechselt zwischen MB, Sektoren und Zylindern"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Die Partitionstabelle auf die Festplatte schreiben (großes W)"
# or "Da dieses ..." ?
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Da dies Daten auf der Festplatte zerstören kann, müssen"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr " Sie das Schreiben mit „yes“ oder „no“ bestätigen oder"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " ablehnen"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Pfeil-hoch Den Cursor zur vorherigen Partition bewegen"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Pfeil-runter Den Cursor zur nächsten Partition bewegen"
# "Baut den Bildschirm neu auf"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "Strg-L Zeichnet den Bildschirm erneut"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Diese Hilfe anzeigen"
# "Hinweis"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Hinweis: Alle Befehle können mit Klein- oder Großbuchstaben "
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "eingegeben werden (außer W zum Schreiben)."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr " Zylinder"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Die Anzahl der Zylinder ändern"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Köpfe"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Die Anzahl der Köpfe ändern"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Die Anzahl der Sektoren pro Spur ändern"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Fertig"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Ändern der Geometrie beenden"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Geben Sie die Anzahl der Zylinder ein: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Ungültiger Wert für die Anzahl der Zylinder"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Geben Sie die Anzahl der Köpfe ein: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Ungültiger Wert für die Anzahl der Köpfe"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Geben Sie die Anzahl der Sektoren pro Spur ein: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Ungültiger Wert für die Anzahl der Sektoren"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Geben Sie den Dateisystemtyp ein: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Der Dateisystemtyp kann nicht auf „leer“ gesetzt werden"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Der Dateisystemtyp kann nicht auf „erweitert“ gesetzt werden"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Unb(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Unbekannt (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Festplatte: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Größe: %lld Bytes, %lld MB"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Größe: %lld Bytes, %lld,%lld GB"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Köpfe: %d Sektoren pro Spur: %d Zylinder: %lld"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Name"
# I currently don't know a better translation
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Flags"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Part. Typ"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Dateisystemtyp"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Bezeichner]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
msgid " Sectors"
msgstr " Sektoren"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
msgid " Cylinders"
msgstr " Zylinder"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
msgid " Size (MB)"
msgstr " Größe (MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
msgid " Size (GB)"
msgstr " Größe (GB)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr " Bootbar"
# "Bootfähigkeit der aktuellen Partition ändern" (joey)
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "(De)Aktivieren des bootfähig-flags der aktuellen Partition"
# "Löschen"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Löschen"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Die aktuelle Partition löschen"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometrie"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Die Festplattengeometrieparameter ändern (nur für Experten)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Hilfe"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Die Hilfe anzeigen"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Maxim."
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Maximieren der Nutzung der aktuellen Partition (nur für Experten)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Neue"
# "Erzeuge aus dem freien Bereich eine neue Partition"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Neue Partition im freiem Bereich anlegen"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Ausgabe"
# "Gib die Partitionstabelle auf dem Bildschirm oder in eine Datei aus"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Partitionstabelle auf dem Bildschirm oder in Datei ausgeben"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Ende"
# "Beende das Programm ohne die Partitionstabelle zu schreiben"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Das Programm beenden, ohne die Partitionstabelle zu speichern"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Typ"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Den Typ des Dateisystems (DOS, Linux, OS/2, etc.) ändern"
# Maybe without the dot.
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Einheit."
# "Ändert die Einheiten der Größenanzeige ("
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
"Zwischen den Einheiten für die Größenanzeige wechseln (MB, Sekt., Zyl.)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Schreib."
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "Die Partitionstabelle schreiben (dies kann Daten zerstören)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Diese Partition kann nicht als bootfähig markiert werden"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Eine leere Partition kann nicht gelöscht werden"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "Die Nutzung dieser Partition kann nicht maximiert werden"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Diese Partition ist unbenutzbar"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Diese Partition ist bereits in Benutzung"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Der Dateisystemtyp einer leeren Partition kann nicht geändert werden"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Keine weiteren Partitionen"
# "Ungültige Taste"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Unzulässiger Befehl"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2450,12 +2467,12 @@ msgstr "Sie müssen angeben"
msgid "heads"
msgstr "Köpfe"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "Sektoren"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "Zylinder"
@@ -2872,13 +2889,13 @@ msgstr "Gesamtanzahl belegter Sektoren %d größer als Maximum %d\n"
msgid "%lld unallocated sectors\n"
msgstr "%d unbenutzte Sektoren\n"
-#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -3034,7 +3051,7 @@ msgstr "Festplatte %s enthält keine gültige Partitionstabelle\n"
msgid "Cannot open %s\n"
msgstr "Konnte %s nicht öffnen\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "Konnte %s nicht öffnen\n"
@@ -3697,19 +3714,19 @@ msgstr "JAWOHL\n"
msgid "Do You know, You got a partition overlap on the disk?\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
msgid "You got a partition overlap on the disk. Fix it first!\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3717,16 +3734,16 @@ 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:671
+#: fdisk/fdisksgilabel.c:669
msgid "You will get a partition overlap on the disk. Fix it first!\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr ""
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3740,7 +3757,7 @@ msgstr ""
"vorherige Inhalt unrettbar verloren.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3748,12 +3765,12 @@ msgid ""
"This value may be truncated for devices > 33.8 GB.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tANFANG=%d\tLÄNGE=%d\n"
@@ -4331,91 +4348,91 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "Seek-Fehler auf %s – kann nicht nach %lu springen\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr ""
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "Speicher ist aufgebraucht – Abbruch\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "Fehler beim Lesen von %s – Sektor %lu konnte nicht gelesen werden\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr ""
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr ""
"Fehler beim Schreiben auf %s – der Sektor %lu konnte nicht geschrieben "
"werden\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr ""
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "Fehler beim Schreiben auf %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr ""
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "Speicher aufgebraucht?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr ""
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "Fehler beim Lesen von %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "Konnte das Gerät %s nicht zum Schreiben öffnen\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "Fehler beim Schreiben des Sektors %lu auf %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Festplatte %s: Die Geometrie konnte nicht festgestellt werden\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr ""
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4423,29 +4440,29 @@ msgid ""
"[Use the --force option if you really want this]\n"
msgstr ""
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr ""
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr ""
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr ""
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"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"
msgstr ""
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4454,27 +4471,27 @@ msgstr ""
"\n"
"Festplatte %s: %lu Zylinder, %lu Köpfe, %lu Sektoren/Spur\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
"lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
"lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4482,41 +4499,41 @@ msgstr ""
"Id Name\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Die Partitionstabelle wird erneut gelesen...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
msgstr ""
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Fehler beim Schließen von %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: es gibt keine derartige Partition\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr ""
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# Partitionstabelle von %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr ""
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4526,11 +4543,11 @@ msgstr ""
"%d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Gerät boot. Anfang Ende #Zyl. #Blöcke Id System\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4539,11 +4556,11 @@ msgstr ""
"Einheit = Sektoren von 512 Bytes, Zählung beginnt bei %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Gerät boot. Anfang Ende #Sektoren Id System\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4552,11 +4569,11 @@ msgstr ""
"Einheit = Blöcke von 1024 Bytes, Zählung beginnt bei %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Gerät boot. Anfang Ende #Blöcke Id System\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4566,30 +4583,30 @@ msgstr ""
"beginnt bei %d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Gerät boot. Anfang Ende MiB #Blöcke Id System\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr ""
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Keine Partitionen gefunden\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4597,86 +4614,86 @@ msgid ""
"For this listing I'll assume that geometry.\n"
msgstr ""
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr ""
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr ""
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr ""
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr ""
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr ""
# XXX - Merge with next strings.
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr ""
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr ""
# XXX - Merge with next strings.
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr ""
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr ""
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
"and will destroy it when filled\n"
msgstr ""
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Warnung: Partition %s fängt bei Sektor 0 an\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr ""
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
msgstr ""
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Warnung: Partition %s beginnt nicht an einer Zylindergrenze\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Warnung: Partition %s endet nicht an einer Zylindergrenze\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4686,13 +4703,13 @@ msgstr ""
" Dies spielt bei LILO keine Rolle, aber der DOS-MBR wird diese\n"
" Festplatte nicht booten.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
msgstr ""
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4701,40 +4718,40 @@ msgstr ""
" Dies spielt bei LILO keine Rolle, aber der DOS-MBR wird auf\n"
" dieser Festplatte nicht booten.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
msgid "start"
msgstr "Anfang"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"Partition %s: Anfang: (c,h,s) erwartet (%ld,%ld,%ld) gefunden (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
msgid "end"
msgstr "Ende"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"Partition %s: Ende: (c,h,s) erwartet (%ld,%ld,%ld) gefunden (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr "Partition %s endet am Zylinder %ld, hinter dem Ende der Platte\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
"(For listing purposes only. Do not change its contents.)\n"
msgstr ""
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4742,341 +4759,341 @@ msgstr ""
"Warnung: erweiterte Partition beginnt nicht an einer Zylindergrenze\n"
"DOS und Linux werden den Inhalt unterschiedlich interpretieren.\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "Zu viele Partitionen - ignoriere alle hinter Nr. (%d)\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "Partitionsbaum?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr ""
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr ""
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr ""
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr ""
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: nicht erkannte Partition\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "Die Option „-n“ wurde verwendet: Es wurde nichts verändert\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Speichern der alten Sektoren fehlgeschlagen - Abbruch\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr ""
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr ""
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr ""
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr ""
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr ""
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "Zahl zu groß\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr ""
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr ""
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr ""
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr ""
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "Für mehr kein Platz\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr ""
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr ""
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr ""
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr ""
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr ""
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "ungültige Eingabe\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "Zu viele Partitionen\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
msgstr ""
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr ""
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr ""
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr ""
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr ""
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr ""
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr ""
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr ""
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr ""
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
msgstr ""
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr ""
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr ""
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr ""
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr ""
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr ""
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr ""
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr ""
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr ""
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr ""
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr ""
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
msgstr ""
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr ""
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr ""
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr ""
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr ""
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr ""
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr ""
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr ""
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Aufruf:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr ""
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr ""
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr ""
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr ""
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "%ld Blöcke\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr ""
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr ""
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr ""
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr ""
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "Konnte %s nicht zum Lesen/Schreiben öffnen\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "Konnte %s nicht zum Lesen öffnen\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: OK\n"
# And again one for show_geometry()...
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ld Zylinder, %ld Köpfe, %ld Sektoren/Spur\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "es ist nicht möglich, die Größe von %s festzustellen"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr ""
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5084,7 +5101,7 @@ msgstr ""
"Fertig\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5093,36 +5110,36 @@ msgstr ""
"Sie haben %d aktive primäre Partitionen. Dies spielt bei LILO keine Rolle,\n"
"aber der DOS-MBR bootet nur Festplatten mit einer aktiven Partition.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr ""
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr ""
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Diese Platte ist momentan in Benutzung.\n"
# This is a stat()
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr ""
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr ""
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr ""
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5130,60 +5147,60 @@ msgid ""
"Use the --no-reread flag to suppress this check.\n"
msgstr ""
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr ""
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "OK\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Alte Aufteilung:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr ""
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Neue Aufteilung:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
msgstr ""
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr ""
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr ""
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr ""
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
msgstr ""
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr ""
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr ""
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5191,7 +5208,7 @@ msgstr ""
"Die neue Partitionstabelle wurde erfolgreich geschrieben\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5289,45 +5306,45 @@ msgstr "getopt (enhanced) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "Interner Fehler, kontaktieren Sie den Autor."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "von MILO gebootet\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Bösartige BCD-Uhr\n"
# Egger
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "Uhrport auf 0x%x gestellt\n"
# debug
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "„funky TOY“!\n"
# The second %s can be:
# "clock read"
# "set time"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomares „%s“ schlug bei 1000 Iterationen fehl!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Konnte /dev/port nicht öffnen: %s"
# Egger, not really nice
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "Ich bekam keine Erlaubnis, weil ich es nicht versucht habe.\n"
# Egger
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr ""
@@ -5335,7 +5352,7 @@ msgstr ""
# This is not the correct translation, but it
# explains the situation better.
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Sie benötigen root-Rechte.\n"
@@ -5846,36 +5863,37 @@ msgstr ""
"anzuzeigen.\n"
# debug
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Warte in Schleife auf Änderung der Zeit von KDGHWCLK\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK-Ioctl scheiterte beim Auslesen der Zeit."
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Zeitüberschreitung beim Warten auf Zeitänderung.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK-Ioctl scheiterte in Schleife beim Auslesen der Zeit."
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() konnte Zeit nicht von %s lesen."
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "Ioctl KDSHWCLK fehlgeschlagen"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Konnte /dev/tty1 oder /dev/vc/1 nicht öffnen"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK-Ioctl fehlgeschlagen"
@@ -6207,7 +6225,7 @@ msgstr "Passwort‐Fehler."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Passwort: "
@@ -6266,7 +6284,7 @@ msgstr "Finger-Information *NICHT* geändert. Später erneut versuchen.\n"
msgid "Finger information changed.\n"
msgstr "Finger-Information geändert.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "„malloc“ schlug fehl"
@@ -7019,7 +7037,7 @@ msgstr "Kann umount nicht ausführen, gebe es mit dem Aushängen auf."
msgid "Unmounting any remaining filesystems..."
msgstr "Aushängen aller restlichen Dateisysteme..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: konnte %s nicht aushängen: %s\n"
@@ -7673,17 +7691,17 @@ msgstr "Nachricht von %s@%s (als %s) auf %s um %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Nachricht von %s@%s auf %s um %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "Warnung: Fehler beim Lesen von %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "Warnung: Konnte %s nicht öffnen: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: Konnte %s nicht öffnen - benutze %s stattdessen\n"
@@ -7692,21 +7710,21 @@ msgstr "mount: Konnte %s nicht öffnen - benutze %s stattdessen\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"Konnte die Lock-Datei %s nicht anlegen: %s (benutzen Sie die Option -n, um "
"dies zu umgehen)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"Konnte keinen Link für die Lock-Datei %s anlegen: %s (benutzen Sie die "
"Option -n, um dies zu umgehen)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
@@ -7715,22 +7733,22 @@ msgstr ""
# This one should be merged with the next one by using
# error() instead of printf()
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Konnte die Lock-Datei %s nicht sperren: %s\n"
# sperren
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "Konnte die Lock-Datei %s nicht sperren: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "Zeitüberschreitung"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7739,22 +7757,22 @@ msgstr ""
"Konnte Verknüpfung %s nicht anlegen\n"
"Vielleicht gibt es noch eine abgelaufene Lock-Datei?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "Konnte %s nicht öffnen (%s) - mtab nicht aktualisiert"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "Fehler beim Schreiben von %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "Fehler beim Ändern der Zugriffsrechte von %s: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "Konnte %s nicht in %s umbenennen: %s\n"
@@ -7818,29 +7836,29 @@ msgstr "mount: Konnte kein freies „loop“-Gerät finden"
msgid "Couldn't lock into memory, exiting.\n"
msgstr ""
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s, %s, %d): Erfolg\n"
# this is actually an open()...
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: Konnte das Gerät %s nicht löschen: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): Erfolg\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
"Dieses mount wurde ohne Loop-Unterstützung übersetzt. Bitte neu übersetzen.\n"
# Setup
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7856,193 +7874,193 @@ msgstr ""
" Setup:\n"
" %s [ -e Verschlüsselungsmethode ] [ -o Offset ] loop-Gerät Datei\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "Nicht genügend Speicher"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Zur Übersetzungszeit war keine Loop-Unterstützung verfügbar. Bitte neu "
"übersetzen.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr ""
"[mntent]: Warnung: Am Ende der Datei %s fehlt ein abschließender "
"Zeilenvorschub.\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: Zeile %d in %s ist fehlerhaft%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; der Rest der Datei wurde ignoriert"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: Laut mtab ist %s schon auf %s eingehängt"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: Laut mtab ist %s auf %s eingehängt"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: Konnte %s nicht zum Schreiben öffnen: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: Fehler beim Schreiben von %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: Fehler beim Ändern der Zugriffsrechte von %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s sieht wie ein Swap-Bereich aus - nicht eingehängt"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "mount ist fehlgeschlagen"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: nur „root“ kann %s auf %s einhängen"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: das „loop“-Gerät wurde zweimal angegeben"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: der Typ wurde doppelt angegeben"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: überspringe Aufsetzen des „loop“-Geräts\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: werde das „loop“-Gerät %s verwenden\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: Aufsetzen des „loop“-Geräts fehlgeschlagen\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: „loop“-Gerät erfolgreich aufgesetzt\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: Konnte %s nicht öffnen: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: Argument für -p oder --pass-fd muss eine Zahl sein"
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: Kann %s nicht zum Setzen der Geschwindigkeit öffnen"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: Kann die Geschwindigkeit nicht setzen: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: Kann keinen neuen Prozess erzeugen: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr ""
"mount: Diese Version wurde ohne Unterstützung für den Typ „nfs“ kompiliert"
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: Mit NFS Version 4 fehlgeschlagen, versuche Version 3...\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: konnte Dateisystemtyp nicht feststellen, und es wurde keiner angegeben"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: Sie müssen den Dateisystemtyp angeben"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: Einhängen ist fehlgeschlagen"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: Einhängepunkt %s ist kein Verzeichnis"
# "mount: Zugriff verweigert"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: keine Berechtigung"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: muss Superuser sein, um mount zu verwenden"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s wird gerade benutzt"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc ist bereits eingehängt"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s ist bereits eingehängt oder %s wird gerade benutzt"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: Einhängepunkt %s existiert nicht"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: Einhängepunkt %s ist eine symbolische Verknüpfung auf nirgendwo"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: Gerätedatei %s existiert nicht"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8051,14 +8069,14 @@ msgstr ""
"mount: Spezialgerät %s existiert nicht\n"
" (ein Pfadpräfix ist kein Verzeichnis)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr ""
"mount: %s ist noch nicht eingehängt oder es wurden\n"
" ungültige Optionen angegeben"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -8068,35 +8086,41 @@ msgstr ""
" „Superblock“ von %s ist beschädigt oder es sind\n"
" zu viele Dateisysteme eingehängt"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "Einhängetabelle ist voll"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: Konnte den Superblock nicht lesen"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "umount: %s: unbekanntes Gerät"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: Der Dateisystemtyp „%s“ wird nicht vom Kernel unterstützt"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l Die bekannten Dateisystemtypen anzeigen"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: Wahrscheinlich meinten sie „%s“"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: Vielleicht meinten Sie „iso9660“?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: Vielleicht meinten Sie „iso9660“?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8104,12 +8128,12 @@ msgstr ""
" Dateisystemtyp %s wird nicht unterstützt"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s ist kein blockorientiertes Gerät und „stat“ schlägt fehl?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8119,51 +8143,51 @@ msgstr ""
" Gerät (Vielleicht hilft „insmod Treiber“?)"
# "versuchen"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr ""
"mount: %s ist kein blockorientiertes Gerät\n"
" (Vielleicht probieren Sie „-o loop“?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s ist kein blockorientiertes Gerät"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s ist kein gültiges blockorientiertes Gerät"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "blockorientiertes Gerät "
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: Konnte %s%s nicht im Nur-Lese-Modus einhängen"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s is schreibgeschützt, doch Option „-w“ ist explizit gegeben"
# That sounds somehow dumb.
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s ist schreibgeschützt, wird eingehängt im Nur-Lese-Modus"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
"mount: kein Typ angegeben - aufgrund des Doppelpunkts wird NFS angenommen\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: kein Typ angegeben - aufgrund des //-Präfixes wird smbfs angenommen\n"
@@ -8171,23 +8195,23 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: „%s“ wird im Hintergrund fortgesetzt\n"
# Not really nice
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: „%s“ schlug fehl\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s ist bereits auf %s eingehängt\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8234,34 +8258,34 @@ msgstr ""
"Weitere Optionen: [-nfFrsvw] [-o optionen] [-p passwdfd].\n"
"Für viele weitere Details: man 8 mount.\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: Nur „root“ kann dies tun"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: %s nicht gefunden - Erzeuge sie...\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: keine passende Partition gefunden"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: Hänge %s ein\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "nichts wurde eingehängt"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: Konnte %s nicht in %s finden"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: Konnte %s nicht in %s oder %s finden"
@@ -8278,11 +8302,11 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: ungültige UUID"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: Fehler beim Erraten des Dateisystemtyps\n"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: Es wurde kein Dateisystemtyp für %s angegeben\n"
@@ -8290,25 +8314,25 @@ msgstr "mount: Es wurde kein Dateisystemtyp für %s angegeben\n"
# Maybe:
# " Es werden alle Dateisystemtypen ausprobiert, die\n"
# " in %s oder %s aufgelistet sind\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr ""
" Werde alle Dateisystemtypen probieren, die in %s oder\n"
" %s aufgelistet sind\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " und es sieht so aus, als sei dies Swap-Bereich\n"
# Maybe: " Es wird der Typ %s ausprobiert\n"
# or : ... "probieren"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " Werde den Typ %s versuchen\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Versuche %s\n"
@@ -8549,11 +8573,11 @@ msgstr "umount: konnte %s nicht im Nur-Lese-Modus wieder einhängen\n"
msgid "%s umounted\n"
msgstr "%s ausgehängt\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr "umount: Kann die Liste der Dateisysteme zum Aushängen nicht finden"
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
@@ -8563,42 +8587,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:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Versuche, %s auszuhängen\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Konnte %s nicht in „mtab“ finden\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s ist laut „mtab“ nicht eingehängt"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: %s scheint mehrfach eingehängt zu sein"
-#: mount/umount.c:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s mount und fstab stimmen nicht überein"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: Nur %s kann %s von %s unmounten"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: Nur „root“ kann dies tun"
@@ -8610,14 +8634,14 @@ msgstr "Nur root kann das Verhalten von Strg-Alt-Entf ändern.\n"
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Aufruf: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
"and the maximum transfer rate in characters/second was %f\n"
msgstr ""
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8625,32 +8649,32 @@ msgid ""
"and the maximum transfer rate in characters/second was %f\n"
msgstr ""
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Ungültiger interner Wert: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Ungültiger Wert zu setzen: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Ungültiger voreingestellter Wert: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Ungültiger Zeit-Wert zu setzen: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Ungültiger voreingestellter Zeit-Wert: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8659,73 +8683,73 @@ msgstr ""
"Aufruf: %s [-q [-i Intervall]] ([-s Wert]|[-S Wert]) ([-t Wert]|[-T Wert]) [-"
"g|-G] Datei [Datei...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "Konnte %s nicht öffnen: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr ""
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr ""
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr ""
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr ""
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr ""
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr ""
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr ""
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr ""
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr ""
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr ""
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr ""
@@ -10020,6 +10044,9 @@ msgstr "Eingabezeile ist zu lang.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Speicher ist alle beim Vergrößern eines Puffers.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: Der Dateisystemtyp „%s“ wird nicht vom Kernel unterstützt"
+
#~ msgid "mount: the label %s occurs on both %s and %s\n"
#~ msgstr "mount: das Label %s gibt es sowohl auf %s als auch auf %s\n"
diff --git a/po/es.po b/po/es.po
index 0fbe2be57..b3e9578fc 100644
--- a/po/es.po
+++ b/po/es.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+0100\n"
"PO-Revision-Date: 2003-08-09 16:18+0200\n"
"Last-Translator: Santiago Vila Doncel <sanvila@unex.es>\n"
"Language-Team: Spanish <es@li.org>\n"
@@ -116,7 +116,7 @@ msgstr "%s: error de ioctl en %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr "RO RA SSZ BSZ StartSec Size Device\n"
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "uso:\n"
@@ -1283,11 +1283,11 @@ msgstr " %s [ -c | -y | -n | -d ] dispositivo\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] dispositivo\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Inutilizable"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Espacio libre"
@@ -1431,8 +1431,8 @@ msgstr "Tecla no permitida"
msgid "Press a key to continue"
msgstr "Pulse una tecla para continuar"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primaria"
@@ -1440,8 +1440,8 @@ msgstr "Primaria"
msgid "Create a new primary partition"
msgstr "Crea una nueva particin primaria"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Lgica"
@@ -1449,7 +1449,7 @@ msgstr "Lgica"
msgid "Create a new logical partition"
msgstr "Crea una nueva particin lgica"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Cancelar"
@@ -1485,167 +1485,183 @@ msgstr "Aade la particin al final del espacio libre"
msgid "No room to create the extended partition"
msgstr "No hay espacio para crear la particin extendida"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "No existe ninguna tabla de particiones.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr ""
"No hay tabla de particiones o firma desconocida en tabla de particiones"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Slo imprime la tabla de particiones"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "No existe ninguna tabla de particiones.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Quiere comenzar con una tabla vaca? [y/N]"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Ha especificado ms cilindros de los que caben en el disco"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "No se puede abrir la unidad de disco"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr ""
"El disco abierto es de slo lectura; no tiene permiso para escribir en l"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "No se puede obtener el tamao del disco"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Particin primaria incorrecta"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Particin lgica incorrecta"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Atencin!: esta operacin puede destruir datos del disco"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Est seguro de que desea escribir la tabla de particiones en el disco?\n"
" (s o no): "
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "no"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "No se ha escrito la tabla de particiones en el disco"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "s"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Por favor escriba `s' (con acento) o `no'"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Se est escribiendo la tabla de particiones en el disco..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Se ha escrito la tabla de particiones en el disco"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Se ha escrito la tabla de particiones, pero la nueva lectura de la tabla\n"
"ha fallado. Reinicie para actualizar la tabla."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Ninguna particin primaria est marcada como iniciable.\n"
"El MBR de DOS no podr iniciar esto."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Hay marcada como iniciable ms de una particin primaria.\n"
"El MBR de DOS no puede iniciar esto."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr ""
"Escriba el nombre de fichero o pulse Intro para visualizar en pantalla: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "No se puede abrir el fichero '%s'"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Unidad de disco: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Sector 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Sector %d:\n"
# Masculino, porque se refiere a un tipo de particin.
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Ninguno"
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/Lg"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primaria"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Lgica"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Desconocido"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Inicio"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
# Masculino, porque se refiere a "Indicadores"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
msgid "None"
msgstr "Ninguno"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Tabla de particiones para %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
msgid " First Last\n"
msgstr " Primer ltimo\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1653,7 +1669,7 @@ msgstr ""
"N Tipo Sector Sector Despl. Longitud Tipo sist. fich. (ID) "
"Indicad.\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1662,473 +1678,473 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ----Inicio---- -----Final---- Comienzo Nmero de\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr "N Ind. Cab. Sec. Cil. ID Cab. Sec. Cil. Sector Sectores\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "En bruto (raw)"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Imprime la tabla utilizando el formato de datos en bruto"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Sectores"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Imprime la tabla ordenada por sectores"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Tabla"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Slo imprime la tabla de particiones"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "No imprime la tabla"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Pantalla de ayuda para cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "cfdisk es un programa de particiones de disco basado en curses que"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "permite crear, suprimir y modificar particiones en la unidad"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "de disco duro."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Orden Significado"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "----- -----------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b Conmuta el indicador de iniciable de la particin actual"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Suprime la particin actual"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g Cambia los parmetros de cilindros, cabezas y sectores por pista"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " ATENCIN: Se recomienda utilizar esta opcin nicamente"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " si se conoce el funcionamiento de la misma."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Imprime esta pantalla"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximiza la utilizacin del disco de la particin actual"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Nota: Esta opcin puede hacer que la particin sea"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " incompatible con DOS, OS/2,..."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Crea una nueva particin a partir del espacio libre"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr ""
" p Imprime la tabla de particiones en la pantalla o en un fichero"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Hay varios formatos distintos para la particin"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " entre los que puede elegir:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - Datos en bruto (exactamente lo que escribira en el "
"disco)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Tabla ordenada por sectores"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Tabla con formato en bruto"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q Sale del programa sin escribir la tabla de particiones"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Cambia el tipo de sistema de ficheros"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr ""
" u Cambia las unidades de visualizacin del tamao de la particin"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Alterna entre MB, sectores y cilindros"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Escribe la tabla de particiones en el disco (W en maysculas)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Esta operacin de escritura puede causar la destruccin"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
" de datos del disco, por lo que debe confirmarla o rechazarla"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " escribiendo `s' o `no'"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Flecha arriba Desplaza el cursor a la particin anterior"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Flecha abajo Desplaza el cursor a la particin siguiente"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "Ctrl-L Vuelve a dibujar la pantalla"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Imprime esta pantalla"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Nota: todas las rdenes pueden escribirse en maysculas o minsculas"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "(salvo W para operaciones de escritura)."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cilindros"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Cambia la geometra de cilindros"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Cabezas"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Cambiar geometra de cabezas"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Cambiar geometra de sectores"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Fin"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Ha finalizado la operacin de cambio de geometra"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Escriba el nmero de cilindros: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Valor de cilindros no permitido"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Escriba el nmero de cabezas: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Valor de cabezas no permitido"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Escriba el nmero de sectores por pista: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Valor de sectores no permitido"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Escriba el tipo de sistema de ficheros: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "No se puede cambiar el tipo de sistema de ficheros a vaco"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "No se puede cambiar el tipo de sistema de ficheros a extendido"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Desc.(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Pri/Lg"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Desconocido (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Unidad de disco: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Tamao: %lld bytes, %lld MB"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Tamao: %lld bytes, %lld.%lld GB"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Cabezas: %d Sectores por pista: %d Cilindros: %lld"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Nombre"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Indicadores"
# Este espacio inicial es para que no se pegue con la s de Indicadores
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr " Tipo"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Tipo de S.F."
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Etiqueta]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
msgid " Sectors"
msgstr " Sectores"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
msgid " Cylinders"
msgstr " Cilindros"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
msgid " Size (MB)"
msgstr " Tamao(MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
msgid " Size (GB)"
msgstr "Tamao (GB)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Iniciable"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Conmuta el indicador de iniciable de la particin actual"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Suprimir"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Suprime la particin actual"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometra"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Cambia la geometra del disco (slo para usuarios avanzados)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Ayuda"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Imprime esta pantalla"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Maximizar"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr ""
"Maximiza el uso de disco de la particin actual (slo usuarios avanzados)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Nueva"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Crea una nueva particin a partir del espacio libre"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Imprimir"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Imprime la tabla de particiones en la pantalla o en un fichero"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Salir"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Sale del programa sin escribir la tabla de particiones"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Tipo"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Cambia el tipo de sistema de ficheros (DOS, Linux, OS/2, etc.)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Unidades"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Cambia las unidades para el tamao de la particin (MB, sect., cil.)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Escribir"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr ""
"Escribe la tabla de particiones en el disco (puede destruirse informacin)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "No se puede convertir esta particin en una particin iniciable"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "No se puede suprimir una particin vaca"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "No se puede maximizar esta particin"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Esta particin se encuentra en estado inutilizable"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Esta particin ya est en uso"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "No se puede cambiar el tipo de una particin vaca"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "No hay ms particiones"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Orden ilegal"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2406,12 +2422,12 @@ msgstr "Debe establecer"
msgid "heads"
msgstr "cabezas"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "sectores"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "cilindros"
@@ -2821,13 +2837,13 @@ msgstr "El total de sectores asignados %d supera el mximo %d\n"
msgid "%lld unallocated sectors\n"
msgstr "%d sectores no asignados\n"
-#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2985,7 +3001,7 @@ msgstr "El disco %s no contiene una tabla de particiones vlida\n"
msgid "Cannot open %s\n"
msgstr "No se puede abrir %s\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "No se puede abrir %s\n"
@@ -3658,22 +3674,22 @@ msgstr "S\n"
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:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr ""
"Se est intentando generar una entrada de disco completo automticamente.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "Ya existen particiones que abarcan el disco completo.\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3681,18 +3697,18 @@ msgstr ""
"Se recomienda que la particin 11\n"
"abarque el disco completo y sea del tipo `SGI volume'\n"
-#: fdisk/fdisksgilabel.c:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " ltimo %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3704,7 +3720,7 @@ msgstr ""
"operacin, el contenido anterior se habr perdido de forma irrecuperable.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3715,12 +3731,12 @@ msgstr ""
"la geometra del cilindro de %d. Este valor podra estar truncado para\n"
"dispositivos > 33.8 GB.\n"
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr "Intentando conservar los parmetros de la particin %d.\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tPRINCIPIO=%d\tLONGITUD=%d\n"
@@ -4322,91 +4338,91 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "Error de bsqueda en %s; no se puede buscar en %lu\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "Error de bsqueda: se esperaba 0x%08x%08x, se ha obtenido 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "No queda memoria; se abandona el intento\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "Error de lectura en %s; no se puede leer el sector %lu\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "ERROR: el sector %lu no tiene una firma msdos\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "Error de escritura en %s; no se puede escribir el sector %lu\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "No se puede abrir el fichero de guardar sector de particin (%s)\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "Error de escritura en %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "No se puede ejecutar stat para fichero de restaurar particin (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
"Tamao incorrecto de fichero de restaurar particin; no se efecta "
"restauracin\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "No queda memoria?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "No se puede abrir fichero de restaurar particin (%s)\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "Error al leer %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "No se puede abrir el dispositivo %s para escribir\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "Error al escribir el sector %lu en %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Disco %s: no se puede obtener la geometra\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Disco %s: no se puede obtener el tamao\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4417,22 +4433,22 @@ msgstr ""
"disco entero. Usar fdisk con ella probablemente no tiene sentido.\n"
"[Use la opcin --force si realmente desea realizar esta operacin.]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Atencin: HDIO_GETGEO indica que hay %lu cabezas\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Atencin: HDIO_GETGEO indica que hay %lu sectores\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Atencin: HDIO_GETGEO indica que hay %lu cilindros\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4441,7 +4457,7 @@ msgstr ""
"Atencin: nmero improbable de sectores (%lu); normalmente 63 como mximo\n"
"Esto causar problemas con el software que direccione con Cil./Cab./Sector\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4450,7 +4466,7 @@ msgstr ""
"\n"
"Disco %s: %lu cilindros, %lu cabezas, %lu sectores/pista\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
@@ -4458,7 +4474,7 @@ msgstr ""
"%s de particin %s tiene un valor imposible para cabeza: %lu\n"
"(debe estar entre 0 y %lu)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4467,7 +4483,7 @@ msgstr ""
"%s de particin %s tiene un valor imposible para sector: %lu\n"
"(debe estar entre 1 y %lu)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4476,7 +4492,7 @@ msgstr ""
"%s de particin %s tiene un valor imposible para cilindros: %lu\n"
"(debe estar entre 0 y %lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4484,11 +4500,11 @@ msgstr ""
"Id Nombre\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Volviendo a leer la tabla de particiones...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4496,31 +4512,31 @@ msgstr ""
"La orden para volver a leer la tabla de particiones ha fallado.\n"
"Reinicie el sistema ahora, antes de utilizar mkfs.\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Error al cerrar %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: esta particin no existe\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "Formato no reconocido; utilizando sectores\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# tabla de particiones de %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "formato no implementado; utilizando %s\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4529,11 +4545,11 @@ msgstr ""
"Unidades = cilindros de %lu bytes, bloques de 1024 bytes, contando desde %d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Disp. Inic. Princ. Fin Ncil Nbloq. Id Sistema\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4542,11 +4558,11 @@ msgstr ""
"Unidades = sectores de 512 bytes, contando desde %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Disp. Inicio Principio Fin N sect. Id Sistema\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4555,12 +4571,12 @@ msgstr ""
"Unidades = bloques de 1024 bytes, contando desde %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Disp. Inic. Principio Fin Nbloques Id Sistema\n"
# FIXME: Qu es un mebibyte?
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4570,34 +4586,34 @@ msgstr ""
"%d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Disp. Inic Princ. Fin MiB Nbloques Id Sistema\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"\t\tprincipio: (cil.,cab.,sect.) esperado (%ld,%ld,%ld) detectado (%ld,%ld,%"
"ld)\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"\t\tfin: (cil.,cab.,sect.) esperado (%ld,%ld,%ld) detectado (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr ""
"La particin termina en el cilindro %ld, ms all del final del disco\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "No se ha encontrado ninguna particin\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4608,53 +4624,53 @@ msgstr ""
" para Cil./Cab./Sect.=*/%ld/%ld (en lugar de %ld/%ld/%ld).\n"
"Para este listado se presupondr esta geometra.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "No existe ninguna tabla de particiones.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "Extraamente slo hay %d particiones definidas.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr ""
"Atencin: la particin %s tiene tamao 0 pero no est marcada como vaca\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Atencin: la particin %s tiene tamao 0 y es iniciable\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr ""
"Atencin: la particin %s tiene tamao 0 y principio distinto de cero\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Atencin: la particin %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "no se encuentra dentro de la particin %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Atencin: las particiones %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "y %s se solapan\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4663,17 +4679,17 @@ msgstr ""
"Atencin: la particin %s contiene parte de la tabla de particiones\n"
"(sector %lu), y la destruir cuando se llene\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Atencin: la particin %s empieza en el sector 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Atencin: la particin %s finaliza ms all del final del disco\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4681,17 +4697,17 @@ msgstr ""
"Como mximo una de las particiones primarias puede ser extendida\n"
" (aunque esto no es un problema bajo Linux)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Atencin: la particin %s no empieza en un lmite de cilindro\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Atencin: la particin %s no termina en un lmite de cilindro\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4700,7 +4716,7 @@ msgstr ""
"Esto no es poblema para LILO, pero el MBR de DOS no se iniciar con este "
"disco.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4708,7 +4724,7 @@ msgstr ""
"Atencin: normalmente slo es posible iniciar desde particiones primarias.\n"
"LILO no tiene en cuenta el indicador de iniciable.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4718,11 +4734,11 @@ msgstr ""
"Esto no es problema para LILO, pero el MBR de DOS no iniciar con este "
"disco.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
msgid "start"
msgstr "comienzo"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
@@ -4730,24 +4746,24 @@ msgstr ""
"Particin %s: principio: (cil.,cab.,sect.) esperado (%ld,%ld,%ld) detectado "
"(%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
msgid "end"
msgstr "final"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"Particin %s: fin: (cil.,cab.,sect.) esperado (%ld,%ld,%ld) detectado (%ld,%"
"ld,%ld)\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr ""
"La particin %s termina en el cilindro %ld, ms all del final del disco\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
@@ -4756,7 +4772,7 @@ msgstr ""
"Atencin: se desplaza el comienzo de la particin extd de %ld a %ld\n"
"(Solamente para visualizarlo. No se cambia su contenido.)\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4765,133 +4781,133 @@ msgstr ""
"DOS y Linux interpretarn el contenido de forma diferente.\n"
"\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "demasiadas particiones - se ignoran las posteriores al n (%d)\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "rbol de particiones?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "Administrador de disco detectado; no se puede tratar esto\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "Detectada firma DM6 - abandonando\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "Situacin anmala: particin extendida de tamao 0?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "Situacin anmala: particin BSD de tamao 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: particin no reconocida\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "Se ha especificado el indicador -n: no se ha producido ningn cambio\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Error al guardar los sectores antiguos; anulando la operacin\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "Error al escribir la particin en %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "Lnea de entrada larga o incompleta; se abandona la operacin\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "Error de entrada: se esperaba `=' despus del campo %s\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "Error de entrada: carcter inesperado %c tras campo %s\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "Entrada no reconocida: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "Nmero demasiado elevado\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "Datos extraos tras el nmero\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "No hay espacio para descriptor de particin\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "No se puede crear particin extendida adyacente\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "Demasiados campos de entrada\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "No queda ms espacio\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Tipo no permitido\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
"Atencin: el tamao dado (%lu) supera el tamao mximo permitido (%lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Atencin: particin vaca\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Atencin: principio de particin incorrecto (antes %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "Indicador de iniciable no reconocido; elija - o *\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "Especificacin parcial de cil,cab,sect?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Particin extendida en ubicacin no esperada\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "Entrada incorrecta\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "Hay demasiadas particiones\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4903,48 +4919,48 @@ msgstr ""
"<cil,cab,sec>\n"
"Normalmente slo debe especificar <principio> y <tamao> (y quizs <tipo>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "versin"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Uso: %s [opciones] dispositivo ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "dispositivo: similar a /dev/hda or /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "opciones tiles:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [o --show-size]: Muestra el tamao de una particin"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr ""
" -c [o --id]: Imprime o cambia el identificador de particin"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [o --list]: Muestra las particiones de cada dispositivo"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
" -d [o --dump]: Igual, pero con un formato adecuado para entrada\n"
" posterior"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr ""
" -i [o --increment]: Nmero de cilindros, etc. desde 1 y no desde 0"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
@@ -4952,60 +4968,60 @@ msgstr ""
" -uS, -uB, -uC, -uM: Acepta/muestra en unidades de\n"
" sectores/bloques/cilindros/MB"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [o --list-types]: Muestra los tipos de particiones conocidos"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
" -D [o --DOS]: Para compatibilidad con DOS: se pierde algo de "
"espacio"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr ""
" -R [o --re-read]: Hace que el ncleo vuelva a leer la tabla de\n"
" particiones"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr ""
" -N# : Cambia nicamente la particin con el nmero #"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : No escribe realmente en el disco"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr ""
" -O fichero : Guarda los sectores que se van a sobreescribir\n"
" en `fichero'"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I fichero: Restaura estos sectores de nuevo"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [o --version]: Imprime la versin"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [o --help]: Imprime este mensaje"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "opciones peligrosas:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr ""
" -g [o --show-geometry]: Imprime la idea del ncleo sobre la geometra"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -5013,7 +5029,7 @@ msgstr ""
" -x [o --show-extended]: Muestra tambin las particiones extendidas en\n"
" salida o espera sus descriptores en entrada"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
@@ -5021,114 +5037,114 @@ msgstr ""
"para\n"
" Linux"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [o --quiet]: Suprime mensajes de aviso"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " Puede modificar la geometra detectada utilizando:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr ""
" -C# [o --cylinders #]: Establece el nmero de cilindros que se utilizarn"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr ""
" -H# [o --heads #]: Establece el nmero de cabezas que se utilizarn"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr ""
" -S# [o --sectors #]: Establece el nmero de sectores que se utilizarn"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Puede desactivar toda comprobacin de coherencia con:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr ""
" -f [o --force]: Hace lo que ordene el usuario, aunque sea ilgico"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Uso:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s dispositivo\t\t Enumera las particiones activas del dispositivo\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr ""
"%s dispositivo n1 n2 ... activar particiones n1 ..., desactivar el resto\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr "%s -An dispositivo\t activa la particin n, desactiva el resto\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "ninguna orden?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "total: %d bloques\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "uso: sfdisk --print-id dispositivo nmero-particin\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "uso: sfdisk --change-id dispositivo nmero-particin Id\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "uso: sfdisk --id dispositivo nmero-particin [Id]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "puede especificar slo un dispositivo (salvo con -l o -s)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "No se puede abrir %s para lectura-escritura\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "No se puede abrir %s para lectura\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: Correcto\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ld cilindros, %ld cabezas, %ld sectores por pista\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "no se puede obtener el tamao de %s"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "byte activo incorrecto: 0x%x en lugar de 0x80\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5136,7 +5152,7 @@ msgstr ""
"Fin\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5145,35 +5161,35 @@ msgstr ""
"Tiene %d particiones primarias activas. No tiene importancia para LILO,\n"
"pero el MBR de DOS slo puede iniciar discos con una particin activa.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "la particin %s tiene el identificador %x y no est oculta\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "Identificador %lx incorrecto\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Actualmente este disco est en uso.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Error muy grave: no se puede encontrar %s\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Atencin: %s no es un dispositivo de bloques\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Comprobando que nadie est utilizando este disco en este momento...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5188,28 +5204,28 @@ msgstr ""
"esta\n"
"comprobacin.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Utilice el indicador --force para eludir todas las comprobaciones.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "Correcto\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Situacin anterior:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "La particin %d no existe; no se puede cambiar\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Situacin nueva:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5218,21 +5234,21 @@ msgstr ""
"nada.\n"
"(Si realmente desea realizar esta operacin, use la opcin --force.)\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr ""
"El sistema no encuentra adecuada esta operacin; probablemente deba "
"responder No\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Est satisfecho con esta operacin? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Desea escribir esta informacin en el disco? [ynq] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5240,15 +5256,15 @@ msgstr ""
"\n"
"sfdisk: final de entrada antes de lo previsto\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Se est saliendo; no se ha cambiado nada\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Responda con una de las entradas siguientes: y,n,q\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5256,7 +5272,7 @@ msgstr ""
"La nueva tabla de particiones se ha escrito correctamente\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5362,44 +5378,44 @@ msgstr "getopt (mejorado) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "Error interno; contacte con el desarrollador."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "iniciado desde MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Reloj BCD Ruffian\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "puerto de reloj ajustado a 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: %s atmico ha fallado para 1000 iteraciones."
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "No se puede abrir /dev/port: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "No se ha podido obtener permiso porque no se ha intentado.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr ""
"%s no puede obtener acceso al puerto de E/S: la llamada iopl(3) ha fallado.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Probablemente son necesarios los privilegios de usuario root.\n"
@@ -5882,36 +5898,37 @@ msgstr ""
"Utilice la opcin --debug para ver los detalles de la bsqueda para un "
"mtodo de acceso.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Esperando en bucle que cambie la hora de KDGHWCLK\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "Error de ioctl KDGHWCLK al leer la hora"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Se ha excedido el tiempo de espera del cambio de hora.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "Error en bucle de ioctl KDGHWCLK al leer la hora"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() no ha podido leer la hora de %s"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "Error de ioctl KDGHWCLK"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "No se puede abrir /dev/tty1 o /dev/vc/1"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "Error de ioctl KDGHWCLK"
@@ -6244,7 +6261,7 @@ msgstr "Error de contrasea."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Contrasea: "
@@ -6304,7 +6321,7 @@ msgstr ""
msgid "Finger information changed.\n"
msgstr "Se ha cambiado la informacin de finger.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "La asignacin de memoria (malloc) ha fallado"
@@ -7053,7 +7070,7 @@ msgstr "No se puede ejecutar umount; se abandona la operacin umount."
msgid "Unmounting any remaining filesystems..."
msgstr "Desmontando los sistemas de ficheros restantes..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: No se puede ejecutar umount %s: %s\n"
@@ -7701,17 +7718,17 @@ msgstr "Mensaje de %s@%s (como %s) en %s a las %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Mensaje de %s@%s el %s a las %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "atencin: error al leer %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "atencin: no se puede abrir %s: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: no se ha podido abrir %s; en su lugar se utiliza %s\n"
@@ -7720,42 +7737,42 @@ msgstr "mount: no se ha podido abrir %s; en su lugar se utiliza %s\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"No se puede crear el fichero de bloqueo %s: %s (utilice -n para modificar "
"este valor)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"No se puede enlazar el fichero de bloqueo %s: %s (utilice -n para modificar "
"este valor)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
"No se puede abrir el fichero de bloqueo %s: %s (utilice -n para modificar "
"este valor)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "No se puede bloquear el fichero de bloqueo %s: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "No se puede bloquear el fichero de bloqueo %s: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "Tiempo de espera excedido"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7764,22 +7781,22 @@ msgstr ""
"No se puede crear enlace %s\n"
"Puede que haya un fichero de bloqueo obsoleto.\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "No se puede abrir %s (%s) - mtab no actualizado"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "Error al escribir %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "Error al cambiar el modo de %s: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "No se puede cambiar el nombre %s por %s: %s\n"
@@ -7841,28 +7858,28 @@ msgstr "mount: no se ha encontrado ningn dispositivo de bucle libre"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "No se pudo bloquear en memoria, saliendo.\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): ejecucin correcta\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: no se puede suprimir el dispositivo %s: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): ejecucin correcta\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
"Este montaje se ha compilado sin soporte de bucle. Vuelva a realizar la "
"compilacin.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7875,191 +7892,191 @@ msgstr ""
" %s -d dispositivo_bucle # eliminar\n"
" %s [ -e cifrado ] [ -o despl ] disp_bucle fichero # configurar\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "No hay suficiente memoria"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Al compilar no haba soporte de bucle disponible. Vuelva a realizar la "
"compilacin.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr "[mntent]: atencin: no hay ninguna nueva lnea final al final de %s\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: la lnea %d de %s es incorrecta%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; el resto del fichero no se tiene en cuenta"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: segn mtab, %s ya est montado en %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: segn mtab, %s est montado en %s"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: no se puede abrir %s para escritura: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: error al escribir %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: error al cambiar el modo de %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s parece espacio de intercambio - no montado"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "montaje errneo"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: slo el usuario root puede montar %s en %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: dispositivo de bucle especificado dos veces"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: tipo especificado dos veces"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: omitiendo la configuracin de un dispositivo de bucle\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: se va a utilizar el dispositivo de bucle %s\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: error al configurar dispositivo de bucle\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: configuracin correcta de dispositivo de bucle\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: no se puede abrir %s: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: el argumento para -p o --pass-fd debe ser un nmero"
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: no se puede abrir %s para establecer la velocidad"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: no se puede establecer la velocidad: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: no se puede bifurcar (fork): %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: esta versin se ha compilado sin soporte para el tipo `nfs'"
# FIXME: Falta un . en el original.
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: fall con la versin 4 de nfs mount, probando con la 3...\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: no se ha podido determinar el tipo de sistema de ficheros y no se ha\n"
"especificado ninguno"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: debe especificar el tipo de sistema de ficheros"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: montaje errneo"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: el punto de montaje %s no es un directorio"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: permiso denegado"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: debe ser superusuario para utilizar mount"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s est ocupado"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc ya est montado"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s ya est montado o %s est ocupado"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: el punto de montaje %s no existe"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: el punto de montaje %s es un enlace simblico sin destino"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: el dispositivo especial %s no existe"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8068,12 +8085,12 @@ msgstr ""
"mount: el dispositivo especial %s no existe\n"
" (un prefijo de ruta no es un directorio)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s no est montado todava o una opcin es incorrecta"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -8083,36 +8100,41 @@ msgstr ""
"superbloque incorrecto en %s,\n"
" o nmero de sistemas de ficheros montados excesivo"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "tabla de dispositivos montados completa"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: no se puede leer el superbloque"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "umount: %s: dispositivo desconocido"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr ""
-"mount: el tipo de sistema de ficheros %s no est soportado por el ncleo"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l Lista los tipos de sistemas de ficheros conocidos"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: probablemente quera referirse a %s"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: tal vez quera referirse a iso9660?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: tal vez quera referirse a iso9660?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8120,12 +8142,12 @@ msgstr ""
"%s no soportado"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s no es un dispositivo de bloques y stat falla?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8134,51 +8156,51 @@ msgstr ""
"mount: el ncleo no reconoce %s como dispositivo de bloques\n"
" (tal vez `insmod driver'?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s no es un dispositivo de bloques (pruebe `-o loop')"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s no es un dispositivo de bloques"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s no es un dispositivo de bloques vlido"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "dispositivo de bloques "
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "umount: no se puede montar %s%s de slo lectura"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr ""
"mount: %s%s est protegido contra escritura pero se ha dado la opcin `-w'"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr ""
"mount: %s%s est protegido contra escritura; se monta como slo lectura"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
"mount: no se ha especificado ningn tipo; se presupone nfs por los dos "
"puntos\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: no se ha especificado ningn tipo; se presupone smbfs por el "
@@ -8187,22 +8209,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: ejecutando en segundo plano \"%s\"\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: se abandona \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s ya est montado en %s\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8250,34 +8272,34 @@ msgstr ""
"Otras opciones: [-nfFrsvw] [-o opciones] [-p passwdfd].\n"
"Escriba man 8 mount para saber mucho ms.\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: slo el usuario root puede efectuar esta accin"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: no se ha encontrado %s; se est creando...\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: no se ha encontrado esta particin"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: montando %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "no se ha montado nada"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: no se puede encontrar %s en %s"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: no se puede encontrar %s en %s o %s"
@@ -8294,30 +8316,30 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: UUID incorrecto"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: error al intentar adivinar el tipo de sistema de ficheros\n"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: no ha especificado ningn tipo de sistema de ficheros para %s\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " Se probar con todos los tipos indicados en %s o %s\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " y parece que sea un espacio de intercambio\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " Se probar con el tipo %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Probando con %s\n"
@@ -8551,12 +8573,12 @@ msgstr "umount: no se ha podido volver a montar %s como de slo lectura\n"
msgid "%s umounted\n"
msgstr "Se ha ejecutado umount en %s\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr ""
"umount: no se puede encontrar lista de sistemas de ficheros para desmontar"
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
@@ -8566,42 +8588,42 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opciones]\n"
" umount [-f] [-r] [-n] [-v] special | node...\n"
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Se est intentando ejecutar umount en %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "No se puede encontrar %s en mtab\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s no est montado (segn mtab)"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: parece que %s se ha montado varias veces"
-#: mount/umount.c:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: montaje de %s no concuerda con fstab"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: slo %s puede desmontar %s desde %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: slo el usuario root puede efectuar esta accin"
@@ -8614,7 +8636,7 @@ msgstr ""
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Uso: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8623,7 +8645,7 @@ msgstr ""
"Fichero %s, para valor de umbral %lu, mximo de caracteres en fifo fue %d\n"
"y velocidad de transferencia mxima en caracteres por segundo fue %f\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8634,32 +8656,32 @@ msgstr ""
"de caracteres en fifo fue %d\n"
"y velocidad de transferencia mxima en caracteres por segundo fue %f\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Valor de intervalo invlido: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Valor establecido invlido: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Valor predeterminado invlido: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Valor de hora establecido invlido: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Valor de hora predeterminado invlido: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8668,56 +8690,56 @@ msgstr ""
"Uso: %s [-q [-i intervalo]] ([-s valor]|[-S valor]) ([-t valor]|[-T valor]) "
"[-g|-G] fichero [fichero...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "No se puede abrir %s: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "No se puede establecer %s en el umbral %d: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "No se puede establecer %s en el umbral de hora %d: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "No se puede obtener el umbral para %s: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "No se puede obtener el tiempo de espera para %s: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld umbral actual y %ld tiempo de espera actual\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld umbral predeterminado y %ld tiempo de espera predeterminado\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "No se puede establecer el manejador de seales"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "gettimeofday ha fallado"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "No se puede emitir CYGETMON en %s: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8725,12 +8747,12 @@ msgstr ""
"%s: %lu enteros, %lu/%lu caracteres; fifo: %lu umbral, %lu tiempo_espera, %"
"lu mximo, %lu ahora\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f enteros/seg.; %f recepcin, %f envo (caracteres/seg.)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8738,7 +8760,7 @@ msgstr ""
"%s: %lu enteros, %lu caracteres; fifo: %lu umbral, %lu tiempo_espera, %lu "
"mximo, %lu ahora\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f enteros/seg.; %f recepcin (caracteres/seg.)\n"
@@ -10040,6 +10062,10 @@ msgstr "Lnea de entrada demasiado larga.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "No queda memoria al aumentar el tamao del bfer.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr ""
+#~ "mount: el tipo de sistema de ficheros %s no est soportado por el ncleo"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "Error de ioctl BLKGETSIZE para %s\n"
diff --git a/po/et.po b/po/et.po
index 58ecf4fc5..b345531df 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-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+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"
@@ -114,7 +114,7 @@ msgstr ""
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr ""
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "Kasutamine:\n"
@@ -1222,11 +1222,11 @@ msgstr "%s [ -c | -y | -n | -d ] seade\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr "%s [ -c | -y | -n ] seade\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Kasutamatu"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Vaba ruum"
@@ -1366,8 +1366,8 @@ msgstr "Vale klahv"
msgid "Press a key to continue"
msgstr "Vajuta mnda klahvi jtkamiseks"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primaarne"
@@ -1375,8 +1375,8 @@ msgstr "Primaarne"
msgid "Create a new primary partition"
msgstr "Loo uus primaarne partitsioon"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Loogiline"
@@ -1384,7 +1384,7 @@ msgstr "Loogiline"
msgid "Create a new logical partition"
msgstr "Loo uus loogiline partitsioon"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Thista"
@@ -1420,161 +1420,177 @@ msgstr "Lisada partitsioon vaba ruumi lppu"
msgid "No room to create the extended partition"
msgstr "Pole ruumi extended-partitsiooni tegemiseks"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "Partitsioonitabelit ei ole\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Puuduv partitsioonitabel vi vale signatuur partitsioonitabelis"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Trkkida lihtsalt tabel"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "Partitsioonitabelit ei ole\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Kas soovite alustada thja tabeliga [y/N] ?"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Te andiste suurema silindrite arvu kui kettale mahub"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "Ei suuda avada kettaseadet"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "Avasin ketta ainult lugemiseks - kirjutamiseks pole igust"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Ei suuda kindlaks teha ketta mahtu"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Vigane primaarne partitsioon"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Vigane loogiline partitsioon"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Hoiatus!! See vib Teie kettal andmeid hvitada!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr "Olete kindel, et soovite salvestada partitsioonitabelit? (jah vi ei):"
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "ei"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "Ei kirjutanud partitsioonitabelit kettale"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "jah"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Palun sisestage `jah' vi `ei'"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Kirjutan partitsioonitabelit kettale..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Kirjutasin partitsioonitabeli kettale"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Kirjutasin partitsioonitabeli, aga tagasi lugemine ebannestus. Reboot abiks."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"kski primaarne partitsioon pole mrgitud buutivaks. DOSi MBR ei suuda siit "
"buutida."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Rohkem kui ks primaarne partitsioon on mrgitud buutivaks. DOSi MBR ei "
"suuda siit buutida."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Siseta failinimi vi vajuta RETURN ekraanil nitamiseks: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "Ei suuda avada faili `%s'"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Kettaseade: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Vaba "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primaarne"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Loogiline"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Tundmatu"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Buutiv"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, fuzzy, c-format
msgid "(%02X)"
msgstr "Tundmatu (%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
#, fuzzy
msgid "None"
msgstr "valmis (D)"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Partitsioonitabel kettal %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
#, fuzzy
msgid " First Last\n"
msgstr " Esimene Viimane\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
#, fuzzy
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
@@ -1582,7 +1598,7 @@ msgid ""
msgstr ""
" # Tp Sektor Sektor Offset Pikkus Failisst. tp (ID) Lipud\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1592,472 +1608,472 @@ msgstr ""
"---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ----Algus----- -----Lpp----- Esimene Sektorite\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
#, fuzzy
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Lipud Pea Sekt Sil ID Pea Sekt Sil sektor arv\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "tooRes"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Trkkida tabel toores formaadis (baithaaval)"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Sektorid"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Trkkida tabel jrjestatuna sektorite jrgi"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Tabel"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Trkkida lihtsalt tabel"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Ei trki midagi"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "cfdiski abiinfo ekraan"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "See on cfdisk, curses'il baseeruv ketta partitsioneerimise"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "programm, mis lubab luua, kustutada ja muuta partitsioone Teie"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "arvuti kvakettal."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Ksk Thendus"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b Vahetada buuditavuse lippu jooksval partitsioonil"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Kustutada jooksev partitsioon"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Muuta silindrite, peade ja rajal olevate sektorite arvu"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " HOIATUS: See ksk on ainult neile, kes teavad, mida "
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " nad teevad."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Nidata sedasama ekraani"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maksimiseerida jooksva partitsiooni kettakasutus"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Mrkus: see vib teha ketta mittehilduvaks DOSi,"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " OS/2 ja muude operatsioonisteemidega."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Luua uus partitsioon vaba ruumi sisse"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p Vljastada partitsioonitabel ekraanile vi faili"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Vljastamisel vite valida mitme formaadi vahel:"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " "
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - tooRes - see baidijada, mis kettale kirjutataks"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Sektorite jrgi jrjestatud tabel"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Tabel teksti kujul (umbes nagu peaekraanil)"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q Vljuda programmist ilam muutusi salvestamata"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Muuta jooksva partitsiooni failissteemi tpi"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Muuta partitsioonide suuruse ja asukoha hikuid"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Variandid on MB, sektorid ja silindrid"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr " W Kirjutada partitsioonitabel kettale (jah, suurtht)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Kuna see vib kettalt andmeid hvitada, ksitakse"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr " enne kirjutamist kinnitust. Vastata tuleb eestikeelse"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " tissnaga (`jah' vi `ei')."
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Nool les Viia kursor eelmisele reale"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Nool alla Viia kursor jrgmisele reale"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Joonistada ekraan le"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Nidata sedasama ekraani"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Mrkus: kiki neid kske saab sisestada nii suur- kui vikethtedena,"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "vlja arvatud suur W."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "silindrid (C)"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Muuta silindrite arvu geomeetrias"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "pead (H)"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Muuta peade arvu geomeetrias"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Muuta sektorite arvu geomeetrias"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "valmis (D)"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Muutused geomeetrias on tehtud"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Sisestage silindrite arv: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Vigane silindrite arv"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Sisetage peade arv: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Vigane peade arv"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Sisestage sektorite arv rajal: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Vigane sektorite arv"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Sisestage failissteemi tbi number: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Failissteemi tpi ei saa muuta thjaks"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Failissteemi tpi ei saa muuta extended'iks"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Tundmatu (%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Tundmatu (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Kettaseade: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Maht: %lld baiti, %ld MB"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Maht: %lld baiti, %ld.%ld GB"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Pid: %d Sektoreid rajal: %d Silindreid: %d"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Nimi"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Lipud"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Tp"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "FS tp"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Label]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
#, fuzzy
msgid " Sectors"
msgstr "Sektoreid"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
#, fuzzy
msgid " Cylinders"
msgstr "silindrid (C)"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
#, fuzzy
msgid " Size (MB)"
msgstr "Maht (MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
#, fuzzy
msgid " Size (GB)"
msgstr "Maht (GB)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Buutiv"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Vahetada buuditavuse lippu jooksval partitsioonil"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "kustutaDa"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Kustutada jooksev partitsioon"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geomeetria"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Muuta ketta geomeetriat (ainult ekspertidele)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Help"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Nidata abiinfot"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Maksimiseerida"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Maksimiseerida jooksva partitsiooni kettakasutus (ainult ekspertidele)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "uus (N)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Luua uus partitsioon vaba ruumi sisse"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Prindi"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Vljastada partitsioonitabel ekraanile vi faili"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Vlja"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Vljuda programmist ilam muutusi salvestamata"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Tp"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Muuta failissteemi tpi (DOS, Linux, OS/2 jne)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Uhikud"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
"Muuta partitsioonide suuruse nitamise hikuid (MB, sektorid, silindrid)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "salvesta (W)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "Kirjutada partitsioonitabel kettale (vib hvitada andmed)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Seda partitsiooni ei saa buutivaks teha"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Thja partitsiooni ei saa kustutada"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "Seda partitsiooni ei saa maksimiseerida"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "See partitsioon pole kasutatav"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "See partitsioon on juba olemas"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Thja partitsiooni tpi ei saa muuta"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Rohkem partitsioone ei ole"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Vigane ksk"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
#, fuzzy
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-2000 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2337,12 +2353,12 @@ msgstr "Te peate mrama, et eksisteerib nii-ja-nii-mitu"
msgid "heads"
msgstr "pead"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "sektorit"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "silindrit"
@@ -2745,12 +2761,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:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2908,7 +2924,7 @@ msgstr "Seade %s ei sisalda ratuntavat partitsioonitabelit\n"
msgid "Cannot open %s\n"
msgstr "Ei suuda avada seadmefaili %s\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "Ei suuda avada faili %s\n"
@@ -3573,19 +3589,19 @@ msgstr "YES\n"
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:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "ritan genereerida terve ketta kirjet automaatselt\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "Terve ketas on juba partitsioonidega kaetud\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3593,16 +3609,16 @@ msgstr ""
"On limalt soovitav, et 11. partitsioon kataks kogu ketta\n"
"ja oleks tpi \"SGI volume\"\n"
-#: fdisk/fdisksgilabel.c:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr "Viimane %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3613,7 +3629,7 @@ msgstr ""
"kuni Te ise otsustate need kettale kirjutada. Prast seda pole vana sisu\n"
"loomulikult enam taastatav.\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3621,12 +3637,12 @@ msgid ""
"This value may be truncated for devices > 33.8 GB.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr "ritan silitada partitsiooni %d parameetrid\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tSTART=%d\tLENGTH=%d\n"
@@ -4232,89 +4248,89 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "Postisioneerimise viga seadmel %s - ei saa minna positsioonile %lu\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "Positsioneerimise viga: tahtsin 0x%08x%08x, sain 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "Mlu sai otsa - annan alla\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "Lugemisviga seadmel %s - ei saa lugeda sektorit %lu\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "VIGA: sektor %lu ei sisalda msdos'i signatuuri\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "Kirjutamisviga seadmel %s - ei saa kirjutada sektorit %lu\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "Ei suuda avada partitsioonitabeli salvestusfaili (%s)\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "Kirjutamise viga seadmel %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "Ei saa lugeda partitsioonitabeli salvestusfaili staatust (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr "Partitsioonitabeli salvestusfail on vale pikkusega - ei taasta\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "Mlu sai otsa\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "Ei saa avada partitsioonitabeli salvestusfaili (%s)\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "Viga %s lugemisel\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "ei suuda avada seadet %s kirjutamiseks\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "Viga sektori %lu kirjutamisel seadmele %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Ketas %s: ei suuda geomeetriat kindlaks teha\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Ketas %s: ei suuda mahtu kindlaks teha\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4325,22 +4341,22 @@ msgstr ""
"terve ketas. fdiski kasutamine on ilmselt mttetu.\n"
"Kasutage --force vtit, kui testi tahate seda teha.\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Hoiatus: HDIO_GETGEO tles, et seadmel on %lu pead\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Hoiatus: HDIO_GETGEO tles, et seadmel on %lu sektorit\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Hoiatus: BLKGETSIZE/HDIO_GETGEO tles, et seadmel on %lu silindrit\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4350,7 +4366,7 @@ msgstr ""
"See tekitab probleeme kigi programmidega, mis ritavad kasutada\n"
"C/H/S (silinder/pea/sektor) adresseerimist.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4359,14 +4375,14 @@ msgstr ""
"\n"
"Ketas %s: %lu silindrit, %lu pead, %lu sektorit rajal\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
msgstr ""
"%s partitsioonil %s sisaldab vigast pead numbrit: %lu (peaks olema 0-%lu)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4375,7 +4391,7 @@ msgstr ""
"%s partitsioonil %s sisaldab vigast sektori vrtust: %lu (peaks olema 1-%"
"lu)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4384,7 +4400,7 @@ msgstr ""
"%s partitsioonil %s sisaldab vigast silindri vrtust: %lu (peaks olema 0-%"
"lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4392,11 +4408,11 @@ msgstr ""
"ID Nimi\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Loen uuesti partitsioonitabelit...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4404,31 +4420,31 @@ msgstr ""
"Partitsioonitabeli lelugemine ei nnestunud\n"
"Tehke arvutile kohe alglaadimine, enne mkfs kasutamist\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Viga %s sulgemisel\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: sellist partitsiooni ei ole\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "Tundmatu formaat - kasutan sektoreid\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# %s partitsioonitabel\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "Seda formaati pole veel realiseeritud - kasutan %s\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4437,11 +4453,11 @@ msgstr ""
"hikud = silindrid %lu baidiga, plokid 1024 baidiga, loendan alates %d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Seade Buut Algus Lpp #sil #plokke ID Ssteem\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4450,11 +4466,11 @@ msgstr ""
"hikud = sektorid 512 baidiga, loendan alates %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Seade Buut Algus Lpp #sektors ID Ssteem\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4463,11 +4479,11 @@ msgstr ""
"hikud = 1024-baidised plokid, loendan alates %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Seade Buut Algus Lpp #plokke ID Ssteem\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, fuzzy, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4476,31 +4492,31 @@ msgstr ""
"hikud = megabaidid (1048576 baiti), plokid (1024 baiti), loendan alates %d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
#, fuzzy
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Seade Buut Algus Lpp MB #plokke ID Ssteem\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\talgus: (c,h,s) ootasin (%ld,%ld,%ld), sain (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tlpp: (c,h,s) ootasin (%ld,%ld,%ld), sain (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr "Partitsioon lpeb silindril %ld, tagapool ketta lppu\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Ei leidnud htegi partitsiooni\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4511,51 +4527,51 @@ msgstr ""
"C/H/S=*/%ld/%ld jaoks (mitte %ld/%ld/%ld).\n"
"Eeldan seda geomeetriat nimekirja nitamisel.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "Partitsioonitabelit ei ole\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "Imelik, ainult %d partitsiooni on defineeriud\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr "Hoiatus: partitsioon %s on suurusega 0, aga pole mrgitud thjaks\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Hoiatus: partitsioon %s on suurusega 0, kuid on mrgitud buutivaks\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "Hoiatus: partitsioon %s on suurusega 0, kuid algus pole 0\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Hoiatus: partitsioon %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "ei sisaldu partitsioonis %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Hoiatus: partitsioonid %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "ja %s kattuvad\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4564,17 +4580,17 @@ msgstr ""
"Hoiatus: partitsioon %s sisaldab osa partitsioonitabelist (sektor %lu)\n"
"ja hvitab selle, kui ta andmetega tidetakse\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Hoiatus: partitsioon %s algab sektorilt 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Hoiatus: partitsioon %s sidab le ketta otsa\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4582,17 +4598,17 @@ msgstr ""
"Ainult ks primaarsetest partitsioonidest tohib olla extended\n"
"(kuigi see pole Linuxis probleemiks)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Hoiatus: partitsioon %s ei alga silindri piirilt\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Hoiatus: partitsioon %s ei lppe silindri piiril\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4602,7 +4618,7 @@ msgstr ""
"LILO jaoks pole see oluline, aga DOS-i MBR vib buutimisel raskustesse "
"sattuda.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4610,7 +4626,7 @@ msgstr ""
"Hoiatus: harilikult saab buutida ainult primaarsetelt partitsioonidelt,\n"
"ainult LILO ignoreerib buuditavuse lippu.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4618,39 +4634,39 @@ msgstr ""
"Hoiatus: kski primaarne partitsioon pole mrgitud buutivaks (aktiivseks).\n"
"See pole LILO jaoks oluline, aga DOS-i MBR ei suuda siit kettalt buutida.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
msgid "start"
msgstr ""
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
#, fuzzy
msgid "end"
msgstr "End"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr ""
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
"(For listing purposes only. Do not change its contents.)\n"
msgstr ""
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4658,340 +4674,340 @@ msgstr ""
"Hoiatus: extended partitsioon ei alga silindri piirilt.\n"
"DOS ja Linux interpreteerivad selle sisu erinevalt.\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr ""
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr ""
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr ""
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr ""
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr ""
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr ""
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr "Partitsioonitabelit ei ole\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr ""
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr ""
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr ""
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr ""
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr ""
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr ""
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr ""
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr ""
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr ""
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr ""
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr ""
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr ""
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr ""
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr ""
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Hoiatus: thi partitsioon\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr ""
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr ""
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr ""
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr ""
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "Liiga palju partitsioone\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
msgstr ""
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr ""
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Kasutamine: %s [ vtmed ] seade ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr ""
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr ""
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr ""
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr ""
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr ""
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr ""
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
msgstr ""
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr ""
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr ""
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr ""
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr ""
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr ""
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr ""
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr ""
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr ""
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr ""
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr ""
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
msgstr ""
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr ""
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr ""
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr ""
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr ""
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr ""
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr ""
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr ""
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "kasutamine:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr ""
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr ""
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr ""
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr ""
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "kokku: %d plokki\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr ""
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr ""
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr ""
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr ""
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "ei suuda avada seadet %s lugemiseks ja kirjutamiseks\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "ei suuda avada seadet %s lugemiseks\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr ""
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr ""
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "ei suuda kindlaks teha seadme %s mahtu"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr ""
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -4999,42 +5015,42 @@ msgstr ""
"Valmis\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"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"
msgstr ""
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr ""
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr ""
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr ""
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Fataalne viga: ei suuda leida %s\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Hoiatus: %s pole plokkseade\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr ""
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5042,66 +5058,66 @@ msgid ""
"Use the --no-reread flag to suppress this check.\n"
msgstr ""
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr ""
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr ""
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr ""
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr ""
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr ""
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
msgstr ""
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr ""
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr ""
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr ""
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
msgstr ""
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr ""
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Palun sisestage y, n vi q\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
msgstr ""
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5194,43 +5210,43 @@ msgstr ""
msgid "internal error, contact the author."
msgstr ""
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "buuditud MILO'st\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Ruffiani BCD kell\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "kella port parandatud aadressiks 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "Vinge masin!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomaarne '%s' ei nnestunud 1000 katse jooksul!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Ei suuda avada seadet /dev/port: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "Ei saanud luba, sest ei ksinudki\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s ei saanud I/O portidele ligi: iopl(3) ei nnestunud\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Ilmselt on vaja roodu igusi\n"
@@ -5690,36 +5706,37 @@ msgid ""
msgstr ""
"Kasutage --debug vtit, et nha otsingu detaile juurdepsu otsimisel\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Ootan tskils, kuni KDGHWCLK abil saadud aeg edasi lheb\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK ioctl kella lugemiseks ei nnestunud"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Taimaut oodates kellaaja muutumist\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK ioctl kella lugemiseks ei nnestunud tskils"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() abil kella lugemine %s kaudu ei nnestunud"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "KDSHWCLK ioctl ei nnestunud"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Ei suuda avada seadet /dev/tty1 vi /dev/vc/1"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK ioctl ei nnestunud"
@@ -6045,7 +6062,7 @@ msgstr "Miski ei klapi"
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Parool: "
@@ -6103,7 +6120,7 @@ msgstr "Kasutaja informatsiooni ei muudetud. Proovige hiljem uuesti\n"
msgid "Finger information changed.\n"
msgstr "Kasutaja informatsioon on muudetud\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "Mlu sai otsa"
@@ -6837,7 +6854,7 @@ msgstr "Ei suuda kivitada umount'i, annan alla umount'iga tegelemisel"
msgid "Unmounting any remaining filesystems..."
msgstr "Monteerin lahti kik allesjnud failissteemid"
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: Ei suuda lahti monteerida kataloogi %s: %s\n"
@@ -7477,17 +7494,17 @@ msgstr "Teade kasutajalt %s@%s (%s) terminalil %s kell %s..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Teade kasutajalt %s@%s terminalil %s kell %s..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr ""
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr ""
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr ""
@@ -7496,58 +7513,58 @@ msgstr ""
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr ""
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr ""
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr ""
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
"Perhaps there is a stale lock file?\n"
msgstr ""
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr ""
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr ""
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr ""
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
@@ -7605,26 +7622,26 @@ msgstr ""
msgid "Couldn't lock into memory, exiting.\n"
msgstr ""
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr ""
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, fuzzy, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "%s: ei suuda kivitada programmi %s: %m"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr ""
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7633,313 +7650,317 @@ msgid ""
" %s [ -e encryption ] [ -o offset ] loop_device file # setup\n"
msgstr ""
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr ""
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr ""
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr ""
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr ""
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr ""
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr ""
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr ""
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr ""
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr ""
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr ""
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr ""
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr ""
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr ""
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr ""
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr ""
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr ""
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr ""
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr ""
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr ""
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: ei suuda avada seadet %s kiiruse seadmiseks"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr ""
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr ""
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr ""
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr ""
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr ""
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr ""
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr ""
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr ""
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr ""
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr ""
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr ""
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr ""
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr ""
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr ""
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr ""
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
" (a path prefix is not a directory)\n"
msgstr ""
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr ""
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
" or too many mounted file systems"
msgstr ""
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr ""
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr ""
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr ""
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr ""
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l anda nimekiri tuntud failissteemide tpidest"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr ""
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+msgid "mount: maybe you meant 'iso9660'?"
msgstr ""
-#: mount/mount.c:1001
+#: mount/mount.c:990
+msgid "mount: maybe you meant 'vfat'?"
+msgstr ""
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr ""
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
" (maybe `insmod driver'?)"
msgstr ""
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr ""
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr ""
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr ""
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr ""
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr ""
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr ""
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr ""
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr ""
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr ""
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr ""
-#: mount/mount.c:1362
+#: mount/mount.c:1380
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -7964,34 +7985,34 @@ msgid ""
"For many more details, say man 8 mount .\n"
msgstr ""
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr ""
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr ""
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr ""
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr ""
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr ""
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr ""
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr ""
@@ -8006,30 +8027,30 @@ msgstr ""
msgid "mount: bad UUID"
msgstr ""
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr ""
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr ""
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr ""
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr ""
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr ""
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr ""
@@ -8253,53 +8274,53 @@ msgstr ""
msgid "%s umounted\n"
msgstr ""
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr ""
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
" umount [-f] [-r] [-n] [-v] special | node...\n"
msgstr ""
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr ""
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr ""
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr ""
-#: mount/umount.c:565
+#: mount/umount.c:538
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr ""
-#: mount/umount.c:578
+#: mount/umount.c:551
#, c-format
msgid "umount: %s is not in the fstab (and you are not root)"
msgstr ""
-#: mount/umount.c:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr ""
-#: mount/umount.c:616
+#: mount/umount.c:593
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr ""
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr ""
@@ -8311,14 +8332,14 @@ msgstr ""
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr ""
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
"and the maximum transfer rate in characters/second was %f\n"
msgstr ""
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8326,105 +8347,105 @@ msgid ""
"and the maximum transfer rate in characters/second was %f\n"
msgstr ""
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr ""
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr ""
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr ""
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr ""
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr ""
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
"[-g|-G] file [file...]\n"
msgstr ""
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr ""
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr ""
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr ""
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr ""
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr ""
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr ""
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr ""
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr ""
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr ""
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr ""
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr ""
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 4dddbee1c..ede670c3e 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-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+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"
@@ -118,7 +118,7 @@ msgstr "%s: ioctl-virhe laitteessa %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr "RO RA SSZ BSZ AlkuSekt Koko Laite\n"
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "kytt:\n"
@@ -1262,11 +1262,11 @@ msgstr " %s [ -c | -y | -n | -d ] laite\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] laite\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Ei kytettviss"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Vapaa tila"
@@ -1407,8 +1407,8 @@ msgstr "Vr nppin"
msgid "Press a key to continue"
msgstr "Paina nppint jatkaaksesi"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Ensi"
@@ -1416,8 +1416,8 @@ msgstr "Ensi"
msgid "Create a new primary partition"
msgstr "Luo uusi ensiosio"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Looginen"
@@ -1425,7 +1425,7 @@ msgstr "Looginen"
msgid "Create a new logical partition"
msgstr "Luo uusi looginen osio"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Peruuta"
@@ -1461,161 +1461,177 @@ msgstr "Lis osio tyhjn tilan loppuun"
msgid "No room to create the extended partition"
msgstr "Laajennetun osion luomiseen ei ole tilaa"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "osiotaulua ei ole.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Ei osiotaulua tai tuntematon allekirjoitus osiotaulussa"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Nyt osiotaulu"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "osiotaulua ei ole.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Haluatko aloittaa tyhjll osiotaululla [y/N]?"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Annoit suuremman sylinterimrn kuin levylle mahtuu"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "Levyasemaa ei voi avata"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "Levy avattiin vain luku -tilassa - sinulla ei ole kirjoitusoikeutta"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Levyn kokoa ei voi hakea"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Viallinen ensiosio"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Viallinen looginen osio"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Varoitus!! Tm voi tuhota dataa levylt!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Oletko varma, ett haluat kirjoittaa osiotaulun levylle? (kyll tai ei):"
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "ei"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "Osiotaulua ei kirjoitettu levylle"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "kyll"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Kirjoita \"kyll\" tai \"ei\""
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Kirjoitetaan osiotaulua levylle..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Osiotaulu kirjoitettiin levylle"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Osiotaulu kirjoitettiin, mutta uudelleenluku eponnistui. Tietokone on "
"kynnistettv uudelleen, jotta taulu pivittyy."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Yhtn ensiosiota ei ole merkitty kynnistettvksi. DOS MBR ei kynnist "
"tt."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Useampi kuin yksi ensiosio on merkitty kynnistettvksi. DOS MBR ei "
"kynnist tt."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Syt tiedostonimi tai paina RETURN saadaksesi nytlle: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "Tiedostoa \"%s\" ei voi avata"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Levyasema: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Sektori 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Sektori %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Ei mitn"
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Ens/Loog"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Ensi"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Looginen"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Tuntematon"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Kynnistettv"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
msgid "None"
msgstr "Ei mitn"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Laitteen %s osiotaulu\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
msgid " First Last\n"
msgstr " Alku- Loppu-\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1623,7 +1639,7 @@ msgstr ""
" # Tyyppi sektori sektori Siirt. Pituus Tied.jrj. tyyppi (ID) "
"Liput\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1632,465 +1648,465 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ----Alku---- ----Loppu---- Alku- Sektorien\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Liput Pt Sekt Syl ID Pt Sekt Syl sektori mr\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- ------------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "Raaka"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Nyt taulu raa'assa datamuodossa"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Sektorit"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Nyt taulu jrjestettyn sektoreiden mukaan"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Taulu"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Nyt osiotaulu"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "l nyt taulua"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Cfdiskin ohjeruutu"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Tm on cfdisk, curses-pohjainen levynosiointiohjelma, "
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "jolla voi luoda, poistaa ja muuttaa kiintolevyll "
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "olevia osioita."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Komento Merkitys"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "------- --------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b Aseta nykyisen osion kynnistettvyyslippu plle/pois"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Poista nykyinen osio"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Muuta sylinteri-, p- ja sektoriparametreja"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " VAROITUS: Tt valitsinta tulee kytt vain niiden,"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " jotka tietvt mit ovat tekemss."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Nyt tm ohjeruutu"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maksimoi nykyisen osion levynkytt"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Huom: Tm saattaa tehd osiosta epyhteensopivan"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " mm. DOSin ja OS/2:n kanssa."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Luo uusi osio tyhjst tilasta"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p Tulosta osiotaulu ruudulle tai tiedostoon"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Osioille on useita erilaisia muotoja,"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " joista voit valita:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - Raaka data (tasan se, mit levylle kirjoitettaisiin)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Sektoreittain jrjestetty taulu"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Taulu raa'assa muodossa"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q Lopeta ohjelma kirjoittamatta osiotaulua"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Muuta tiedostojrjestelmn tyyppi"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Muuta osiokokonkymn yksikit"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Vaihtaa megatavujen, sektoreiden ja sylinterien vlill"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr " W Kirjoita osiotaulu levylle (on annettava iso kirjain W)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Koska tm saattaa tuhota levyll olevaa dataa, kirjoitus"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
" on joko varmistettava tai peruttava kirjoittamalla \"kyll\" tai"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " \"ei\""
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Nuoli yls Siirr osoitin edelliseen osioon"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Nuoli alas Siirr osoitin seuraavaan osioon"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Piirt ruudun uudelleen"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Nyt tm ohjeruutu"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Huom: Kaikki komennot voi antaa joko isoilla tai pienill"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "kirjaimilla (paitsi taulun kirjoitus (W) )."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Sylinterit"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Muuta sylinterigeometriaa"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Pt"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Vaihda pgeometriaa"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Vaihda sektorigeometriaa"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Valmis"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Geometrian muutos valmis"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Anna sylinterien mr: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Virheellinen sylinteriarvo"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Anna piden mr: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Virheellinen parvo"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Anna sektorien mr uraa kohden: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Virheellinen sektorimr"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Anna tiedostojrjestelmn tyyppi: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Tiedostojrjestelmn tyyppi ei voi muuttaa tyhjksi"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Tiedostojrjestelmn tyyppi ei voi muuttaa laajennetuksi"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Tunt(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Ens/Loog"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Tuntematon (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Levyasema: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Koko: %lld tavua, %lld Mt"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Koko: %lld tavua, %lld.%lld Gt"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Pt: %d Sektorit/ura: %d Sylinterit: %lld"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Nimi"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Liput"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Osiotyyppi"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Tied.jrj.tyyppi"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Nimi]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
msgid " Sectors"
msgstr " Sektorit"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
msgid " Cylinders"
msgstr " Sylinterit"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
msgid " Size (MB)"
msgstr " Koko (Mt)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
msgid " Size (GB)"
msgstr " Koko (Gt)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Kynnistettv"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Aseta nykyisen osion kynnistettvyyslippu plle/pois"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Poista"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Poista nykyinen osio"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometria"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Muuta levyn geometriaa (vain asiantuntijoille)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Ohje"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Nyt ohjeruutu"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Maksimoi"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Maksimoi nykyisen osion tilankytt (vain asiantuntijoille)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Uusi"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Luo uusi osio tyhjst tilasta"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Nyt"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Tulosta osiotaulu ruudulle tai tiedostoon"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Lopeta"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Lopeta ohjelma kirjoittamatta osiotaulua"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Tyyppi"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Vaihda tiedostojrjestelmn tyyppi (DOS, Linux, OS/2, jne)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Yksikt"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Vaihda osiokokonytn yksikt (Mt, sekt, syl)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Kirjoita"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "Kirjoita osiotaulu levylle (tm saattaa tuhota dataa)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Tst osiosta ei voi tehd kynnistettv"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Tyhj osiota ei voi poistaa"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "Tt osiota ei voi maksimoida"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Tm osio on ei ole kytettviss"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Tm osio on jo kytss"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Tyhjn osion tyyppi ei voi vaihtaa"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Ei enemp osioita"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Virheellinen komento"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright 1994-2002 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2367,12 +2383,12 @@ msgstr "On asetettava"
msgid "heads"
msgstr "pt"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "sektorit"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "sylinterit"
@@ -2773,12 +2789,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:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2931,7 +2947,7 @@ msgstr "Levy %s ei sisll kelvollista osiotaulua\n"
msgid "Cannot open %s\n"
msgstr "Laitetta %s ei voi avata\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "laitetta %s ei voi avata\n"
@@ -3594,19 +3610,19 @@ msgstr "KYLL\n"
msgid "Do You know, You got a partition overlap on the disk?\n"
msgstr "Tiedtk, ett levyll on pllekkisi osioita?\n"
-#: fdisk/fdisksgilabel.c:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Yritetn luoda kokolevymerkint automaattisesti.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "Koko levy on jo osioiden kytss.\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3614,17 +3630,17 @@ msgstr ""
"On erittin suositeltavaa, ett yhdestoista osio\n"
"kattaa koko levyn ja on tyyppi \"SGI volume\"\n"
-#: fdisk/fdisksgilabel.c:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " Viimeinen %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3636,7 +3652,7 @@ msgstr ""
"tietenkn voida palauttaa.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3647,12 +3663,12 @@ msgstr ""
"sylinteriarvoa %d. Tm arvo voi typisty laitteilla, jotka ovat suurempia\n"
"kuin 33,8 Gt.\n"
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr "Yritetn silytt osion %d parametrit.\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tALKU=%d\tPITUUS=%d\n"
@@ -4254,89 +4270,89 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "siirtymisvirhe laitteella %s - kohtaan %lu ei voi siirty\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "siirtymisvirhe: haluttiin 0x%08x%08x, saatiin 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "muisti lopussa - luovutetaan\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "virhe luettaessa laitetta %s - sektoria %lu ei voi lukea\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "VIRHE: sektorilla %lu ei ole msdos-allekirjoitusta\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "virhe kirjoitettaessa laitteelle %s - sektoria %lu ei voi kirjoittaa\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "osion sektoreiden tallennustiedostoa (%s) ei voi avata\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "virhe kirjoitettaessa %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "osionpalautustiedoston %s tilaa ei voi lukea\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr "osion palautustiedoston koko on vr - ei palauteta\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "muisti lopussa?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "osionpalautustiedostoa (%s) ei voi avata\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "virhe luettaessa tiedostoa %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "laitetta %s ei voi avata kirjoitusta varten\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "virhe kirjoitettaessa sektoria %lu laitteelle %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Levy %s: geometriaa ei voi hakea\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Levy %s: kokoa ei voi hakea\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4347,22 +4363,22 @@ msgstr ""
"levylt. Sen muokkaaminen fdiskill on todennkisesti turhaa.\n"
"[Kyt --force -valitsinta jos todella haluat tehd niin]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Varoitus: HDIO_GETGEO kertoo, ett pit on %lu\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Varoitus: HDIO_GETGEO kertoo, ett sektoreita on %lu\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Varoitus: BLKGETSIZE/HDIO_GETGEO kertoo, ett sylintereit on %lu\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4372,7 +4388,7 @@ msgstr ""
"Tst aiheutuu ongelmia kaikkien C/H/S-osoitusta kyttvien ohjelmien "
"kanssa.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4383,13 +4399,13 @@ msgstr ""
# ensimminen %s on "start" tai "end", joita ei voi suomentaa
# bugiraportti tytyy lhett joskus
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
msgstr "Osion %2$s %1$s parvo on mahdoton: %3$lu (tulee olla 0-%4$lu)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4397,7 +4413,7 @@ msgid ""
msgstr ""
"Osion %2$s \"%1$s\":n sektoriarvo on mahdoton: %3$lu (tulee olla 1-%4$lu)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4405,7 +4421,7 @@ msgid ""
msgstr ""
"Osion %2$s \"%1$s\":n sylinteriarvo on mahdoton: %3$lu (tulee olla 0-%4$lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4413,11 +4429,11 @@ msgstr ""
"Id Nimi\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Luetaan osiotaulu uudelleen...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4425,31 +4441,31 @@ msgstr ""
"Osiotaulun uudelleenlukukomento eponnistui\n"
"Kynnist jrjestelm uudelleen nyt, ennen mkfs:n kytt\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Virhe suljettaessa %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: osiota ei ole\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "tunnistamaton muoto - kytetn sektoreita\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# %s:n osiotaulu\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "toteuttamaton muoto - kytetn %s\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4459,11 +4475,11 @@ msgstr ""
"alkaen\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Laite Kynn Alku Loppu #syl #lohkot Id Jrjestelm\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4472,11 +4488,11 @@ msgstr ""
"Yksikt = 512-tavuiset sektorit, alkaen kohdasta %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Laite Kynn Alku Loppu #sektorit Id Jrjestelm\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4485,11 +4501,11 @@ msgstr ""
"Yksikt = 1024-tavuiset lohkot, alkaen kohdasta %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Laite Kynn Alku Loppu #lohkot Id Jrjestelm\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4499,30 +4515,30 @@ msgstr ""
"d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Laite Kynn Alku Loppu Mt #lohkot Id Jrjestelm\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\talku: (c,h,s) odotettiin (%ld,%ld,%ld) lytyi (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tloppu: (c,h,s) odotettiin (%ld,%ld,%ld) lytyi (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr "osio loppuu sylinterill %ld, joka on levyn lopun jlkeen\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Osioita ei lytynyt\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4533,51 +4549,51 @@ msgstr ""
" arvoille C/H/S=*/%ld/%ld (ei %ld/%ld/%ld).\n"
"Tss listauksessa kytetn tuota geometriaa.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "osiotaulua ei ole.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "outoa, vain %d osiota mritelty.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr "Varoitus: osion %s koko on 0, mutta sit ei ole merkitty tyhjksi\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Varoitus: osion %s koko on 0 ja se on merkitty kynnistettvksi\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "Varoitus: osion %s koko on 0 ja alkukohta ei ole nolla\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Varoitus: osio %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "ei sislly osioon %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Varoitus: osiot %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "ja %s ovat pllekkiset\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4586,17 +4602,17 @@ msgstr ""
"Varoitus: osio %s sislt osan osiotaulusta (sektori %lu), ja se tulee\n"
"tuhoutumaan kun osiota kytetn\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Varoitus: osio %s alkaa sektorilta 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Varoitus: osio %s jatkuu levyn lopun yli\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4604,17 +4620,17 @@ msgstr ""
"Vain yksi ensiosio voi olla laajennettu\n"
" (tm ei tosin ole ongelma Linuxissa)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Varoitus: osio %s ei ala sylinterin rajalta\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Varoitus: osio %s ei lopu sylinterin rajalle\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4623,7 +4639,7 @@ msgstr ""
"(aktiiviseksi)\n"
"Se ei haittaa LILOa, mutta DOS MBR ei kynnist tlt levylt.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4631,7 +4647,7 @@ msgstr ""
"Varoitus: yleens vain ensiosiolta voi kynnist\n"
"LILO ei vlit \"kynnistettv\"-lipusta.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4640,32 +4656,32 @@ msgstr ""
"(aktiiviseksi). Se ei haittaa LILOa, mutta DOS MBR ei kynnist tlt "
"levylt.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
msgid "start"
msgstr "alun"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "osio %s: alku: (c,h,s) odotettiin (%ld,%ld,%ld) lytyi (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
msgid "end"
msgstr "lopun"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"osio %s: loppu: (c,h,s) odotettiin (%ld,%ld,%ld) lytyi (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr "osio %s loppuu sylinterill %ld, levyn lopun jlkeen\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
@@ -4674,7 +4690,7 @@ msgstr ""
"Varoitus: laajennetun osion alkua siirretty kohdasta %ld kohtaan %ld\n"
"(Vain listaustarkoituksiin. l muuta sen sislt.)\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4682,133 +4698,133 @@ msgstr ""
"Varoitus: laajennetun osion alku ei ole sylinterin rajalla.\n"
"DOS ja Linux tulkitsevat sislln eri tavoin.\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "liian monta osiota - ei huomioida numeron (%d) jlkeisi\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "osiopuu?\n"
# huono suomennos
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "havaittiin Disk Manager - sit ei voi ksitell\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "DM6-allekirjoitus lytyi - luovutetaan\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "outoa..., laajennettu osio, jonka koko on 0?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "outoa..., BSD-osio, jonka koko on 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: tunnistamaton osio\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "valitsin -n oli annettu: Mitn ei muutettu\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Vanhojen sektoreiden tallennus eponnistui - keskeytetn\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "Osion kirjoitus eponnistui laitteelle %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "liian pitk tai eptydellinen syterivi - lopetetaan\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "sytevirhe: kentn %s jlkeen odotetaan lytyvn \"=\"\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "sytevirhe: odottamaton merkki %c kentn %s jlkeen\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "tunnistamaton syte: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "liian suuri luku\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "roskaa numeron perss\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "ei tilaa osiokahvalle\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "ympriv laajennettua osiota ei voi rakentaa\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "liian monta sytekentt\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "Ei enemp tilaa\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Virheellinen tyyppi\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr "Varoitus: annettu koko (%lu) ylitt suurimman sallitun koon (%lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Varoitus: tyhj osio\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Varoitus: virheellinen osion alku (aikaisintaan %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "tunnistamaton \"kynnistettv\"-lippu - valitse - tai *\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "osittainen c,h,s-mritys?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Laajennettu osio ei ole odotetussa paikassa\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "virheellinen syte\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "liian monta osiota\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4818,98 +4834,98 @@ msgstr ""
"<alku> <koko> <tyyppi [E,S,L,X,hex]> <kynnistettv [-,*]> <c,h,s> <c,h,s>\n"
"Yleens riitt <alku> ja <koko> (ja ehk <tyyppi>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "versio"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Kytt: %s [valitsimet] laite ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "laite: esimerkiksi /dev/hda tai /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "hydylliset valitsimet:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [tai --show-size]: nyt osion koko"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr " -c [tai --id: nyt tai muuta osio-id"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [tai --list]: listaa kaikkien laitteiden osiot"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr " -d [tai --dump]: sama kuin edell, muoto sopiva sytteeksi"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr ""
" -i [tai --increment]:numeroi sylinterit, ym. alkaen 1:st, ei 0:sta"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
msgstr ""
" -uS, -uB, -uC, -uM: kyt yksikkin sektoreita/lohkoja/sylintereit/Mt"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [tai --list-types]:listaa tunnetut osiotyypit"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
" -D [tai --DOS]: DOS-yhteensopivuutta varten; tuhlaa vhn tilaa"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr " -R [tai --re-read]: kske ytimen lukea osiotaulu uudelleen"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# : muuta vain osiota numero #"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : l kirjoita levylle oikeasti"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr " -O tiedosto : tallenna ylikirjoitettavat sektori tiedostoon"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I tiedosto : palauta nm sektorit"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [tai --version]: nyt versio"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [tai --help]: nyt tm viesti"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "vaaralliset valitsimet:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr " -g [tai --show-geometry]: nyt ytimen ksitys geometriasta"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -4917,115 +4933,115 @@ msgstr ""
" -x [tai --show-extended]: listaa mys laajennetut osiot tulosteessa\n"
" tai odota sytteest niiden kahvoja"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
" -L [tai --Linux]: l huomauta Linuxissa merkityksettmist asioista"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [tai --quiet]: vaienna varoitusviestit"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " Voit ohittaa tunnistetun geometrian kyttmll:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr " -C# [tai --cylinders #]:aseta kytettv sylinterien mr"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -h# [tai --heads #]: aseta kytettv piden mr"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr " -S# [tai --sectors #]: aseta kytettv sektorien mr"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Kaikki tarkistukset voi ohittaa valitsimella:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr " -f [tai --force]: tee mit ksken, vaikka se olisi tyhm"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Kytt:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s laite\t\t listaa laitteella olevat aktiiviset osiot\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr "%s laite n1 n2 ... aktivoi osiot n1 ..., inaktivoi loput\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr "%s -An laite\t aktivoi osio n, poista muiden aktivointi\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "ei komentoa?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "yhteens: %d lohkoa\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "kytt: sfdisk --print-id laite osionumero\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "kytt: sfdisk --change-id laite osionumero Id\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "kytt: sfdisk --id laite osionumero [Id]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "vain yhden laitteen voi antaa (paitsi valitsimella -l tai -s)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "laitetta %s ei voi avata lukua-kirjoitusta varten\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "laitetta %s ei voi avata lukua varten\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: OK\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ld sylinteri, %ld pt, %ld sektoria/ura\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "laitteen %s kokoa ei voi hakea"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "virheellinen aktiivinen tavu: 0x80:n asemesta 0x%x\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5033,7 +5049,7 @@ msgstr ""
"Valmis\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5042,35 +5058,35 @@ msgstr ""
"Aktiivisia ensiosioita on %d kappaletta. Tm ei haittaa LILOa, mutta\n"
"DOS MBR kynnist vain levylt, jolla on tasan yksi aktiivinen osio.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "osiolla %s id on %x eik osiota ole ktketty\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "Virheellinen Id %lx\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Levy on tll hetkell kytss.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Vakava virhe: laitetta %s ei lydy\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Varoitus: %s ei ole lohkolaite\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Tarkistetaan, ett kukaan ei kyt levy juuri nyt...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5083,28 +5099,28 @@ msgstr ""
"(komento umount) ja kaikki levyll olevat sivutusosiot (komento swapoff).\n"
"Kyt valitsinta --no-reread tmn testin ohittamiseen.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Kyt --force -valitsinta ohittaaksesi kaikki tarkistukset.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "OK\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Vanha tilanne:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "Osiota %d ei ole olemassa, sit ei voi muuttaa\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Uusi tilanne:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5112,19 +5128,19 @@ msgstr ""
"En pid nist osioista - mitn ei muutettu.\n"
"(Jos todella haluat tt, kyt valitsinta --force.)\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "En pid tst - kannattaa todennkisesti vastata \"No\"\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Oletko tyytyvinen thn? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Haluatko kirjoittaa tmn levylle? [ynq] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5132,15 +5148,15 @@ msgstr ""
"\n"
"sfdisk: ennenaikainen sytteen loppu\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Lopetetaan - mitn ei muutettu\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Vastaa joko y, n tai q\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5148,7 +5164,7 @@ msgstr ""
"Uusi osiotaulu kirjoitettiin onnistuneesti\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5250,43 +5266,43 @@ msgstr "getopt (parannettu) 1.1.3)\n"
msgid "internal error, contact the author."
msgstr "sisinen virhe, ota yhteytt tekijn."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "kynnistetty MILOsta\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Ruffian BCD -kello\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "kelloportiksi asetettu 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atominen \"%s\" eponnistui 1000 iteraatiolle!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Ei voi avata laitetta /dev/port: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "En saanut kyttoikeutta, koska en yrittnyt.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s ei saa kyttoikeutta I/O-porttiin: iopl(3)-kutsu eponnistui.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Tarvitset todennkisesti pkyttjn oikeudet.\n"
@@ -5750,36 +5766,37 @@ msgid ""
msgstr ""
"Kyt --debug -valitsinta nhdksesi yksityiskohdat kytttavan etsinnst.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Odotetaan silmukassa KDGHWCLK-ajan muuttumista\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "ajan lukeva KDGHWCLK-ioctl eponnistui"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Aikakatkaisu odotettaessa ajan muutosta.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "ajan lukeva KDGHWCLK-ioctl eponnistui silmukassa"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() ei onnistunut lukemaan aikaa kohteesta %s"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "ioctl KDSHWCLK eponnistui"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Laitetta /dev/tty1 tai /dev/vc/1 ei voi avata"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK-ioctl eponnistui"
@@ -6108,7 +6125,7 @@ msgstr "Salasanavirhe."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Salasana: "
@@ -6166,7 +6183,7 @@ msgstr "Finger-tietoja *EI* muutettu. Yrit myhemmin uudelleen.\n"
msgid "Finger information changed.\n"
msgstr "Finger-tietoja muutettiin.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "\"malloc\" eponnistui"
@@ -6906,7 +6923,7 @@ msgstr "Ohjelmaa umount ei voi kynnist, luovutaan irrotusyrityksest."
msgid "Unmounting any remaining filesystems..."
msgstr "Irrotetaan jljell olevat tiedostojrjestelmt..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: Laitetta %s ei voitu irrottaa: %s\n"
@@ -7551,17 +7568,17 @@ msgstr ""
msgid "Message from %s@%s on %s at %s ..."
msgstr "Viesti %3$s:lle kirjautuneelta kyttjlt %1$s@%2$s, kello %4$s..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "varoitus: virhe luettaessa %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "virhe: tiedostoa %s ei voi avata: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr ""
@@ -7571,36 +7588,36 @@ msgstr ""
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr "lukkotiedostoa %s ei voi luoda: %s (kyt lippua -n ohittaaksesi)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr "lukkotiedostoa %s ei voi linkitt: %s (kyt lippua -n ohittaaksesi)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr "lukkotiedostoa %s ei voi avata: %s (kyt lippua -n ohittaaksesi)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Lukkotiedostoa %s ei voi lukita: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "lukkotiedostoa %s ei voi lukita: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "aikakatkaistu"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7609,22 +7626,22 @@ msgstr ""
"Linkki %s ei voi luoda\n"
"Ehk jossakin on vanhentunut lukkotiedosto?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "hakemistoa %s ei voi avata (%s) - mtabia ei pivitetty"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "virhe kirjoitettaessa %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "virhe muutettaessa tiedoston %s tilaa: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "nimeminen %s -> %s ei onnistu: %s\n"
@@ -7685,26 +7702,26 @@ msgstr "mount: ei lytynyt yhtn vapaata loop-laitetta"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Muistia ei voitu lukita, poistutaan.\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): onnistui\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: laitetta %s ei voi poistaa: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): onnistui\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Tm mount on knnetty ilman loop-tukea. Knn uudelleen.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7717,188 +7734,188 @@ msgstr ""
" %s -d loop-laite # poista\n"
" %s [ -e salaus ] [ -o siirtym ] loop-laite tiedosto # aseta\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "muisti ei riit"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr "Loop-tukea ei ollut knnksen aikana. Knn uudelleen.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr "[mntent]: varoitus: tiedoston %s lopussa ei ole rivinvaihtoa\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: rivi %d tiedostossa %s on virheellinen%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; loput tiedostosta jtetn huomioimatta"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: tiedoston mtab mukaan %s on jo liitetty pisteeseen %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: tiedoston mtab mukaan %s on liitetty pisteeseen %s"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: tiedostoa %s ei voi avata kirjoittamista varten: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: virhe kirjoitettaessa %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: virhe muutettaessa tiedoston %s tilaa: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s vaikuttaa olevan sivutustilaa - ei liitet"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "liittminen eponnistui"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: vain root voi liitt %s pisteeseen %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: loop-laite annettu kahdesti"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: tyyppi annettu kahdesti"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: ohitetaan loop-laitteen asettaminen\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: aiotaan kytt loop-laitetta %s\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: loop-laitteen asettaminen eponnistui\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: loop-laite asetettiin onnistuneesti\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: tiedostoa %s ei voi avata: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: argumentin valitsimelle -p tai --pass-fd on oltava luku"
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: tiedostoa %s ei voi avata nopeuden asetusta varten"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: nopeutta ei voi asettaa: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: haarauttaminen ei onnistu: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: tm versio on knnetty ilman tukea tyypille \"nfs\""
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: eponnistui nfs mount -versiolla 4, yritetn versiolla 3..\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: Tiedostojrjestelmn tyyppi ei voitu mritt, eik tyyppi ole "
"annettu"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: tiedostojrjestelmn tyyppi on annettava"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: liitos eponnistui"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: liitospiste %s ei ole hakemisto"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: lupa evtty"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: mountin kyttn vaaditaan pkyttjn oikeudet"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s on varattu"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc on jo liitetty"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s on jo liitetty tai %s on varattu"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: liitospiste %s ei ole olemassa"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: liitospiste %s on symlinkki olemattomaan"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: erikoislaite %s ei ole olemassa"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7907,12 +7924,12 @@ msgstr ""
"mount: erikoislaite %s ei ole olemassa\n"
" (polun etuliite ei ole hakemisto)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s ei ole viel liitetty, tai virheellinen valitsin"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -7922,35 +7939,41 @@ msgstr ""
" superlohko laitteella %s, tai liian monta liitetty \n"
" tiedostojrjestelm"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "liitostaulukko tynn"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: superlohkoa ei voi lukea"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: tuntematon laite"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: ydin ei tue tiedostojrjestelmtyyppi %s"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l listaa tunnetut tiedostojrjestelmtyypit"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: tarkoitat todennkisesti %s"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: ehk tarkoitit iso9660?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: ehk tarkoitit iso9660?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -7958,12 +7981,12 @@ msgstr ""
"ole tuettu"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s ei ole lohkolaite, ja tilan luku eponnistuu?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -7972,49 +7995,49 @@ msgstr ""
"mount: ydin ei tunnista tiedostoa %s lohkolaitteeksi\n"
" (ehk \"insmod ajuri\" auttaa?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s ei ole lohkolaite (yrit \"-o loop\"?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s ei ole lohkolaite"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s ei ole kelvollinen lohkolaite"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "lohkolaite "
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: ei voi liitt %s%s vain luku -tilassa"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s on kirjoitussuojattu, mutta \"-w\" -lippu on annettu"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s on kirjoitussuojattu, liitetn vain luku -tilassa"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
"mount: tyyppi ei annettu - kaksoispisteen perusteella sen oletetaan olevan "
"nfs\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: tyyppi ei annettu - //-alkuliitteen perusteella sen oletetaan olevan "
@@ -8023,23 +8046,23 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: siirretn taustalle \"%s\"\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: luovutetaan \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s on jo liitetty paikkaan %s\n"
# valitsin -p passwdfd, mit se tekee???
-#: mount/mount.c:1362
+#: mount/mount.c:1380
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8085,34 +8108,34 @@ msgstr ""
"Muut valitsimet: [-nfFrsvw] [-o valitsimet] [-p passwdfd].\n"
"Paljon listietoja komennolla: man 8 mount .\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: vain root voi tehd tuon"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: ei lytynyt %s - luodaan se..\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: osiota ei lydy"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: liitetn %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "mitn ei liitetty"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: %s ei lydy tiedostosta %s"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: %s ei lydy tiedostosta %s, eik %s"
@@ -8129,30 +8152,30 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: virheellinen UUID"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: virhe arvattaessa tiedostojrjestelmn tyyppi\n"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: et antanut tyyppi tiedostojrjestelmlle %s\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " Kokeillaan kaikkia tiedostoissa %s ja %s mainittuja tyyppej\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " ja tm nytt olevan sivutustilaa\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " Kokeillaan tyyppi %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Kokeillaan %s\n"
@@ -8387,11 +8410,11 @@ msgstr ""
msgid "%s umounted\n"
msgstr "%s irrotettu\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr "umount: irrotettavien tiedostojrjestelmien listaa ei lydy"
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
@@ -8402,42 +8425,42 @@ msgstr ""
"valitsimet]\n"
" umount [-f] [-r] [-n] [-v] erikoistied | solmu...\n"
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Yritetn irrottaa %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "%s ei lytynyt tiedostosta mtab\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s ei ole liitetty (tiedoston mtab mukaan)"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: %s vaikuttaa olevan liitettyn useita kertoja"
-#: mount/umount.c:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s on ristiriidassa tiedoston fstab kanssa"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, 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:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: vain root voi tehd tmn"
@@ -8449,7 +8472,7 @@ msgstr "Vain root voi mritell Ctrl-Alt-Del:n vaikutuksen.\n"
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Kytt: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8458,7 +8481,7 @@ msgstr ""
"Tiedosto %s, kynnysarvolle %lu, suurin merkkimr fifossa oli %d,\n"
"ja suurin siirtonopeus (merkki/sekunti) oli %f\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8469,32 +8492,32 @@ msgstr ""
"merkkimr fifossa oli %d,\n"
"ja suurin siirtonopeus (merkki/sekunti) oli %f\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Virheellinen sisinen arvo: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Virheellinen asetettu arvo: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Virheellinen oletusarvo: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Virheellinen asetettu aika-arvo: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Virheellinen oletusaika-arvo: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8503,75 +8526,75 @@ msgstr ""
"Kytt: %s [-q [-i vli]] ([-s arvo]|[-S arvo]) ([-t arvo]|[-T arvo]) [-g|-"
"G] tiedosto [tiedosto...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "Laitetta %s ei voi avata: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "Laitteelle %s ei voi asettaa kynnyst %d:%s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "Laitteelle %s ei voi asettaa aikakynnyst %d: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "Laitteelle %s ei voi hakea kynnyst: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "Laitteelle %s ei voi hakea aikarajaa: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld nykyinen kynnys ja %ld nykyinen aikakatkaisu\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld oletuskynnys ja %ld oletusaikakatkaisu\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "Signaaliksittelij ei voi asettaa"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "gettimeofday eponnistui"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "Laitteelle %s ei voi kytt CYGETMONia: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f int/sec; %f rec, %f send (char/sec)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f int/sec; %f rec (char/sec)\n"
@@ -9858,6 +9881,9 @@ msgstr "Syterivi on liian pitk.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Muisti loppui kasvatettaessa puskuria.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: ydin ei tue tiedostojrjestelmtyyppi %s"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "BLKGETSIZE-ioctl eponnistui laitteelle %s\n"
diff --git a/po/fr.po b/po/fr.po
index 15e85fdca..a52daefe0 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+0100\n"
"PO-Revision-Date: 2004-05-10 08:00-0500\n"
"Last-Translator: Michel Robitaille <robitail@IRO.UMontreal.CA>\n"
"Language-Team: French <traduc@traduc.org>\n"
@@ -114,7 +114,7 @@ msgstr "%s: erreur ioctl() sur %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr "RO RA SSZ BSZ Dbut Sec Taille Priphrique\n"
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "usage:\n"
@@ -1285,11 +1285,11 @@ msgstr " %s [ -c | -y | -n | -d ] priphrique\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] priphrique\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Inutilisable"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Espace libre"
@@ -1431,8 +1431,8 @@ msgstr "Cl illgale"
msgid "Press a key to continue"
msgstr "Appuyer sur une touche pour continuer"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primaire"
@@ -1440,8 +1440,8 @@ msgstr "Primaire"
msgid "Create a new primary partition"
msgstr "Crer une nouvelle partition primaire"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Logique"
@@ -1449,7 +1449,7 @@ msgstr "Logique"
msgid "Create a new logical partition"
msgstr "Crer une nouvelle partition logique"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Annuler"
@@ -1485,162 +1485,178 @@ msgstr "Ajouter une partition la fin de l'espace libre"
msgid "No room to create the extended partition"
msgstr "Pas d'espace pour crer une partition tendue"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "aucune table de partitions prsente.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr ""
"Pas de table de partitions ou signature inconnue dans la table de partitions"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Afficher juste le contenue de la table de partitions"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "aucune table de partitions prsente.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Voulez-vous dbuter avec une table zro [o/N]"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Vous avez spcifi plus de cylindres que le disque ne peut contenir"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "Ne peut ouvrir l'unit de disque"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "Disque ouvert en mode lecture seulement - aucune permission d'criture"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Ne peut obtenir la taille du disque"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Partition primaire errone"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Partition logique erronne"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "AVERTISSEMENT!! Cela pourrait dtruire les donnes sur votre disque!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"tes-vous certain de vouloir crire la table de partitions sur le disque? "
"(oui ou non)"
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "non"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "N'a pas crit la table de partitions sur le disque"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "oui"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "SVP rpondre yes ou no "
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "criture de la table de partitions sur le disque..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Table de partitions crite sur le disque"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Table de partitions crite, chec de la relecture. Ramorcer pour mettre "
"jour la table."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr "Aucune partition primaire marqu amorable. DOS MBR ne peut amorcer."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Plus d'une partition primaire marqu amorable. DOS MBR ne peut amorcer."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr ""
"Entrer le nom du fichier ou appuyer RETURN pour affichage l'cran:"
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "Ne peut ouvrir le fichier %s "
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Unit de disque: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Secteur 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Secteur %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Aucun "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primaire"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Logique"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Inconnu"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Amorce"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, c-format
msgid "(%02X)"
msgstr "%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
msgid "None"
msgstr "Aucun"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Table de partitions de %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
msgid " First Last\n"
msgstr " Premier Dernier\n"
# fdisk/cfdisk.c:1969
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1648,7 +1664,7 @@ msgstr ""
" # Type Secteur Secteur Offset Longueur Sys.FichierType (ID) "
"Fanions\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1657,478 +1673,478 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " --- Dbut --- ---- Fin ---- Dbut Numro de\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Fan. Tte Sect Cyl ID Tte Sect Cyl Secteur Secteurs\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "Brut"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Afficher le contenu de la table en format brut"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Secteurs"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Afficher le contenu de la table ordonn par secteurs"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Table"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Afficher juste le contenue de la table de partitions"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Ne pas afficher le contenu de la table"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "cran d'aide pour cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "cfdisk, est un programme de partionnement bas sur curses. cfdisk"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "permet de crer, dtruire et modifier les partitions de votre unit de"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "disque dur."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Commande Signification"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b basculer le fanion d'amorce sur la partition courante"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d dtruire la partition courante"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g modifier les paramtres: cylindres, ttes, secteurs par piste"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " AVERTISSEMENT: cette option ne doit pas tre utilis par"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " des gens qui ne savent pas ce qu'ils font."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h afficher cet cran d'aide"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m maximiser l'usage du disque de la partition courante"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Note: cela peut rendre la partition incompatible avec"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n crer une nouvelle partition partir de l'espace libre"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr ""
" p afficher le contenu de la table de partitions l'cran ou dans "
"un fichier"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Il y a plusieurs formats diffrents pour la partition"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " que vous dsirez:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - donnes brutes (exactement ce que vous crivez sur le "
"disque)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - table ordonne par secteurs"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - table en format brut"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q quitter le programme sans crire la table de partitions"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t modifier le type de systme de fichiers"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr ""
" u modifier les units d'affichage de la taille des partition"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " faire la rotation avec MB, secteurs et cylindres"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W crire la table de partitions sur le disque (taper W en "
"majuscule)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr ""
" tant donn que cela peut dtruire des donnes sur le disque, "
"vous devez"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
" confirmer ou annuler la commande par la rponse yes ou"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " no "
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Flche-haut dplacer le curseur vers la partition prcdente"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Flche-bas dplacer le curseur vers la partition suivante"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L rafficher le contenu l'cran"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? afficher cet cran d'aide"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Note: toutes les commandes peuvent tre soumises en lettres"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "majuscules ou minuscules (sauf pour les critures)."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cylindres"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Modifier la gomtrie des cylindres"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Ttes"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Modifier la gomtrie de tte"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Modifier la gomtrie de secteur"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Complt"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Modification de la gomtrie complt"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Entrer le nombre de cylindres: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Valeur illgale pour les cylindres"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Entrer le nombre de ttes: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Valeur illgale pour les ttes"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Entrer le nombre de secteurs par piste: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Valeur illgale pour les secteurs"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Entrer le type de systme de fichiers:"
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Ne peut modifier le type de SF pour aucun type"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Ne peut modifier le type de SF tendu"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Unk(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Inconnu (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Unit de disque: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Taille: %lld octets, %lld Mo"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Taille: %lld octets, %lld.%lld Go"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Ttes: %d Secteurs par piste: %d Cylindres: %lld"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Nom"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Fanions"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Part Type"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Type SF"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[tiq.]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
msgid " Sectors"
msgstr " Secteurs"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
msgid " Cylinders"
msgstr " Cylindres"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
msgid " Size (MB)"
msgstr " Taille (Mo)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
msgid " Size (GB)"
msgstr " Taille (Go)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Amorable"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Basculer le fanion d'amorce pour la partition courante"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Dtruire"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Dtruire la partition courante"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Gomtrie"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Modifier la gomtrie du disque (pour expert seulement)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Aide"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Afficher l'cran d'aide"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Maximiser"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr ""
"Maximiser l'usage du disque de la partition courante (experts seulement)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Nouveau"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Crer une nouvelle partition partir de l'espace libre"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Afficher"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr ""
"Afficher le contenu de la table de partitions l'cran (ou dans un fichier)"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Quitter"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Quitter le programme sans crire la table de partitions"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Type"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Modifier le type de systme de fichier (DOS, Linux, OS/2, etc)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Units"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
"Mofifier les units d'affichage des taille des partitions (MB, sect, cyl)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "crire"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr ""
"Crire la table de partitions sur le dsique (cela peut dtruire les donnes)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Ne peut crer cette partition comme tant amorable"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Ne peut dtruire une partition vide"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "Ne peut maaximiser cette partition"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Cette partition est inutilisable"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Cette partition est dj en usage"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Ne peut changer le type d'une partition vide"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Pas de partition disponible"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Commande illgale"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright 1994-2002 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2409,12 +2425,12 @@ msgstr "Vous devez initialiser"
msgid "heads"
msgstr "ttes"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "secteurs"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "cylindres"
@@ -2826,12 +2842,12 @@ msgstr "Nombre total de secteurs allous %d plus grand que le maximum %d\n"
msgid "%lld unallocated sectors\n"
msgstr "%d secteurs non-allous\n"
-#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2990,7 +3006,7 @@ msgstr "Disque %s ne contient pas une table de partition valide\n"
msgid "Cannot open %s\n"
msgstr "Ne peut ouvrir %s\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "ne peut ouvrir %s\n"
@@ -3663,20 +3679,20 @@ 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:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr ""
"Tentative de gnration d'une entre complte de disque automatiquement.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "Le disque entier est dj plein de partitions.\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3684,18 +3700,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:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " Dernier %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3709,7 +3725,7 @@ msgstr ""
"irrcuprable.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3721,12 +3737,12 @@ msgstr ""
"sera utilise. Cette valeur peut tre tronque pour les priphrique de plus "
"de 33.8 Go.\n"
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, 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:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tDBUT=%d\tLONGUEUR=%d\n"
@@ -4335,92 +4351,92 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "erreur de reprage sur %s - ne peut reprer %lu\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "erreur de reprage: dsir 0x%08x%08x, obtenu 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "mmoire puise - abandon\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "erreur de lecture sur %s - ne peut lire le secteur %lu\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "ERREUR: secteur %lu n'a pas un signature MS-DOS\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "Erreur d'criture sur %s - ne peut crire le secteur %lu\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "Ne peut ouvrir le fichier de sauvegarde de secteur de partition (%s)\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "erreur d'criture sur %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr ""
"ne peut valuer par stat() le fichier de recouvrement de partition (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
"le fichier de recouvrement de partition a une taille errone - pas de "
"recouvrement\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "mmoire puise?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "ne peut ouvrir le fichier de recouvrement de partition (%s)\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "erreur de lecture %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "ne peut ouvrir le priphrique %s pour criture\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "erreur d'criture du secteur %lu sur %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Disque %s: ne peut obtenir la gomtrie\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Disque %s: ne peut obtenir sa taille\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4431,23 +4447,23 @@ msgstr ""
"un disque entier. Utiliser fdisk n'aurait probablement pas de sens.\n"
"[Utiliser l'option --force si vous dsirez faire cela]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "AVERTISSEMENT: HDIO_GETGEO indique qu'il a %lu ttes\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "AVERTISSEMENT: HDIO_GETGEO indique qu'il y a %lu secteurs\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr ""
"AVERTISSEMENT: BLKGETSIZE/HDIO_GETGEO indique qu'il y a %lu cylindres\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4457,7 +4473,7 @@ msgstr ""
"Cela occasionnera des problmes avec tous les logiciels qui utilisent un "
"adressage C/H/S.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4466,7 +4482,7 @@ msgstr ""
"\n"
"Disque %s: %lu cylindres, %lu ttes, %lu secteurs/piste\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
@@ -4474,7 +4490,7 @@ msgstr ""
"%s de la partition %s a une valeur impossible pour la tte: %lu (devrait "
"tre 0-%lu)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4483,7 +4499,7 @@ msgstr ""
"%s de la partition %s a une valeur impossible pour le secteur: %lu (devrait "
"tre 1-%lu)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4492,7 +4508,7 @@ msgstr ""
"%s de la partition %s a une valeur impossible pour les cylindres: %lu "
"(devrait tre 0-%lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4500,11 +4516,11 @@ msgstr ""
"Id Nom\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Relecture de la table de partitions ...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4512,31 +4528,31 @@ msgstr ""
"La commande de relecture de la table de partitions a choue.\n"
"R-amorcer le systme maintenant, avant d'utiliser mkfs\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Erreur de fermeture %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: pas de telle partition\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "format non reconnu - utilisation de secteurs\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# table de partitions de %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "format non implant - using %s\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4546,11 +4562,11 @@ msgstr ""
"d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Priph Amor Dbut Fin #cyls #blocs Id Systme\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4559,11 +4575,11 @@ msgstr ""
"Units= secteurs de 512 octets, dcompte partir de %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Priph Amorce Dbut Fin #secteurs Id Systme\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4572,11 +4588,11 @@ msgstr ""
"Units= blocs de 1024 octets, dcompte partir de %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Priph Amorce Dbut Fin #blocs Id Systme\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4586,31 +4602,31 @@ msgstr ""
"partir de %d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Priph Amor Dbut Fin Mo #blocs Id Systme\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tdbut: (c,h,s) expect (%ld,%ld,%ld) trouv (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tfin: (c,h,s) expect (%ld,%ld,%ld) trouv (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr ""
"partition se termine sur le cylindre %ld, au del de la fin du disque\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Aucune partition repre\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4621,54 +4637,54 @@ msgstr ""
" pour C/H/S=*/%ld/%ld (au lieu de %ld/%ld/%ld).\n"
"Pour ce rapport, la gomtrie suivante sera assume.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "aucune table de partitions prsente.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "trange, seulement %d partitions dfinies.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr ""
"AVERTISSEMENT: partition %s a une taille 0 mais n'est pas marque Empty\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "AVERTISSEMENT: partition %s a une taille 0 et est amorable\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr ""
"AVERTISSEMENT: partition %s a une taille 0 et une adresse de dbut non "
"zro\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "AVERTISSEMENT: partition %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "n'est par contenue dans la partition %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "AVERTISSEMENT: partitions %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "et %s se chevauchent\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4678,17 +4694,17 @@ msgstr ""
"(secteur %lu),\n"
"et cela la dtruira lorsqu'elle se remplira\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "AVERTISSEMENT: la partition %s dbute au secteur 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "AVERTISSEMENT: la partition %s s'tend au del de la fin du disque\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4696,20 +4712,20 @@ msgstr ""
"Parmi les partitions primaires, au plus une seule peut tre tendue\n"
" (quoique cela ne soit pas un problme sous Linux)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr ""
"AVERTISSEMENT: la partition %s ne dbute pas sur une frontire de cylindre\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr ""
"AVERTISSMENT: la partition %s ne se termine pas sur une frontire de "
"cylindre\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4718,7 +4734,7 @@ msgstr ""
"Cela n'a pas d'importance pour LILO, mais en a pour DOS MBR qui n'amorcera "
"ce disque.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4726,7 +4742,7 @@ msgstr ""
"AVERTISSEMENT: habituellement une seule permet l'amorage partir d'une\n"
"partition primaire LILO ne s'occupe pas du fanion d'amorage.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4735,33 +4751,33 @@ msgstr ""
"Cela n'a pas d'importance pour LILO, mais en a pour DOS MBR qui n'amorcera "
"pas ce disque.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
msgid "start"
msgstr "dbut"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"partition %s: dbut: (c,h,s) espr (%ld,%ld,%ld) trouv (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
msgid "end"
msgstr "fin"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "partition %s: fin: (c,h,s) espr (%ld,%ld,%ld) trouv (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr ""
"partition %s se termine sur le cylindre %ld, au del de la fin du disque\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
@@ -4770,7 +4786,7 @@ msgstr ""
"AVERTISSEMENT: dbut dcal de la partition tendue de %ld %ld\n"
"(pour fins d'affichage seulement. Ne modifier pas le contenu.)\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4778,134 +4794,134 @@ msgstr ""
"AVERTISSEMENT: la partition tendue ne dbute pas sur une frontire de.\n"
"cylindres DOS et Linux interprteront les contenus diffremment.\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "top de partitions - celles au del de nr (%d) sont ignores\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "arbre de partitions?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "Gestionnaire de disque dtect - incapable de traiter cela\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "signature DM6 signature repr - abandon\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "trange..., une partition tendue de taille 0?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "trange..., une partition BSD de taille 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: une partition non reconnue\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "-n flag a t utilis: rien n'a chang\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "chec de sauvegarde des vieux secteurs - abandon\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "chec de l'criture de la partition sur %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "ligne d'entre longue ou incomplte - abandon\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "erreur d'entre: = espr aprs le champ %s\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "erreur d'entre: caractre inattendu %c aprs le champ %s\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "entre non reconnu: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "numbre trop grand\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "rebut aprs le nombre\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "aucun espace pour le descripteur de partition\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "ne peut construire autour de la partition tendue\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "trop de champs l'entre\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "Aucun espace pour en accepter d'avantage\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Type illgal\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
"AVERTISSEMENT: la taille donne (%lu) excde la taille maximale allouable (%"
"lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "AVERTISSEMENT: partition vide\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "AVERTISSEMENT: dbut de partition corrompu (auparavant %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "fanion d'amorage non reconnu - choisir - ou * \n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "spcification partielle c,h,s?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Partition tendue par l'endroit attendu\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "entre errone\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "trop de partitions\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4917,47 +4933,47 @@ msgstr ""
"Habituellement vous n'avez besoin que de spcifier:\n"
"<dbut> et <taille> (et parfois <type>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "version"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Usage: %s [options] priphrique ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "priphrique: quelque chose comme /dev/hda ou /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "options utiles:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [ou --show-size]: lister la taille d'une partition"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr ""
" -c [ou --id]: afficher ou modifier l'identificateur de partition"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [ou --list]: lister les partitions de chaque priphrique"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
" -d [ou --dump]: identique, mais dans un format utile pour une "
"saisie ultrieure"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr " -i [ou --increment]: numbre de cylindres etc. de 1 au lieu de 0"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
@@ -4965,59 +4981,59 @@ msgstr ""
" -uS, -uB, -uC, -uM: accepter/reporter en units de secteurs/blocs/"
"cylindres/MB"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [ou --list-types]:lister les types de partitions connus"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
" -D [ou --DOS]: pour la compatibilit DOS: perte d'un peu d'espace"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr ""
" -R [ou --re-read]: forcer le kernel relire la table de partitions"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr ""
" -N# : modifier seulement la partition ayant le numro #"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : ne pas crire sur le disque"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr ""
" -O fichier : sauvegarder les secteurs qui seront crass dans le "
"fichier"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I fichier : restaurer ces secteurs nouveau"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [ou --version]: afficher la version"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [ou --help]: afficher l'aide mmoire"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "options dangereuses:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr ""
" -g [ou --show-geometry]: afficher les donnes contenues dans le\n"
" kernel de la gomtrie"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -5026,121 +5042,121 @@ msgstr ""
" ou les descripteurs attendus l'entre pour "
"ellest"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
" -L [ou --Linux]: ne pas afficher de message qui ne concerne pas "
"Linux"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [ou --quiet]: supprimer tous les messages d'avertissement"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " Vous pouvez craser la gomtrie en utilisant:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr ""
" -C# [ou --cylinders #]:initialiser le nombre de cylindres utiliser"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -H# [ou --heads #]: initialiser le nombre de ttes utiliser"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr ""
" -S# [ou --sectors #]: initialiser le numbre de secteurs utiliser"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Vous pouvez dsactiver toutes les vrifications de consistence avec:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr " -f [ou --force]: excuter aveuglment la commande donne"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Usage:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s priphrique\t\t lister les partitions actives du priphrique\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr ""
"%s priphrique n1 n2 ... activer les partitions n1 ..., dsactiver les "
"autres\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr "%s -An priphrique\t activer la partition n, dsactiver les autres\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "pas de commande?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "total: %d blocs\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "usage: sfdisk --print-id priphrique numro-de-partition\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "usage: sfdisk --change-id priphrique numro-de-partition Id\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "usage: sfdisk --id priphrique numro-de-partition [Id]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr ""
"vous ne pouvez spcifier seulement un priphrique (sauf avec -l ou -s)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "ne peut ouvrir %s en lecture-criture\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "ne peut ouvrir %s en lecture\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: OK\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ld cylindres, %ld ttes, %ld secteurs/piste\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "ne peut obtenir la taille de %s"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "octet actif erron: 0x%x au lieu de 0x80\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5148,7 +5164,7 @@ msgstr ""
"Complt\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5158,35 +5174,35 @@ msgstr ""
"mais en a un pour DOS MBR qui ne pourra amorcer un disque qu'avec une seule "
"partition active.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "partition %s a un identificateur %x qui n'est pas cach\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "Identifcateur erron %lx\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Le disque est prsentement en usage.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Erreur fatale: ne peut trouver %s\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "AVERTISSEMENT: %s n'est pas un priphrique fonctionnant par blocs\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Vrification qu'aucun autre n'utilise le disque en ce moment ...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5200,28 +5216,28 @@ msgstr ""
"partitions swap sur ce disque.\n"
"Utiliser le fanion --no-reread pour supprimer cette vrification.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Utiliser l'option --force pour annuler toutes les vrifications.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "OK\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Vieille situation:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "La partition %d n'existe pas, ne peut la modifer\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Nouvelle situation:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5229,21 +5245,21 @@ msgstr ""
"Ces partitions sont questionnables -- rien n'a chang.\n"
"(Si vous dsirez cela, utiliser l'option --force.)\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr ""
"Cette situation n'est pas recommandable -- vous devriez probablement "
"rpondre Non\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "tes-vous satisfait avec cela? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Voulez-vous crire cela sur le disque? [ynq] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5251,15 +5267,15 @@ msgstr ""
"\n"
"sfdisk: fin prmature de l'entre\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Abandon - rien n'a chang\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "SVP fournir une rponse suivante: y,n,q\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5267,7 +5283,7 @@ msgstr ""
"Succs d'criture de la nouvelle table de partitions\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5377,45 +5393,45 @@ msgstr "getopt (amlior) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "erreur interne, contacter l'auteur."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "amorc partir de MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Horloge Ruffian BCD\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "le port d'horloge a t ajust 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "drle de TOY!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomic %s a chou pour 1000 itrations!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Ne peut ouvrir le port /dev/port: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr ""
"chec d'obtention des permissions parce qu'aucun essai n'a t tent.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr ""
"%s incapable d'obtenir un port d'accs d'E/S : l'appel iopl(3) a chou.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Probablement que vous avez besoin des privilges de root.\n"
@@ -5906,37 +5922,38 @@ msgstr ""
"Utiliser l'option --debug pour voir les dtails de la recherche d'une "
"mthode connue.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Attente dans la boucle d'obtention d'un changement depuis KDGHWCLK\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "chec de KDGHWCLK ioctl pour la lecture de l'heure"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr ""
"Expiration de la minuterie lors de l'attente du changement de l'heure.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK ioctl pour la lecture de l'heure a chou dans une boucle"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "chec de ioctl() lors de la lecture de l'heure depuis %s"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "chec de ioctl KDSHWCLK"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Ne peut ouvrir /dev/tty1 ou /dev/vc/1"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "chec de KDGHWCLK ioctl"
@@ -6272,7 +6289,7 @@ msgstr "Erreur de mot de passe"
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Mot de passe: "
@@ -6331,7 +6348,7 @@ msgstr ""
msgid "Finger information changed.\n"
msgstr "L'information de finger a chang.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "chec de malloc()"
@@ -7076,7 +7093,7 @@ msgstr "Ne peut excuter un umount, abandon sur le umount."
msgid "Unmounting any remaining filesystems..."
msgstr "Dmonter tous les systmes de fichiers restants..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "arrt systme: ne peut dmonter %s: %s\n"
@@ -7718,17 +7735,17 @@ msgstr "Message de %s@%s (comme %s) sur %s %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Message de %s@%s sur %s %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "AVERTISSEMENT: erreur de lecture %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "AVERTISSEMENT: ne peut ouvrir %s: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: ne peut ouvrir %s - on utilise %s la place\n"
@@ -7737,40 +7754,40 @@ msgstr "mount: ne peut ouvrir %s - on utilise %s la place\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"ne peut crer le fichier verrou %s: %s (utiliser l'option -n pour l'craser)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"ne peut lier le fichier verrou %s: %s (utiliser l'option -n pour l'craser)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
"ne peut ouvrir le fichier verrou %s : %s (utiliser l'option -n pour "
"l'craser)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Ne peut verrrouiller le fichier verrou %s: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "ne peut verrouiller le fichier verrou %s: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "expiration du dlai"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7779,22 +7796,22 @@ msgstr ""
"Ne peut crer le lien %s\n"
"Peut-tre y-a-t-il un fichier verrouill en panne?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "ne peut ouvrir %s (%s) - mtab n'est pas jour"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "erreur d'criture %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "erreur de changement de mode de %s: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "ne peut renommer %s %s: %s\n"
@@ -7856,28 +7873,28 @@ msgstr "mount: ne peut reprer un priphrique de type loop disponible"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Ne peut verrouiller en mmoire, fin d'excutio.\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): succs\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: ne peut dtruire le priphrique %s: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): succs\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
"Cette version de mount a t compile sans support de boucle. SVP "
"recompiler.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7890,192 +7907,192 @@ msgstr ""
" %s -d priphrique_de_boucle # delete\n"
" %s [ -e encryption ] [ -o dcalage ] priphrique_de_boucle # setup\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "pas assez de mmoire"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Aucun support de boucle n'tait disponible au moment de la compilation. SVP "
"recompiler.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr "[mntent]: AVERTISSEMENT: aucun nouvelle ligne finale la fin de %s\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: ligne %d dans %s est erron%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; reste du fichier est ignor"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: selon mtab %s est dj mont sur %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: selon mtab %s est mont sur %s"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: ne peut ouvrir %s en criture: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: erreur d'criture %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: erreur lors du changement de mode de %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s ressemble un esapce de swap - n'a pas t mont"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "chec de mount"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: seul l'usager ROOT peut monter %s sur %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: priphrique de type loop spcifi deux fois"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: type spcifi deux fois"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: escamotage du setup du priphrique de type loop\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: on se prpare utiliser le priphrique de type loop %s\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: chec d'initialisation du priphrique de type loop\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: russite d'initialisation du priphrique de type loop\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: ne peut ouvrir %s: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: argument -p ou --pass-fd doit tre un nombre"
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: ne peut ouvrir %s pour ajuster la vitesse"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: ne peut initialiser la vitesse: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: ne peut tablir un relais fork(): %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: cette version a t compil sans support pour le type nfs "
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: chec avec la version 4 de mount nfs, on tente la 3..\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: je ne peux dterminer le type de systme de fichiers et aucun n'a t "
"spcifi"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: vous devez spcifier le type de systme de fichiers"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: chec de mount"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: le point de montage %s n'est pas un rpertoire"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: permission refuse"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: doit tre le super usager pour utiliser mount"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s est occup"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc dj mont"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s est dj mont ou %s est occup"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: le point de montage %s n'existe pas"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr ""
"mount: le point de montage %s est un lien symbolique qui pointe vers nulle "
"part"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: priphrique spcial %s n'existe pas"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8084,12 +8101,12 @@ msgstr ""
"mount: le priphrique spcial %s n'existe pas\n"
" (un prfixe de chemin n'est pas un rpertoire)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s n'est pas dj mont ou option errone"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -8099,35 +8116,41 @@ msgstr ""
"sur %s,\n"
" ou trop de systmes de fichiers monts"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "table de priphriques monts est pleine"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: ne peut lire le super bloc"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: priphrique inconnnu"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: type de syst. de fichiers %s n,est pas support par le kernel"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l lister les types de systme de fichiers connus"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: probablement vous voulez dire %s"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: peut-tre voulez-vous dire iso9660 ?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: peut-tre voulez-vous dire iso9660 ?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8135,12 +8158,12 @@ msgstr ""
"%s n'est pas support"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s n'est pas un priphrique de type bloc et stat() a chou?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8149,49 +8172,49 @@ msgstr ""
"mount: le kernel ne reconnat pas %s comme un priphrique de type bloc\n"
" (peut-tre un pilote insmod ?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr ""
"mount: %s n'est pas un priphrique de type bloc (essayer -o loop ?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s n'est pas un priphrique de type bloc"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s n'est pas un priphrique valide de type bloc"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "priphrique de type bloc"
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: ne peut monter %s%s en lecture seulement"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s est protg en criture mais l'option -w a t fournie"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s est protg en criture, on le monte en lecture seulement"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
"mount: aucun type n'a t donn - ja vais assumer nfs en raison du : \n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: aucun type n'a t fourni - je vais assumer smbfs en raison du "
@@ -8200,23 +8223,23 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: mise en arrire plan de \"%s\"\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: abandon \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s est dj mont sur %s\n"
# mount/mount.c:1323
-#: mount/mount.c:1362
+#: mount/mount.c:1380
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8266,34 +8289,34 @@ msgstr ""
"Autres options: [-nfFrsvw] [-o options] [-p mot_de_passe].\n"
"Pour plus de dtails excuter: man 8 mount .\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: seul l'usager ROOT peut faire cela"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: %s n'a pas t repr - on le cre..\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: pas de telle partition repre"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: on monte %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "rien n'a t mont"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: ne peut reprer %s dans %s"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: ne peut reprer %s dans %s ou %s"
@@ -8310,32 +8333,32 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: UUID erron"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr ""
"mount: error lors de la tentative d'identification du systme de fichiers\n"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr ""
"mount: vous n'avez pas spcifier le type de systme de fichiers pour %s\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " Je vais essayer tous les types mentionns dans %s ou %s\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " et il semble que c'est un espace de swap\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " Je vais essayer le type %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "On tente %s\n"
@@ -8570,11 +8593,11 @@ msgstr "umount: ne peut remonter %s en lecture seulement\n"
msgid "%s umounted\n"
msgstr "%s dmont\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr "umount: ne peut reprer la liste des systmes de fichiers dmonter"
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
@@ -8584,42 +8607,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:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Tentative pour dmonter %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Ne peut reprer %s dans mtab\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s n'est pas mont (selon mtab)"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, 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:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s mount est en dsaccord avec fstab"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: seul %s peut dmonter %s de %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: seul l'usager ROOT peut excuter la commande"
@@ -8632,7 +8655,7 @@ msgstr ""
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Usage: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8642,7 +8665,7 @@ msgstr ""
"le fifo tait de %d,\n"
"et le taux de transfert maximum en caractres/secondes tait de %f\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8653,32 +8676,32 @@ msgstr ""
"nombre maxumum de caractres dans le fifo tait de %d,\n"
"et le taux de transfert maximum en caractres/secondes tait de %f\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Valeur interne invalide: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Valeur d'initialisation invalide: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Valeur par dfaut invalide: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Valeur de temps invalide: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Valeur de temps par dfaut invalide: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8687,75 +8710,75 @@ msgstr ""
"Usage: %s [-q [-i interval]] ([-s valeur]|[-S valeur]) ([-t valeur]|[-T "
"valeur]) [-g|-G] fichier [fichier...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "Ne peut ouvrir %s: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "Ne peut inialiser %s au seuil %d: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "Ne peut initialiser %s au temps de seuil %d: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "Ne peut obtenir la valeur de seuil pour %s: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "Ne peut obtenir la valeur du dlai de grce pour %s: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld seuil courant et %ld dlais de grce courant\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld seuil par dfaut et %ld dlai de grce par dfaut\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "Ne peut initialiser le traitement de signaux"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "chec de gettimeofday()"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "Ne peut mettre CYGETMON sur %s: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
"%s: %lu int, %lu/%lu carc; fifo: %lu seuil, %lu dlai, %lu max, %lu actuel.\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f int/sec; %f reu, %f trans (car/sec)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
"%s: %lu ints, %lu carac; fifo: %lu thresh, %lu tmout, %lu max, %lu actuel.\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f int/sec; %f rec (caractres/sec)\n"
@@ -10058,6 +10081,10 @@ msgstr "Ligne d'entre trop longue.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Mmoire puise lors de l'accroissement du tampon.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr ""
+#~ "mount: type de syst. de fichiers %s n,est pas support par le kernel"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "chec de BLKGETSIZE ioctl pour %s\n"
diff --git a/po/it.po b/po/it.po
index 51aa969b7..d414d1276 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-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+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"
@@ -111,7 +111,7 @@ msgstr "errore di scrittura su %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr ""
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
#, fuzzy
msgid "usage:\n"
msgstr "Utilizzo:"
@@ -1232,11 +1232,11 @@ msgstr " %s [ -c | -y | -n | -d ] dev\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] dev\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Inutilizzabile"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Spazio disponibile"
@@ -1383,8 +1383,8 @@ msgstr "Tasto non valido"
msgid "Press a key to continue"
msgstr "Premere un tasto per continuare"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primaria"
@@ -1392,8 +1392,8 @@ msgstr "Primaria"
msgid "Create a new primary partition"
msgstr "Creare una nuova partizione primaria"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Logica"
@@ -1401,7 +1401,7 @@ msgstr "Logica"
msgid "Create a new logical partition"
msgstr "Creare una nuova partizione logica"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Annulla"
@@ -1437,87 +1437,102 @@ msgstr "Aggiungere la partizione alla fine dello spazio disponibile"
msgid "No room to create the extended partition"
msgstr "Non c' spazio per creare una partizione estesa"
-#: fdisk/cfdisk.c:1503
+#: fdisk/cfdisk.c:1502
#, fuzzy
-msgid "No partition table or unknown signature on partition table"
+msgid "No partition table.\n"
+msgstr "nessuna tabella delle partizioni presente.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Firma danneggiata sulla tabella delle partizioni"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Stampare la tabella delle partizioni"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "nessuna tabella delle partizioni presente.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr ""
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr ""
"Si specificato un numero di cilindri superiore a quelli contenuti su disco"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "Impossibile aprire l'unit disco"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "Disco aperto in sola lettura - scrittura non autorizzata"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Impossibile ottenere la dimensione del disco"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Partizione primaria danneggiata"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Partizione logica danneggiata"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Attenzione!! I dati sul disco potrebbero venire eliminati!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr "Scrivere la tabella delle partizioni su disco? (si o no): "
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "no"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "Scrittura tabella delle partizioni su disco non effettuata"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "si"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Inserire `si' (senza accento) o `no'"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Scrittura tabella delle partizioni su disco in corso..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Eseguita l'operazione di scrittura tabella delle partizioni su disco"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Eseguita l'operazione di scrittura tabella delle partizioni, ma non "
"riuscita la rilettura della tabella. Riavviare per aggiornare la tabella."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
#, fuzzy
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Non possibile avviare in modo preciso una partizione primaria. DOS MBR non "
"pu avviarla."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
#, fuzzy
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
@@ -1525,80 +1540,80 @@ msgstr ""
"Non possibile avviare in modo preciso una partizione primaria. DOS MBR non "
"pu avviarla."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr ""
"Inserire il nome del file o premere RETURN (INVIO) per visualizzare sullo "
"schermo:"
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "Impossibile aprire il file '%s'"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Unit disco: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Settore 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Settore %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Nessuno "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primario"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Logico"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Sconosciuto"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Avvio"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, fuzzy, c-format
msgid "(%02X)"
msgstr "Unk(%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
#, fuzzy
msgid "None"
msgstr "Fine"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Tabella delle partizioni per %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
#, fuzzy
msgid " First Last\n"
msgstr " Primo Ultimo\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
#, fuzzy
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
@@ -1607,7 +1622,7 @@ msgstr ""
" # Tipo settore settore offset lunghezza tipo di filesystem "
"(ID) flag\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1617,492 +1632,492 @@ msgstr ""
"---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Avvio--- ----Chiusura---- Numero avvio di\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
#, fuzzy
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr ""
" # Flag testina sett. cil. ID testina sett. cil. settore settori\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "Grezzo"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Stampare la tabella utilizzando il formato dati grezzi"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Settori"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Stampare la tabella ordinata per settori"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Tabella"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Stampare la tabella delle partizioni"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Non stampare la tabella"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Schermata Guida per cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr ""
"Questo cfdisk, un programma per la partizione dei dischi basato su curses"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr ""
"consente di creare, cancellare e modificare le partizioni sul disco fisso"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "unit disco."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Comando significato"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b Cambia flag avviabile per la partizione corrente"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Elimina la partizione corrente"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g cambio cilindri, testine, parametri settori-per-traccia"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr ""
" ATTENZIONE: questa opzione dovrebbe essere utilizzata solo da "
"persone"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " esperte."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Stampare questa schermata"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr ""
" m Massimizzare l'utilizzo del disco della partizione corrente"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Nota: questo pu rendere la partizione incompatibile con"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Creazione di una nuova partizione nello spazio disponibile"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p Stampa della tabella delle partizioni su schermo o su file"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Vi sono diversi altri formati per la partizione"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " tra i quali scegliere:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - dati grezzi (esattamente ci che verrebbe scritto sul "
"disco)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Tabella ordinata per settori"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Tabella in formato grezzo"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr ""
" q Esce dal programma senza scrivere nella tabella delle partizioni"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Cambia il tipo di filesystem"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr ""
" u Modifica l'unit di visualizzazione della dimensione della "
"partizione"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Ruota attraverso MB, settori e cilindri"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Scrittura della tabella di partizione sul disco (si deve "
"inserire la W maiuscola)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr ""
" Dato che in questo modo possibile eliminare dati sul disco, si "
"deve"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr " confermare o negare la scrittura inserendo `s' o"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " `no'"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Freccia Su sposta il cursore alla partizione precedente"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Freccia Gi sposta il cursore alla partizione successiva"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Ridisegna lo schermo"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Stampa questa schermata"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Nota: possibile immettere tutti i comandi in maiuscolo o minuscolo"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "lettere maiuscole/minuscole (fatta eccezione per Writes)."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cilindri"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Modifica la geometria dei cilindri"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Testine"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Modifica la geometria delle testine"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Modifica la geometria dei settori"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Fine"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Modifica della geometria eseguita"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Immettere il numero di cilindri: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Valore cilindri non valido"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Immettere il numero delle testine: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Valore testine non valido"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Immettere il numero dei settori per traccia: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Valore settori non valido"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Immettere il tipo di filesystem: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Impossibile cambiare il tipo FS in vuoto"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Impossibile cambiare il tipo FS in espanso"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Unk(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Sconosciuto (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Unit disco: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Dimensione: %lld byte"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Dimensione: %lld byte"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Testine: %d settori per traccia: %d cilindri: %d"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Nome"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Flag"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Tipo di partiz."
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Tipo FS"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Etichetta]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
#, fuzzy
msgid " Sectors"
msgstr " Settori"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
#, fuzzy
msgid " Cylinders"
msgstr "Cilindri"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
#, fuzzy
msgid " Size (MB)"
msgstr "Dimensione (MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
#, fuzzy
msgid " Size (GB)"
msgstr "Dimensione (GB)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Avviabile"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr " Cambia flag avviabile per la partizione corrente "
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Elimina"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Elimina la partizione corrente"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometria"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Modifica della geometria del disco (solo per esperti)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Guida"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Stampa della schermata della guida"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Massimi."
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr ""
"Massimizzare l'utilizzo del disco della partizione corrente (solo per "
"esperti)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Nuova"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Creazione di una nuova partizione nello spazio disponibile"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Stampa"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Stampa della tabella delle partizioni su schermo o su file"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Esci"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Esce dal programma senza scrivere nella tabella delle partizioni"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Tipo"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Modificare il tipo di filesystem (DOS, Linux, OS/2 e cos via)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Unit"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
"Cambia l'unit di visualizzazione della dimensione della partizione (MB, "
"sett., cil.)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Scrivi"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr ""
"Scrivere la tabella delle partizioni sul disco (i dati potrebbero venir "
"eliminati)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Impossibile rendere questa partizione avviabile"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Impossibile cancellare una partizione vuota"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "Impossibile massimizzare questa partizione"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Questa partizione utilizzabile"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Questa partizione gi in uso"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Impossibile modificare il tipo di una partizione vuota"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Nessun'altra partizione"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Comando non valido"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
#, fuzzy
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2386,12 +2401,12 @@ msgstr "Si devono impostare"
msgid "heads"
msgstr "testine"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "settori"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "cilindri"
@@ -2794,13 +2809,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:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2950,7 +2965,7 @@ msgstr "Il disco %s non contiene una tabella delle partizioni valida\n"
msgid "Cannot open %s\n"
msgstr "Impossibile aprire %s\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "impossibile aprire %s\n"
@@ -3627,23 +3642,23 @@ msgstr ""
"Si a conoscenza del fatto che sul disco esiste una sovrapposizione di "
"partizioni?\n"
-#: fdisk/fdisksgilabel.c:637
+#: fdisk/fdisksgilabel.c:635
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:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "L'intero disco gi coperto da partizioni.\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3651,18 +3666,18 @@ msgstr ""
"Si raccomanda che l'undicesima partizione\n"
"copra l'intero disco e sia di tipo `SGI volume'\n"
-#: fdisk/fdisksgilabel.c:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " Ultimo %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
#, fuzzy
msgid ""
"Building a new SGI disklabel. Changes will remain in memory only,\n"
@@ -3675,7 +3690,7 @@ msgstr ""
"contenuto precedente sar definitivamente perso.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3683,12 +3698,12 @@ msgid ""
"This value may be truncated for devices > 33.8 GB.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, 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:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tINIZIO=%d\tLUNGHEZZA=%d\n"
@@ -4301,91 +4316,91 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "errore di ricerca su %s - impossibile ricercare a %lu\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "errore di ricerca: si voleva 0x%08x%08x, si ottenuto 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "memoria insufficiente - termina\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "errore in lettura su %s - impossibile leggere il settore %lu\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "ERRORE: il settore %lu non ha una firma msdos\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "errore di scrittura su %s - impossibile scrivere il settore %lu\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "impossibile aprire il file di salvataggio settore partizione (%s)\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "errore di scrittura su %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "impossibile eseguire stat del file di ripristino partizione (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
"il file di ripristino partizione ha una dimensione errata - il ripristino "
"non viene effettuato\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "memoria insufficiente?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "impossibile aprire il file di ripristino partizione (%s)\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "errore durante la lettura di %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "impossibile aprire il dispositivo %s per scrivere\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "errore durante la scrittura del settore %lu su %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Disco %s: impossibile ottenere la geometria\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, fuzzy, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Disco %s: impossibile ottenere la geometria\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, fuzzy, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4396,22 +4411,22 @@ msgstr ""
"l'intero disco. Utilizzare fdisk su di esso probabilmente non ha senso.\n"
"[Utilizzare l'opzione --force se lo si desidera davvero]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, fuzzy, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Attenzione: HDIO_GETGEO dice che vi sono %d testine\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, fuzzy, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Attenzione: HDIO_GETGEO dice che vi sono %d testine\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, fuzzy, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Attenzione: HDIO_GETGEO dice che vi sono %d cilindri\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, fuzzy, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4422,7 +4437,7 @@ msgstr ""
"Questo creer problemi con tutto il software che utilizza l'indirizzamento C/"
"H/S.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4431,7 +4446,7 @@ msgstr ""
"\n"
"Disco %s: %lu cilindri, %lu testine, %lu settori/traccia\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, fuzzy, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
@@ -4439,7 +4454,7 @@ msgstr ""
"%s della partizione %s ha un valore impossibile per la testina: %d "
"(dovrebbeessere compreso nell'intervallo 0-%d)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, fuzzy, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4448,7 +4463,7 @@ msgstr ""
"%s della partizione %s ha un valore impossibile per il settore: %d "
"(dovrebbeessere compreso nell'intervallo 1-%d)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, fuzzy, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4457,7 +4472,7 @@ msgstr ""
"%s della partizione %s ha un valore impossibile per i cilindri: %d (dovrebbe "
"essere compreso nell'intervallo 0-%d)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4465,11 +4480,11 @@ msgstr ""
"Nome Id\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Rilettura della tabella delle partizioni in corso...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4477,31 +4492,31 @@ msgstr ""
"Il comando per la rilettura della tabella delle partizioni non riuscito\n"
"Riavviare adesso il sistema prima di utilizzare mkfs\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Errore durante la chiusura di %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: nessuna partizione di questo tipo\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "formato non riconosciuto - utilizzo dei settori in corso\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# tabella delle partizioni di %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "formato non implementato - utilizzo di %s in corso\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4510,13 +4525,13 @@ msgstr ""
"Unit = cilindri di %lu byte, blocchi di 1024 byte, conteggiando da %d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
#, fuzzy
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr ""
" Inizio Boot Dispositivo Fine #cilin. #blocchi Id Sistema\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4525,12 +4540,12 @@ msgstr ""
"Unit = settori di 512 byte, conteggiando da %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
#, fuzzy
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Boot Dispositivo Inizio Fine #settori Id Sistema\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4539,12 +4554,12 @@ msgstr ""
"Unit = blocchi di 1024 byte, conteggiando da %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
#, fuzzy
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Boot Dispositivo Inizio Fine #blocchi Id Sistema\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, fuzzy, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4553,31 +4568,31 @@ msgstr ""
"Unit = megabyte da 1048576 byte, blocchi da 1024 byte, conteggiando da %d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
#, fuzzy
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Inizio Boot Dispositivo Fine MB #blocchi Id Sistema\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tinizio: (c,h,s) previsto (%ld,%ld,%ld) trovato (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tendenza: (c,h,s) previsto (%ld,%ld,%ld) trovato (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr "la partizione termina sul cilindro %ld, oltre la fine del disco\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Non si trovata alcuna partizione\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, fuzzy, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4588,87 +4603,87 @@ msgstr ""
" per C/H/S=*/%ld/%ld (al posto di %ld/%ld/%ld).\n"
"Per questo elenco viene presunta tale geometria.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "nessuna tabella delle partizioni presente.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "strano, sono definite solo %d partizioni.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr ""
"Attenzione: la partizione %s ha dimensione 0 ma non contrassegnata come "
"vuota\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Attenzione: la partizione %s ha dimensione 0 ed avviabile\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "Attenzione: la partizione %s ha dimensione 0 e inizio non nullo\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Attenzione: la partizione %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "non contenuta nella partizione %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Attenzione: le partizioni %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "e %s si sovrappongono\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
"and will destroy it when filled\n"
msgstr ""
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Attenzione: la partizione %s inizia al settore 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Attenzione: la partizione %s si estende dopo la fine del disco\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
#, fuzzy
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
msgstr "Tra le partizioni primarie, al massimo una pu essere estesa\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Attenzione: la partizione %s non inizia al limite di un cilindro\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Attenzione: la partizione %s non termina al limite di un cilindro\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4677,7 +4692,7 @@ msgstr ""
"(attiva)\n"
"Questo non ha importanza per LILO, ma MBR DOS non avvier questo disco.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4686,7 +4701,7 @@ msgstr ""
"primarie\n"
"LILO non prende in considerazione il flag `bootable' (flag 'avviabile').\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4695,174 +4710,174 @@ msgstr ""
"(attiva)\n"
"Questo non ha importanza per LILO, ma MBR DOS non avvier questo disco.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
#, fuzzy
msgid "start"
msgstr "stato"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"partizione %s: inizio: (c,h,s) previsto (%ld,%ld,%ld) trovato (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
#, fuzzy
msgid "end"
msgstr "invio"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
" partizione %s: fine: (c,h,s) previsto (%ld,%ld,%ld) trovato (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr "la partizione %s termina sul cilindro %ld, oltre la fine del disco\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, fuzzy, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
"(For listing purposes only. Do not change its contents.)\n"
msgstr "Attenzione: inizio dati danneggiato nella partizione %d\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
#, fuzzy
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
msgstr "Attenzione: la partizione %s non inizia al limite di un cilindro\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "troppe partizioni - sto ignorando quei numeri passati (%d)\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "struttura delle partizioni?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "rilevato l'amministratore del disco - impossibile da gestire\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "trovata firma DM6 - termina\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "strano..., una partizione estesa di dimensione 0?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "strano..., una partizione BSD di dimensione 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: partizione non riconosciuta\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "flag -n dato: nessuna modifica\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Salvataggio dei vecchi settori non riuscito - interruzione in corso\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "Scrittura della partizione su %s non riuscita\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "linea di input lunga o incompleta - uscita in corso\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "errore di input: `=' previsto dopo il campo %s\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "errore di input: carattere non previsto %c dopo il campo %s\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "input non riconosciuto: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "numero troppo grande\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "segni strani dopo il numero\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "non c' spazio per il descrittore di partizione\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "impossibile costituire una partizione estesa adiacente\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "troppi campi di input\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "Non c' spazio per altri\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Tipo non valido\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, fuzzy, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr "Attenzione: superiore alla dimensione massima consentita (%lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Attenzione: partizione vuota\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Attenzione: inizio partizione non valido (%lu troppo anticipato)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "flag avviabile non riconosciuto - scegliere - o *\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "Specificazione c,h,s parziale?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "partizione estesa in posizione non prevista\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "input non valido\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "troppe partizioni\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4875,47 +4890,47 @@ msgstr ""
"Solitamente necessario specificare solamente <inizio> e <dimensione> ( e "
"forse <tipo>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "versione"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Utilizzo: %s [opzioni] dispositivo...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "dispositivo: qualcosa come /dev/hda o /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "opzioni utili:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [o --show-size]: elenco dimensioni di una partizione"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr " -c [o --id]: stampa o modifica dell'Id della partizione"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [o --list]: elenco delle partizioni di ciascun dispositivo"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
" -d [o --dump]: idem, ma in un formato adatto per un successivo input"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr ""
" -i [o --increment]: numero dei cilindri ecc. partendo da 1 invece che da "
"0"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
@@ -4923,56 +4938,56 @@ msgstr ""
" -uS, -uB, -uC, -uM: accetta/riporta in unit di settori/blocchi/"
"cilindri/MB"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [o --list-types]:elenca i tipi di partizione conosciuti"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
" -D [o --DOS]: per la compatibilit con DOS: spreca un po' di spazio"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr ""
" -R [o --re-read]: fa rileggere al kernel la tabella delle partizioni"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# : modifica solamente la partizione con numero #"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : non scrive realmente sul disco"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr ""
" -O file : salva sul file i settori che verranno sovrascritti"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I file : ripristina questi settori nuovamente"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [o --version]: stampa versione"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [o --help]: stampa questo messaggio"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "opzioni pericolose:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr ""
" -g [o --show-geometry]: stampa l'idea del kernel riguardo alla geometria"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -4980,117 +4995,117 @@ msgstr ""
" -x [o --show-extended]: elenca anche le partizioni estese in output\n"
" o prevede i rispettivi descrittori in input"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
" -L [o --Linux]: non reclamare per cose che risultano irrilevanti "
"per Linux"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [o --quiet]: elimina i messaggi di avvertimento"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " possibile non usare la geometria rilevata utilizzando:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr " -C# [o --cylindres #]:imposta il numero di cilindri da utilizzare"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -H# [o --heads #]: imposta il numero di testine da utilizzare"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr " -S# [o --sectors #]: imposta il numero di settori da utilizzare"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr " possibile disattivare tutte le verifiche di coerenza con:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr " -f [o --force]: fa ci che dico, anche se stupido"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Utilizzo:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s device\t\t elenca le partizioni attive sul dispositivo\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr "%s device n1 n2 ... attiva le partizioni n1 ..., disattiva il resto\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr "%s -An device\t attiva la partizione n, disattiva le altre\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "nessun comando?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "totale: %d blocchi\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "utilizzo: sfdisk --print-id numero partizione dispositivo\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr " utilizzo: sfdisk --change-id numero partizione dispositivo Id\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "utilizzo: sfdisk --id numero partizione dispositivo [Id]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr ""
" possibile specificare solamente un dispositivo(eccetto con -l o -s)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, fuzzy, c-format
msgid "cannot open %s read-write\n"
msgstr "impossibile aprire %s\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, fuzzy, c-format
msgid "cannot open %s for reading\n"
msgstr "impossibile aprire %s in lettura"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: OK\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, fuzzy, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %d cilindri, %d testine, %d settori/traccia\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "Impossibile ottenere la dimensione del disco"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "byte attivo non valido: 0x%x al posto di 0x80\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5098,7 +5113,7 @@ msgstr ""
"Fine\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5107,37 +5122,37 @@ msgstr ""
"Ci sono %d partizioni primarie attive. Questo irrelevante per LILO,\n"
"ma MBR DOS avvier solamente un disco con 1 partizione attiva.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "la partizione %s ha id %x e non nascosta\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, fuzzy, c-format
msgid "Bad Id %lx\n"
msgstr "Id non valido %x\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Questo disco attualmente in uso.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Errore irreversibile: impossibile trovare %s\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Attenzione: %s non un dispositivo di blocchi\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr ""
"Verifica in corso che in questo momento nessuno stia utilizzando questo "
"disco...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
#, fuzzy
msgid ""
"\n"
@@ -5151,29 +5166,29 @@ msgstr ""
"swapoff di tutte le partizioni swap su questo disco. Utilizzare il flag--no-"
"reread per eliminare questo controllo.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Utilizzare il flag -force per oltrepassare tutti i controlli.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
#, fuzzy
msgid "OK\n"
msgstr "OK"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Vecchia situazione:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "La partizione %d non esiste, non possibile modificarla\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Nuova situazione:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5181,19 +5196,19 @@ msgstr ""
"Queste partizioni non mi piacciono - nessuna modifica\n"
"(se questo quanto si desidera, utilizzare l'opzione --force.)\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "Questo non mi piace - probabilmente si dovrebbe rispondere no\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Soddisfatti di questo? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Scrivere questo su disco? [ynq] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5201,15 +5216,15 @@ msgstr ""
"\n"
"sfdisk: fine prematura dell'input\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Uscita in corso - nessuna modifica\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Scegliere un'opzione per la risposta tra y,n,q\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5217,7 +5232,7 @@ msgstr ""
"La nuova tabella delle partizioni stata scritta con successo\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5321,46 +5336,46 @@ msgstr "getopt (avanzato) 1.0.3\n"
msgid "internal error, contact the author."
msgstr "errore interno, contattare l'autore."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "avviato da MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Ruffian BCD clock\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "porta clock regolata su 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: %s atomico non riuscito per 1000 iterazioni!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Impossibile aprire /dev/port: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr ""
"Non sono riuscito ad ottenere l'autorizzazione perch non ho provato.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr ""
"%s non riesce a ottenere l'accesso alla porta I/O: chiamata iopl(3)non "
"riuscita.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Probabilmente sono necessari privilegi di root.\n"
@@ -5839,38 +5854,39 @@ msgstr ""
"conosciuto. Utilizzare l'opzione --debug per visionare i dettagli della "
"nostra ricerca di un metodo d'accesso.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Attesa in loop per il cambio ora da KDGHWCLK\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "Lettura dell'orario con KDGHWCLK ioctl non riuscita"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Tempo d'attesa per il cambio ora esaurito.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr " Lettura dell'orario con KDGHWCLK ioctl non riuscita nel loop"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, fuzzy, c-format
msgid "ioctl() failed to read time from %s"
msgstr " ioctl() non riuscito a leggere l'orario da /dev/tty1"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
#, fuzzy
msgid "ioctl KDSHWCLK failed"
msgstr " KDGHWCLK ioctl non riuscito"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
#, fuzzy
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Impossibile aprire /dev/tty1"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr " KDGHWCLK ioctl non riuscito"
@@ -6201,7 +6217,7 @@ msgstr "Errore password."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Password: "
@@ -6261,7 +6277,7 @@ msgstr ""
msgid "Finger information changed.\n"
msgstr "Le informazioni finger sono state modificate.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "malloc non riuscita"
@@ -6995,7 +7011,7 @@ msgstr "Exec umount impossibile, termina utilizzo di umount."
msgid "Unmounting any remaining filesystems..."
msgstr "Smontaggio in corso di qualsiasi filesystem rimanente..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, fuzzy, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "spegnimento: impossibile eseguire umount di %s\n"
@@ -7644,17 +7660,17 @@ msgstr "Messaggio da %s@%s su %s a %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Messaggio da %s@%s su %s a %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "attenzione: errore durante la lettura di %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "attenzione: impossibile aprire %s: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: impossibile aprire %s - si sta utilizzando al suo posto %s\n"
@@ -7663,42 +7679,42 @@ msgstr "mount: impossibile aprire %s - si sta utilizzando al suo posto %s\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"impossibile creare un file di blocco %s: %s (utilizzare il flag -n per "
"tralasciare)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"impossibile collegare il file di blocco %s: %s (utilizzare il flag -n per "
"tralasciare)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
"impossibile aprire il file di blocco %s: %s (utilizzare flag -n per "
"tralasciare)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Impossibile bloccare il file di blocco %s: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "Impossibile bloccare il file di blocco %s: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "scaduto"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7707,22 +7723,22 @@ msgstr ""
"Impossibile creare il collegamento %s\n"
"Forse c' un vecchio file di blocco?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "impossibile aprire %s (%s) - mtab non aggiornato"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "errore durante la scrittura di %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "errore durante il cambiamento della modalit di %s: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "impossibile rinominare %s in %s: %s\n"
@@ -7784,26 +7800,26 @@ msgstr "mount: impossibile trovare un qualsiasi loop device libero"
msgid "Couldn't lock into memory, exiting.\n"
msgstr ""
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): riuscito\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: impossibile cancellare il device %s: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): riuscito\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Questo montaggio stato compilato senza supporto loop. Ricompilare.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7816,193 +7832,193 @@ msgstr ""
" %s -d loop_device # elimina\n"
" %s [ -e encryption ] [ -o offset ] loop_device file # imposta\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "memoria insufficiente"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Nessun supporto loop disponibile al momento della compilazione. "
"Ricompilare.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr ""
"[mntent]: attenzione: non c'e' un 'codice di interruzione linea' alla fine "
"di %s\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: la linea %d in %s non valida%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; ignorato resto del file"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: in base a mtab, %s gi montato su %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: in base a mtab, %s montato su %s"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: impossibile aprire %s in scrittura: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: errore durante la scrittura di %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: errore durante il cambio di modalit di %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s assomigla a swapspace - non montato"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "mount non riuscito"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: solamente root pu montare %s su %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: loop device specificato due volte"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: tipo specificato due volte"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: si ignora l'impostazione di un loop device\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: si intende utilizzare il loop device %s\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: mancata impostazione del loop device\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: impostazione del loop device riuscita\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: impossibile aprire %s: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:687
+#: mount/mount.c:669
#, fuzzy, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: impossibile aprire %s in scrittura: %s"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, fuzzy, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: impossibile aprire %s: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: impossibile effettuare il fork: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr ""
"mount: questa versione stata compilata senza supporto per il tipo `nfs'"
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr ""
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: impossibile determinare il tipo di filesystem, e non stato "
"specificato nessuno"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: si deve specificare il tipo di filesystem"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: mount non riuscito"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: il mount point di %s non una directory"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: autorizzazione negata"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: bisogna essere superuser per utilizzare mount"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s occupato"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc gi montato"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s gi montato o %s occupato"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: il mount point %s non esiste"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: il mount point %s un link simbolico a nulla"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: il device speciale %s non esiste"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8011,12 +8027,12 @@ msgstr ""
"mount: il device speciale %s non esiste\n"
" (un prefisso di percorso non una directory)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s non ancora montato, oppure l'opzione non valida"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -8025,47 +8041,53 @@ msgstr ""
"mount: tipo fs errato, opzione non valida, superblocco su %s danneggiato,\n"
" o troppi file system montati"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "mount table piena"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: impossibile leggere il superblocco"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, fuzzy, c-format
msgid "mount: %s: unknown device"
msgstr "umount: %s: dispositivo di blocchi non valido"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: fs di tipo %s non supportato dal kernel"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l elenco dei tipi di filesystem conosciuti"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: probabilmente si intende %s"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: forse si intendeva iso9660 ?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: forse si intendeva iso9660 ?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
"mount: %s ha un numero device errato o il fs di tipo %s non supportato"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s non un dispositivo di blocchi e lo stat non riuscito?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8074,50 +8096,50 @@ msgstr ""
"mount: il kernel non riconosce %s come un dispositivo di blocchi\n"
" (forse `insmod driver'?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s non un dispositivo di blocchi (magari tentare `-o loop'?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s non un dispositivo di blocchi"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s non un dispositivo di blocchi valido"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr " dispositivo di blocchi"
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, fuzzy, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "umount: impossibile rimontare %s di sola lettura\n"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, fuzzy, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr ""
"mount: %s%s protetto da scrittura, montaggio in sola lettura in corso"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr ""
"mount: %s%s protetto da scrittura, montaggio in sola lettura in corso"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
"mount: non stato dato il tipo - Si presume nfs perch ci sono i due punti\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
#, fuzzy
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr "mount: non stato dato il tipo - Si presume smbfs perch xxx\n"
@@ -8125,22 +8147,22 @@ msgstr "mount: non stato dato il tipo - Si presume smbfs perch xxx\n"
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: esecuzione in background di \"%s\"\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: termina \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s gi montato su %s\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8165,34 +8187,34 @@ msgid ""
"For many more details, say man 8 mount .\n"
msgstr ""
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: possibile solo per root"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: nessun %s trovato - creazione in corso..\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: non si trovata tale partizione"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: mount di %s in corso\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr ""
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: impossibile trovare %s in %s"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: impossibile trovare %s in %s o %s"
@@ -8207,31 +8229,31 @@ msgstr "mount: impossibile aprire %s - si sta utilizzando al suo posto %s\n"
msgid "mount: bad UUID"
msgstr "mount: UUID non valido"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
#, fuzzy
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: si deve specificare il tipo di filesystem"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: non si specificato un tipo di filesystem per %s\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " Prover tutti i tipi citati in %s o %s\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " e sembra che questo sia swapspace\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " Prover il tipo %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Prova di %s in corso\n"
@@ -8468,11 +8490,11 @@ msgstr "umount: impossibile rimontare %s di sola lettura\n"
msgid "%s umounted\n"
msgstr "eseguito umount di %s\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr "umount: impossibile trovare l'elenco dei filesystem da smontare"
-#: mount/umount.c:467
+#: mount/umount.c:469
#, fuzzy
msgid ""
"Usage: umount [-hV]\n"
@@ -8483,42 +8505,42 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes]\n"
" umount [-f] [-r] [-n] [-v] special | node...\n"
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Tentativo di eseguire umount di %s in corso\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Impossibile trovare %s in mtab\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s non montato (secondo mtab)"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: sembra che %s sia stato montato diverse volte"
-#: mount/umount.c:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s mount non coerente con fstab"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: solamente %s pu smontare %s da %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr " umount: possibile solo per root"
@@ -8530,7 +8552,7 @@ msgstr "Bisogna essere root per impostare modalit Ctrl-Alt-Del.\n"
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Utilizzo: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8540,7 +8562,7 @@ msgstr ""
"era %d,\n"
"e la velocit massima di trasferimento di caratteri/secondo era di %f\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8551,32 +8573,32 @@ msgstr ""
"massimo di caratteri in fifo era %d,\n"
"e la velocit massima di trasferimento di caratteri/secondo era di %f\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Valore intervallo non valido: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Valore impostato non valido: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Valore predefinito non valido: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Ora impostata non valida: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Ora predefinita non valida: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8585,75 +8607,75 @@ msgstr ""
"Utilizzo: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T "
"value]) [-g|-G] file [file...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "Impossibile aprire %s: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "Impossibile impostare %s alla soglia %d: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "Impossibile impostare %s al limite ora %d: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "Impossibile ottenere il limite per %s: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "Impossibile ottenere il timeout per %s: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, fuzzy, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld %s limite e %ld %s timeout\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, fuzzy, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld %s limite e %ld %s timeout\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "Impossibile impostare un gestore del segnale"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "gettimeofday non riuscito"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "Impossibile eseguire CYGETMON su %s: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, fuzzy, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f int/sec; %f rec, %f send (car/sec)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f int/sec; %f rec (car/sec)\n"
@@ -9928,6 +9950,9 @@ msgstr "Linea di input troppo lunga.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Memoria insufficiente quando si amplia il buffer.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: fs di tipo %s non supportato dal kernel"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "BLKGETSIZE ioctl non riuscito per %s\n"
diff --git a/po/ja.po b/po/ja.po
index d7de01276..ebc9067f5 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-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+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"
@@ -111,7 +111,7 @@ msgstr "%s: %s ioctl 顼\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr "RO RA SSZ BSZ Sec ǥХ\n"
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "Ȥ:\n"
@@ -1221,11 +1221,11 @@ msgstr " %s [ -c | -y | -n | -d ] ǥХ\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] ǥХ\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Բ"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "ΰ"
@@ -1365,8 +1365,8 @@ msgstr "ʥ"
msgid "Press a key to continue"
msgstr "³ˤϲϤƤ"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "ΰ"
@@ -1374,8 +1374,8 @@ msgstr "ΰ"
msgid "Create a new primary partition"
msgstr "˴ΰޤ"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "ΰ"
@@ -1383,7 +1383,7 @@ msgstr "ΰ"
msgid "Create a new logical partition"
msgstr "ΰޤ"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr ""
@@ -1419,160 +1419,176 @@ msgstr "ΰκǸΰɲ"
msgid "No room to create the extended partition"
msgstr "ĥΰ뤿ξ꤬ޤ"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "ߥѡƥϤޤ\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "ΰơ֥뤬̵ΰơ֥ν̾Ǥ"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "ñΰɽ"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "ߥѡƥϤޤ\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "ơ֥dzϤޤ礦 [y/N] ?"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "ǥˤȤäŬڤʿ¿Υꤵޤ"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "ǥɥ饤֤򳫤ޤ"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "ǥɹѤdzޤ -- ʤˤϽ߸¤ޤ"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "ǥǤޤ"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "ʴΰ"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "ΰ"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "ٹ ϤʤΥǥˤǡ˲뤫⤷ޤ"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr "ΰǥ˽񤭹ǤǤ(yes ޤ no): "
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "no"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "ΰơ֥ǥ˽񤭹ߤޤǤ"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "yes"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "`yes' `no' Τ줫ϤƤ"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "ΰơ֥񤭹..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "ΰơ֥ǥ˽񤭹ߤޤ"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"ΰơ֥񤭹ߤޤɹߤ˼ԡƵưƹƤ"
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"֡Ȳǽޡդΰ褬ޤDOS MBR Ϥ֡ȤǤޤ"
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"֡Ȳǽޡդΰ褬ʣޤDOS MBR Ϥ֡ȤǤޤ"
""
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr "ե̾ϡ̤ɽϥ꥿󥭡: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "ե '%s' 򳫤ޤ"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "ǥɥ饤: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr " 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr " %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " ̵ "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " /"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " ΰ"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " ΰ"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr ""
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "֡"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, fuzzy, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
#, fuzzy
msgid "None"
msgstr "λ"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "%s ѡƥ\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
#, fuzzy
msgid " First Last\n"
msgstr " ǽ Ǹ\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
#, fuzzy
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
@@ -1581,7 +1597,7 @@ msgstr ""
" # ΰ եå 礭 Filesystem(ID) ե"
"\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1591,471 +1607,471 @@ msgstr ""
"---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---ǽ----- ----Ǹ---- Υ \n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
#, fuzzy
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Flags Head Sect Cyl ID Head Sect Cyl ֹ \n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "ǡ"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "ǡηǥѡƥ"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr ""
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "˥ѡƥ"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "ơ֥"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "ñΰɽ"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "ΰϤʤ"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "cfdisk Υإײ"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "cfdisk üǥΰץǤ"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "ϡɥǥɥ饤֤ΰѹ"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "뤳ȤǤޤ"
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "ޥ "
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b ΰΥ֡ȥե饰"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d ΰ"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g , إå, ȥåΥѹ"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " ٹ: Υץ󤬲򤹤Τ򤷤Ƥʤ"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " ϻѤƤϤʤ"
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h β̤ɽ"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m ΰΥǥ̤ˤ롣"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " : ΥץϡDOS, OS/2 ȸߴΤʤ"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " ΰǽޤ"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n ΰ褫鿷ΰ"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p ΰ̤ޤϥǥ˽Ϥ"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " ΰνϤˤϼΤ褦ʣη"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " Ǥ:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - ǡ(ǥ˽񤭹ޤ󤽤Τ)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Υѡƥ"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - ηΥѡƥ"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q ΰ񤭹ޤ˥ץλ"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t ե륷ƥॿפѹ"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u ɽΰ襵ñ̤ѹ"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " MB, , ν˽۴Ĥ"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr " W ΰǥ˽񤭹(ʸ W "
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " ϤʤФʤʤ)Υץϥǥ"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr " ǡ˲ǽ뤿ᡢ'yes'ޤ'no'"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " Ϥˤꡢ񤭹ߤԤɤǧ롣"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr " ΰ˥ư"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr " ΰ˥ư"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L ̤"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? β̤ɽ"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr ": ޥɤϤ٤ʸʸɤǤѤǤޤ"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "(񤭹ߤ)"
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr ""
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Υȥѹ"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "إåɿ"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "إåɤΥȥѹ"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Υȥѹ"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "λ"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "ȥѹƽλ"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "ϤƤ: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "ʥ"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "إåϤƤ: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "ʥإåɿ"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "ȥåΥϤƤ: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "ʥ"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "ե륷ƥॿפϤƤ: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "ե륷ƥॿפѹǤޤ"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "ե륷ƥॿפĥѹǤޤ"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "/"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr " (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "ǥɥ饤: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr ": %lld Х"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr ": %lld Х"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "إå: %d ȥåΥ: %d : %d"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "̾"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "ե饰"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "ΰ西"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "FS"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[٥]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
#, fuzzy
msgid " Sectors"
msgstr " "
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
#, fuzzy
msgid " Cylinders"
msgstr ""
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
#, fuzzy
msgid " Size (MB)"
msgstr " (MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
#, fuzzy
msgid " Size (GB)"
msgstr " (GB)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "֡Ȳ"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "ΰΥ֡ȥե饰ڤؤ"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr ""
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "ΰ"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "ȥ"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "ǥȥѹ(ѡ)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "إ"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "إײ̤ɽ"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "粽"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "ΰΥǥ̤粽(ѡ)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr ""
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "ΰ褫鿷ΰ"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "ɽ"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "ΰ̤ޤϥե˽"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "λ"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "ΰ񤭹ޤ˥ץλ"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "FS"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "ե륷ƥΥפѹ(DOS, Linux, OS/2 ʤ)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "ñ"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "ɽΰ襵ñ(MB, , )ѹ"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "񤭹"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "ΰǥ˽񤭹(ǡ˲ǽ)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "ΰ֡ȲǽˤϤǤޤ"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "ΰ뤳ȤϤǤޤ"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "ΰ粽뤳ȤϤǤޤ"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "ΰϻѤǤޤ"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Υǥϸ߻Ǥ"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "ΰΥפѹ뤳ȤϤǤޤ"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "ʾΰϤޤ"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "ʥޥ"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
#, fuzzy
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-2000 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2332,12 +2348,12 @@ msgstr "ꤹɬפޤ"
msgid "heads"
msgstr "إåɿ"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr ""
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr ""
@@ -2740,12 +2756,12 @@ msgstr "׳ݥ %d Ϻ %d 礭Ǥ\n"
msgid "%lld unallocated sectors\n"
msgstr "ݤƤʤ %d ޤ\n"
-#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2898,7 +2914,7 @@ msgstr "ǥ %s ΰơ֥ޤǤޤ\n"
msgid "Cannot open %s\n"
msgstr "%s 򳫤ޤ\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "%s 򳫤ޤ\n"
@@ -3564,19 +3580,19 @@ msgstr "YES\n"
msgid "Do You know, You got a partition overlap on the disk?\n"
msgstr "ǥΰƱΤʣƤ뤳ȤΤäƤޤ\n"
-#: fdisk/fdisksgilabel.c:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "entire disk ܤμưߤޤ\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "entire disk ΰʤäƤޤ\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
msgid "You got a partition overlap on the disk. Fix it first!\n"
msgstr "ǥΰ褬ʣƤޤޤ򲿤Ȥޤ礦\n"
-#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3584,16 +3600,16 @@ msgstr ""
"11 ܤΰ entire disk ʤ`SGI volume' Ǥ뤳Ȥ\n"
"侩ޤ\n"
-#: fdisk/fdisksgilabel.c:671
+#: fdisk/fdisksgilabel.c:669
msgid "You will get a partition overlap on the disk. Fix it first!\n"
msgstr "ǥΰ褬ʣ뤳Ȥˤʤޤޤ򲿤Ȥޤ礦\n"
-#: fdisk/fdisksgilabel.c:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " Ǹ %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3604,7 +3620,7 @@ msgstr ""
"ˤΤȿǤޤθϤ󡢰Ƥϼ졢\n"
"ԲǽȤʤޤ\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3612,12 +3628,12 @@ msgid ""
"This value may be truncated for devices > 33.8 GB.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr "ΰ %d ͤ¸ߤޤ\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\t=%d\tĹ=%d\n"
@@ -4224,90 +4240,90 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "%s Υ顼 -- %lu 򥷡Ǥޤ\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "顼: 0x%08x%08x ΤϤǤ 0x%08x%08x ޤ\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "꤬­ޤ -- ޤ\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "%s ɤ߼ꥨ顼 -- %lu ɤޤ\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "顼: %lu ˤ msdos 󤬤ޤ\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "%s ؤν񤭹ߥ顼 -- %lu ˽񤭹ޤ\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "ѡƥ󥻥¸ե (%s) 򥪡ץǤޤ\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "%s ؤν񤭹ߥ顼\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "ѡƥե (%s) ξǤޤ\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
"ѡƥեΥְäƤޤ -- Ԥʤޤ\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "꤬­ʤ\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "ѡƥե (%s) 򳫤ޤ\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "%s ɤ߼ꥨ顼\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "ǥХ %s 񤭹ߤ褦˥ץǤޤ\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "%2$s Υ %1$lu ؤν񤭹ߥ顼\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "ǥ %s: ȥǤޤ\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "ǥ %s: Ǥޤ\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4319,22 +4335,22 @@ msgstr ""
" fdisk ѤΤ¿ʬ̣ʤȤǤ\n"
"[ˤԤʤС--force ץȤäƤ]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "ٹ: HDIO_GETGEO ˤȡإåɿ %lu Ǥ\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "ٹ: HDIO_GETGEO ˤȡ %lu Ǥ\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "ٹ: BLKGETSIZE/HDIO_GETGEO ˤȡ %lu Ǥ\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4344,7 +4360,7 @@ msgstr ""
"ϡC/H/S 򥢥ɥ쥹ѤƤƤΥեȥǡ\n"
"꤬뤳Ȥˤʤޤ\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4353,7 +4369,7 @@ msgstr ""
"\n"
"ǥ %s: %luإåɿ %lu%lu /ȥå\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
@@ -4361,7 +4377,7 @@ msgstr ""
"ѡƥ %2$s ΥإåɿȤ %1$s ԲǽǤ: %3$lu (0-%4$lu ˤ"
")\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4370,7 +4386,7 @@ msgstr ""
"ѡƥ %2$s ΥȤ %1$s ԲǽǤ: %3$lu (1-%4$lu ˤ"
")\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4379,7 +4395,7 @@ msgstr ""
"ѡƥ %2$s ΥȤ %1$s ԲǽǤ: %3$lu (0-%4$lu ˤ"
"Ƥ)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4387,11 +4403,11 @@ msgstr ""
"Id ̾\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "ѡƥơ֥ɤ߹...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4399,31 +4415,31 @@ msgstr ""
"ѡƥɹߥޥɤԤޤ\n"
"mkfs ȤˡƥƵưƤ\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "%s Υ顼\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: Τ褦ʥѡƥϤޤ\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "ǧǤʤեޥå -- Ѥޤ\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# %s Υѡƥơ֥\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "̤Υեޥå -- %s Ѥޤ\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4432,12 +4448,12 @@ msgstr ""
"˥å = %lu ХȤΥ1024 ХȤΥ֥å%d ޤ\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
#, fuzzy
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr "ǥХ ֡ # #֥å ID ƥ\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4446,12 +4462,12 @@ msgstr ""
"˥å = 512 ХȤΥ%d ޤ\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
#, fuzzy
msgid " Device Boot Start End #sectors Id System\n"
msgstr " ǥХ ֡ # ID ƥ\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4460,12 +4476,12 @@ msgstr ""
"˥å = 1024 ХȤΥ֥å%d ޤ\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
#, fuzzy
msgid " Device Boot Start End #blocks Id System\n"
msgstr " ǥХ ֡ #֥å ID ƥ\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, fuzzy, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4474,31 +4490,31 @@ msgstr ""
"Units = 1048576 ХȤᥬХȡ1024 ХȤΥ֥å%d ޤ\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
#, fuzzy
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr "ǥХ ֡ MB #֥å ID ƥ\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\t: (c,h,s) (%ld,%ld,%ld) (%ld,%ld,%ld) ȯ\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\t: (c,h,s) (%ld,%ld,%ld) (%ld,%ld,%ld) ȯ\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr " %ld ˥ѡƥνǥκǸۤƤޤ\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "ѡƥ󤬸Ĥޤ\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, fuzzy, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4509,52 +4525,52 @@ msgstr ""
" (%ld/%ld/%ld Τ)\n"
"ΥꥹȤϡΥȥȸʤޤ\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "ߥѡƥϤޤ\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "ѤǤ%d ĤΥѡƥ󤷤Ƥޤ\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr ""
"ٹ: ѡƥ %s ϥ 0 ǤȤƥޡƤޤ\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "ٹ: ѡƥ %s ϥ 0 ʤΤ˥֡ȲǽǤ\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "ٹ: ѡƥ %s ϥ 0 ǡ󥼥γϰ֤Ǥ\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "ٹ: ѡƥ %s ϡ"
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "ѡƥ %s ˴ޤޤƤޤ\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "ٹ: ѡƥ %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr " %s ŤʤäƤޤ\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4563,17 +4579,17 @@ msgstr ""
"ٹ: ΰ %s ΰơ֥ ( %lu) ΰޤǤꡢ\n"
"줬˲ˤʤޤ\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "ٹ: ѡƥ %s 0 ϤޤäƤޤ\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "ٹ: ѡƥ %s ϥǥνۤƤޤ\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4581,17 +4597,17 @@ msgstr ""
"ΰѡƥǤϡĥѡƥĤޤ\n"
" Linux ǤȤϤʤޤ󤱤ɤ\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "ٹ: ѡƥ %s ϥϤޤäƤޤ\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "ٹ: ѡƥ %s ϥǽäƤޤ\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4600,7 +4616,7 @@ msgstr ""
"LILO ˤȤäƤꤢޤ󤬡DOS MBR ϤΥǥ֡ȤǤʤ\n"
"ʤäƤޤޤ\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4608,7 +4624,7 @@ msgstr ""
"ٹ: ̤ϥץ饤ޥѡƥĤ֡ȤǤ褦ˤޤ\n"
"LILO `֡Ȳǽ' ե饰̵뤷ޤɤ⡣\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4617,37 +4633,37 @@ msgstr ""
"LILO ˤȤäƤꤢޤ󤬡DOS MBR ϤΥǥ֡ȤǤʤ\n"
"ʤäƤޤޤ\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
#, fuzzy
msgid "start"
msgstr ""
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"ѡƥ %s: : (c,h,s) (%ld,%ld,%ld) (%ld,%ld,%ld) ȯ\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
#, fuzzy
msgid "end"
msgstr ""
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"ѡƥ %s: : (c,h,s) (%ld,%ld,%ld) (%ld,%ld,%ld) ȯ\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr ""
" %2$ld ˤѡƥ %1$s νϥǥκǸۤƤ"
"\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
@@ -4656,7 +4672,7 @@ msgstr ""
"ٹ: ĥΰγϰ֤ %ld %ld ˰ܤޤ\n"
"ʥꥹɽΰ٤ǤƤѹϤޤ󡣡\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4664,133 +4680,133 @@ msgstr ""
"ٹ: ĥΰ褬ϤޤäƤޤ\n"
"DOS Linux ȤۤʤäƲ᤹Ǥ礦\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "ѡƥ¿ޤ -- nr (%d) ʹߤ̵뤷ޤ\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "ѡƥΥĥ꡼\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "Disk Manager 򸡽 -- ªǤޤ\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "DM6 ̾ȯ -- ޤ\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "ѤǤ..., 0 γĥѡƥ \n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "ѤǤ..., 0 BSD ѡƥ\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: ǧǤʤѡƥ\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "-n ե饰Ϳޤ: ѹޤǤ\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Ť¸˼ -- Ǥޤ\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "%s Υѡƥ񤭹ߤ˼\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "ĹԴʹԤ -- ߤޤ\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "ϥ顼: `=' %s եɤθˤƤ\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "ϥ顼: %2$s եɤθͽʤʸ `%1$c'\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "ǧǤʤ: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "礭ޤ\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "θ˥ߤդƤޤ\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "ѡƥ󵭽һҤζޤ\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "ĥѡƥΰϤۤǤޤ\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "ϥեɤ¿ޤ\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "ʾζޤ\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "ʥ\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
"ٹ: Ϳ줿 (%lu) ϡƤǤ祵 (%lu) ۤƤޤ\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "ٹ: Υѡƥ\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "ٹ: ʥѡƥ󤬻ϤޤäƤޤ (ֺǽ %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "ǧǤʤ֡Ȳǽե饰 -- - * Ǥ\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "c,h,s ΰꡩ\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "ĥѡƥͽˤޤ\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "ѡƥ¿ޤ\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4801,96 +4817,96 @@ msgstr ""
"<start> <size> <type [E,S,L,X,hex]> <bootable [-,*]> <c,h,s> <c,h,s>\n"
"̤ <start> <size> (ƶ餯 <type>)ꤹǹޤ\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "С"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Ȥ: %s [ץ] ǥХ̾...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "ǥХ: /dev/hda /dev/sda ͤʲ"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "ͭפʥץ:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [or --show-size]: ΰ襵Υꥹ"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr " -c [or --id]: ΰ ID ɽޤѹ"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [or --list]: ǥХΰꥹ"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr " -d [or --dump]: ƱϽ񼰤˱褦褦ˤ"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr " -i [or --increment]: ʤɡ0 ǤϤʤ 1 "
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
msgstr ""
" -uS, -uB, -uC, -uM: /֥å//MB Υ˥åȤμ/"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [or --list-types]:Τΰ西פΥꥹ"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr " -D [or --DOS]: DOS ߴ⡼ -- ̵֤̤ˤʤޤ"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr " -R [or --re-read]: ͥΰơ֥ɹߤ"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# : ֹ# ΰΤѹ"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : ǥؤμºݤνߤԤʤ"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr " -O file : 񤭤륻ե¸"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I file : ե뤫"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [or --version]: Сɽ"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [or --help]: Υåɽ"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "ʥץ:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr " -g [or --show-geometry]: ͥΥȥɽ"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -4898,115 +4914,115 @@ msgstr ""
" -x [or --show-extended]: ĥΰꥹȤɽ\n"
" ޤϤεһҤϤ"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr " -L [or --Linux]: Linux ˤʤƤʸ򱾤ʤ"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [or --quiet]: ٹå"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " ȥ긡ФǤޤ:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr " -C# [or --cylinders #]:Ѥ륷ꤹ"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -H# [or --heads #]: Ѥإåɿꤹ"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr " -S# [or --sectors #]: Ѥ륻ꤹ"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "̷ΥåԤʤ褦ˤǤޤ:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr " -f [or --force]: ʻԤäƤ⡢Τޤ޼¹Ԥޤ"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Ȥ:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s ǥХ\t\t ǥХΥƥΰꥹȤޤ\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr ""
"%s ǥХ n1 n2 ... n1 򥢥ƥˤ..., Ĥ󥢥ƥˤޤ\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr "%s -An ǥХ\t n 򥢥ƥˤʳ󥢥ƥˤޤ\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "ޥɤʤ\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr ": %d ֥å\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "Ȥ: sfdisk --print-id ǥХ ѡƥֹ\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "Ȥ: sfdisk --change-id ǥХ ѡƥֹ ID\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "Ȥ: sfdisk --id ǥХ ѡƥֹ [ID]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "ĤΥǥХΤ߻Ǥޤ (-l -s )\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "%s ɤ߽񤭥⡼ɤdzޤ\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "%s ɹѤ˳ޤ\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: OK\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ldإåɿ %ld%ld /ȥå\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "%s ΥǤޤ"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "ʥ֡ȥե饰: 0x80 Ǥʤ 0x%x Ǥ\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5014,7 +5030,7 @@ msgstr ""
"λ\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5024,35 +5040,35 @@ msgstr ""
"LILO Ǥꤢޤ󤬡DOS MBR 1 ĤΥƥ֤ʥѡƥ󤷤\n"
"֡ȤǤޤ\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "ѡƥ %s ˤ ID %x ꡢƤޤ\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr " ID %lx\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Υǥϸ߻Ǥ\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "̿Ūʥ顼: %s Ĥޤ\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "ٹ: %s ϥ֥åǥХǤϤޤ\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "ߡï⤳ΥǥȤäƤʤĴ٤ޤ...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5066,28 +5082,28 @@ msgstr ""
" swapoff Ƥ\n"
" ʤߤ --no-reread ե饰ǤΥåǤޤ\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "ƤΥåĶۤˤ --force ե饰ȤäƤ\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "OK\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Ť:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "ѡƥ %d ¸ߤޤΤǡѹǤޤ\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "ʾ:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5095,19 +5111,19 @@ msgstr ""
"ϤΥѡƥ˴Ϳޤ -- ѹޤ\n"
"(ˤԤʤС--force ץȤäƤ)\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "Ϥ˴Ϳޤ -- 餯 No ٤Ǥ礦\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Ǥʤ׵ޤ [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "ǥؤν񤭹ߤԤʤޤ [ynq] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5115,15 +5131,15 @@ msgstr ""
"\n"
"sfdisk: Ϥûޤ\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr " -- ѹޤ\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "y,n,q Τ줫Ƥ\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5131,7 +5147,7 @@ msgstr ""
"ʥѡƥν񤭹ߤ\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5231,43 +5247,43 @@ msgstr "getopt (enhanced) 1.1.2\n"
msgid "internal error, contact the author."
msgstr "顼ԤϢ"
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "MILO ֡Ȥޤ\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "ƹ BCD å\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "åݡȤ 0x%x ˽ޤ\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr " TOY!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: Բʬ%s 1000 ȿ!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "/dev/port 򳫤ޤ: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "ĤμʤäΤǡĤμ˼Ԥޤ\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s I/O ݡȥǤޤ: iopl(3) ˼ԡ\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "餯롼ȸ¤ɬפǤ\n"
@@ -5724,36 +5740,37 @@ msgid ""
"method.\n"
msgstr "--debug ץǥˡξܺ٤ˤĤƸƤ\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "KDGHWCLK ѹΤλ롼Ǥ\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK λɤ߼꤬Ԥޤ"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "ѹԤॢȤޤ\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "ɤ߹ߤΤ KDGHWCLK ioctl 롼ǼԤޤ"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "%s ɹि ioctl() ˼Ԥޤ"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "KDSHWCLK ioctl ˼Ԥޤ"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "/dev/tty1 ޤ /dev/vc/1 򳫤ޤ"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK ioctl ˼Ԥޤ"
@@ -6083,7 +6100,7 @@ msgstr "ѥɥ顼"
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "ѥ: "
@@ -6141,7 +6158,7 @@ msgstr "finger ѹ *ޤǤ*ޤȤǻƤ\n"
msgid "Finger information changed.\n"
msgstr "finger ѹޤ\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "malloc ˼"
@@ -6880,7 +6897,7 @@ msgstr "umount ¹ԤǤޤ󡣥ޥȤޤ"
msgid "Unmounting any remaining filesystems..."
msgstr "ĤΥե륷ƥ򥢥ޥȤޤ..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: %s umount ǤޤǤ: %s\n"
@@ -7522,17 +7539,17 @@ msgstr "å from %s@%s (%s Ȥ) on %s at %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "å from %s@%s on %s at %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "ٹ: %s ɹߥ顼: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "ٹ: %s ץǤޤ: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: %s 򥪡ץǤޤǤ -- %s Ȥޤ\n"
@@ -7541,36 +7558,36 @@ msgstr "mount: %s 򥪡ץǤޤǤ -- %s Ȥޤ\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr "åե %s Ǥޤ: %s (-n ե饰ȤäƤ)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr "åե %s 󥯤Ǥޤ: %s (-n ե饰ȤäƤ)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr "åե %s 򳫤ޤ: %s (-n ե饰ȤäƤ)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "åե %s åǤޤ: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "åե %s åǤޤ: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "ॢ"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7579,22 +7596,22 @@ msgstr ""
" %s Ǥޤ\n"
"¿ʬߤȲåե뤬ΤǤ ?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "%s 򳫤ޤ (%s) -- mtab Ϲޤ"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "%s ؤν񤭹ߥ顼: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "%s Υ⡼ѹ顼: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "%s ̾ %s ѹǤޤ: %s\n"
@@ -7656,28 +7673,28 @@ msgstr "mount: Ƥ loop ǥХĤޤ"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "˳ǼǤޤǤΤǡλޤ\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): \n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: ǥХ %s Ǥޤ: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): \n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
" mount loop ΥݡȤʤǥѥ뤵ޤ\n"
"ƥѥ뤷Ƥ\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7690,189 +7707,189 @@ msgstr ""
" %s -d loopǥХ # \n"
" %s [ -e Ź沽 ] [ -o եå ] loopǥХ ե # \n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "꤬ԽʬǤ"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"ѥ loop ݡȤͭˤʤäƤޤ󡣺ƥѥ뤷Ƥ"
"\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr "[mntent]: ٹ: %s κǸ˲Ԥޤ\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: %2$s %1$d ܤǤ%3$s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "-- ̵뤷ޤ"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: mtab ˤȡ%s %s ˥ޥȺѤǤ"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: mtab ˤȡ%s %s ˥ޥȤƤޤ"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: %s 񤭹Ѥ˥ץǤޤ: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: %s ν񤭹ߥ顼: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: %s Υ⡼ѹ顼: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s ϥå׶֤Τ褦Ǥ -- ޥȤޤ"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "ޥȤ˼Ԥޤ"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: root %s %s ˥ޥȤǤޤ"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: loop ǥХ 2 ꤵޤ"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: פ 2 ꤵޤ"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: loop ǥХ򥹥åפޤ\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: loop ǥХ %s Ȥޤ\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: loop ǥХ˼Ԥޤ\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: loop ǥХޤ\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: %s ץǤޤ: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: %s ®Ѥ˥ץǤޤ"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: ®٤꤬Ǥޤ: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: fork Ǥޤ: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr ""
"mount: ΥС 'nfs' פΥݡȤʤǥѥ뤵Ƥޤ"
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: nfs mount version 4 ǤϼԤޤ3 ޤ..\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr "mount: none ꤵޤե륷ƥॿפǤޤ"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: ե륷ƥॿפꤹɬפޤ"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: ޥȤ˼Ԥޤ"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: ޥȥݥ %s ϥǥ쥯ȥǤϤޤ"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: Ĥޤ"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: mount Ȥˤϥѡ桼ǤʤФʤޤ"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s ϻǤ"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc ϥޥȺѤǤ"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s ޥȺѤ %s Ǥ"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: ޥȥݥ %s ¸ߤޤ"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: ޥȥݥ %s Ϥɤ⤵Ƥʤܥå󥯤Ǥ"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: ڥǥХ %s ¸ߤޤ"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7881,12 +7898,12 @@ msgstr ""
"mount: ڥǥХ %s ¸ߤޤ\n"
" (ѥΥǥ쥯ȥ꤬ޤ)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s ϤޤޥȤƤʤʥץǤ"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -7896,35 +7913,41 @@ msgstr ""
" %s Υѡ֥åϥե륷ƥΥޥ\n"
" ¿ޤ"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "ޥȥơ֥뤬äѤǤ"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: ѡ֥åɤޤ"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: ʥǥХǤ"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: ե륷ƥॿ %s ϥͥ뤬ݡȤƤޤ"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l ΤΥե륷ƥॿפꥹɽ"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: 餯ʤ %s ꤷäΤǤ礦"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: ¿ʬʤ iso9660 ꤷäΤǤϡ"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: ¿ʬʤ iso9660 ꤷäΤǤϡ"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -7932,12 +7955,12 @@ msgstr ""
" %s ݡȤƤޤ"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s ϥ֥åǥХǤϤޤ󡢤 stat ԡ"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -7946,48 +7969,48 @@ msgstr ""
"mount: Υͥ %s ֥åǥХȤǧޤ\n"
" (¿ʬ`insmod ɥ饤' ʤȤʤΤǤϡ)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr ""
"mount: %s ϥ֥åǥХǤϤޤ (¿ʬ `-o loop' ȤäƤߤ顩)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s ϥ֥åǥХǤϤޤ"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s ʥ֥åǥХǤϤޤ"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "֥åǥХ "
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: %s%s ɹѤǥޥȤǤޤ"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s Ͻ񤭹߶ػߤǤ`-w' ե饰ŪͿޤ"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s Ͻ񤭹߶ػߤǤɹѤǥޥȤޤ"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr "mount: פͿƤޤ -- 󤬤Τ nfs ͤǤ\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
#, fuzzy
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
@@ -7996,22 +8019,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: Хå饦 \"%s\"\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: ޤ \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s %s ˥ޥȺѤǤ\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
#, fuzzy
msgid ""
"Usage: mount -V : print version\n"
@@ -8056,34 +8079,34 @@ msgstr ""
"¾Υץ: [-nfFrsvw] [-o ץ]\n"
"äȾܤȤΤꤿСman 8 mount ȾƤߤޤ礦\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: root Ԥʤޤ"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: %s Ĥޤ -- ޤ..\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: Τ褦ʥѡƥϸĤޤ"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: %s ޥȤޤ\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "ޥȤޤǤ"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: %2$s %1$s 򸫤Ĥޤ"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: %2$s %3$s %1$s 򸫤Ĥޤ"
@@ -8099,30 +8122,30 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: UUID"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: ե륷ƥ෿˥顼ȯ\n"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: %s ؤΥե륷ƥॿפλ꤬ޤ\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " %s %s ΥפƤߤޤ\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " ơϥå׶֤ͤǤ\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " %s Ƥߤޤ\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "%s ޤ\n"
@@ -8357,11 +8380,11 @@ msgstr "umount: %s ɹѤǺƥޥȤǤޤǤ\n"
msgid "%s umounted\n"
msgstr "%s ϥޥȤޤ\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr "umount: ޥȤΤΥե륷ƥꥹȤ򸫤Ĥޤ"
-#: mount/umount.c:467
+#: mount/umount.c:469
#, fuzzy
msgid ""
"Usage: umount [-hV]\n"
@@ -8372,43 +8395,43 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t ե륷ƥॿ]\n"
" umount [-f] [-r] [-n] [-v] special | node...\n"
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "%s 򥢥ޥȤޤ\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "mtab %s Ĥޤ\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s ޥȤƤޤ (mtab ˤ)"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: %s ʣޥȤƤ褦Ǥ"
-#: mount/umount.c:578
+#: mount/umount.c:551
#, c-format
msgid "umount: %s is not in the fstab (and you are not root)"
msgstr ""
"umount: %s fstab ˤޤ (ˡʤ root ǤϤޤ)"
-#: mount/umount.c:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s fstab ȰפʤޥȤǤ"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: %s %s %s 饢ޥȤǤޤ"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: root Ԥʤޤ"
@@ -8421,7 +8444,7 @@ msgstr ""
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Ȥ: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8430,7 +8453,7 @@ msgstr ""
"ե %s %luѥκ祭饯 %d Ǥ\n"
"ôֺ祭饯ž졼Ȥ %f Ǥ\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8440,32 +8463,32 @@ msgstr ""
"ե %s %lu ڤӥॢ %luѥκ祭饯\n"
"ϡ%d Ǥôֺ祭饯ž졼Ȥ %f Ǥ\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr ": %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr ": %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "ʽ: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr ": %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "ʽ: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8474,56 +8497,56 @@ msgstr ""
"Ȥ: %s [-q [-i ֳ]] ([-s ]|[-S ]) ([-t ]|[-T ]) [-g|-G] ե"
" [ե...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "%s 򳫤ޤ: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "%s 򤷤 %d Ǥޤ: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "%s ֤ %d Ǥޤ: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "%s ؤΤͤǤޤ: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "%s ؤΥॢȤǤޤ: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: ߤ %ld ڤӸߤΥॢ %ld\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: ǥե %ld ڤӥǥեȥॢ %ld\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "ʥϥɥǤޤ"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "gettimeofday "
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "%s CYGETMON ȯԤǤޤ: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8531,12 +8554,12 @@ msgstr ""
"%s: %lu饯 %lu/%lu -- fifo: %luॢ %lu\n"
" %lu %lu\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f /; %f Ͽ, %f (饯/)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8544,7 +8567,7 @@ msgstr ""
"%s: %lu饯 %lu -- fifo: %luॢ %lu\n"
" %lu %lu\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f / -- %f Ͽ (饯/)\n"
@@ -9835,6 +9858,9 @@ msgstr "ϹԤĹޤ\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Хåե礹Ȥ˥꤬­ʤʤޤ\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: ե륷ƥॿ %s ϥͥ뤬ݡȤƤޤ"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "%s ؤ BLKGETSIZE ioctl ˼\n"
diff --git a/po/nl.po b/po/nl.po
index df059dca4..8b6ef1596 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-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+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"
@@ -123,7 +123,7 @@ msgstr "%s: ioctl fout bij %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr "RO RA SSZ BSZ StartSec Grootte Apparaat\n"
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "gebruik:\n"
@@ -1272,11 +1272,11 @@ msgstr " %s [ -c | -y | -n | -d ] apparaat\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] apparaat\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Onbruikbaar"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Vrije ruimte"
@@ -1417,8 +1417,8 @@ msgstr "Onjuiste toets"
msgid "Press a key to continue"
msgstr "Druk op een toets om door te gaan"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primair"
@@ -1426,8 +1426,8 @@ msgstr "Primair"
msgid "Create a new primary partition"
msgstr "Een nieuwe primaire partitie maken"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Logisch"
@@ -1435,7 +1435,7 @@ msgstr "Logisch"
msgid "Create a new logical partition"
msgstr "Een nieuwe logische partitie maken"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Annuleren"
@@ -1471,164 +1471,180 @@ msgstr "Partitie toevoegen aan einde vrije ruimte"
msgid "No room to create the extended partition"
msgstr "Geen ruimte om de uitgebreide partitie te maken"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "geen partitietabel aanwezig.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Geen partitietabel of onbekende ondertekening op partitietabel"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Gewoon de partitietabel weergeven"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "geen partitietabel aanwezig.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Wilt u met een lege tabel beginnen [j/N] ?"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "U heeft meer cylinders aangegeven dan er op de schijf passen"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "Kan schijf niet openen"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr ""
"Schijf alleen-lezen geopend -- u heeft geen toegangsrechten om te schrijven"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Kan schijfgrootte niet opvragen"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Slechte primaire partitie"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Slechte logische partitie"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Waarschuwing!! Dit kan gegevens op uw schijf wissen!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Weet u zeker dat u de partitietabel naar de schijf wilt schrijven? (ja of "
"nee): "
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "nee"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "Partitietabel niet naar schijf geschreven"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "ja"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Antwoord alstublieft `ja' of `nee'"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Schrijven partitietabel naar schijf..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "De partitietabel is weggeschreven naar de schijf"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Partitietabel geschreven, maar opnieuw inlezen mislukt. Start opnieuw op om "
"de tabel bij te werken."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Geen primaire partities aangegeven als opstartbaar. DOS MBR kan dit niet "
"opstarten."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Meer dan één primaire partitie is aangegeven als opstartbaar. DOS MBR kan "
"dit niet opstarten."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr ""
"Geef een bestandsnaam of druk op ENTER om op het scherm weer te geven: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "Kan bestand '%s' niet openen"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Schijf: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Sector 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Sector %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Geen "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primair"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Logisch"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Onbekend"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Opstartbaar"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
msgid "None"
msgstr "Geen"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Partitietabel voor %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
msgid " First Last\n"
msgstr " Eerste Laatste\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1636,7 +1652,7 @@ msgstr ""
" # Soort Sector Sector Plaats Lengte Bestandssysteem (ID) "
"Optie\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1645,466 +1661,466 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Begin--- ----Einde---- Start Aantal\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # OptiesKop Sect Cyl ID Kop Sect Cyl Sector Sectoren\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "Ruw"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Deze tabel weergeven met ruwe gegevens formaat"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Sectoren"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Deze tabel weergeven, geordend op sectoren"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Tabel"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Gewoon de partitietabel weergeven"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Tabel niet weergeven"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Hulpscherm voor cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Dit is cfdisk, een schijfpartitioneringsprogramma gebaseerd op"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "cursus, waarmee u partities kunt maken, verwijderen of wijzigen"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "op uw harde schijf."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Opdracht Betekenis"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "-------- -------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b `Opstartbaar'-optie voor huidige partitie aan/uitzetten"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Huidige partitie verwijderen"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Cylinders, koppen, sectoren-per-spoor wijzigen"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " WAARSCHUWING: Deze optie dient alleen te worden gebruikt"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " door mensen die weten wat ze doen."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Dit scherm weergeven"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Schijf gebruik maximaliseren voor huidige partitie"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Let op: Dit kan een partitie incompatibel maken met"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Nieuwe partitie maken van vrije ruimte"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p Partitietabel weergeven op scherm of naar bestand"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Er zijn verschillende formaten voor de partitie"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " waaruit u kunt kiezen:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - Ruwe gegevens (exact wat naar de schijf zou worden "
"geschreven)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Tabel geordend op sectoren"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Tabel in ruw formaat"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q Programma afsluiten zonder partitietabel te schrijven"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Soort bestandssysteem wijzigen"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Eenheden partitiegrootte weergave wijzigen"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Roteert door MB, sectoren en cylinders"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Partitietabel naar schijf wegschrijven (moet met hoofdletter)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Omdat dit mogelijk gegevens op de schijf wist, moet"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr " u bevestigen of weigeren door te antwoorden met `ja' of"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " `nee'"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Pijl omhoog Aanwijzer naar vorige partitie verplaatsen"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Pijl omlaag Aanwijzer naar volgende partitie verplaatsen"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Het scherm opnieuw tekenen"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Dit scherm weergeven"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Let op: Alle opdrachten kunnen zowel met hoofd- als kleine letter"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "worden ingevoerd (behalve W)."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cylinders"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Cylinder geometrie wijzigen"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Koppen"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Koppen geometrie wijzigen"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Sector geometrie wijzigen"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Klaar"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Klaar met wijzigen geometrie"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Geef het aantal cylinders: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Onjuiste waarde cylinders"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Geef het aantal koppen: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Onjuiste waarde koppen"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Geef het aantal sectoren per spoor: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Onjuiste waarde sectoren"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Geef het soort bestandssysteem: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Kan bestandsysteem soort niet veranderen tot leeg"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Kan bestandssysteem soort niet veranderen tot uitgebreid"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Onbekend(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Onbekend (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Schijf: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Grootte: %lld bytes, %lld MB"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Grootte: %lld bytes, %lld.%lld GB"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Koppen: %d Sectoren per spoor: %d Cylinders: %lld"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Naam"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Opties"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Part soort"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Bestandssysteem"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Label]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
msgid " Sectors"
msgstr " Sectoren"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
msgid " Cylinders"
msgstr " Cylinders"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
msgid " Size (MB)"
msgstr " Grootte (MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
msgid " Size (GB)"
msgstr " Grootte (GB)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Opstartbaar"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Huidige partitie wel/niet op opstartbaar zetten"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Verwijderen"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "De huidige partitie verwijderen"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometrie"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Schijf geometrie wijzigen (alleen experts)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Hulp"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Hulpscherm weergeven"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Maximaliseren"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Schijfgebruik maximaliseren voor huidige partitie (alleen experts)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Nieuw"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Nieuwe partitie maken van vrije ruimte"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Weergeven"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Partitietabel weergeven op scherm of naar een bestand"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Afsluiten"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Programma afsluiten zonder partitietabel te schrijven"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Soort"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Bestandssysteem soort wijzigen (DOS, Linux, OS/2 enz.)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Eenheden"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "De gebruikte eenheden in weergave wijzigen (MB, sect, cyl)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Schrijven"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "Partitietabel naar schijf schrijven (kan gegevens wissen)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Kan deze partitie niet opstartbaar maken"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Kan geen lege partitie verwijderen"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "Kan deze partitie niet maximaliseren"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Deze partitie is onbruikbaar"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Deze partitie is al in gebruik"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Kan niet de soort van een lege partitie wijzigen"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Niet meer partities"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Onjuiste opdracht"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2383,12 +2399,12 @@ msgstr "U moet instellen:"
msgid "heads"
msgstr "koppen"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "sectoren"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "cylinders"
@@ -2793,14 +2809,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:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2955,7 +2971,7 @@ msgstr "Schijf %s bevat geen geldige partitietabel\n"
msgid "Cannot open %s\n"
msgstr "Kan %s niet openen\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "kan %s niet openen\n"
@@ -3621,19 +3637,19 @@ msgstr "JA\n"
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:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Proberen automatisch een gehele schijf ingang aan te maken.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "De gehele schijf is al ingedeeld in partities.\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3641,16 +3657,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:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " Laatste %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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 +3678,7 @@ msgstr ""
"inhoud uiteraard definitief verloren zijn.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3673,12 +3689,12 @@ msgstr ""
"waarde %d gebruikt.\n"
"Deze waarde kan voor apparaten > 33.8 GB worden afgekapt.\n"
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr "Proberen om parameters te houden van partitie %d.\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tSTART=%d\tLENGTE=%d\n"
@@ -4280,89 +4296,89 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "zoekfout op %s - kan niet zoeken naar %lu\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "zoekfout: verwacht 0x%08x%08x, gekregen 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "geheugentekort - opgeven\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "leesfout op %s - kan sector %lu niet lezen\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "FOUT: sector %lu heeft geen msdos ondertekening\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "schrijffout op %s - kan sector %lu niet schrijven\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "kan bestand over sectoren van partitie (%s) niet openen\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "schrijffout op %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "kan partitie herstelbestand niet vinden (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr "partitie herstelbestand heeft onjuiste grootte - niet herstellen\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "geheugentekort?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "kan partitie herstelbestand (%s) niet openen\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "fout bij lezen %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "kan apparaat %s niet openen voor schrijven\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "fout bij schrijven sector %lu op %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Schijf %s: kan geometrie niet opvragen\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Schijf %s: kan grootte niet opvragen\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4374,22 +4390,22 @@ msgstr ""
"waarschijnlijk zinloos.\n"
"[Gebruik de --force optie als u dit echt wilt doen]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Waarschuwing: HDIO_GETGEO zegt dat er %lu koppen zijn\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Waarschuwing: HDIO_GETGEO zegt dat er %lu sectoren zijn\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Waarschuwing: BLKGETSIZE/HDIO_GETGEO zegt dat er %lu cylinders zijn\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4398,7 +4414,7 @@ msgstr ""
"Waarschuwing: onwaarschijnlijk aantal sectoren (%lu) - meestal hoogstens 63\n"
"Dit zal problemen geven met alle software die C/H/S adressering gebruikt.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4407,7 +4423,7 @@ msgstr ""
"\n"
"Schijf %s: %lu cylinders, %lu koppen, %lu sectoren/spoor\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
@@ -4415,7 +4431,7 @@ msgstr ""
"%s van partitie %s heeft een onmogelijke waarde voor kop: %lu (moet zijn "
"tussen 0-%lu)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4424,7 +4440,7 @@ msgstr ""
"%s van partitie %s heeft onmogelijke waarde voor sector: %lu (moet zijn "
"tussen 1-%lu)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4433,7 +4449,7 @@ msgstr ""
"%s van partitie %s heeft onmogelijke waarde voor cylinders: %lu (moet zijn "
"tussen 0-%lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4441,11 +4457,11 @@ msgstr ""
"Id Naam\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Opnieuw inlezen partitietabel ...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4453,31 +4469,31 @@ msgstr ""
"Het opnieuw lezen van de partitietabel is mislukt\n"
"Herstart het systeem nu, vóór mkfs te gebruiken\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Fout bij sluiten %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: die partitie bestaat niet\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "onbekend formaat - nu sectoren worden gebruikt\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# partitietabel van %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "niet-geïmplementeerd formaat - nu wordt %s gebruikt\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4487,11 +4503,11 @@ msgstr ""
"d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " ApparaatOpstart Start Eind #cyls #blokken Id Systeem\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4500,11 +4516,11 @@ msgstr ""
"Eenheden = sectoren van 512 bytes, te tellen vanaf %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Apparaat Opstart Start Eind #sectoren Id Systeem\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4513,11 +4529,11 @@ msgstr ""
"Eenheden = blokken van 1024 bytes, te tellen vanaf %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Apparaat Opstart Start Eind #blokken Id Systeem\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4527,30 +4543,30 @@ msgstr ""
"vanaf %d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Apparaat Opstart Start Eind MiB #blokken Id Systeem\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tstart: (c,h,s) verwacht: (%ld,%ld,%ld) gevonden: (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\teind: (c,h,s) verwacht: (%ld,%ld,%ld) gevonden: (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr "partitie eindigt op cylinder %ld, na het einde van de schijf\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Geen partities gevonden\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4561,52 +4577,52 @@ msgstr ""
" is voor C/H/S=*/%ld/%ld (in plaats van %ld/%ld/%ld).\n"
"Voor deze opsomming neem ik die geometrie aan.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "geen partitietabel aanwezig.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "vreemd, slechts %d partities gedefinieerd.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr ""
"Waarschuwing: partitie %s heeft grootte 0, maar is niet aangegeven als Leeg\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Waarschuwing: partitie %s heeft grootte 0 en is opstartbaar\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "Waarschuwing: partitie %s heeft grootte 0 en een niet-nul start\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Waarschuwing: partitie %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "valt niet binnen partitie %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Waarschuwing: partities %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "en %s overlappen\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4615,17 +4631,17 @@ msgstr ""
"Waarschuwing: partitie %s bevat een deel van de partitietabel (sector %lu),\n"
"en zal die vernielen als zij wordt gevuld\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Waarschuwing: partitie %s start op sector 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Waarschuwing: partitie %s loopt tot na het einde van de schijf\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4633,17 +4649,17 @@ msgstr ""
"Van de primaire partities kan er ten hoogste één uitgebreid\n"
"zijn (hoewel dit geen probleem is onder Linux)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Waarschuwing: partitie %s start niet op een cylinder grens\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Waarschuwing: partitie %s eindigt niet op een cylinder grens\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4653,7 +4669,7 @@ msgstr ""
"Voor LILO maakt dit niets uit, maar DOS MBR zal niet van deze schijf "
"opstarten.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4661,7 +4677,7 @@ msgstr ""
"Waarschuwing: normaal gesproken kan men alleen van primaire\n"
"partities opstarten. LILO negeert de `opstartbaar' optie.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4671,33 +4687,33 @@ msgstr ""
"Voor LILO maakt dit niets uit, maar DOS MBR zal niet van deze schijf "
"opstarten.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
msgid "start"
msgstr "start"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"partitie %s: start: (c,h,s) verwacht: (%ld,%ld,%ld) gevonden: (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
msgid "end"
msgstr "eind"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"partitie %s: eind: (c,h,s) verwacht: (%ld,%ld,%ld) gevonden: (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr "partitie %s eindigt op cylinder %ld, na het einde van de schijf\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
@@ -4706,7 +4722,7 @@ msgstr ""
"Waarschuwing: start van uitgebreide partitie verschoven van %ld naar %ld\n"
"(Alleen voor weergave. De inhoud wordt niet gewijzigd.)\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4714,134 +4730,134 @@ msgstr ""
"Waarschuwing: uitgebreide partitie start niet op een cylinder grens.\n"
"DOS en Linux zullen de inhoud anders interpreteren.\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "teveel partities - die na nr (%d) worden genegeerd\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "boom van partities?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "Disk Manager gevonden - daar kan ik niet mee werken\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "DM6 ondertekening gevonden - ik geef het op\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "vreemd..., een uitgebreide partitie met grootte 0?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "vreemd..., een BSD partitie met grootte 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: partitie niet herkend\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "-n optie is gegeven: Niets gewijzigd\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Opslaan oude sectoren mislukt - afbreken\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "Partitie schrijven op %s mislukt\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "lange of incomplete invoerregel - afsluiten\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "invoerfout: `=' verwacht na %s veld\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "invoerfout: onverwacht teken %c na %s veld\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "invoer niet herkend: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "getal te groot\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "rotzooi na getal\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "geen ruimte voor partitie beschrijver\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "kan omgevende uitgebreide partitie niet maken\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "teveel invoervelden\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "Geen ruimte voor meer\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Onjuiste soort\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
"Waarschuwing: gegeven groote (%lu) is groter dan maximaal toegelaten grootte "
"(%lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Waarschuwing: lege partitie\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Waarschuwing: slechte partitie start (eerste %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "opstartbaar optie niet herkend - kies - of *\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "gedeeltelijke c,h,s specificatie?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Uitgebreide partitie niet waar die verwacht was\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "slechte invoer\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "teveel partities\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4853,46 +4869,46 @@ msgstr ""
"Meestal hoeft u alleen <start> en <grootte> te gebruiken (en mogelijk "
"<soort>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "versie"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Gebruik: %s [opties] apparaat ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "apparaat: zoiets als /dev/hda of /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "nuttige opties:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [of --show-size]: grootte van een partitie weergeven"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr " -c [of --id]: partitie Id weergeven of wijzigen"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [of --list]: partities van elk apparaat opsommen"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
" -d [of --dump]: hetzelfde, maar in een formaat geschikt voor latere "
"invoer"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr " -i [of --increment]: aantal cylinders etc. van 1 in plaats van 0"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
@@ -4900,57 +4916,57 @@ msgstr ""
" -uS, -uB, -uC, -uM: accepteren/weergeven in eenheden van sectoren/"
"blokken/cylinders/MB"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [of --list-types]:bekende partitiesoorten opsommen"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
" -D [of --DOS]: voor DOS-compatibiliteit: verspil een beetje ruimte"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr ""
" -R [of --re-read]: laat de kernel de partitietabel opnieuw inlezen"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# : alleen partitie met nummer # wijzigen"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : niet echt naar de schijf schrijven"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr ""
" -O bestand : de sectoren die overschreven zullen worden, opslaan "
"in bestand"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I bestand : deze sectoren weer herstellen"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [of --version]: versienummer weergeven"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [of --help]: dit bericht weergeven"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "gevaarlijke opties:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr ""
" -g [of --show-geometry]: weergeven hoe de kernel denkt over de geometrie"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -4958,117 +4974,117 @@ msgstr ""
" -x [of --show-extended]: ook uitgebreide partities opnemen in uitvoer\n"
" of, verwacht beschrijvers voor ze in invoer"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
" -L [of --Linux]: niet klagen over dingen die niet relevant zijn "
"voor Linux"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [of --quiet]: waarschuwingen onderdrukken"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " U kunt zo een andere geometrie dan de gevonden forceren:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr " -C# [of --cylinders #]:het aantal te gebruiken cylinders instellen"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -H# [of --heads #]: het aantal te gebruiken koppen instellen"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr " -S# [of --sectors #]: het aantal te gebruiken sectoren instellen"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "U kunt alle consistentie controles uit zetten met:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr " -f [of --force]: doe wat ik zeg, ook al is het dom"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Gebruik:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s apparaat\t\t actieve partities op apparaat weergeven\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr ""
"%s apparaat n1 n2 ... partities n1 ... activeren, de rest de-activeren\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr "%s -An apparaat\t partitie n activeren, alle andere de-activeren\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "geen opdracht?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "totaal: %d blokken\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "gebruik: sfdisk --print-id apparaat partitie-nummer\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "gebruik: sfdisk --change-id apparaat partitie-nummer Id\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "gebruik: sfdisk --id apparaat partitie-nummer [Id]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "kan slechts één apparaat aangeven (behalve met -l of -s)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "kan %s niet lezen-schrijven openen\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "kan %s niet openen om te lezen\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: OK\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ld cylinders, %ld koppen, %ld sectoren/spoor\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "kan grootte %s niet opvragen"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "slechte actieve byte: 0x%x in plaats van 0x80\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5076,7 +5092,7 @@ msgstr ""
"Klaar\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5085,35 +5101,35 @@ msgstr ""
"U heeft %d actieve, primaire partities. Dit maakt niets uit voor LILO,\n"
"maar DOS MBR start alleen op van een schijf met 1 actieve partitie.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "partitie %s heeft id %x en is niet verborgen\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "Slechte Id %lx\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Deze schijf is op dit moment in gebruik.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Fatale fout: kan %s niet vinden\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Waarschuwing: %s is geen blok-apparaat\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Even controleren of niemand deze schijf nu gebruikt ...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5127,28 +5143,28 @@ msgstr ""
"deze schijf uit.\n"
"Gebruik --no-reread om deze controle te onderdrukken.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Gebruik --force om alle controles te negeren.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "OK\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Oude situatie:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "Partitie %d bestaat niet, kan haar niet veranderen!\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Nieuwe situatie:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5156,19 +5172,19 @@ msgstr ""
"Deze partities bevallen mij niet echt - er is niets veranderd.\n"
"(Als u dit echt wilt, kunt u --force gebruiken.)\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "Mij bevalt niet niet echt - misschien moet u Nee antwoorden\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Bent u hiermee tevreden? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Wilt u dit naar de schijf schrijven? [ynq] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5176,15 +5192,15 @@ msgstr ""
"\n"
"sfdisk: vroegtijdig einde van invoer\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Afsluiten - niets veranderd\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Antwoord alstublieft een van y,n,q\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5192,7 +5208,7 @@ msgstr ""
"Nieuwe partitietabel succesvol weggeschreven\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5298,43 +5314,43 @@ msgstr "getopt (uitgebreid) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "interne fout, neem contact op met de auteur"
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "opgestart vanuit MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Ruffiaanse BCD klok\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "klokpoort aangepast tot 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "cool SPEELTJE!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomische %s 1000 iteraties mislukt!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Kan /dev/port niet openen: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "Ik heb geen toestemming gekregen omdat ik het niet probeerde.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s kan geen I/O poort toegang krijgen: de iopl(3) aanroep mislukte.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Waarschijnlijk heeft u root privileges nodig.\n"
@@ -5804,36 +5820,37 @@ msgstr ""
"Gebruik de --debug optie om de details te zien over onze zoektocht naar een "
"toegangsmethode.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Wachten in lus totdat de tijd van KDGHWCLK verandert\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK ioctl om tijd te lezen, mislukt"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Time-out bij wachten totdat tijd verandert.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK ioctl om tijd te lezen, mislukt in lus"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() mislukt om tijd te lezen van %s"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "ioctl KDSHWCLK mislukt"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Openen /dev/tty1 of /dev/vc/1 mislukt"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK ioctl mislukt"
@@ -6161,7 +6178,7 @@ msgstr "Wachtwoord fout."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Wachtwoord: "
@@ -6219,7 +6236,7 @@ msgstr "Finger informatie *NIET* gewijzigd. Probeer het later opnieuw.\n"
msgid "Finger information changed.\n"
msgstr "Finger informatie gewijzigd.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "malloc mislukt"
@@ -6960,7 +6977,7 @@ msgstr "Uitvoeren umount mislukt, dit geef ik op."
msgid "Unmounting any remaining filesystems..."
msgstr "Ontkoppelen resterende bestandssystemen..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: Kon %s niet ontkoppelen: %s\n"
@@ -7601,17 +7618,17 @@ msgstr "Bericht van %s@%s (als %s) op %s bij %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Bericht van %s@%s op %s bij %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "waarschuwing: fout bij lezen %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "waarschuwing: kan %s niet openen: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: kon %s niet openen - gebruik %s in plaats daarvan\n"
@@ -7620,39 +7637,39 @@ msgstr "mount: kon %s niet openen - gebruik %s in plaats daarvan\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"kan het blokkeerbestand %s niet maken: %s (gebruik -n optie om te forceren)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"kan blokkeerbestand %s niet koppelen: %s (gebruik -n optie om te forceren)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
"kan blokkeerbestand %s niet openen: %s (gebruik -n optie om te forceren)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Kan blokkeerbestand %s niet blokkeren: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "kan blokkeerbestand %s niet blokkeren: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "time-out"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7661,22 +7678,22 @@ msgstr ""
"Kan koppeling %s niet maken\n"
"Mogelijk is er een oud blokkeerbestand?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "kan %s niet openen (%s) - mtab niet bijgewerkt"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "fout bij schrijven %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "fout bij wijzigen modus van %s: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "kan %s niet hernoemen tot %s: %s\n"
@@ -7738,28 +7755,28 @@ msgstr "mount: kon geen enkel vrij lus-apparaat vinden"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Kan niet blokkeren in geheugen, afsluiten.\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): succes\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: kan apparaat %s niet verwijderen: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): succes\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
"Deze versie van mount is gecompileerd zonder lus ondersteuning. Hercompileer "
"alstublieft.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7772,191 +7789,191 @@ msgstr ""
" %s -d loop_apparaat # verwijderen\n"
" %s [ -e codering ] [ -o plaats ] loop_apparaat bestand # instellen\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "niet voldoende geheugen"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Er was geen lus-ondersteuning beschikbaar bij het compileren. Hercompileer "
"alstublieft.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr "[mntent]: waarschuwing: geen afsluitend einde-regel teken bij %s\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: regel %d in %s is slecht%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; rest van bestand genegeerd"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: volgens mtab, is %s al aangekoppeld op %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: volgens mtab, is %s al aangekoppeld op %s"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: kan %s niet openen om te schrijven: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: fout bij schrijven %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: fout bij wijzigen modus van %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s ziet er uit al wisselgeheugen - niet aangekoppeld"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "aankoppelen mislukt"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: alleen root kan %s aankoppelen op %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: lus-apparaat twee keer aangegeven"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: soort twee keer aangegeven"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: instellen van lus-apparaat wordt overgeslagen\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: het lus-apparaat %s wordt gebruikt\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: instellen lus-apparaat mislukt\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: instellen lus-apparaat succesvol\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: kan %s niet openen: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: argument voor -p of --pass-fd moet een getal zijn"
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: kan %s niet openen om snelheid in te stellen"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: kan snelheid niet instellen: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: fork() mislukt: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr ""
"mount: deze versie is gecompileerd zonder ondersteuning voor de soort `nfs'"
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: mislukt met nfs mount versie 4, probeer nu 3..\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr "mount: Kon bestandssysteemsoort niet bepalen, en geen aangegeven"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: u moet de bestandssysteem soort aangeven"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: aankoppelen mislukt"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: aankoppelingspunt %s is geen map"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: toegang geweigerd"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: moet supergebruiker zijn om mount te gebruiken"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s is bezig"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc al aangekoppeld"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s al aangekoppeld of %s bezig"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: aankoppelingspunt %s bestaat niet"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr ""
"mount: aankoppelingspunt %s is een symbolische koppeling die nergens naar "
"wijst"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: speciale apparaat %s bestaat niet"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7965,12 +7982,12 @@ msgstr ""
"mount: speciale apparaat %s bestaat niet\n"
" (een pad voorvoegsel is geen map)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s nog niet aangekoppeld, of slechte optie"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -7980,35 +7997,41 @@ msgstr ""
"s,\n"
" of teveel aangekoppelde bestandssystemen"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "aankoppelingstabel vol"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: kan superblok niet lezen"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: onbekend apparaat"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: bestandssysteem soort %s niet ondersteund door kernel"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l bekende bestandssysteem soorten opsommen"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: waarschijnlijk bedoelde u %s"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: mogelijk bedoelde u iso9660 ?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: mogelijk bedoelde u iso9660 ?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8016,12 +8039,12 @@ msgstr ""
"ondersteund"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s is geen blok-apparaat, en stat mislukt?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8030,47 +8053,47 @@ msgstr ""
"mount: de kernel herkent %s niet als een blok-apparaat\n"
" (misschien `insmod stuurprogramma'?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s is geen blok-apparaat (misschien `-o loop' proberen?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s is geen blok-apparaat"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s is geen geldig blok-apparaat"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "blok-apparaat "
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: kan %s%s niet alleen-lezen aankoppelen"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s is schrijf-beveiligd maar expliciete `-w' optie gegeven"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s is schrijf-beveiligd, alleen-lezen aankoppelen"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr "mount: geen soort gegeven - Ik neem aan nfs, vanwege de dubbele punt\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: geen soort gegeven - Ik neem aan smbfs, vanwege het // voorvoegsel\n"
@@ -8078,22 +8101,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: op de achtergrond \"%s\"\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: ik geef het op voor \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s al aangekoppeld op %s\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8140,34 +8163,34 @@ msgstr ""
"Andere opties: [-nfFrsvw] [-o opties] [-p wachtwoordfd].\n"
"Voor meer informatie, zie man 8 mount .\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: alleen root kan dat doen"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: geen %s gevonden - nu aanmaken..\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: die partitie is niet gevonden"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: aankoppelen %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "niets aangekoppeld"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: kan %s niet vinden in %s"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: kan %s niet vinden in %s of %s"
@@ -8184,30 +8207,30 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: slechte UUID"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: fout bij raden bestandssysteem soort\n"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: u gaf geen bestandssysteem soort aan voor %s\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " Ik zal alle soorten proberen die worden genoemd in %s of %s\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " en het ziet er uit dat dit wisselgeheugen is\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " Ik zal soort %s proberen\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Proberen %s\n"
@@ -8440,11 +8463,11 @@ msgstr "umount: kon %s niet alleen-lezen her-aankoppelen\n"
msgid "%s umounted\n"
msgstr "%s ontkoppeld\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr "umount: kan geen lijst vinden met bestandssystemen om te ontkoppelen"
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
@@ -8455,42 +8478,42 @@ msgstr ""
"opties]\n"
" umount [-f] [-r] [-n] [-v] speciaal | node...\n"
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Proberen te ontkoppelen %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Kon %s niet vinden in mtab\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s is niet aangekoppeld (volgens mtab)"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, 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:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s aankoppeling komt niet overeen met fstab"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, fuzzy, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: alleen root kan %s ontkoppelen van %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: alleen root kan dat doen"
@@ -8503,7 +8526,7 @@ msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Gebruik: ctrlaltdel hard|soft\n"
# wat die "For" betekent: geen idee
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8512,7 +8535,7 @@ msgstr ""
"Bestand %s, For drempelwaarde %lu, maximum aantal tekens in fifo was %d,\n"
"en maximale overdrachtssnelheid in tekens/seconde was %f\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8523,32 +8546,32 @@ msgstr ""
"fifo was %d,\n"
"en maximale overdrachtssnelheid in tekens/seconde was %f\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Onjuiste waarde interval: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Onjuiste instellingswaarde: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Onjuiste standaardwaarde: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Onjuiste waarde tijdsinstelling: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Onjuiste standaardwaarde tijdsinstelling: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8557,75 +8580,75 @@ msgstr ""
"Gebruik: %s [-q [-i interval]] ([-s waarde]|[-S waarde]) ([-t waarde]|[-T "
"waarde]) [-g|-G] bestand [bestand...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "Kan %s niet openen: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "Kan %s niet instellen op drempelwaarde %d: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "Kan %s niet instellen op tijdsdrempel %d: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "Kan drempelwaarde voor %s niet verkrijgen: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "Kan time-out niet verkrijgen voor %s: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld huidige drempelwaarde en %ld huidige time-out\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld standaard drempelwaarde en %ld standaard time-out\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "Kan geen signaalhandvat instellen"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "gettimeofday mislukt"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "Kan CYGETMON niet uitvoeren op %s: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
"%s: %lu ints, %lu/%lu tekens; fifo: %lu drempel, %lu tmout, %lu max, %lu nu\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f int/sec; %f ontvangen, %f verzonden (tekens/sec)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
"%s: %lu ints, %lu tekens; fifo: %lu drempel, %lu tmout, %lu max, %lu nu\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f int/sec; %f ontvangen (tekens/sec)\n"
@@ -9918,6 +9941,9 @@ msgstr "Invoerregel te lang.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Geheugentekort bij groeiende buffer.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: bestandssysteem soort %s niet ondersteund door kernel"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "BLKGETSIZE ioctl mislukt voor %s\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index a35ad2a36..163d39f32 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-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+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"
@@ -121,7 +121,7 @@ msgstr "%s: erro de leitura em %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr ""
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "Uso:\n"
@@ -1238,11 +1238,11 @@ msgstr " %s [ -c | -y | -n | -d ] disp\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] disp\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Inutilizvel"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Espao livre"
@@ -1386,8 +1386,8 @@ msgstr "Tecla ilegal"
msgid "Press a key to continue"
msgstr "Pressione uma tecla para continuar"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primria"
@@ -1395,8 +1395,8 @@ msgstr "Primria"
msgid "Create a new primary partition"
msgstr "Cria uma nova partio primria"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Lgica"
@@ -1404,7 +1404,7 @@ msgstr "Lgica"
msgid "Create a new logical partition"
msgstr "Cria uma nova partio lgica"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Cancelar"
@@ -1440,166 +1440,181 @@ msgstr "Adicionar partio no final do espao livre"
msgid "No room to create the extended partition"
msgstr "Espao insuficiente para criao de partio estendida"
-#: fdisk/cfdisk.c:1503
+#: fdisk/cfdisk.c:1502
#, fuzzy
-msgid "No partition table or unknown signature on partition table"
+msgid "No partition table.\n"
+msgstr "nenhuma tabela de parties presente.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Assinatura invlida na tabela de parties"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Mostrar somente a tabela de parties"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "nenhuma tabela de parties presente.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr ""
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr ""
"Foram especificados mais cilindros do que a quantidade que cabe no disco"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "No foi possvel abrir a unidade de disco"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "Disco aberto somente para leitura - voc no tem permisso para gravar"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "No foi possvel obter o tamanho do disco"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Partio primria invlida"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Partio lgica invlida"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Aviso!! Isto pode destruir dados existentes no disco!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Tem certeza de que deseja gravar a tabela de parties no disco? (sim ou "
"nao):"
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "nao"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "A tabela de parties NO foi gravada no disco"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "sim"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Responda `sim' ou `nao'"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Gravando tabela de parties no disco..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "A tabela de parties foi gravada no disco"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Tabela de parties gravada, mas a releitura da tabela falhou. Reinicialize "
"para atualizar a tabela."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"No existem parties primrias marcadas como inicializveis. MBR DOS no "
"pode inicializar isso."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Mais de uma partio primria est marcada como inicializvel. MBR DOS no "
"pode inicializar isso."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Digite um nome de arquivo ou pressione ENTER para exibir na tela: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "No foi possvel abrir o arquivo '%s'"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Unidade de disco: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Setor 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Setor %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Nenhum "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/lg"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primria"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Lgica"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Desconhecido"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Inicializar"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, fuzzy, c-format
msgid "(%02X)"
msgstr "Desc (%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
#, fuzzy
msgid "None"
msgstr "Concludo"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Tabela de parties de %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
#, fuzzy
msgid " First Last\n"
msgstr " Prim. lt.\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
#, fuzzy
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
@@ -1608,7 +1623,7 @@ msgstr ""
" # Tipo Setor Setor Desloc. Compr. Tipo sist. arqs. (ID) "
"Opes\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1618,480 +1633,480 @@ msgstr ""
"---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " --- Incio --- ---- Fim ---- Nm. inicial de\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
#, fuzzy
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Ops. Cab. Set. Cil. ID Cab. Set. Cil. Setor Setores\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "Brutos"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Mostrar a tabela usando formato de dados brutos"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Setores"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Mostrar a tabela ordenada por setores"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Tabela"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Mostrar somente a tabela de parties"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "No mostrar a tabela"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Tela de ajuda do cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr ""
"Este o cfdisk, um programa de particionamento de disco baseado em funes "
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "curses, que permite criar, excluir e alterar parties na unidade"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "de disco rgido."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Comando Significado"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b Alterna a opo da partio atual como inicializvel."
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Exclui a partio atual."
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g Altera parmetros de cilindros, cabeas, setores por trilha"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " AVISO: Esta opo s deve ser usada por pessoas que"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " saibam exatamente o que esto fazendo."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Mostra esta tela."
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximiza o uso de disco da partio atual."
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Nota: Isto pode tornar a partio incompatvel com"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2 ..."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Cria uma nova partio a partir do espao livre."
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p Mostra a tabela de parties na tela ou em um arquivo."
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Pode-se selecionar diversos formatos diferentes para"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " uma partio:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - Dados brutos (exatamente o que seria gravado no disco)."
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Tabela ordenada por setores."
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Tabela em formato bruto."
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q Sai do programa sem gravar a tabela de parties."
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Altera o tipo de sistema de arquivos."
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Altera unidades de exibio do tamanho das parties."
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Alterna entre MB, setores e cilindros."
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Grava tabela de parties no disco ( necessrio usar W "
"maisculo)."
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Como esta opo pode destruir dados no disco, voc deve"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr " confirmar ou cancelar a gravao indicando `sim' ou"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " `no'"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Seta p/ cima Move o cursor para a partio anterior."
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Seta p/ baixo Move o cursor para a prxima partio."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Redesenha a tela."
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Mostra esta tela."
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Nota: Todos os comandos podem ser digitados em letras maisculas ou"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "minsculas (exceto W)."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cilindros"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Alterar geometria dos cilindros"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Cabeas"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Alterar geometria das cabeas"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Alterar geometria dos setores"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Concludo"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "A alterao da geometria foi concluda"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Digite o nmero de cilindros: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Valor de cilindros invlido"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Digite o nmero de cabeas: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Valor de cabeas invlido"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Digite o nmero de setores por trilha: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Valor de setores invlido"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Digite o tipo do sistema de arquivos: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "No foi possvel alterar o tipo de sistema de arquivos para vazio"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "No foi possvel alterar o tipo de sistema de arquivos para estendido"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Desc (%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Pri/lg"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Desconhecido (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Disco: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Tamanho: %lld bytes"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Tamanho: %lld bytes"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Cabeas: %d Setores por Trilha: %d Cilindros: %d"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Nome"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Opes"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Tipo Part."
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Tipo SA"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Rtulo]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
#, fuzzy
msgid " Sectors"
msgstr " Setores"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
#, fuzzy
msgid " Cylinders"
msgstr "Cilindros"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
#, fuzzy
msgid " Size (MB)"
msgstr "Tam. (Mb)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
#, fuzzy
msgid " Size (GB)"
msgstr "Tam. (Gb)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Iniciali."
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Alterna a opo da partio atual como inicializvel"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Excluir"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Excluir a partio atual"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometria"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Alterar a geometria do disco (somente para usurios avanados)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Ajuda"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Mostrar tela de ajuda"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Maximize"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr ""
"Maximizar o uso de disco para a partio atual (somente para usurios "
"avanados)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Nova"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Criar nova partio a partir do espao livre"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Mostre"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Mostrar tabela de parties na tela ou imprimir em um arquivo"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Sair"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Sair do programa sem gravar a tabela de parties"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Tipo"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Alterar o tipo do sistema de arquivos (DOS, Linux, OS/2 e outros)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Unidades"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
"Mudar unidades mostradas para o tamanho das parties (MB, setores, "
"cilindros)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Gravar"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "Gravar tabela de parties no disco (isto poder destruir dados)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "No foi possvel tornar esta partio inicializvel."
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "No foi possvel excluir uma partio vazia"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "No foi possvel maximizar esta partio"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Esta partio inutilizvel"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Esta partio j est sendo usada"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "No foi possvel alterar o tipo de uma partio vazia"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Sem mais parties"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Comando invlido"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
#, fuzzy
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-2000 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2374,12 +2389,12 @@ msgstr "Voc precisa configurar"
msgid "heads"
msgstr "cabeas"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "setores"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "cilindros"
@@ -2787,14 +2802,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:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2943,7 +2958,7 @@ msgstr "O disco %s no contm uma tabela de parties vlida\n"
msgid "Cannot open %s\n"
msgstr "No foi possvel abrir %s\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "no foi possvel abrir %s\n"
@@ -3614,19 +3629,19 @@ msgstr ""
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:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Tentando gerar entrada de disco inteiro automaticamente.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "O disco inteiro j est coberto com parties.\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3634,16 +3649,16 @@ msgstr ""
"Recomenda-se fortemente que a partio 11\n"
"cubra todo o disco e seja do tipo `volume SGI'\n"
-#: fdisk/fdisksgilabel.c:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " ltimo %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3655,7 +3670,7 @@ msgstr ""
"o contedo anterior no poder mais ser recuperado.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3663,12 +3678,12 @@ msgid ""
"This value may be truncated for devices > 33.8 GB.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr "Tentando manter os parmetros da partio %d.\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tINCIO=%d\tCOMPRIMENTO=%d\n"
@@ -4279,92 +4294,92 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "erro de busca em %s - no foi possvel buscar at %lu\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "erro de busca: desejado 0x%08x%08x, obtido 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "memria insuficiente - desistindo\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "erro de leitura em %s - no foi possvel ler o setor %lu\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "ERRO: o setor %lu no possui uma assinatura MS-DOS\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "erro de gravao em %s - no foi possvel gravar no setor %lu\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr ""
"no foi possvel abrir o arquivo de salvamento de setor da partio (%s)\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "erro de gravao em %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "no foi possvel stat arquivo de restaurao de partio (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
"o arquivo de restaurao da partio possui tamanho incorreto - no "
"restaurando\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "memria insuficiente?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "no foi possvel abrir o arquivo de restaurao de partio (%s)\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "erro na leitura de %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "no foi possvel abrir o dispositivo %s para gravao\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "erro na gravao do setor %lu em %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Disco %s: no foi possvel obter a geometria\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Disco %s: no foi possvel obter o tamanho\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4375,22 +4390,22 @@ msgstr ""
"inteiro. Usar fdisk nela provavelmente no trar qualquer resultado\n"
"(use a opo --force se realmente quiser realizar esta operao).\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Aviso: HDIO_GETGEO informa que h %lu cabeas\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Aviso: HDIO_GETGEO informa que h %lu setores\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Aviso: BLKGETSIZE/HDIO_GETGEO informa que h %lu cilindros\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4400,7 +4415,7 @@ msgstr ""
"Isto causar problemas a todo software que usar endereamento Cil/Cab/"
"Setor.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4409,7 +4424,7 @@ msgstr ""
"\n"
"Disco %s: %lu cilindros, %lu cabeas, %lu setores/trilha\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
@@ -4417,7 +4432,7 @@ msgstr ""
"%s da partio %s possui valor impossvel para cabea: %lu (deveria estar "
"entre 0 e %lu)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4426,7 +4441,7 @@ msgstr ""
"%s da partio %s possui valor impossvel para setor: %lu (deveria estar "
"entre 1 e %lu)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4435,7 +4450,7 @@ msgstr ""
"%s da partio %s possui valor impossvel para o cilindro: %lu (deveria "
"estar entre 0 e %lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4443,11 +4458,11 @@ msgstr ""
"Nome Id\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Relendo a tabela de parties...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4455,31 +4470,31 @@ msgstr ""
"O comando para reler a tabela de parties falhou.\n"
"Reinicialize o sistema agora, antes de usar o mkfs.\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Erro no fechamento de %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: partio inexistente\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "formato no reconhecido - usando setores\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# tabela de partio de %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "formato no implementado - usando %s\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4489,12 +4504,12 @@ msgstr ""
"de %d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
#, fuzzy
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Disp Boot Incio Fim Cils Blocos Id Sistema\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4503,12 +4518,12 @@ msgstr ""
"Unidades = setores de 512 bytes, contando a partir de %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
#, fuzzy
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Disp Boot Incio Fim Setores Id Sistema\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4517,12 +4532,12 @@ msgstr ""
"Unidades = blocos de 1024 bytes, contando a partir de %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
#, fuzzy
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Disp Boot Incio Fim Blocos Id Sistema\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, fuzzy, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4532,33 +4547,33 @@ msgstr ""
"partir de %d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
#, fuzzy
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Disp Boot Incio Fim MB Blocos Id Sistema\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"\t\tincio: (cil,cab,set) esperado (%ld,%ld,%ld) encontrado (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"\t\tfim: (cil,cab,set) esperado (%ld,%ld,%ld) encontrado (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr "a partio termina no cilindro %ld, alm do final do disco\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Nenhuma partio encontrada\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, fuzzy, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4569,86 +4584,86 @@ msgstr ""
" para Cil/Cab/Set = */%ld/%ld (em vez de %ld/%ld/%ld).\n"
"Para esta listagem ser assumida aquela geometria.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "nenhuma tabela de parties presente.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "estranho, somente %d parties esto definidas.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr ""
"Aviso: a partio %s possui tamanho 0, mas no est marcada como vazia\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Aviso: a partio %s possui tamanho 0 e inicializvel\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "Aviso: a partio %s possui tamanho 0 e incio diferente de zero\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Aviso: a partio %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "no est contida na partio %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Aviso: as parties %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "e %s se sobrepem\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
"and will destroy it when filled\n"
msgstr ""
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Aviso: a partio %s comea no setor 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Aviso: a partio %s se estende alm do fim do disco\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
#, fuzzy
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
msgstr "Dentre as parties primrias, pelo menos uma pode ser estendida\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Aviso: a partio %s no inicia em um limite de cilindro\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Aviso: a partio %s no termina em um limite de cilindro\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4658,7 +4673,7 @@ msgstr ""
"Isto no faz diferena para o LILO, mas o MBR DOS no inicializar este "
"disco.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4666,7 +4681,7 @@ msgstr ""
"Aviso: normalmente o boot pode ser dado somente de parties primrias.\n"
"O LILO desconsidera o flag `inicializvel'.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4675,12 +4690,12 @@ msgstr ""
"Isto no faz diferena para o LILO, mas o MBR DOS no inicializar este "
"disco.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
#, fuzzy
msgid "start"
msgstr "status"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
@@ -4688,163 +4703,163 @@ msgstr ""
"partio %s - incio: (cil, cab, set) esperado (%ld,%ld,%ld) encontrado (%ld,"
"%ld,%ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
#, fuzzy
msgid "end"
msgstr "envio"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"partio %s - fim: (cil, cab, set) esperado (%ld,%ld,%ld) encontrado (%ld,%"
"ld,%ld)\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr "a partio %s termina no cilindro %ld, alm do fim do disco\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, fuzzy, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
"(For listing purposes only. Do not change its contents.)\n"
msgstr "Aviso: deslocamento inicia na partio extd de %ld para %ld\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
#, fuzzy
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
msgstr "Aviso: a partio extendida no inicia em um limite de cilindro\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "nmero excessivo de parties - ignorando aquelas alm do n %d\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "rvore de parties?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "Gerenciador de disco detectado - no possvel tratar\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "Assinatura DM6 encontrada - desistindo\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "estranho... uma partio estendida de tamanho 0?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "estranho... uma partio BSD de tamanho 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: partio no reconhecida\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "a opo -n foi fornecida: nada foi alterado\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "No foi possvel salvar os setores antigos - abortando\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "No foi possvel gravar a partio em %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "linha de entrada longa demais ou incompleta - encerrando\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "erro de entrada: `=' esperado aps o campo %s\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "erro de entrada: caractere inesperado %c aps o campo %s\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "entrada no reconhecida: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "nmero grande demais\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "lixo aps o nmero\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "sem espao para o descritor da partio\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "no foi possvel criar a partio estendida envoltria\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "nmero excessivo de campos de entrada\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "No h espao para mais\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Tipo invlido\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr "Aviso: tamanho dado (%lu) excede o tamanho mximo permitido (%lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Ateno: partio vazia\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Aviso: incio de partio invlido (mais adiantado %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "opo de inicializao no reconhecida: selecione - ou *\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "especificao cil,cab,set parcial?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Partio estendida no est no lugar esperado\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "entrada invlida\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "Nmero excessivo de parties\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4856,47 +4871,47 @@ msgstr ""
"Normalmente s necessrio especificar <incio> e <tamanho> (e, talvez, "
"<tipo>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "verso"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Uso: %s [opes] dispositivo ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "dispositivo: algo como /dev/hda ou /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "opes teis:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [ou --show-size]: lista o tamanho de uma partio"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr " -c [ou --id]: mostra ou altera a ID da partio"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [ou --list]: lista as parties de cada dispositivo"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
" -d [ou --dump]: idem, mas em um formato adequado para entrada "
"posterior"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr ""
" -i [ou --increment]: numera os cilindros, etc. a partir de 1, em vez de 0"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
@@ -4904,56 +4919,56 @@ msgstr ""
" -uS, -uB, -uC, -uM: aceita/informa em unidades de setores/blocos/"
"cilindros/MB"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [ou --list-types]:lista os tipos de partio conhecidos"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
" -D [ou --DOS]: para compatibilidade com DOS: desperdia um pouco "
"de espao"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr " -R [ou --re-read]: faz o kernel reler a tabela de parties"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# : altera somente a partio de nmero #"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : no grava no disco, realmente"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr ""
" -O arquivo : salva os setores que sero sobrescritos em arquivo"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I arquivo : restaura os setores gravados em arquivo"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [ou --version]: mostra a verso"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [ou --help]: mostra esta mensagem"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "opes perigosas:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr ""
" -g [ou --show-geometry]: mostra a suposio do kernel sobre a geometria"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -4961,119 +4976,119 @@ msgstr ""
" -x [ou --show-extended]: tambm lista parties estendidas na sada\n"
" ou espera descritores para elas na entrada"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
" -L [ou --Linux]: no reclama de coisas irrelevantes para o Linux"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [ou --quiet]: suprime mensagens de aviso"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " Voc pode anular a geometria detectada usando:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr " -C# [ou --cylinders #]:define o nmero de cilindros a usar"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -H# [ou --heads #]: define o nmero de cabeas a usar"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr " -S# [ou --sectors #]: define o nmero de setores a usar"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Voc pode desativar todas as verificaes de consistncia com:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr " -f [ou --force]: faa o que eu mandar, mesmo que seja idiota"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Uso:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s dispositivo\t\tlista parties as ativas no dispositivo\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr ""
"%s dispositivo n1 n2... ativa as parties n1..., deixando inativas as "
"demais\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr ""
"%s -An dispositivo\n"
" ativa a partio n, desativa as demais\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "nenhum comando?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "total: %d blocos\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "Uso: sfdisk --print-id dispositivo nmero-partio\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "Uso: sfdisk --change-id dispositivo nmero-partio ID\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "Uso: sfdisk --id dispositivo nmero-partio [ID]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "pode especificar somente um dispositivo (exceto com -l ou -s)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, fuzzy, c-format
msgid "cannot open %s read-write\n"
msgstr "no foi possvel abrir %s\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, fuzzy, c-format
msgid "cannot open %s for reading\n"
msgstr "no foi possvel abrir %s para leitura"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: OK\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ld cilindros, %ld cabeas, %ld setores/trilha\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "No foi possvel obter o tamanho de %s"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "byte ativo invlido: 0x%x em vez de 0x80\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5081,7 +5096,7 @@ msgstr ""
"Concludo\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5090,35 +5105,35 @@ msgstr ""
"Voc possui %d parties primrias ativas. Isto no faz diferena para o\n"
"LILO, mas o MBR DOS s inicializar em discos com uma partio ativa.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "a partio %s possui ID %x e no est escondida\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "ID invlida: %lx\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Este disco est atualmente sendo usado.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Erro fatal: no foi possvel encontrar %s\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Aviso: %s no um dispositivo de blocos\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Verificando se ningum est usando este disco no momento...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5131,28 +5146,28 @@ msgstr ""
"todas as parties de permuta deste disco. Use a opo --no-reread para "
"suprimir esta verificao.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Use a opo --force para cancelar todas as verificaes.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "OK\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Situao antiga:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "A partio %d no existe; no possvel alter-la.\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Situao nova:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5160,19 +5175,19 @@ msgstr ""
"Eu no gosto destas parties: nada foi alterado\n"
"(se voc realmente quiser us-las, use a opo --force).\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "Eu no gosto disto - provavelmente voc deveria responder No\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Voc est satisfeito com isto? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Deseja gravar isto no disco? [ynq] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5180,15 +5195,15 @@ msgstr ""
"\n"
"sfdisk: final de entrada prematuro\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Saindo - nada foi alterado\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Responda y, n ou q\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5196,7 +5211,7 @@ msgstr ""
"Nova tabela de parties gravada com sucesso\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5301,44 +5316,44 @@ msgstr "getopt (melhorado) 1.1.0)\n"
msgid "internal error, contact the author."
msgstr "erro interno, entre em contato com o autor."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "boot executado do MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Relgio BCD Ruffian\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "porta do relgio ajustada para 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: %s atmico falhou por 1000 iteraes!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "No possvel abrir /dev/port: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "No consegui obter permisso porque no tentei.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr ""
"%s incapaz de obter acesso porta de E/S: a chamada iopl(3) falhou.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Provavelmente so necessrios privilgios de root.\n"
@@ -5820,37 +5835,38 @@ msgstr ""
"Use a opo --debug para consultar os detalhes de nossa busca por um mtodo "
"de acesso.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Aguardando em lao at que a hora de KDGHWCLK mude.\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "ioctl KDGHWCLK para ler a hora falhou"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Tempo esgotado enquanto aguardava a hora mudar.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "ioctl KDGHWCLK para ler a hora falhou no lao"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, fuzzy, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() no conseguiu ler a hora de /dev/tty1"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "ioctl KDSHWCLK falhou"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
#, fuzzy
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "No foi possvel abrir /dev/tty1"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "ioctl KDGHWCLK falhou"
@@ -6177,7 +6193,7 @@ msgstr "Erro de senha."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Senha:"
@@ -6236,7 +6252,7 @@ msgstr ""
msgid "Finger information changed.\n"
msgstr "As informaes de finger foram alteradas.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "malloc falhou"
@@ -6975,7 +6991,7 @@ msgstr "No possvel exec umount; desistindo de umount."
msgid "Unmounting any remaining filesystems..."
msgstr "Desmontando quaisquer sistemas de arquivos remanescentes..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: no foi possvel desmontar %s: %s\n"
@@ -7620,17 +7636,17 @@ msgstr "Mensagem de %s@%s (como %s) em %s em %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Mensagem de %s@%s em %s em %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "Aviso: erro ao ler %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "Aviso: no foi possvel abrir %s: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: no foi possvel abrir %s - usando %s\n"
@@ -7639,42 +7655,42 @@ msgstr "mount: no foi possvel abrir %s - usando %s\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"no foi possvel criar o arquivo de bloqueio %s: %s (use a opo -n para "
"anular)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"no foi possvel vincular o arquivo de bloqueio %s: %s (use a opo -n para "
"anular)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
"no foi possvel abrir o arquivo de bloqueio %s: %s (use a opo -n para "
"anular)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "No foi possvel bloquear o arquivo de bloqueio %s: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "no foi possvel bloquear o arquivo de bloqueio %s: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "tempo esgotado"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7683,22 +7699,22 @@ msgstr ""
"No foi possvel criar o vnculo %s\n"
"Talvez haja um arquivo de bloqueio vencido?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "No foi possvel abrir %s (%s) - mtab no atualizado"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "erro ao gravar %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "erro ao alterar o modo de %s: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "no foi possvel renomear %s para %s: %s\n"
@@ -7761,26 +7777,26 @@ msgstr "mount: no foi possvel localizar nenhum dispositivo de lao livre"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "No possvel bloquear (lock) na memria, saindo\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): sucesso\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: no foi possvel excluir o dispositivo %s: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): sucesso\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Este mount foi compilado sem suporte a laos. Recompile-o.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7796,190 +7812,190 @@ msgstr ""
" %s [ -e criptografia ] [ -o deslocamento ] dispositivo_lao arquivo # "
"configurao\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "no h memria suficiente"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr "No havia suporte a lao disponvel quando da compilao. Recompile.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr "[mntent]: aviso: no h nova linha final no final de %s\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: linha %d em %s tem %s invlido(a)\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; resto do arquivo ignorado"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: de acordo com mtab, %s j est montado em %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: de acordo com mtab, %s est montado em %s"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: no foi possvel abrir %s para gravao: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: erro ao gravar %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: erro ao alterar modo de %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s parece espao de permuta - no montado"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "mount falhou"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: somente o root pode montar %s em %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: dispositivo de lao especificado duas vezes"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: tipo especificado duas vezes"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: ignorando a configurao de um dispositivo de lao\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: ser usado o dispositivo de lao %s\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: falha ao configurar dispositivo de lao\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: configurao de dispositivo de lao realizada com sucesso\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: no foi possvel abrir %s: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:687
+#: mount/mount.c:669
#, fuzzy, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: no foi possvel abrir %s para configurao da velocidade"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: no foi possvel configurar velocidade: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: no foi possvel realizar fork: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: esta verso foi compilada sem suporte ao tipo `nfs'"
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr ""
"mount: falhou com o mount do nfs verso 4, tentando com o 3..\n"
" \n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: no foi possvel determinar o tipo do sistema de arquivos e nenhum "
"foi especificado"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: voc precisa especificar o tipo do sistema de arquivos"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: a montagem falhou"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: o ponto de montagem %s no um diretrio"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: permisso negada"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: necessrio ser superusurio para montar"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s est ocupado"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc j montado"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s j montado ou %s ocupado"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: o ponto de montagem %s no existe"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: o ponto de montagem %s um vnculo simblico para lugar algum"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: o dispositivo especial %s no existe"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7988,12 +8004,12 @@ msgstr ""
"mount: o dispositivo especial %s no existe\n"
" (um prefixo de caminho no um diretrio)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s j no est montado ou opo invlida"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -8003,35 +8019,41 @@ msgstr ""
"invlido em %s,\n"
" ou nmero excessivo de sistemas de arquivos montados"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "tabela de montagem cheia"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: no foi possvel ler o superbloco"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: dispositivo de blocos desconhecido"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: o tipo de sistema de arquivos %s no suportado pelo kernel"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l lista os tipos de sistemas de arquivos conhecidos"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: provavelmente voc queria dizer %s"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: talvez voc quisesse dizer iso9660?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: talvez voc quisesse dizer iso9660?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8039,12 +8061,12 @@ msgstr ""
"arquivos %s no suportado"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s no um dispositivo de blocos e stat falha?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8053,48 +8075,48 @@ msgstr ""
"mount: o kernel no reconhece %s como dispositivo de blocos\n"
" (talvez `insmod driver'?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s no um dispositivo de blocos (talvez tentar `-o loop'?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s no um dispositivo de blocos"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s no um dispositivo de blocos vlido"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "dispositivo de blocos "
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: no foi possvel montar %s%s somente para leitura"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s protegido contra gravao mas a opo -w foi passada"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s protegido contra gravao; montando somente para leitura"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
"mount: nenhum tipo foi fornecido - supondo nfs por causa dos dois-pontos\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
#, fuzzy
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr "mount: nenhum tipo foi fornecido - supondo smbfs por causa xxx\n"
@@ -8102,22 +8124,22 @@ msgstr "mount: nenhum tipo foi fornecido - supondo smbfs por causa xxx\n"
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: tentando montar em segundo plano \"%s\"\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: desistindo de \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s j montado em %s\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
#, fuzzy
msgid ""
"Usage: mount -V : print version\n"
@@ -8164,34 +8186,34 @@ msgstr ""
"Outras opes: [-nfFrsvw] [-o opes].\n"
"Para mais detalhes, consulte `man 8 mount'.\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: operao exclusiva de root"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: nenhum %s encontrado - criando-o...\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: tal partio no foi encontrada"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: montando %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr ""
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: no foi possvel localizar %s em %s"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: no foi possvel localizar %s em %s ou %s"
@@ -8208,31 +8230,31 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: UUID invlida"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
#, fuzzy
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: voc precisa especificar o tipo do sistema de arquivos"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: no foi especificado um tipo de sistema de arquivos para %s\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " experimentarei todos os tipos mencionados em %s ou %s\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " e parece ser um espao de permuta\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " experimentarei o tipo %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Experimentando %s\n"
@@ -8465,13 +8487,13 @@ msgstr "umount: no foi possvel remontar %s somente para leitura\n"
msgid "%s umounted\n"
msgstr "%s desmontado\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr ""
"umount: no foi possvel localizar a lista de sistemas de arquivos a "
"desmontar"
-#: mount/umount.c:467
+#: mount/umount.c:469
#, fuzzy
msgid ""
"Usage: umount [-hV]\n"
@@ -8482,42 +8504,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:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Tentando desmontar %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "No foi possvel localizar %s em mtab\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s no est montado (de acordo com mtab)"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: parece que %s est montado mltiplas vezes"
-#: mount/umount.c:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, 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:616
+#: mount/umount.c:593
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: somente %s pode desmontar %s de %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: operao exclusiva de root"
@@ -8530,7 +8552,7 @@ msgstr ""
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Uso: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8540,7 +8562,7 @@ msgstr ""
"fifo era de %d\n"
"e a taxa de transferncia mxima, em caracteres por segundo, era de %f.\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8551,32 +8573,32 @@ msgstr ""
"nmero mximo de caracteres em fifo era de %d\n"
"e a taxa de transferncia mxima, em caracteres por segundo, era de %f.\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Valor de intervalo invlido: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Valor definido invlido: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Valor padro invlido: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Valor de definio de horrio invlido: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Valor padro de horrio invlido: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8585,56 +8607,56 @@ msgstr ""
"Uso: %s [-q [-i intervalo]] ([-s valor]|[-S valor]) ([-t valor]|[-T valor]) "
"[-g|-G] arquivo [arquivo...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "No foi possvel abrir %s: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "No foi possvel configurar %s para o limiar %d: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "No foi possvel definir %s para o limiar de horrio %d: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "No foi possvel obter o limiar para %s: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "No foi possvel obter o tempo-limite para %s: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, fuzzy, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld o limiar %s e %ld o tempo-limite %s\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, fuzzy, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld o limiar %s e %ld o tempo-limite %s\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "No foi possvel configurar manipulador de sinal"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "gettimeofday falhou"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "No foi possvel emitir CYGETMON em %s: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, fuzzy, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8642,12 +8664,12 @@ msgstr ""
"%s: %lu ints, %lu chars; fifo: %lu limiar, %lu tempo-limite, %lu mx, %lu "
"agora\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f int/s; %f recebidos, %f enviados (char/s)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8655,7 +8677,7 @@ msgstr ""
"%s: %lu ints, %lu chars; fifo: %lu limiar, %lu tempo-limite, %lu mx, %lu "
"agora\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f int/s; %f recebidos (char/s)\n"
@@ -9933,6 +9955,9 @@ msgstr "Linha de entrada longa demais.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Falta memria quando o buffer cresce.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: o tipo de sistema de arquivos %s no suportado pelo kernel"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "ioctl BLKGETSIZE falhou para %s\n"
diff --git a/po/sl.po b/po/sl.po
index bb67debd2..5ceb35d4d 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-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+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"
@@ -114,7 +114,7 @@ msgstr "%s: napaka ioctl na %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr ""
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "uporaba:\n"
@@ -1202,11 +1202,11 @@ msgstr ""
msgid " %s [ -c | -y | -n ] dev\n"
msgstr ""
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr ""
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Neuporabljen prostor"
@@ -1343,8 +1343,8 @@ msgstr ""
msgid "Press a key to continue"
msgstr "Pritisnite katerokoli tipko za nadaljevanje"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primaren"
@@ -1352,8 +1352,8 @@ msgstr "Primaren"
msgid "Create a new primary partition"
msgstr "Ustvari nov primaren razdelek"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Logien"
@@ -1361,7 +1361,7 @@ msgstr "Logien"
msgid "Create a new logical partition"
msgstr "Ustvari nov logien razdelek"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Preklii"
@@ -1397,168 +1397,184 @@ msgstr "Dodaj razdelek na konec prostega obmoja"
msgid "No room to create the extended partition"
msgstr "Ni prostora za ustvarjanje razirjenega razdelka"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
-msgstr ""
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "ponovno preberi tabelo razdelkov"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
+msgstr "Izpii tabelo razdelkov na zaslon ali shrani v datoteko"
+
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Enostaven izpis tabele razdelkov"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "ponovno preberi tabelo razdelkov"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr ""
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr ""
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr ""
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr ""
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Velikosti diska ni mogoe ugotoviti"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Slab primarni razdelek"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Slab logini razdelek"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Opozorilo! To lahko unii podatke na disku!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Ste prepriani, da elite zapisati tabelo razdelkov na disk? (da ali ne): "
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "ne"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "Tabela razdelkov ni bila zapisana"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "da"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Prosim, odgovorite ,da` ali ,ne`"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Tabelo razdelkov zapisujemo na disk..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Tabela razdelkov zapisana na disku"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Tabela razdelkov zapisana, auriranje tabele neuspeno. Ponovno zaenite "
"sistem."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Noben primarni razdelek ni oznaen kot zagonski. DOS MBR se ne more zagnati."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Ve kot en primarni razdelek je oznaen kot zagonski. DOS MBR se ne more "
"zagnati."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Vnesite ime datoteke ali pritisnite ENTER za prikaz na zaslonu: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "Ni mo odpreti datoteke ,%s`"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Disk: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Brez "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primaren"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Logien"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Neznano"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr ""
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, fuzzy, c-format
msgid "(%02X)"
msgstr "Zagonski (%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
#, fuzzy
msgid "None"
msgstr "Opravljeno"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr ""
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
#, fuzzy
msgid " First Last\n"
msgstr "parametri\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
msgstr ""
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1566,470 +1582,470 @@ msgid ""
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ----Zaetni--- ----Konni---- Zaetni tevilo\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
#, fuzzy
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Ozn Glav Sekt Stz ID Glav Sekt Stz sektor sektorjev\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "Direktno"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Izpis tabele v surovi obliki"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Sektorji"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Izpis tabele, urejene po sektorjih"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Tabela"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Enostaven izpis tabele razdelkov"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Brez izpisa tabele razdelkov"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Osnovna navodila za cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Cfdisk je tekstovni program za urejanje diskovnih razdelkov,"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "s katerim lahko ustvarjate, briete ali spreminjate razdelke"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "na vaem disku."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr " Ukaz Pomen"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr ""
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr ""
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr ""
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr ""
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr ""
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr ""
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr ""
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr ""
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr ""
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr ""
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr ""
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr ""
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr ""
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr ""
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr ""
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr ""
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr ""
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr ""
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr ""
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " ,ne`"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr ""
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr ""
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr ""
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr ""
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr ""
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr ""
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr ""
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr ""
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr ""
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr ""
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr ""
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Opravljeno"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr ""
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr ""
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr ""
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr ""
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr ""
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr ""
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr ""
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr ""
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr ""
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr ""
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr ""
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ""
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr ""
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr ""
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Neznano (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr ""
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr ""
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr ""
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "%d glav, %d sektorjev/stezo, %d stez"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Ime"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Oznake"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Tip Razd."
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Dat. sistem"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Oznaka]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
#, fuzzy
msgid " Sectors"
msgstr "Sektorji"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
#, fuzzy
msgid " Cylinders"
msgstr "steza"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
#, fuzzy
msgid " Size (MB)"
msgstr "Vel. (MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
#, fuzzy
msgid " Size (GB)"
msgstr "Vel. (GB)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Zagonski"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Oznai, ali je razdelek zagonski"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Izbrii"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Izbrii ta razdelek"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometr."
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Nastavi geometrijo diska (samo poznavalci)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Pomo"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Izpii stran z navodili"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Razpni"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Raziri trenutni razdelek ez celotno prosto obmoje (samo poznavalci)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Nova"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Ustvari nov razdelek na prostem obmoju diska"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Natisni"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Izpii tabelo razdelkov na zaslon ali shrani v datoteko"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Izhod"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Izhod iz programa brez zapisa tabele razdelkov"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Tip"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr ""
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Enote"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Pii"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr ""
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr ""
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr ""
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr ""
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr ""
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr ""
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr ""
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr ""
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr ""
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2277,12 +2293,12 @@ msgstr ""
msgid "heads"
msgstr ""
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr ""
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr ""
@@ -2661,12 +2677,12 @@ msgstr ""
msgid "%lld unallocated sectors\n"
msgstr ""
-#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr ""
-#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2803,7 +2819,7 @@ msgstr ""
msgid "Cannot open %s\n"
msgstr "Ne morem odpreti %s\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "ne morem odpreti %s\n"
@@ -3394,34 +3410,34 @@ msgstr "DA\n"
msgid "Do You know, You got a partition overlap on the disk?\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
msgid "You got a partition overlap on the disk. Fix it first!\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:671
+#: fdisk/fdisksgilabel.c:669
msgid "You will get a partition overlap on the disk. Fix it first!\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr ""
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3429,7 +3445,7 @@ msgid ""
"\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3437,12 +3453,12 @@ msgid ""
"This value may be truncated for devices > 33.8 GB.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr ""
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr ""
@@ -4008,89 +4024,89 @@ msgstr ""
msgid "BBT"
msgstr ""
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr ""
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr ""
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr ""
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr ""
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr ""
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr ""
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr ""
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr ""
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr ""
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "pomankanje pomnilnika?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr ""
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "napaka pri branju %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr ""
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr ""
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr ""
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr ""
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4098,56 +4114,56 @@ msgid ""
"[Use the --force option if you really want this]\n"
msgstr ""
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr ""
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr ""
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr ""
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"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"
msgstr ""
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
"Disk %s: %lu cylinders, %lu heads, %lu sectors/track\n"
msgstr ""
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
"lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
"lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4155,104 +4171,104 @@ msgstr ""
"Ime id\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr ""
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
msgstr ""
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr ""
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr ""
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr ""
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr ""
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr ""
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
"\n"
msgstr ""
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr ""
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
"\n"
msgstr ""
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr ""
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
"\n"
msgstr ""
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr ""
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
"\n"
msgstr ""
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr ""
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr ""
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr ""
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4260,474 +4276,474 @@ msgid ""
"For this listing I'll assume that geometry.\n"
msgstr ""
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr ""
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr ""
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr ""
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr ""
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr ""
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr ""
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr ""
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr ""
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr ""
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
"and will destroy it when filled\n"
msgstr ""
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr ""
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr ""
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
msgstr ""
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr ""
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr ""
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
msgstr ""
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
msgstr ""
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
msgstr ""
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
#, fuzzy
msgid "start"
msgstr "stanje"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
#, fuzzy
msgid "end"
msgstr "polji"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr ""
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
"(For listing purposes only. Do not change its contents.)\n"
msgstr ""
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
msgstr ""
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr ""
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr ""
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr ""
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr ""
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr ""
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr ""
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr "ponovno preberi tabelo razdelkov"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr ""
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr ""
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr ""
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr ""
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr ""
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr ""
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr ""
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr ""
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr ""
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr ""
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr ""
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr ""
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr ""
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr ""
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr ""
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr ""
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr ""
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr ""
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr ""
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr ""
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr ""
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
msgstr ""
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "razliica"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr ""
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr ""
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr ""
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr ""
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr ""
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr ""
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr ""
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
msgstr ""
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr ""
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr ""
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr ""
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr ""
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr ""
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr ""
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr ""
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr ""
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr ""
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr ""
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
msgstr ""
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr ""
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr ""
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr ""
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr ""
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr ""
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr ""
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr ""
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Uporaba:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr ""
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr ""
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr ""
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr ""
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr ", skupno %lu sektorjev"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr ""
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr ""
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr ""
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr ""
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr ""
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr ""
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr ""
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr ""
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "Velikosti diska ni mogoe ugotoviti"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr ""
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -4735,42 +4751,42 @@ msgstr ""
"Opravljeno\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"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"
msgstr ""
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr ""
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr ""
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr ""
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr ""
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr ""
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr ""
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -4778,66 +4794,66 @@ msgid ""
"Use the --no-reread flag to suppress this check.\n"
msgstr ""
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr ""
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "V REDU\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr ""
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr ""
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr ""
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
msgstr ""
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr ""
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr ""
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr ""
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
msgstr ""
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr ""
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr ""
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
msgstr ""
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -4930,43 +4946,43 @@ msgstr ""
msgid "internal error, contact the author."
msgstr ""
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "zagnano iz MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Ura Ruffian BCD\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "vrata ure naravnana na 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomski %s neuspeen v 1000 iteracijah!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Neuspelo odpiranje vrat /dev/port: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "Dovoljenja nismo dobili, ker nismo poskuali.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s ne more dobiti dostopa do V/I vrat: klic iopl(3) neuspeen.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Verjetno potrebujete pravice skrbnika sistema.\n"
@@ -5361,36 +5377,37 @@ msgid ""
"method.\n"
msgstr ""
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr ""
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr ""
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr ""
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr ""
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr ""
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr ""
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr ""
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr ""
@@ -5709,7 +5726,7 @@ msgstr ""
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Geslo: "
@@ -5765,7 +5782,7 @@ msgstr ""
msgid "Finger information changed.\n"
msgstr ""
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr ""
@@ -6490,7 +6507,7 @@ msgstr "Ni mo pognati umount, nadaljni poskusi opueni."
msgid "Unmounting any remaining filesystems..."
msgstr ""
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr ""
@@ -7124,17 +7141,17 @@ msgstr ""
msgid "Message from %s@%s on %s at %s ..."
msgstr ""
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr ""
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr ""
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr ""
@@ -7143,58 +7160,58 @@ msgstr ""
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr ""
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr ""
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "as se je iztekel"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
"Perhaps there is a stale lock file?\n"
msgstr ""
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr ""
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr ""
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr ""
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
@@ -7252,26 +7269,26 @@ msgstr ""
msgid "Couldn't lock into memory, exiting.\n"
msgstr ""
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr ""
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, fuzzy, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "Ni mo pognati %s: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr ""
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7280,313 +7297,317 @@ msgid ""
" %s [ -e encryption ] [ -o offset ] loop_device file # setup\n"
msgstr ""
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "premalo pomnilnika"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr ""
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr ""
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr ""
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: po evidenci mtab je %s e priklopljeno na %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: po evidenci mtab je %s priklopljeno na %s<"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: enote %s ni mo odpreti za pisanje: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: napaka pri pisanju na %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr ""
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr ""
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "priklop ni uspel"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: samo sistemski skrbnik lahko priklopi %s na %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr ""
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr ""
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr ""
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr ""
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr ""
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr ""
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr ""
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr ""
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr ""
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr ""
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr ""
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr ""
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr ""
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr ""
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: priklopna toka %s ni imenik"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: dostop zavrnjen"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: ukaz mount lahko uporablja samo sistemski skrbnik"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s je v rabi"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr ""
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr ""
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr ""
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr ""
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr ""
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
" (a path prefix is not a directory)\n"
msgstr ""
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr ""
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
" or too many mounted file systems"
msgstr ""
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr ""
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr ""
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr ""
-#: mount/mount.c:984
+#: mount/mount.c:974
#, c-format
-msgid "mount: fs type %s not supported by kernel"
+msgid "mount: unknown filesystem type '%s'"
msgstr ""
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr ""
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+msgid "mount: maybe you meant 'iso9660'?"
msgstr ""
-#: mount/mount.c:1001
+#: mount/mount.c:990
+msgid "mount: maybe you meant 'vfat'?"
+msgstr ""
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr ""
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
" (maybe `insmod driver'?)"
msgstr ""
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr ""
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr ""
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr ""
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "blona enota"
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: %s%s ni mo priklopiti v bralnem nainu"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr ""
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s je zaitena pred pisanjem, priklapljamo v bralnem nainu"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr ""
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr ""
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr ""
-#: mount/mount.c:1362
+#: mount/mount.c:1380
#, fuzzy
msgid ""
"Usage: mount -V : print version\n"
@@ -7638,34 +7659,34 @@ msgstr ""
"Druge izbire: [-nfFrsvw] [-o izbire].\n"
"Podrobnosti lahko poiete v prironiku z ukazom: man 8 mount\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: to lahko izvede samo sistemski skrbnik"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr ""
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr ""
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: priklapljamo %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr ""
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr ""
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr ""
@@ -7680,30 +7701,30 @@ msgstr ""
msgid "mount: bad UUID"
msgstr ""
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr ""
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr ""
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr ""
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr ""
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr ""
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr ""
@@ -7927,53 +7948,53 @@ msgstr ""
msgid "%s umounted\n"
msgstr ""
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr ""
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
" umount [-f] [-r] [-n] [-v] special | node...\n"
msgstr ""
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr ""
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr ""
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr ""
-#: mount/umount.c:565
+#: mount/umount.c:538
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr ""
-#: mount/umount.c:578
+#: mount/umount.c:551
#, c-format
msgid "umount: %s is not in the fstab (and you are not root)"
msgstr ""
-#: mount/umount.c:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr ""
-#: mount/umount.c:616
+#: mount/umount.c:593
#, 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:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr ""
@@ -7985,14 +8006,14 @@ msgstr ""
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr ""
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
"and the maximum transfer rate in characters/second was %f\n"
msgstr ""
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8000,105 +8021,105 @@ msgid ""
"and the maximum transfer rate in characters/second was %f\n"
msgstr ""
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr ""
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr ""
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr ""
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr ""
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr ""
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
"[-g|-G] file [file...]\n"
msgstr ""
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr ""
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr ""
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr ""
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr ""
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr ""
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr ""
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr ""
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr ""
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr ""
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr ""
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr ""
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
msgstr ""
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 0a346613c..d1020f95e 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+0100\n"
"PO-Revision-Date: 2003-08-01 01:33+0200\n"
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -114,7 +114,7 @@ msgstr "%s: ioctl-fel p %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr "RO RA SSZ BSZ Startsektor Storlek Enhet\n"
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "anvndning:\n"
@@ -1259,11 +1259,11 @@ msgstr " %s [ -c | -y | -n | -d ] enhet\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] enhet\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Oanvndbar"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Ledigt utrymme"
@@ -1405,8 +1405,8 @@ msgstr "Ogiltig tangent"
msgid "Press a key to continue"
msgstr "Tryck en tangent fr att fortstta"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Primr"
@@ -1414,8 +1414,8 @@ msgstr "Primr"
msgid "Create a new primary partition"
msgstr "Skapa en ny primr partition"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Logisk"
@@ -1423,7 +1423,7 @@ msgstr "Logisk"
msgid "Create a new logical partition"
msgstr "Skapa en ny logisk partition"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Avbryt"
@@ -1459,163 +1459,179 @@ msgstr "Lgg till partition i slutet av det lediga utrymmet"
msgid "No room to create the extended partition"
msgstr "Ingen plats att skapa den utkade partitionen"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "ingen partitionstabell finns tillgnglig.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Ingen partitionstabell eller oknd signatur p partitionstabell"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Visa bara partitionstabellen"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "ingen partitionstabell finns tillgnglig.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Vill du brja med en tom tabell [j/N]?"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Du angav fler cylindrar n som ryms p disken"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "Kan inte ppna diskenhet"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "ppnade disken skrivskyddat - du har ingen rttighet att skriva"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Kan inte hmta diskstorlek"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Felaktig primr partition"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Felaktig logisk partition"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Varning!! Detta kan frstra data p din disk!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"r du sker p att du vill skriva partitionstabellen till disk? (ja eller "
"nej): "
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "nej"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "Skrev inte partitionstabellen till disk"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "ja"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Ange \"ja\" eller \"nej\""
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Skriver partitionstabell till disk..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Skrev partitionstabell till disk"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Skrev partitionstabellen, men omlsning av tabellen misslyckades. Starta om "
"fr att uppdatera tabellen."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Inga primra partitioner r markerade som startbara. DOS huvudstartpost\n"
"(MBR) kan inte starta detta."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Mer n en primr partition r markerad som startbar. DOS huvudstartpost\n"
"(MBR) kan inte starta detta."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Ange filnamnet eller tryck RETUR fr att visa p skrmen: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "Kan inte ppna filen \"%s\""
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Diskenhet: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Ingen "
# Primr/Logisk antar jag
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primr "
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Logisk "
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Oknd"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Start"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
msgid "None"
msgstr "Ingen"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Partitionstabell fr %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
msgid " First Last\n"
msgstr " Frsta Sista\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1623,7 +1639,7 @@ msgstr ""
" # Typ Sektor Sektor Avstnd Lngd Filsystemstyp (ID) "
"Flagga\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1644,470 +1660,470 @@ msgstr ""
# (the one from the line below in the source).
#
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ----Start----- -----Slut----- Start- Antal\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Flggr Hvd Sekt Cyl ID Hvd Sekt Cyl sektor sektorer\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "Rtt"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Visa tabellen i rtt dataformat"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Sektorer"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Visa tabellen sorterad efter sektorer"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Tabell"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Visa bara partitionstabellen"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Visa inte tabellen"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Hjlpskrm fr cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Det hr r cfdisk, ett curses-baserat diskpartitioneringsprogram som"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "lter dig skapa, ta bort och ndra partitioner p din"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "hrddisk."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright 1994-1999 Kevin E. Martin och aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Kommando Betydelse"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "-------- ---------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b Sl p/av startbarhetsflaggan p aktuell partition"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Ta bort aktuell partition"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g ndra parametrarna fr cylindrar, huvuden, sektorer-per-spr"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " VARNING: Denna flagga br endast anvndas av personer som"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " vet vad de gr."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Visa denna hjlpskrm"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximera diskanvndandet p aktuell partition"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr ""
" Obs: Detta kan komma att gra partitionen inkompatibel med"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Skapa en ny partition frn ledigt utrymme"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr ""
" p Visa partitionstabellen p skrmen eller skriv den till en fil"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Det finns flera olika format p partitionen"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " som du kan vlja mellan:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - R data (exakt det som skulle skrivas till disken)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Tabell sorterad efter sektorer"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Tabell i rtt format"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q Avsluta programmet utan att skriva partitionstabellen"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Byt filsystemstypen"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Byt enheter p visningen av partitionsstorlek"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Byter mellan MB, sektorer och cylindrar"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Skriv partitionstabellen till disk (mste vara ett stort W)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Eftersom detta kan frstra data p disken mste du"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
" antingen bekrfta eller avvisa detta genom att ange \"ja\""
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " eller \"nej\""
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Uppil Flytta markren till fregende partition"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Nerpil Flytta markren till nsta partition"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL+L Rita om skrmen"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Visa denna skrm"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Obs: Alla kommandon kan anges antingen med sm eller stora bokstver"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "(utom fr skrivningar med W)."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cylindrar"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "ndra cylindergeometri"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Huvuden"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "ndra huvudgeometri"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "ndra sektorgeometri"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Klar"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Frdig med geometrindring"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Ange antalet cylindrar: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Ogiltigt antal cylindrar"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Ange antalet huvuden: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Ogiltigt antal huvuden"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Ange antalet sektorer per spr: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Ogiltigt antal sektorer"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Ange typen av filsystem: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Kan inte ndra filsystemstypen till ett tomt vrde"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Kan inte ndra filsystemstypen till utkad"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Oknd(%02X)"
# Vad r detta?
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Oknd (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Diskenhet: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Storlek: %lld byte, %lld MB"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Storlek: %lld byte, %lld,%lld GB"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Huvuden: %d Sektorer per spr: %d Cylindrar: %lld"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Namn"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Flaggor"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Part.-typ"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "FS-typ"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Etikett]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
msgid " Sectors"
msgstr " Sektorer"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
msgid " Cylinders"
msgstr " Cylindrar"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
msgid " Size (MB)"
msgstr " Storlek (MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
msgid " Size (GB)"
msgstr " Storlek (GB)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Startbar"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Sl p/av startbarhetsflaggan p aktuell partition"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Ta bort"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Ta bort aktuell partition"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometri"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "ndra diskgeometri (endast experter)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Hjlp"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Visa hjlpskrm"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Maximera"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Maximera diskanvndningen fr aktuell partition (endast experter)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Ny"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Skapa ny partition frn ledigt utrymme"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Visa"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Visa partitionstabellen p skrmen eller skriv den till en fil"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Avsluta"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Avsluta programmet utan att skriva partitionstabellen"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Typ"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "ndra filsystemstypen (DOS, Linux, OS/2 och s vidare)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Enheter"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
"Byt enheter p visningen av partitionsstorleken (MB, sektorer, cylindrar)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Skriv"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "Skriv partitionstabellen till disk (detta kan frstra data)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Kan inte gra denna partition startbar"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Kan inte ta bort en tom partition"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "Kan inte maximera denna partition"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Denna partition r oanvndbar"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Denna partition anvnds redan"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Kan inte ndra typen p en tom partition"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Inge fler partitioner"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Ogiltigt kommando"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright 1994-2002 Kevin E. Martin och aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2385,12 +2401,12 @@ msgstr "Du mste stlla in"
msgid "heads"
msgstr "huvuden"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "sektorer"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "cylindrar"
@@ -2801,14 +2817,14 @@ msgstr "Totala antalet allokerade sektorer %d strre n maximala %d\n"
msgid "%lld unallocated sectors\n"
msgstr "%d oallokerade sektorer\n"
-#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2963,7 +2979,7 @@ msgstr "Disk %s innehller inte en giltig partitionstabell\n"
msgid "Cannot open %s\n"
msgstr "Kan inte ppna %s\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "kan inte ppna %s\n"
@@ -3628,20 +3644,20 @@ msgstr "JA\n"
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:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Frsker att generera fullstndig diskpost automatiskt.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "Hela disken r redan tckt med partitioner.\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3649,17 +3665,17 @@ msgstr ""
"Det rekommenderas varmt att den elfte partitionen\n"
"tcker hela hrddisken och r av typen \"SGI-volym\"\n"
-#: fdisk/fdisksgilabel.c:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " sista %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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"
@@ -3671,7 +3687,7 @@ msgstr ""
"naturligtvis det tidigare innehllet att vara sprlst borta.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3682,12 +3698,12 @@ msgstr ""
"geometricylindervrdet %d.\n"
"Detta vrde kan vara avkortat fr enheter > 33,8 GB.\n"
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr "Frsker att behlla parametrarna fr partition %d.\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tBRJAN=%d\tLNGD=%d\n"
@@ -4290,89 +4306,89 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "skfel p %s - kan inte spola till %lu\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "skfel: ville ha 0x%08x%08x, fick 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "slut p minne - ger upp\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "lsfel p %s - kan inte lsa sektor %lu\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "FEL: sektor %lu har ingen msdos-signatur\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "skrivfel p %s - kan inte skriva sektor %lu\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "kan inte ppna partitionssektorsparfil (%s)\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "skrivfel p %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "kan inte ta status p partitionsterstllningsfil (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr "partitionsterstllningsfilen har fel storlek - terstller inte\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "slut p minne?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "kan inte ppna partitionsterstllningsfilen (%s)\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "fel vid lsning av %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "kan inte ppna enhet %s fr skrivning\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "fel vid skrivning av sektor %lu p %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Disk %s: kan inte f tag i geometri\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Disk %s: kan inte f tag i storlek\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4383,22 +4399,22 @@ msgstr ""
"hela disken. Att anvnda fdisk p det r troligtvis meningslst.\n"
"[Anvnd flaggan --force om du verkligen vill detta]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Varning: HDIO_GETGEO sger att det finns %lu huvuden\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Varning: HDIO_GETGEO sger att det finns %lu sektorer\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Varning: BLKGETSIZE/HDIO_GETGEO sger att det finns %lu cylindrar\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4408,7 +4424,7 @@ msgstr ""
"Detta kommer att ge problem med all programvara som anvnder C/H/S-"
"adressering.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4417,7 +4433,7 @@ msgstr ""
"\n"
"Disk %s: %lu cylindrar, %lu huvuden, %lu sektorer/spr\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
@@ -4425,7 +4441,7 @@ msgstr ""
"%s p partition %s har omjligt vrde p huvud: %lu (mste vara mellan 0-%"
"lu)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4434,7 +4450,7 @@ msgstr ""
"%s p partition %s har omjligt vrde p sektor: %lu (mste vara mellan 1-%"
"lu)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4443,7 +4459,7 @@ msgstr ""
"%s p partition %s har omjligt vrde p cylinder: %lu (mste vara mellan 0-%"
"lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4451,11 +4467,11 @@ msgstr ""
"Id Namn\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Lser om partitionstabellen...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4463,31 +4479,31 @@ msgstr ""
"Kommandot fr att lsa om partitionstabellen misslyckades\n"
"Starta om ditt system nu, innan du anvnder mkfs\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Fel vid stngning av %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: det finns ingen sdan partition\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "oknt format - anvnder sektorer\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# partitionstabell fr %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "oimplementerat format - anvnder %s\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4496,11 +4512,11 @@ msgstr ""
"Enheter = cylindrar med %lu byte, block med 1024 byte, rknat frn %d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Enhet Start Brjan Slut Cyl. Block Id System\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4509,11 +4525,11 @@ msgstr ""
"Enheter = sektorer med 512 byte, rknat frn %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Enhet Start Brjan Slut Sektorer Id System\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4522,11 +4538,11 @@ msgstr ""
"Enheter = block med 1024 byte, rknat frn %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Enhet Start Brjan Slut Block Id System\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4535,30 +4551,30 @@ msgstr ""
"Enheter = mebibyte med 1048576 byte, block med 1024 byte, rknat frn %d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Enhet Start Brjan Slut MiB Block Id System\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tbrjan: (c,h,s) (%ld,%ld,%ld) frvntades (%ld,%ld,%ld) hittades\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tslut: (c,h,s) (%ld,%ld,%ld) frvntades (%ld,%ld,%ld) hittades\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr "partitionen slutar p cylinder %ld, utanfr slutet p hrddisken\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Inga partitioner hittades\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4569,51 +4585,51 @@ msgstr ""
" fr C/H/S=*/%ld/%ld (istllet fr %ld/%ld/%ld).\n"
"I denna visning kommer jag att antaga den geometrin.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "ingen partitionstabell finns tillgnglig.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "konstigt, endast %d partitioner r angivna.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr "Varning: partition %s har storlek 0 men r inte markerad tom\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Varning: partition %s har storlek 0 och r startbar\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "Varning: partition %s har storlek 0 och en brjan som inte r 0\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Varning: partition %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "r inte innesluten i partition %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Varning: partitionerna %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "och %s verlappar varandra\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4622,17 +4638,17 @@ msgstr ""
"Varning: partition %s innehller en del av partitionstabellen (sektor %lu),\n"
"och kommer att frstra den d den fylls\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Varning: partition %s brjar p sektor 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Varning: partition %s fortstter utanfr hrddisken\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4640,17 +4656,17 @@ msgstr ""
"Endast en av de primra partitionerna kan vara utkad\n"
" (ven om detta inte r ett problem under Linux)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Varning: partition %s brjar inte p en jmn cylindergrns\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Varning: partition %s slutar inte p en jmn cylindergrns\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4659,7 +4675,7 @@ msgstr ""
"LILO bryr sig inte om detta, men DOS huvudstartpost (MBR) kommer inte att\n"
"kunna starta denna disk.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4667,7 +4683,7 @@ msgstr ""
"Varning: normalt kan man endast starta frn primra partitioner\n"
"LILO ignorerar startbarhetsflaggan.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4676,11 +4692,11 @@ msgstr ""
"LILO bryr sig inte om detta, men DOS huvudstartpost (MBR) kommer inte att\n"
"kunna starta denna disk.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
msgid "start"
msgstr "brjan"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
@@ -4688,23 +4704,23 @@ msgstr ""
"partition %s: brjan: (c,h,s) (%ld,%ld,%ld) frvntades (%ld,%ld,%ld) "
"hittades\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
msgid "end"
msgstr "slut"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"partition %s: slut: (c,h,s) (%ld,%ld,%ld) frvntades (%ld,%ld,%ld) "
"hittades\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr "partition %s slutar p cylinder %ld, utanfr slutet p hrddisken\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
@@ -4713,7 +4729,7 @@ msgstr ""
"Varning: ndrade brjan p extd-partitionen frn %ld till %ld\n"
"(Endast fr listningsndaml. ndra inte dess innehll).\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4721,133 +4737,133 @@ msgstr ""
"Varning: utkad partition brjar inte p jmn cylindergrns.\n"
"DOS och Linux kommer att tolka innehllet annorlunda.\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "fr mnga partitioner - ignorerar de efter nummer (%d)\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "trd med partitioner?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "upptckte Disk Manager - kan inte hantera det\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "DM6-signatur hittades - ger upp\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "konstigt, en utkad partition med storlek 0?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "konstigt, en BSD-partition med storlek 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: oknd partition\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "Flaggan -n angavs: Inget ndrades\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Misslyckades med att spara de gamla sektorerna - avbryter\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "Misslyckades med att skriva partitionen p %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "lng eller ofullstndig indatarad - avslutar\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "indatafel: \"=\" frvntas efter %s-flt\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "indatafel: ovntat tecken %c efter %s-flt\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "oknd indata: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "talet r fr stort\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "efterslpande skrp efter tal\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "ingen plats fr partitionshandtag\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "kan inte bygga omgivande utkad partition\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "fr mnga indatafield\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "Inte plats fr mer\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Ogiltig typ\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
"Varning: angiven storlek (%lu) verskrider strsta tilltna storleken (%lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Varning: tom partition\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Varning: felaktig brjan p partition (frsta %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "oknd startbarhetsflagga - vlj - eller *\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "c,h,s-specifikation ofullstndig?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Utkad partition finns inte dr den frvntades\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "felaktig indata\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "fr mnga partitioner\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4857,46 +4873,46 @@ msgstr ""
"<brjan> <storlek> <typ [E,S,L,X,hex]> <startbar [-,*]> <c,h,s> <c,h,s>\n"
"Vanlligtvis behver du bara ange <brjan> och <storlek> (och kanske <typ>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "version"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Anvndning: %s [flaggor] enhet ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "enhet: ngonting liknande /dev/hda eller /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "anvndbara flaggor:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [eller --show-size]: visa storlek p en partition"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr " -c [eller --id]: visa eller ndra partitionsid"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [eller --list]: visa partitioner p varje enhet"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
" -d [eller --dump]: samma, men i format lmpligt fr senare inmatning"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr ""
" -i [eller --increment]: numrera cylindrar osv frn 1 istllet fr frn 0"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
@@ -4904,55 +4920,55 @@ msgstr ""
" -uS, -uB, -uC, -uM: acceptera/rapportera i enheter om sektorer/block/"
"cylindrar/MB"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [eller --list-types]:visa de knda partitionstyperna"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr " -D [eller --DOS]: fr DOS-kompatibilitet: slsa lite utrymme"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr ""
" -R [eller --re-read]: gr s att krnan lser om partitionstabellen"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N<nummer>: ndra endast partitionen med numret <nummer>"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : skriv inte till hrddisken"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr ""
" -O fil : spara sektorerna som kommer att skrivas ver till "
"fil"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I fil : terstll dessa sektorer igen"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [eller --version]: visa versionsinformation"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [eller --help]: visa detta meddelande"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "farliga flaggor:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr " -g [eller --show-geometry]: visa krnans bild av geometrin"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -4960,117 +4976,117 @@ msgstr ""
" -x [eller --show-extended]: visa ven utkade partitioner i utdata\n"
" eller frvnta handtag fr dem som indata"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
" -L [eller --Linux]: klaga inte p saker som r irrelevanta fr Linux"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [eller --quiet]: undertryck varningsmeddelanden"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " Du kan sidostta den detekterade geometrin genom att anvnda:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr ""
" -C<tal> [eller --cylinders <tal>]:stll in antalet cylindrar att anvnda"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -H<tal> [eller --heads <tal>]:stll in antalet huvuden att anvnda"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr ""
" -S<tal> [eller --sectors <tal>]:stll in antalet sektorer att anvnda"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Du kan stnga av all konsekvenskontroll med:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr " -f [eller --force]: gr vad jag sger ven om det r dumt"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Anvndning:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s enhet\t\t visa aktiva partitioner p enhet\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr "%s enhet n1 n2 ... aktivera partitioner n1 ..., deaktivera resten\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr "%s -An enhet\t aktivera partition n, deaktivera de andra\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "inget kommando?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "totalt: %d block\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "anvndning: sfdisk --print-id enhet partitionsnummer\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "anvndning: sfdisk --change-id enhet partitionsnummer Id\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "anvndning: sfdisk --id enhet partitionsnummer [Id]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "kan endast ange en enhet (utom med -l eller -s)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "kan inte ppna %s fr lsning och skrivning\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "kan inte ppna %s fr lsning\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: OK\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ld cylindrar, %ld huvuden, %ld sektorer/spr\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "kan inte hmta storleken p %s"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "felaktig aktiv byte: 0x%x istllet fr 0x80\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5078,7 +5094,7 @@ msgstr ""
"Frdig\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5088,35 +5104,35 @@ msgstr ""
"DOS huvudstartpost (MBR) kan endast starta en hrddisk med 1 aktiv\n"
"partition.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "partition %s har id %x och r inte dold\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "Felaktigt Id %lx\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Denna hrddisk anvnds fr tillfllet.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "desdigert fel: kan inte hitta %s\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Varning: %s r ingen blockenhet\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Kontrollerar att ingen anvnder hrddisken just nu...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5129,28 +5145,28 @@ msgstr ""
"p denna disk r utvxlade. Anvnd flaggan --no-reread fr att\n"
"undertrycka denna kontroll.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Anvnd flaggan --force fr att undertrycka alla kontroller.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "OK\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Tidigare situation:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "Partition %d finns inte, kan inte ndra den\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Ny situation:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5158,19 +5174,19 @@ msgstr ""
"Jag gillar inte dessa partitioner - ingenting ndrades.\n"
"(Om du verkligen vill gra detta br du anvnda flaggan --force).\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "Jag gillar inte detta - du br nog svara nej\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "r du njd med detta? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Vill du skriva detta till disk? [ynq] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5178,15 +5194,15 @@ msgstr ""
"\n"
"sfdisk: fr tidigt slut p indata\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Avslutar - ingenting ndrades\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Svara med ett av y, n eller q\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5194,7 +5210,7 @@ msgstr ""
"Lyckades skapa den nya partitionstabellen\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5293,43 +5309,43 @@ msgstr "getopt (utkad) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "internt fel, kontakta frfattaren."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "startade frn MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Ruffian BCD-klocka\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "klockporten justerades till 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "hftig LEKSAK!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomisk %s misslyckades fr 1000 iterationer!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Kan inte ppna /dev/port: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "Jag misslyckades med att f tilltelse eftersom jag inte frskte.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s kan inte f I/O-porttillgng: iopl(3)-anropet misslyckades.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Du behver troligtvis root-privilegier.\n"
@@ -5792,36 +5808,37 @@ msgstr ""
"Anvnd flaggan --debug fr att se detaljerna ver vr skning efter en "
"tkomstmetod.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Vntar i slingan p att tiden frn KDGHWCLK ska ndras\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK-ioctl fr att lsa tid misslyckades"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Gjorde time-out under vntan p att tiden skulle ndras.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK-ioctl fr att lsa tid misslyckades i slingan"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() misslyckades med att lsa tid frn %s"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "KDSHWCLK-ioctl misslyckades"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Kan inte ppna /dev/tty1 eller /dev/vc/1"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK-ioctl misslyckades"
@@ -6147,7 +6164,7 @@ msgstr "Lsenordsfel."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Lsenord: "
@@ -6205,7 +6222,7 @@ msgstr "Fingerinformationen ndrades *INTE*. Frsk igen senare.\n"
msgid "Finger information changed.\n"
msgstr "Fingerinformationen ndrades.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "minnesallokering misslyckades"
@@ -6945,7 +6962,7 @@ msgstr "Kan inte kra umount, ger upp med umount."
msgid "Unmounting any remaining filesystems..."
msgstr "Avmonterar alla terstende filsystem..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: Kunde inte avmontera %s: %s\n"
@@ -7597,17 +7614,17 @@ msgstr "Meddelande frn %s@%s (som %s) p %s klockan %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Meddelande frn %s@%s p %s klockan %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "varning: fel vid lsning av %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "varning: kan inte ppna %s: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: kunde inte ppna %s - anvnder %s istllet\n"
@@ -7616,36 +7633,36 @@ msgstr "mount: kunde inte ppna %s - anvnder %s istllet\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr "kan inte skapa lsfilen %s: %s (anvnd flaggan -n fr att sidostta)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr "kan inte lnka lsfilen %s: %s (anvnd flaggan -n fr att sidostta)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr "kan inte ppna lsfilen %s: %s (anvnd flaggan -n fr att sidostta)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Kan inte lsa lsfilen %s: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "kan inte lsa lsfilen %s: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "gjorde time-out"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7654,22 +7671,22 @@ msgstr ""
"Kan inte skapa lnken %s\n"
"Det finns kanske en kvarglmd lsfil?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "kan inte ppna %s (%s) - mtab uppdaterades inte"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "fel vid skrivning av %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "fel vid byte av rttigheter p %s: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "kan inte byta namn p %s till %s: %s\n"
@@ -7730,26 +7747,26 @@ msgstr "mount: kunde inte hitta ngon ledig slingenhet"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Kunde inte lsa i minne, avslutar.\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): lyckades\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: kan inte ta bort enheten %s: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): lyckades\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Denna mount kompilerades utan std fr slingor. Du br kompilera om.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7762,189 +7779,189 @@ msgstr ""
" %s -d slingenhet # ta bort\n"
" %s [ -e kryptering ] [ -o avstnd ] slingenhet fil # konfiguration\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "inte tillrckligt med minne"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Inget std fr slingor fanns tillgngligt vid kompileringen. Du br\n"
"kompilera om.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr "[mntent]: varning: ingen avslutande nyrad p slutet av %s\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: rad %d i %s r felaktig%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; resten av filen ignoreras"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: enligt mtab r %s redan monterat p %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: enligt mtab r %s monterat p %s"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: kan inte ppna %s fr skrivning: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: fel vid skrivning av %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: fel vid byte av rttigheter p %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s ser ut som vxlingsutrymme - monteras inte"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "montering misslyckades"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: endast root kan montera %s p %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: slingenheten angiven tv gnger"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: typen angiven tv gnger"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: hoppar ver konfigurationen av en slingenhet\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: kommer att anvnda slingenheten %s\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: misslyckades konfigurera slingenheten\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: lyckades konfigurera slingenheten\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: kan inte ppna %s: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: argument till -p eller --pass-fd mste vara ett tal"
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: kan inte ppna %s fr instllning av hastighet"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: kan inte stlla in hastighet: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: kan inte grena: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: denna version kompilerades utan std fr typen \"nfs\""
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr ""
"mount: misslyckades med montering av nfs version 4, frsker med 3...\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr "mount: Jag kunde inte avgra filsystemstypen, och ingen angavs"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: du mste ange filsystemstypen"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: montering misslyckades"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: monteringspunkten %s r inte en katalog"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: tkomst nekas"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: mste vara superanvndaren fr att anvnda mount"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s r upptagen"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc r redan monterad"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s r redan monterad eller %s r upptagen"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: monteringspunkten %s finns inte"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: monteringspunkten %s r en symbolisk lnk till ingenstans"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: specialenheten %s finns inte"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7953,12 +7970,12 @@ msgstr ""
"mount: specialenheten %s finns inte\n"
" (ett skvgsprefix r inte en katalog)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s r inte redan monterad, eller felaktig flagga"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -7967,46 +7984,52 @@ msgstr ""
"mount: fel filsystemstyp, felaktig flagga, felaktigt superblock\n"
" p %s, eller fr mnga monterade filsystem"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "monteringstabellen full"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: kan inte lsa superblock"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: oknd enhet"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: filsystemstypen %s stds inte av krnan"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l visa knda filsystemstyper"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: du menade troligtvis %s"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: du menade kanske iso9660?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: du menade kanske iso9660?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr "mount: %s har fel enhetsnummer eller s stds filsystemstypen %s inte"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s r inte en blockenhet, och statustagning misslyckas?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8015,48 +8038,48 @@ msgstr ""
"mount: krnan knner inte igen %s som en blockenhet\n"
" (kanske \"insmod drivrutin\"?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s r ingen blockenhet (frsk kanske med \"-o loop\"?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s r ingen blockenhet"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s r ingen giltig blockenhet"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "blockenhet "
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: kan inte montera %s%s som endast lsbar"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s r skrivskyddad med en explicit \"-w\"-flagga angavs"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s r skrivskyddad, monterar som endast lsbar"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
"mount: ingen typ angavs - jag kommer att anta nfs p grund av kolonet\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: ingen typ angavs - jag kommer att anta smbfs p grund //-prefixet\n"
@@ -8064,22 +8087,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: frlgger \"%s\" till bakgrunden\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: ger upp \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s r redan monterad p %s\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8126,34 +8149,34 @@ msgstr ""
"Andra flaggor: [-nfFrsvw] [-o flaggor] [-p lsenordfd].\n"
"Sg man 8 mount fr mnga fler detaljer.\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: endast root kan gra det"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: ingen %s hittades - skapar den...\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: ingen sdan partition hittades"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: monterar %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "ingenting monterades"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: kan inte hitta %s i %s"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: kan inte hitta %s i %s eller %s"
@@ -8170,30 +8193,30 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: felaktig UUID"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: fel vid gissning av filsystemstypen\n"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: du angav ingen filsystemstyp fr %s\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " Jag kommer att frska med alla typer nmnda i %s eller %s\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " och det verkar som om detta r vxlingsutrymme\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " Jag kommer att frska med typen %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Frsker med %s\n"
@@ -8424,11 +8447,11 @@ msgstr "umount: kunde inte montera om %s som endast lsbar\n"
msgid "%s umounted\n"
msgstr "%s avmonterad\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr "umount: kan inte hitta lista med filsystem att avmontera"
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
@@ -8438,42 +8461,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:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Frsker avmontera %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Kunde inte hitta %s i mtab\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s r inte monterad (enligt mtab)"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, 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:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: montering av %s stmmer inte verens med fstab"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: endast %s kan avmontera %s frn %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: endast root kan gra det"
@@ -8485,7 +8508,7 @@ msgstr "Du mste vara root fr att kunna stlla in Ctrl-Alt-Del-beteendet.\n"
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Anvndning: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8494,7 +8517,7 @@ msgstr ""
"Fil %s, fr trskelvrde %lu, strsta antalet tecken i fifon var %d,\n"
"och den maximala verfringshastigheten i tecken/sekund var %f\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8505,32 +8528,32 @@ msgstr ""
"fifon var %d,\n"
"och den maximala verfringshastigheten i tecken/sekund var %f\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Ogiltigt intervallvrde: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Ogiltigt instllt vrde: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Ogiltigt standardvrde: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Ogiltigt instllt tidsvrde: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Ogiltigt standardtidsvrde: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8539,56 +8562,56 @@ msgstr ""
"Anvndning: %s [-q [-i intervall]] ([-s vrde]|[-S vrde]) ([-t vrde]|[-T "
"vrde]) [-g|-G] fil [fil...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "Kan inte ppna %s: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "Kan inte stlla in %s till trskelvrde %d: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "Kan inte stlla in %s till tidstrskelvrde %d: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "Kan inte f trskelvrde fr %s: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "Kan inte f time-out fr %s: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld aktuell trskel och %ld aktuell time-out\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld standardtrskel och %ld standardtimeout\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "Kan inte stlla in signalhanterare"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "gettimeofday misslyckades"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "Kan inte utlysa CYGETMON p %s: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8596,12 +8619,12 @@ msgstr ""
"%s: %lu avbrott, %lu/%lu tecken; fifo: %lu trskel, %lu time-out, %lu max, %"
"lu nu\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f avbrott/s; %f mott., %f skickat (tecken/s)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8609,7 +8632,7 @@ msgstr ""
"%s: %lu avbrott, %lu tecken; fifo: %lu trskel, %lu time-out, %lu max, %lu "
"nu\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f avbrott/sek; %f mott. (tecken/s)\n"
@@ -9899,6 +9922,9 @@ msgstr "Indataraden r fr lng.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Slut p minne vid vxande av buffert.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: filsystemstypen %s stds inte av krnan"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "BLKGETSIZE-ioctl misslyckades fr %s\n"
diff --git a/po/tr.po b/po/tr.po
index 2d4866253..fe5258cc5 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+0100\n"
"PO-Revision-Date: 2003-08-03 13:18+0300\n"
"Last-Translator: Nilgün Belma Bugüner <nilgun@superonline.com>\n"
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
@@ -115,7 +115,7 @@ msgstr "%s: %s üzerinde G/Ç hatası\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr "RO RA Sboyu Bboyu BaşlSkt Boyut Aygıt\n"
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "kullanımı:\n"
@@ -1262,11 +1262,11 @@ msgstr " %s [ -c | -y | -n | -d ] aygıt\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] aygıt\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Kullanışsız"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Boş Alan"
@@ -1407,8 +1407,8 @@ msgstr "Kuraldışı tuş"
msgid "Press a key to continue"
msgstr "Devam etmek için bir tuşa basınız"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Birincil"
@@ -1416,8 +1416,8 @@ msgstr "Birincil"
msgid "Create a new primary partition"
msgstr "Yeni birincil disk bölümü oluşturur"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Mantıksal"
@@ -1425,7 +1425,7 @@ msgstr "Mantıksal"
msgid "Create a new logical partition"
msgstr "Yeni mantıksal disk bölümü oluşturur"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Vazgeç"
@@ -1461,162 +1461,178 @@ msgstr "Disk bölümnü boş alanın sonuna ekler"
msgid "No room to create the extended partition"
msgstr "Ek disk bölümünü oluşturacak yer yok"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "disk bölümleme tablosu yok.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr ""
"Ya disk bölümleme tablosu yok ya da disk bölümleme tablosunda bilinmeyen "
"imza var"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Disk bölümleme tablosunu yazar"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "disk bölümleme tablosu yok.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Temiz bir tablo ile başlamak ister misiniz [e/H] ?"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Diskte bulunan silindir sayısından büyük bir sayı belirttiniz"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "Disk açılamıyor"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "Açılan disk salt-okunur - yazma izniniz yok"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Diskin toplam alanı hesaplanamıyor"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Birincil disk bölümü bozuk"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Mantıksal disk bölümü bozuk"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Uyarı!! Bu işlem disk üzerindeki veriyi yokedebilir!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr "Disk bölümleme tablosu yazılacak, emin misiniz? (evet ya da hayır): "
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "hayır"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "Disk bölümleme tablosu diske yazılmadı"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "evet"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Lütfen ya `evet´ ya da `hayır´ yazınız"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Disk bölümleme tablosu diske yazılıyor..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Disk bölümleme tablosu diske yazıldı"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Bölümleme tablosu yazıldı ama tablo yeniden okunamadı. Sistemi yeniden "
"başlatın."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Önyükleme için imlenmiş hiç birincil disk bölümü yok. DOS MBR bunu "
"başlatamayabilir."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Önyükleme için imlenmiş çok sayıda birincil disk bölümü var. DOS MBR bunu "
"başlatamayabilir."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Dosya ismini girin ya da ENTER tuşuna basın: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "'%s' dosyası açılamıyor"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Sabit Disk: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Sektör 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Sektör %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Yok "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Bir/Man"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Birincil "
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Mantıksal "
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Bilinmeyen"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Açılış"
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
msgid "None"
msgstr "Hiçbiri"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "%s için Disk Bölümleme Tablosu\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
msgid " First Last\n"
msgstr " Bölüm İlk Son Sektör Dosya\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1624,7 +1640,7 @@ msgstr ""
" # Türü Sektör Sektör Başl Sayısı Sistemi Türü "
"Flama\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1633,470 +1649,470 @@ msgstr ""
"------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " --Başlangıç--- ----Bitiş----- Başlangıç Sektör\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Flama Kafa Sekt Sld Kiml Kafa Sekt Sld Sektörü Sayısı\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- --------- ---------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "Ham"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Tablo temel veri biçemi olarak yazılır"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Sektör"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Tabloyu sektörlere dağılımına göre yazar"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Tablo"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Disk bölümleme tablosunu yazar"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Tablo yazılamıyor"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "cfdisk Yardım Ekranı"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr ""
"Sabit diskinizdeki disk bölümlerini oluşturabilmenizi, silebilmenizi ve"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr ""
"değiştirebilmenizi sağlayan etkileşimli bir disk bölümleme uygulamasıdır."
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr " "
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Telif Hakkı (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr " Komut Anlamı"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr " ----- ------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b Seçilen disk bölümünün açılış flamasını kaldırır/indirir"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Seçilen disk bölümünü siler"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Silindir, kafa, sektör/İz parametrelerini değiştirir"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " UYARI: Bu seçenek sadece ne yaptığını iyi bilen kişilerce"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " kullanılabilir."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Bu yardım ekranını gösterir"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Seçilen disk bölümünü kalan boş yere sığdırır"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Bilgi: Disk bölümünü DOS, OS/2 ve benzeri sistemlerle"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " uyumsuzluk oluşturabilir."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Boş alanda yeni bir disk bölümü oluşturur"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p Disk bölümleme tablosunu ekrana ya da bir dosyaya yazar"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr ""
" Disk bölümleme tablosunu farklı biçemlerde elde edebilirsiniz."
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " Bu biçemler:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - Temel veri (verinin diske yazılan biçemi)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Disk bölümlerinin sektörlere dağılımını gösterir"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Geleneksel disk bölümleme tablosu"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr ""
" q Disk bölümleme tablosu diskteki yerine kaydedilmeden çıkılır"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Dosya sistemi türünü değiştirir"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Disk bölümü boyunun birimini değiştirir"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " MB, sektör, silindir birimleri sırayla yer değiştirir"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr " W Disk bölümleme tablosunu diskteki yerine yazar. (Büyük W)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Diskteki veriyi yanlışlıkla kaybetmemek için "
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
" 'evet' ya da 'hayır' yazmanız istenerek veriyi diske yazdırıp,"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " yazdırmayacağınıza kesin karar verebilirsiniz"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Yukarı Ok Kürsörü önceki disk bölümüne kaydırır"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Aşağı Ok Kürsörü sonraki disk bölümüne kaydırır"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Ekranı tazeler"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Bu yardım ekranını gösterir"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Bilgi: Kaydet (W) komutu dışında tüm komutları büyük ya da küçük harf"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "olarak kullanabilirsiniz."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Silindir"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Silindir geometrisini değiştirir"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Kafa"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Kafa geometrisini değiştirir"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Sektör geometrisini değiştirir"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Tamam"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Geometri değişikliği yapıldı"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Silindir sayısını verin: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Silindir sayısı kuraldışı"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Kafa sayısını verin: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Kafa sayısı kuraldışı"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "sektör/iz sayısını verin: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "sektör sayısı kuraldışı"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Dosya sistemi türünü verin: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Dosya sistemi türü boş olarak değiştirilemez"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Dosya sistemi türü ek olarak değiştirilemez"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Ne?(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Bir/Man"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Bilinmeyen (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Sabit Disk: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Boyut: %lld bayt, %lld MB"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Boyut: %lld bayt, %lld.%lld GB"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Kafa: %d Sektör/İz: %d Silindir: %lld "
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "İsim"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Flama"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Bölüm Türü"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "DS Türü"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Etiket]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
msgid " Sectors"
msgstr " Sektör "
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
msgid " Cylinders"
msgstr " Silindir"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
msgid " Size (MB)"
msgstr " Boy (MB) "
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
msgid " Size (GB)"
msgstr " Boy (GB) "
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Açılış"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Seçilen disk bölümünde Açılış flamasını kaldırır/indirir"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Sil"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Seçilen disk bölümünü kaldırır"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometri"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Disk geometrisini değiştirir (uzmanlar için)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Yardım"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Yardım ekranını gösterir"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Sığdır"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Seçilen disk bölümünü kalan yere göre ayarlar (uzmanlar için)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Yeni"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Boş alanda yeni bir disk bölümü oluşturur"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Yaz"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Disk bölümleme tablosunu ekrana ya da bir dosyaya yazar"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Çık"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Disk bölümleme tablosunu diske kaydetmeden çıkar"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Türü"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Dosya sistemi türünü değiştirir (DOS, Linux, OS/2,..,vs)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Birim"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Gösterilecek boy birimini değiştirir (MB, sekt, sld)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Kaydet"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr ""
"Disk bölümleme tablosunu diske kaydeder (bu işlem verilerin kaybına sebep "
"olur)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Bu disk bölümüne açılış kaydı yapılamaz"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Bir boş disk bölümü silinemez"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "Bu disk bölümü sığdırılamıyor"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Bu disk bölümü kullanışsız"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Bu disk bölümü zaten kullanımda"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Bir boş disk bölümünün türü değiştirilemez"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Başka disk bölümü yok"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Kuraldışı komut"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Telif Hakkı © 1994-2002 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2377,12 +2393,12 @@ msgstr "Belirtilmeli"
msgid "heads"
msgstr "kafa"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "sektör"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "silindir"
@@ -2791,12 +2807,12 @@ msgstr ""
msgid "%lld unallocated sectors\n"
msgstr "%d sektör kullanılmadı\n"
-#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2951,7 +2967,7 @@ msgstr "%s diski geçerli bir disk bölümleme tablosu içermiyor\n"
msgid "Cannot open %s\n"
msgstr "%s açılamıyor\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "%s açılamıyor\n"
@@ -3617,21 +3633,21 @@ 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:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Tüm disk girdisi otomatik olarak üretilmeye çalışılıyor.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
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:646
+#: fdisk/fdisksgilabel.c:644
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:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3639,18 +3655,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:671
+#: fdisk/fdisksgilabel.c:669
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:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " Son %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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 +3678,7 @@ msgstr ""
"diskte bulunan tüm bilgiyi bir daha geri alamamak üzere\n"
"kaybedeceksiniz.\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3673,12 +3689,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:741
+#: fdisk/fdisksgilabel.c:739
#, 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:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "Kimlik=%02x\tBaşlangıç=%d\tBoy=%d\n"
@@ -4280,91 +4296,91 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "%s üzerinde erişim hatası - %lu ya erişilemiyor\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "erişim hatası: 0x%08x%08x istendi, 0x%08x%08x alındı\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "bellek yetersiz - bırakılıyor\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "%s üzerinde okuma hatası - %lu sektörü okunamıyor\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "HATA: %lu sektörü msdos imzası taşımıyor\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "%s üzerinde yazma hatası - %lu sektörüne yazılamıyor\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "disk bölümü sektör kayıt dosyası (%s) açılamıyor\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "%s üzerinde yazma hatası\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "disk bölümü tekrar oluşturma dosyası (%s) durum bilgileri alınamıyor\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
"disk bölümü tekrar oluşturma dosyasının uzunluğu hatalı - tekrar "
"oluşturulamıyor\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "bellek yetersiz?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "disk bölümü tekrar oluşturma dosyası (%s) açılamıyor\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "%s okunurken hata\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "%s aygıtı yazılmak üzere açılamıyor\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "%lu sektörünü %s üzerine yazmada hata\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Disk %s: geometri alınamıyor\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Disk %s: boyu alınamıyor\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4375,22 +4391,22 @@ msgstr ""
"gibi görünüyor. fdisk kullanmak anlamlı olmayacak.\n"
"[Bunu mutlaka yapmak istiyorsanız --force seçeneğini kullanabilirsiniz]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Uyarı: HDIO_GETGEO %lu kafa bildiriyor\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Uyarı: HDIO_GETGEO %lu sektör bildiriyor\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Uyarı: BLKGETSIZE/HDIO_GETGEO %lu silindir bildiriyor\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4400,7 +4416,7 @@ msgstr ""
"sayısına benzemiyor. Bu chs adresleme kullanılan yazılımlarla sorun "
"çıkarır.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4409,7 +4425,7 @@ msgstr ""
"\n"
"Disk %s: %lu silindir, %lu kafa, %lu sektör/iz\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
@@ -4417,7 +4433,7 @@ msgstr ""
"%s (%s disk bölümündeki) yanlış kafa sayısı içeriyor: %lu (0-%lu arasında "
"olmalıydı)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4426,7 +4442,7 @@ msgstr ""
"%s (%s disk bölümündeki) yanlış sektör sayısı içeriyor: %lu (1-%lu arasında "
"olmalıydı)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4435,7 +4451,7 @@ msgstr ""
"%s (%s disk bölümündeki) yanlış silindir sayısı içeriyor: %lu (0-%lu "
"arasında olmalıydı)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4443,11 +4459,11 @@ msgstr ""
"Kiml İsim\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Disk bölümleme tablosu yeniden okunuyor ...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4455,31 +4471,31 @@ msgstr ""
"Disk bölümleme tablosunun yeniden okunması başarılamadı\n"
"mkfs kullanabilmek için sistemi yeniden başlatmalısınız.\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "%s kapatılırken hata\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: böyle bir disk bölümü yok\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "biçem bilinmiyor - sektör sayısı kullanılıyor\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# %s disk bölümleme tablosu\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "desteklenmeyen biçem - %s kullanılıyor\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4488,13 +4504,13 @@ msgstr ""
"birimler = %lu baytlık silindir, 1024 baytlık blok, %d'den başlayarak\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr ""
" silindir blok\n"
" Aygıt Önykl Balangıç Bitiş sayısı sayısı\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4503,13 +4519,13 @@ msgstr ""
"birimler = 512 baytlık sektör, %d'den başlayarak\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr ""
" Aygıt Önyükl Başlangıç Bitiş sektör Kiml Sistem\n"
" sayısı\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4518,13 +4534,13 @@ msgstr ""
"birim = 1024 baytlık blok, %d'den başlayarak\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr ""
" Aygıt Önyükl Başlangıç Bitiş blok Kiml Sistem\n"
" sayısı\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4533,35 +4549,35 @@ msgstr ""
"birimler = 1048576 baytlık mebibayt, 1024 baytlık blok, %d'den başlayarak\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr ""
" Aygıt Önyük Başl Bitiş MiB blok Kiml Sistem\n"
" sayısı\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"\t\tbaşlangıç: (sld,kafa,sekt) (%ld,%ld,%ld) gerekirken (%ld,%ld,%ld) "
"bulundu\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"\t\tbitiş: (sld,kafa,sekt) (%ld,%ld,%ld) gerekirken (%ld,%ld,%ld) bulundu\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr "disk bölümü disk sonundan sonra, %ld. silindirde bitiyor\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Disk bölümü bulunamadı\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4572,51 +4588,51 @@ msgstr ""
"(%ld/%ld/%ld yerine) yapılmış görünüyor.\n"
"Bu listeleme bu geometriyle kabul ediliyor.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "disk bölümleme tablosu yok.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "tuhaf, sadece %d disk bölümü atanmış.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr "Uyarı: %s disk bölümü sıfır uzunlukta ama boş olarak imli değil\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Uyarı: %s disk bölümü sıfır uzunlukta ve önyüklenebilir\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "Uyarı: %s disk bölümü sıfır uzunlukta ve başlangıcı 0 da değil\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Uyarı: %s disk bölümü "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "%s disk bölümünde değil\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Uyarı: %s disk bölümü "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "ve %s birbirine girmiş\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4625,17 +4641,17 @@ msgstr ""
"Uyarı: %s disk bölümleme tablosunun bir kısmını içerdiğinden (sektör %lu)\n"
"dolduğunda onu bozacak\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Uyarı: %s disk bölümü 0. sektörde başlıyor\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Uyarı: %s disk bölümü disk sonunu aşıyor\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4643,17 +4659,17 @@ msgstr ""
"Birincil disk bölümlerinden en çok biri ek disk bölümünde bulunabilir.\n"
" (Şüphesiz Linux altında bu bir sorun değildir)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Uyarı: %s disk bölümü bir silindir sınırından başlamıyor\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Uyarı: %s disk bölümü bir silindir sınırında bitmiyor\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4661,7 +4677,7 @@ msgstr ""
"Uyarı: birden fazla disk bölümü önyükleme flaması içeriyor.\n"
"Bu LILO için sorun yaratmaz ama DOS MBR bu diski çalıştıramaz.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4669,7 +4685,7 @@ msgstr ""
"Uyarı: birincil disk bölümlerinden sadece bir tanesi önyüklenebilir,\n"
"LILO `bootable' flamasına aldırmaz.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4677,11 +4693,11 @@ msgstr ""
"Uyarı hiçbir disk bölümü önyükleme bayrağı içermiyor\n"
"Bu LILO için sorun oluşturmaz ama DOS MBR bu diski çalıştıramaz.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
msgid "start"
msgstr "başlangıç"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
@@ -4689,23 +4705,23 @@ msgstr ""
"%s: başlangıç: (sld,kafa,sekt) sırasıyla (%ld,%ld,%ld) olmalıydı\n"
"(%ld,%ld,%ld) bulundu\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
msgid "end"
msgstr "bitiş"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"%s: bitiş: (sld,kafa,sekt) sırasıyla (%ld,%ld,%ld) olmalıydı\n"
"(%ld,%ld,%ld) bulundu\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr "%s diskin sonunu aşarak %ld. silindirde bitiyor\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
@@ -4714,7 +4730,7 @@ msgstr ""
"Uyarı: ek disk bölümünün başlangıcı %ld den %ld ye kaydırıldı\n"
"(Sadece liste uyumluluğu için. İçeriği değişmiyor.)\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4722,132 +4738,132 @@ msgstr ""
"Uyarı: ek disk bölümü bir silindir sınırında başlamıyor.\n"
"DOS ve Linux içerikleri farklı yorumlayacaktır.\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "disk bölümü sayısı çok fazla - Bu sonuncusu (%d) disk bölümü\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "ağacında yok sayılsın mı?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "Disk yöneticisi saptadı - bulunan DM6 imzası\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "ile çalışılamıyor - bırakılıyor\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "tuhaf..., sıfır uzunlukta bir ek disk bölümü?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "tuhaf..., sıfır uzunlukta bir BSD disk bölümü?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: disk bölümü tanınmıyor\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "-n flaması verilmiş: Hiçbir şey değişmedi\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Eski sektörlere yazmada başarısızlık - çıkılıyor\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "%s disk bölümüne yazarken hata oluştu\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "uzun ve eksik girdi satırı - çıkılıyor\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "girdi hatası: %s alanından sonra bir `=' gerekli\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "girdi hatası: %c karakteri gereksiz (%s alanından sonra)\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "anlaşılmayan girdi: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "sayı çok büyük\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "sayıdan sonrasında süprüntü\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "disk bölümü betimleyici için yer yok\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "kuşatan ek disk bölümü kurgulanamıyor\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "girdi alanları çok fazla\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "Daha fazla yer yok\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Kuraldışı tür\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr "Uyarı: belirtilen (%lu) uzunluk, izin verilen (%lu) uzunluktan fazla\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Uyarı: boş disk bölümü\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Uyarı: disk bölümü başlangıcı hatalı (en erken %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "anlaşılmayan önyükleme flaması; - ya da * seçiniz\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "kısmi sld,kafa,sekt özellikleri?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Ek disk bölümü gereken yerde değil\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "girdi hatalı\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "çok fazla disk bölümü var\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4860,46 +4876,46 @@ msgstr ""
"Genellikle <başlangıç> ve <uzunluk> değerleri (ve tabii ki <türü>)\n"
"belirtmek yeterlidir.\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "sürüm"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Kullanımı: %s [seçenekler] aygıt ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "aygıt: /dev/hda veya /dev/sda gibi"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "kullanışlı seçenekler:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s --show-size disk bölümü uzunlukları listelenir"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr ""
" -c --id disk bölümü kimliği değiştirilir ya da gösterilir"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l --list aygıtların disk bölümlerini listeler"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
" -d --dump dökümler, ama sonraki girdiler için uygun biçemde"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr " -i --increment silindir sayısı v.s. 0 yerine 1 den itibaren"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
@@ -4907,53 +4923,53 @@ msgstr ""
" -uS, -uB, -uC, -uM sektör/blok/silindir/MB birimleriyle değer alır/"
"gösterir"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T --list-types bilinen disk bölümü türlerini listeler"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
" -D --DOS DOS-uyumluluğu için: bir disk bölümünü çoraklaştırır"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr " -R --re-read çekirdek yeniden okuma tablosu yapar"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# sadece # numaralı disk alanı değiştirilir"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n gerçekte diske yazılmaz"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr " -O dosya üstüne yazarak sektörleri dosyaya kaydeder"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I dosya sektörleri bu dosyadan tekrar oluşturur"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v --version sürüm bilgilerini gösterir"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? --help bu yardım iletisini gösterir ve çıkar"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "tehlikeli seçenekler:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr " -g --show-geometry çekirdeğin geometri bilgisini gösterir"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -4961,119 +4977,119 @@ msgstr ""
" -x --show-extended ek disk bölümlerini gösterir ve\n"
" betimleyicileri için girdi bekler"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr ""
" -L --Linux Linux ile alakasız şeyler hakkında hata üretmez"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q --quiet uyarıları engeller"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr "Saptanan geometriyi aşmak için seçenekler:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr " -C# --cylinders # kullanılacak silindir sayısı belirtilir"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -H# --heads # kulanılacak kafa sayısı belirtilir"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr " -S# --sectors # kullanılacak sektör sayısı belirtilir"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Kararlılık denetimlerini etkisizleştirme seçenekleri:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr " -f --force yapılacak işlem hatalı da olsa yapılır"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Kullanımı:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s aygıt\t\t aygıt üstündeki etkin disk bölümlerini gösterir\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr ""
"%s aygıt n1 n2 ... n1, n2 ile belirtilen disk bölümleri etkinleştirilir,\n"
" diğerleri etkisizleştirilir\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr ""
"%s -An aygıt\t n. disk bölümünü etkinleştirilir, diğerlerini "
"etkisizleştirilir\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "Komut?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "toplam: %d blok\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "Kullanımı: sfdisk --print-id aygıt disk-bölümü-numarası\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "kullanımı: sfdisk --change-id aygıt disk-bölümü-numarası kimlik\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "kullanımı: sfdisk --id aygıt disk-bölümü-numarası [kimlik]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "sadece bir aygıt belirtilebilir (-l ya da -s ile gerekir)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "%s oku-yaz açılamıyor\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "%s okumak için açılamıyor\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: TAMAM\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ld silindir, %ld kafa, %ld sektör/iz\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "%s uzunluğu alınamıyor"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "hatalı etkin bayt: 0x80 yerine 0x%x\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5081,7 +5097,7 @@ msgstr ""
"Bitti\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5090,35 +5106,35 @@ msgstr ""
"%d etkin birincil disk bölümü var. Bu LILO için sorun olmamakla beraber\n"
"DOS MBR sadece 1 etkin disk bölümü önyüklemesi yapabilir.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "%s disk bölümünün kimliği %x ve gizli değil\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "Kimlik %lx hatalı\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Bu disk şu an kullanılıyor.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Ölümcül hata: %s bulunamıyor\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Uyarı: %s bir blok aygıtı değil\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Diskin kullanımda olup olmadığı denetleniyor...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5131,28 +5147,28 @@ msgstr ""
"alanlarını swapoff ile kapatın. --no-reread bayrağını kullanarak\n"
"yeniden okuma işlemini engelleyin.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Tüm denetimleri kaldırmak için --force seçeneğini kullanın.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "TAMAM\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Eski durum:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "%d. disk bölümü olmadığından geçilemiyor\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Yeni durum:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5160,19 +5176,19 @@ msgstr ""
"Bu disk bölümlerinde hiç bir değişiklik yapılmadı.\n"
"(Bunu gerçekten istiyorsanız --force seçeneğini kullanın.)\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "Uygulanamıyor - siz de Hayır derdiniz, büyük ihtimalle\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Bundan memnun musunuz? [ehs] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Bunu diske yazmak ister misiniz? [ehs] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5180,15 +5196,15 @@ msgstr ""
"\n"
"sfdisk: girdi sonu eksik\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Çıkılıyor - Değişiklik yok\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Lütfen e, h, s harflerinden biri ile yanıtlayın\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5196,7 +5212,7 @@ msgstr ""
"Yeni disk bölümleme tablosu başarıyla yazıldı\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5298,43 +5314,43 @@ msgstr "getopt (gelişmiş) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "iç hata, yazara bildirin."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "MILO'dan açıldı\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Ruffian BCD clock\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "saatportu 0x%x'e ayarlandı\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "funky TimeOfYear!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: 1000 yineleme için atomik %s başarısız!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "/dev/port açılamıyor: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "Denenmediğinden erişim izinleri alınamadı.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s G/Ç portu erişimi alamıyor: iopl(3) çağrısı başarısız.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Size root yetkileri gerekli.\n"
@@ -5795,36 +5811,37 @@ msgstr ""
"Bir erişim yöntemi için arama ayrıntılarını görmek için --debug seçeneğini "
"kullanın.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "KDGHWCLK zaman değiştirilmek üzere çevrim içinde bekleniyor.\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK ioctl zamanı okumada başarısız"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Zamanı değiştirmek için zamanaşımı bekleniyor.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK ioctl çevrim içinde zamanı okumada başarısız"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() %s den zamanı okuyamadı"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "ioctl KDSHWCLK başarısız"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "/dev/tty1 veya /dev/vc/1 açılamıyor"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK ioctl başarısız"
@@ -6153,7 +6170,7 @@ msgstr "Parola hatası."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Parola: "
@@ -6211,7 +6228,7 @@ msgstr "Kullanıcı bilgileri değiştirilemedi. Daha sonra tekrar deneyin.\n"
msgid "Finger information changed.\n"
msgstr "Kullanıcı bilgileri değiştirildi.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "bellek ayrılamadı"
@@ -6951,7 +6968,7 @@ msgstr "umount çalıştırılamıyor, umount'dan vazgeçiliyor."
msgid "Unmounting any remaining filesystems..."
msgstr "Kalan dosya istemleri ayrılıyor..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: %s ayrılamadı: %s\n"
@@ -7593,17 +7610,17 @@ msgstr "%s@%s den ileti var (%s olarak, %s üzerinden, şu an %s) ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "%s@%s den ileti var (%s üzerinden, şu an %s) ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "uyarı: %s okunurken hata: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "uyarı: %s açılamıyor: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: %s açılamadı - yerine %s kullanılıyor\n"
@@ -7612,39 +7629,39 @@ msgstr "mount: %s açılamadı - yerine %s kullanılıyor\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"kilit dosyası %s oluşturulamıyor: %s (zorlamak için -n seçeneğini kullanın)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"%s kilit dosyası için bağ oluşturulamıyor: %s (zorlamak için -n seçeneğini "
"kullanın)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr "%s kilit dosyası açılamıyor: %s (zorlamak için -n seçeneğini kullanın)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "%s kilit dosyası kilitlenemiyor: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "%s kilit dosyası kilitlenemiyor: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "zaman aşımı"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7653,22 +7670,22 @@ msgstr ""
"%s bağı oluşturulamıyor\n"
"Kalmış bir kilit dosyası olabilir mi?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "%s açılamıyor (%s) - mtab güncel değil"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "%s yazılırken hata: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "%s için kip değiştirilirken hata: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "%s %s olarak değiştirilemiyor: %s\n"
@@ -7729,26 +7746,26 @@ msgstr "mount: hiç serbest loop aygıtı yok"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Bellek içinde kilitlenemedi, çıkılıyor.\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): başarılı\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: %s aygıtı silinemiyor: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): başarılı\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Bu mount loop desteği olmaksızın derlenmiş. Lütfen yeniden derleyin.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7761,186 +7778,186 @@ msgstr ""
" %s -d loop_aygıtı # silme\n"
" %s [ -e şifreleme ] [ -o göreliKonum ] loop_aygıtı dosya # ayarlama\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "yeterli bellek yok"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr "Derleme sırasında loop desteği verilmemiş. Lütfen yeniden derleyin.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr "[mntent]: uyarı: %s dosyasının sonunda son bir satırsonu gerekli\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: %d satırı %s dosyasında hatalı%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; dosyanın kalanı yoksayıldı"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: mtab'a göre, %s zaten %s üzerinde bağlı"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: mtab'a göre, %s %s üzerinde bağlı"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: %s yazmak için açılamıyor: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: %s yazılırken hata: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: %s kipi değiştirilirken hata: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s takas alanı gibi görünüyor - bağlanmadı"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "mount başarısız"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: %s %s üzerinde sadece root tarafından bağlanabilir"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: loop aygıtı iki kere belirtilmiş"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: türü iki defa belirtilmiş"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: loop aygıtı ayarları atlanıyor\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: %s loop aygıtının kullanımına gidiliyor\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: loop aygıtı ayarları yapılamadı\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: loop aygıtı ayarları tamamlandı\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: %s açılamıyor: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: -p ve --pass-fd seçeneklerinin argümanı bir sayı olmalıdır"
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: hızı ayarlamak için %s açılamıyor"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: hız ayarlanamıyor: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: ast süreç oluşturulamıyor: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: bu sürüm `nfs' türü için destek olmaksızın derlenmiş"
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: nfs mount sürüm 4 ile başarısız, 3 deneniyor...\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr "mount: Dosya sistemi türü saptanamadı ve belirtilmemiş"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: dosya sistemi türünü belirtmelisiniz"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: bağlanamadı"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: bağlama noktası %s bir dizin değil"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: erişim engellendi"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: root tarafından kullanılmalı"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s meşgul"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc zaten bağlı"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: ya %s zaten bağlı ya da %s meşgul"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: bağlama noktası %s yok"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: bağlama noktası %s hiçbir yere sembolik bağ sağlamıyor"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: özel aygıt %s yok"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7949,12 +7966,12 @@ msgstr ""
"mount: özel aygıt %s yok\n"
" (dosya yolu öneki bir dizin değil)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s zaten bağlı değil, ya da seçenek yanlış"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -7963,35 +7980,41 @@ msgstr ""
"mount: dosya sistemi türü yanlış, seçenek yanlış, %s üzerinde superblok\n"
" hatalı ya da çok sayıda bağlı dosya sistemi olabilir"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "bağ tablosu dolu"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: superblok okunamıyor"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: aygıt bilinmiyor"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: dosya sistemi türü %s çekirdek tarafından desteklenmiyor"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l bilinen dosya sistemi türlerini listeler"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: herhalde %s kastettiniz"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: iso9660 kastetmiş olabilir misiniz?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: iso9660 kastetmiş olabilir misiniz?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -7999,14 +8022,14 @@ msgstr ""
"desteklenmiyor"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr ""
"mount: %s bir blok aygıtı olmayabilir mi ve durum bilgileri alınamayabilir "
"mi?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8015,48 +8038,48 @@ msgstr ""
"mount: çekirdek %s aygıtını bir blok aygıtı olarak tanımıyor\n"
" (`insmod sürücü' denenebilir?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s bir blok aygıtı değil ( `-o loop' denenebilir mi?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s bir blok aygıtı değil"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s geçerli bir blok aygıtı değil"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "blok aygıtı "
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: %s%s salt-okunur bağlanamıyor"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr ""
"mount: %s%s yazma korumalı olduğu halde alenen `-w' seçeneği belirtilmiş"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s yazma korumalı, salt-okunur olarak bağlanıyor"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr "mount: tür belirtilmemiş - ':' içerdiğinden nfs varsayılıyor\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: tür belirtilmemiş - '//' öneki içerdiğinden smbfs varsayılıyor\n"
@@ -8064,22 +8087,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: \"%s\" artalana alınıyor\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: \"%s\" bırakılıyor\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s zaten %s üzerinde bağlı\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8130,34 +8153,34 @@ msgstr ""
"Çeviri hatalarını <gnu-tr-u12a@lists.sourceforge.net> adresine bildiriniz.\n"
"Daha fazla bilgi edinmek için 'man 8 mount' yazabilirsiniz.\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: bunu sadece root yapabilir"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: %s yok - oluşturuluyor...\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: böyle bir disk bölümü yok"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: %s bağlanıyor\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "hiçbir şey bağlanmadı"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: %s %s içinde bulunamıyor"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: %s %s ya da %s içinde bulunamıyor"
@@ -8172,30 +8195,30 @@ msgstr "mount: %s açılamadı, UUID ve ETİKET dönüşümü yapılmış olmaya
msgid "mount: bad UUID"
msgstr "mount: UUID hatalı"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: dosya sistemi türü belirlenirken hata\n"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: %s için bir dosya sistemi türü belirtilmemiş\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " %s ya da %s içindeki anılan tüm türler denenecek\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " ve bu takas alanı gibi görünüyor\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " %s türü denenecek\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "%s deneniyor\n"
@@ -8432,11 +8455,11 @@ msgstr "umount: %s salt okunur olarak yeniden bağlanamıyor\n"
msgid "%s umounted\n"
msgstr "%s sistemden ayrıldı\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr "umount: ayrılacak dosya sistemlerinin listesi bulunamıyor"
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
@@ -8461,42 +8484,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:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "%s sistemden ayrılmaya çalışılıyor\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "mtab içinde %s bulunamadı\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, 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:565
+#: mount/umount.c:538
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: %s defalarca bağlanmış görünüyor"
-#: mount/umount.c:578
+#: mount/umount.c:551
#, 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:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s bağı fstab ile çelişiyor"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, fuzzy, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: sadece root %s aygıtını %s dizininden ayırabilir"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: bu sadece root tarafından yapılabilir"
@@ -8509,7 +8532,7 @@ msgstr ""
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Kullanımı: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8518,7 +8541,7 @@ msgstr ""
"Dosya %s, eşik değeri %lu, fifo'daki en fazla karakter sayısı %d ve\n"
"karakter/saniye cinsinden en yüksek aktarım hızı %f idi\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8529,32 +8552,32 @@ msgstr ""
"fifo'daki en fazla karakter sayısı %d ve\n"
"karakter/saniye cinsinden en yüksek aktarım hızı %f idi\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Aralık değeri geçersiz: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Ayar değeri geçersiz: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Öntanımlı değer geçersiz: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Zaman ayar değeri geçersiz: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Öntanımlı zaman değeri geçersiz: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8563,56 +8586,56 @@ msgstr ""
"Kullanımı: %s [-q [-i aralık]] ([-s değer]|[-S değer]) ([-t değer]|[-T "
"değer]) [-g|-G] dosya [dosya...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "%s açılamıyor: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "%s %d eşik değerine ayarlanamıyor: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "%s %d zaman eşik değerine ayarlanamıyor: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "%s için eşik değeri alınamıyor: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "%s için zaman aşımı değeri alınamıyor: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld eşik ve %ld zaman aşımı mevcut\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld eşik ve %ld zaman aşımı öntanımlı\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "sinyal yakalayıcı ayarlanamıyor"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "gettimeofday başarısız"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "%s üzerinde CYGETMON uygulanamıyor: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8620,12 +8643,12 @@ msgstr ""
"%s: %lu kesme, %lu/%lu karkt; fifo: %lu eşik, %lu zam.aş, ençok %lu, şuan %"
"lu\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f kesme/s; %f kayıt, %f gönderi (karkt/s)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8633,7 +8656,7 @@ msgstr ""
"%s: %lu kesme, %lu karakter; fifo: eşik %lu, zaman aşımı %lu, en fazla %lu, "
"şimdiki %lu\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f kesme/sec; %f kayıt (karkt/s)\n"
@@ -9923,6 +9946,9 @@ msgstr "Girdi satırı çok uzun.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Tampon büyütülürken bellek yetmedi.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: dosya sistemi türü %s çekirdek tarafından desteklenmiyor"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "BLKGETSIZE ioctl %s için başarısız\n"
diff --git a/po/uk.po b/po/uk.po
index 323949593..373c841ac 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-09-07 03:05+0200\n"
+"POT-Creation-Date: 2004-11-04 20:48+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"
@@ -111,7 +111,7 @@ msgstr "%s: помилка ioctl для %s\n"
msgid "RO RA SSZ BSZ StartSec Size Device\n"
msgstr "Чт ПоЧт РзмС РзмБл ПочСект Розмір Пристрій\n"
-#: disk-utils/elvtune.c:46 disk-utils/setfdprm.c:100
+#: disk-utils/elvtune.c:50 disk-utils/setfdprm.c:100
msgid "usage:\n"
msgstr "Використання:\n"
@@ -1255,11 +1255,11 @@ msgstr " %s [ -c | -y | -n | -d ] пристрій\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] пристрій\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Не використано"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Вільний простір"
@@ -1403,8 +1403,8 @@ msgstr "Неправильний ключ"
msgid "Press a key to continue"
msgstr "Натисніть будь-яку клавішу для продовження"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2490
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2503
+#: fdisk/cfdisk.c:2505
msgid "Primary"
msgstr "Первинний"
@@ -1412,8 +1412,8 @@ msgstr "Первинний"
msgid "Create a new primary partition"
msgstr "Створити новий розділ"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1958 fdisk/cfdisk.c:2489
-#: fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1971 fdisk/cfdisk.c:2502
+#: fdisk/cfdisk.c:2505
msgid "Logical"
msgstr "Логічний"
@@ -1421,7 +1421,7 @@ msgstr "Логічний"
msgid "Create a new logical partition"
msgstr "Створити новий логічний пристрій"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2176
msgid "Cancel"
msgstr "Відмінити"
@@ -1457,168 +1457,184 @@ msgstr "Додати розділ наприкінці вільного прос
msgid "No room to create the extended partition"
msgstr "Недостатньо простору для створення розширеного розділу"
-#: fdisk/cfdisk.c:1503
-msgid "No partition table or unknown signature on partition table"
+#: fdisk/cfdisk.c:1502
+#, fuzzy
+msgid "No partition table.\n"
+msgstr "відсутня таблиця розділів.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Немає таблиці розділів або невідома сигнатура таблиці розділів"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Просто вивести таблицю розділів"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "відсутня таблиця розділів.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Бажаєте почати з нульової таблиці [y/N] ?"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Ви вказали більше циліндрів ніж є на диску"
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "не вдається відкрити пристрій диску"
-#: fdisk/cfdisk.c:1591 fdisk/cfdisk.c:1771
+#: fdisk/cfdisk.c:1604 fdisk/cfdisk.c:1784
msgid "Opened disk read-only - you have no permission to write"
msgstr "Відкритий диск лише для читання - у вас немає прав для запису"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "не вдається отримати розмір диску"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Неправильний первинний розділ"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Неправильний логічний розділ"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Увага!! Це може знищити дані на диску!"
-#: fdisk/cfdisk.c:1787
+#: fdisk/cfdisk.c:1800
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Ви впевнені, що бажаєте записати таблицю розділів на диск? (yes або no): "
-#: fdisk/cfdisk.c:1793
+#: fdisk/cfdisk.c:1806
msgid "no"
msgstr "no"
-#: fdisk/cfdisk.c:1794
+#: fdisk/cfdisk.c:1807
msgid "Did not write partition table to disk"
msgstr "Не записувати таблицю розділів на диск"
-#: fdisk/cfdisk.c:1796
+#: fdisk/cfdisk.c:1809
msgid "yes"
msgstr "yes"
-#: fdisk/cfdisk.c:1799
+#: fdisk/cfdisk.c:1812
msgid "Please enter `yes' or `no'"
msgstr "Введіть `yes'(так) або `no'(ні)"
-#: fdisk/cfdisk.c:1803
+#: fdisk/cfdisk.c:1816
msgid "Writing partition table to disk..."
msgstr "Записується таблиця розділів на диск..."
-#: fdisk/cfdisk.c:1828 fdisk/cfdisk.c:1832
+#: fdisk/cfdisk.c:1841 fdisk/cfdisk.c:1845
msgid "Wrote partition table to disk"
msgstr "Таблиця розділів записана на диск"
-#: fdisk/cfdisk.c:1830
+#: fdisk/cfdisk.c:1843
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Таблиця розділів записана, але виникла помилка при її перечитуванні. "
"Перезавантажтесь для оновлення таблиці."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Немає первинних розділів позначених як завантажувальні. DOS MBR не зможе "
"завантажуватись."
-#: fdisk/cfdisk.c:1842
+#: fdisk/cfdisk.c:1855
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Більш ніж один розділ позначений як завантажувальний. DOS MBR не зможе "
"завантажуватись."
-#: fdisk/cfdisk.c:1900 fdisk/cfdisk.c:2019 fdisk/cfdisk.c:2103
+#: fdisk/cfdisk.c:1913 fdisk/cfdisk.c:2032 fdisk/cfdisk.c:2116
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Введіть назву файлу або натисніть Enter, щоб відобразити екран: "
-#: fdisk/cfdisk.c:1909 fdisk/cfdisk.c:2027 fdisk/cfdisk.c:2111
+#: fdisk/cfdisk.c:1922 fdisk/cfdisk.c:2040 fdisk/cfdisk.c:2124
#, c-format
msgid "Cannot open file '%s'"
msgstr "не вдається відкрити файл '%s'"
-#: fdisk/cfdisk.c:1920
+#: fdisk/cfdisk.c:1933
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Дисковий пристій: %s\n"
-#: fdisk/cfdisk.c:1922
+#: fdisk/cfdisk.c:1935
msgid "Sector 0:\n"
msgstr "Сектор 0:\n"
-#: fdisk/cfdisk.c:1929
+#: fdisk/cfdisk.c:1942
#, c-format
msgid "Sector %d:\n"
msgstr "Сектор %d:\n"
-#: fdisk/cfdisk.c:1949
+#: fdisk/cfdisk.c:1962
msgid " None "
msgstr " Немає "
-#: fdisk/cfdisk.c:1951
+#: fdisk/cfdisk.c:1964
msgid " Pri/Log"
msgstr " Перв/Лог "
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Первинний"
-#: fdisk/cfdisk.c:1955
+#: fdisk/cfdisk.c:1968
msgid " Logical"
msgstr " Логічний "
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:1993 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
-#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:602
+#: fdisk/cfdisk.c:2006 fdisk/fdisk.c:1419 fdisk/fdisk.c:1725
+#: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Невідомий"
-#: fdisk/cfdisk.c:1999 fdisk/cfdisk.c:2467 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2012 fdisk/cfdisk.c:2480 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Заван."
-#: fdisk/cfdisk.c:2001
+#: fdisk/cfdisk.c:2014
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2003
+#: fdisk/cfdisk.c:2016
msgid "None"
msgstr "Немає"
-#: fdisk/cfdisk.c:2038 fdisk/cfdisk.c:2122
+#: fdisk/cfdisk.c:2051 fdisk/cfdisk.c:2135
#, c-format
msgid "Partition Table for %s\n"
msgstr "Таблиця розділів для %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
msgid " First Last\n"
msgstr " Перший Останній\n"
-#: fdisk/cfdisk.c:2041
+#: fdisk/cfdisk.c:2054
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
msgstr ""
" # Тип Сектор Сектор Зсув Довжина Тип файл. системи(ID) Ознаки\n"
-#: fdisk/cfdisk.c:2042
+#: fdisk/cfdisk.c:2055
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1627,467 +1643,467 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2125
+#: fdisk/cfdisk.c:2138
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Початок--- ----Кінець---- Початк. Кільк.\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Ознак Гол Сект Цил ID Гол Сект Цил Сектор Секторів\n"
-#: fdisk/cfdisk.c:2127
+#: fdisk/cfdisk.c:2140
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Raw"
msgstr "Неформатов."
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Вивести таблицю у 'неформатованому' вигляді"
-#: fdisk/cfdisk.c:2161 fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2174 fdisk/cfdisk.c:2277
msgid "Sectors"
msgstr "Сектори"
-#: fdisk/cfdisk.c:2161
+#: fdisk/cfdisk.c:2174
msgid "Print the table ordered by sectors"
msgstr "Вивести таблицю сортовану за секторами"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Table"
msgstr "Таблиця"
-#: fdisk/cfdisk.c:2162
+#: fdisk/cfdisk.c:2175
msgid "Just print the partition table"
msgstr "Просто вивести таблицю розділів"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Не виводити таблицю"
-#: fdisk/cfdisk.c:2191
+#: fdisk/cfdisk.c:2204
msgid "Help Screen for cfdisk"
msgstr "Екран з довідкою для cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Це cfdisk - консольна програма роботи з розділами на базі curses, яка"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "дозволяє створювати, видаляти та змінювати розділи вашого"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "жорсткого диску."
-#: fdisk/cfdisk.c:2197
+#: fdisk/cfdisk.c:2210
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2199
+#: fdisk/cfdisk.c:2212
msgid "Command Meaning"
msgstr "Команда Призначення"
-#: fdisk/cfdisk.c:2200
+#: fdisk/cfdisk.c:2213
msgid "------- -------"
msgstr "------- -----------"
-#: fdisk/cfdisk.c:2201
+#: fdisk/cfdisk.c:2214
msgid " b Toggle bootable flag of the current partition"
msgstr " b Перемикнути ознаку завантаження поточного розділу"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Видалити поточний розділ"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Змінити параметри: циліндри, головки, сектори-на-доріжку"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " УВАГА: Цей параметр повинен використовуватись лише людьми"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " які знають, що вони роблять."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Вивести цю довідку"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Максимізувати використання диску поточним розділом"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Зауважте: це може зробити розділ несумісним з"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2223
msgid " n Create new partition from free space"
msgstr " n Створити новий розділ у вільному просторі"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p Вивести таблицю розділів на екран або у файл"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " Є декілька форматів виводу розділів:"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " "
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - не форматовані дані (у вигляді, в якому вони запишуться "
"на диск)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Таблиця сортована по секторам"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - таблиця не форматованих даних"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q Вийти з програми без запису таблиці розділів"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Змінити тип файлової системи"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Змінити одиниці вимірювання розміру розділів"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Перемикає між Мб, секторами та циліндрами"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2234
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Записати таблицю розділів на диск ( W повинен бути в верхньому "
"регістрі)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Це може зруйнувати дані на диску, тому необхідно або"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr " підтвердити або відмовитись від запису набравши `yes' чи "
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " `no'"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2238
msgid "Up Arrow Move cursor to the previous partition"
msgstr "СтрілкаВгору Перемістити курсор на попередню позицію"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "СтрілкаВниз Перемістити курсор у наступну позицію"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Оновлює вміст екрану"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Виводить цю довідку"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Зауважте: Всі команди вводяться або у нижньому або у верхньому"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "регістрах (за винятком (W)запису)."
-#: fdisk/cfdisk.c:2262 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2275 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Циліндрів"
-#: fdisk/cfdisk.c:2262
+#: fdisk/cfdisk.c:2275
msgid "Change cylinder geometry"
msgstr "Змінити геометрію циліндру"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Головки"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Змінити геометрію головки"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Змінити геометрію сектору"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Виконано"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Завершити зміну геометрії"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Введіть кількість циліндрів: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Недопустиме значення циліндрів"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Введіть геометрію головок: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Недопустиме значення головок"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Введіть кількість секторів на доріжку: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Недопустиме значення секторів"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Введіть тип файлової системи: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Тип ФС не може бути порожнім"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Не можна змінювати тип ФС на розширений"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Невід(%02X)"
-#: fdisk/cfdisk.c:2472 fdisk/cfdisk.c:2475
+#: fdisk/cfdisk.c:2485 fdisk/cfdisk.c:2488
msgid ", NC"
msgstr ", НК"
-#: fdisk/cfdisk.c:2480 fdisk/cfdisk.c:2483
+#: fdisk/cfdisk.c:2493 fdisk/cfdisk.c:2496
msgid "NC"
msgstr "НК"
-#: fdisk/cfdisk.c:2491
+#: fdisk/cfdisk.c:2504
msgid "Pri/Log"
msgstr "Перв/Лог"
-#: fdisk/cfdisk.c:2498
+#: fdisk/cfdisk.c:2511
#, c-format
msgid "Unknown (%02X)"
msgstr "Невідомий (%02X)"
-#: fdisk/cfdisk.c:2567
+#: fdisk/cfdisk.c:2580
#, c-format
msgid "Disk Drive: %s"
msgstr "Пристій диску: %s"
-#: fdisk/cfdisk.c:2574
+#: fdisk/cfdisk.c:2587
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Розмір: %lld байт, %lld Мб"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Розмір: %lld байт, %lld.%lld Гб"
-#: fdisk/cfdisk.c:2581
+#: fdisk/cfdisk.c:2594
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Головок: %d Секторів на доріжку: %d Циліндрів: %lld"
-#: fdisk/cfdisk.c:2585
+#: fdisk/cfdisk.c:2598
msgid "Name"
msgstr "Назва"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "Ознаки"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Тип розд."
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "Тип ФС"
-#: fdisk/cfdisk.c:2589
+#: fdisk/cfdisk.c:2602
msgid "[Label]"
msgstr "[Позначка]"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2604
msgid " Sectors"
msgstr " Секторів"
-#: fdisk/cfdisk.c:2593
+#: fdisk/cfdisk.c:2606
msgid " Cylinders"
msgstr " Циліндрів"
-#: fdisk/cfdisk.c:2595
+#: fdisk/cfdisk.c:2608
msgid " Size (MB)"
msgstr "Розмір (Мб)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
msgid " Size (GB)"
msgstr "Розмір (Гб)"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Bootable"
msgstr "Завантаж."
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Перемикнути ознаку завантаження поточного розділу"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Видалити"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Видалити поточний розділ"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Геометрія"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Змінити геометрію диску (лише для фахівців)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "Довідка"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Вивести вікно з довідкою"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Максимум"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Максимізувати використання диску поточним розділом (для фахівців)"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "New"
msgstr "Новий"
-#: fdisk/cfdisk.c:2656
+#: fdisk/cfdisk.c:2669
msgid "Create new partition from free space"
msgstr "Створити новий розділ у вільному просторі"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Вивести"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Вивести таблицю розділів на екран або у файл"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "Вихід"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "Вийти з програми без запису таблиці розділів"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "Тип"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Змінити тип файлової системи (DOS, Linux, OS/2 та ін.)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Одиниці"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Змінити одиниці вимірювання розмірів розділу (МБ. сект, цил)"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Записати"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "Записати таблицю розділів на диск (може зіпсувати дані)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "не вдається зробити розділ завантажувальним"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "не вдається видалити порожній розділ"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "не вдається максимізувати цей розділ"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Цей розділ не використовується"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Цей розділ вже використовується"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "не вдається змінити тип порожнього розділу"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Немає більше розділів"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Неправильна команда"
-#: fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2829
msgid "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
msgstr "Copyright (C) 1994-2002 Kevin E. Martin & aeb\n"
#. Unfortunately, xgettext does not handle multi-line strings
#. so, let's use explicit \n's instead
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2836
#, c-format
msgid ""
"\n"
@@ -2364,12 +2380,12 @@ msgstr "Необхідно встановити"
msgid "heads"
msgstr "головки"
-#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:885
+#: fdisk/fdisk.c:572 fdisk/fdisk.c:1241 fdisk/sfdisk.c:933
msgid "sectors"
msgstr "сектори"
#: fdisk/fdisk.c:574 fdisk/fdisk.c:1241 fdisk/fdiskbsdlabel.c:470
-#: fdisk/sfdisk.c:885
+#: fdisk/sfdisk.c:933
msgid "cylinders"
msgstr "циліндри"
@@ -2776,12 +2792,12 @@ msgstr "Загальна кількість розподілених секто
msgid "%lld unallocated sectors\n"
msgstr "%d нерозподілених секторів\n"
-#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1893 fdisk/fdisksgilabel.c:629 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:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1920 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
@@ -2936,7 +2952,7 @@ msgstr "Диск %s не містить правильної таблиці ро
msgid "Cannot open %s\n"
msgstr "не вдається відкрити %s\n"
-#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2399
+#: fdisk/fdisk.c:2410 fdisk/sfdisk.c:2449
#, c-format
msgid "cannot open %s\n"
msgstr "не вдається відкрити %s\n"
@@ -3598,19 +3614,19 @@ msgstr "YES\n"
msgid "Do You know, You got a partition overlap on the disk?\n"
msgstr "Ви знаєте, що на диску є розділи, що перекриваються?\n"
-#: fdisk/fdisksgilabel.c:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Спроба створити весь диск автоматично.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "Весь диск вже зайнятий розділами.\n"
-#: fdisk/fdisksgilabel.c:646
+#: fdisk/fdisksgilabel.c:644
msgid "You got a partition overlap on the disk. Fix it first!\n"
msgstr "На диску є розділи, що перекриваються. Спочатку виправте це!\n"
-#: fdisk/fdisksgilabel.c:655 fdisk/fdisksgilabel.c:684
+#: fdisk/fdisksgilabel.c:653 fdisk/fdisksgilabel.c:682
msgid ""
"It is highly recommended that eleventh partition\n"
"covers the entire disk and is of type `SGI volume'\n"
@@ -3618,16 +3634,16 @@ msgstr ""
"Наполегливо рекомендується, щоб одинадцятий розділ\n"
"займав увесь диск та мав тип `SGI volume'\n"
-#: fdisk/fdisksgilabel.c:671
+#: fdisk/fdisksgilabel.c:669
msgid "You will get a partition overlap on the disk. Fix it first!\n"
msgstr "Ваші розділи на диску будуть перекриватись. Виправте це!\n"
-#: fdisk/fdisksgilabel.c:676
+#: fdisk/fdisksgilabel.c:674
#, c-format
msgid " Last %s"
msgstr " Останній %s"
-#: fdisk/fdisksgilabel.c:706
+#: fdisk/fdisksgilabel.c:704
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 +3655,7 @@ msgstr ""
"буде втрачено.\n"
"\n"
-#: fdisk/fdisksgilabel.c:728
+#: fdisk/fdisksgilabel.c:726
#, c-format
msgid ""
"Warning: BLKGETSIZE ioctl failed on %s. Using geometry cylinder value of %"
@@ -3650,12 +3666,12 @@ msgstr ""
"значення геометрії циліндру %d.\n"
"Це значення може бути відсічене для пристроїв > 33.8 ГБ.\n"
-#: fdisk/fdisksgilabel.c:741
+#: fdisk/fdisksgilabel.c:739
#, c-format
msgid "Trying to keep parameters of partition %d.\n"
msgstr "Спроба зберегти параметри розділу %d.\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ІД=%02x\tПОЧАТОК=%d\tДОВЖИНА=%d\n"
@@ -4257,90 +4273,90 @@ msgstr "LANstep"
msgid "BBT"
msgstr "BBT"
-#: fdisk/sfdisk.c:164
+#: fdisk/sfdisk.c:197
#, c-format
msgid "seek error on %s - cannot seek to %lu\n"
msgstr "помилка позиціювання %s - не вдається перейти на %lu\n"
-#: fdisk/sfdisk.c:169
+#: fdisk/sfdisk.c:202
#, c-format
msgid "seek error: wanted 0x%08x%08x, got 0x%08x%08x\n"
msgstr "помилка позиціювання: очікувалось 0x%08x%08x, отримано 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "недостатньо пам'яті - відмова\n"
-#: fdisk/sfdisk.c:220 fdisk/sfdisk.c:303
+#: fdisk/sfdisk.c:253 fdisk/sfdisk.c:336
#, c-format
msgid "read error on %s - cannot read sector %lu\n"
msgstr "помилка читання %s - не вдається прочитати сектор %lu\n"
-#: fdisk/sfdisk.c:238
+#: fdisk/sfdisk.c:271
#, c-format
msgid "ERROR: sector %lu does not have an msdos signature\n"
msgstr "ПОМИЛКА: сектор %lu немає msdos сигнатури\n"
-#: fdisk/sfdisk.c:253
+#: fdisk/sfdisk.c:286
#, c-format
msgid "write error on %s - cannot write sector %lu\n"
msgstr "помилка запису на %s - не вдається записати сектор %lu\n"
-#: fdisk/sfdisk.c:291
+#: fdisk/sfdisk.c:324
#, c-format
msgid "cannot open partition sector save file (%s)\n"
msgstr "не вдається відкрити файл збереження сектору розділу (%s)\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "помилка запису на %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "не вдається отримати інформацію про файл відновлення розділу (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
"файл відновлення розділу має неправильний розмір - відміна відновлення\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "недостатньо пам'яті\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "не вдається відкрити файл відновлення (%s)\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "помилка читання %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "не вдається відкрити пристрій %s для запису\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "помилка запису сектору %lu на %s\n"
-#: fdisk/sfdisk.c:419
+#: fdisk/sfdisk.c:453
#, c-format
msgid "Disk %s: cannot get geometry\n"
msgstr "Диск %s: не вдається отримати геометрію\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Диск %s: не вдається отримати розмір\n"
-#: fdisk/sfdisk.c:455
+#: fdisk/sfdisk.c:503
#, c-format
msgid ""
"Warning: start=%lu - this looks like a partition rather than\n"
@@ -4351,22 +4367,22 @@ msgstr ""
"Використання fdisk для нього мабуть безглуздо..\n"
"[Використовуйте параметр --force, якщо ви дійсно цього бажаєте]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Попередження: HDIO_GETGEO вказує, що є %lu головок\n"
-#: fdisk/sfdisk.c:465
+#: fdisk/sfdisk.c:513
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu sectors\n"
msgstr "Попередження: HDIO_GETGEO вказує, що є %lu секторів\n"
-#: fdisk/sfdisk.c:469
+#: fdisk/sfdisk.c:517
#, c-format
msgid "Warning: BLKGETSIZE/HDIO_GETGEO says that there are %lu cylinders\n"
msgstr "Попередження: BLKGETSIZE/HDIO_GETGEO вказує, що є %lu циліндрів\n"
-#: fdisk/sfdisk.c:473
+#: fdisk/sfdisk.c:521
#, c-format
msgid ""
"Warning: unlikely number of sectors (%lu) - usually at most 63\n"
@@ -4376,7 +4392,7 @@ msgstr ""
"63\n"
"Це буде спричиняти проблеми з усім ПЗ, яке використовує C/H/S адресацію.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4385,7 +4401,7 @@ msgstr ""
"\n"
"Диск %s: %lu циліндрів, %lu головок, %lu секторів/доріжку\n"
-#: fdisk/sfdisk.c:559
+#: fdisk/sfdisk.c:607
#, c-format
msgid ""
"%s of partition %s has impossible value for head: %lu (should be in 0-%lu)\n"
@@ -4393,7 +4409,7 @@ msgstr ""
"%s з розділу %s має неможливе значення кількості головок: %lu (мусить бути 0-"
"%lu)\n"
-#: fdisk/sfdisk.c:564
+#: fdisk/sfdisk.c:612
#, c-format
msgid ""
"%s of partition %s has impossible value for sector: %lu (should be in 1-%"
@@ -4402,7 +4418,7 @@ msgstr ""
"%s з розділу %s має неможливе значення кількості секторів: %lu (мусить бути "
"1-%lu)\n"
-#: fdisk/sfdisk.c:569
+#: fdisk/sfdisk.c:617
#, c-format
msgid ""
"%s of partition %s has impossible value for cylinders: %lu (should be in 0-%"
@@ -4411,7 +4427,7 @@ msgstr ""
"%s з розділу %s має неможливе значення кількості циліндрів: %lu (мусить бути "
"0-%lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
@@ -4419,11 +4435,11 @@ msgstr ""
"Ідентиф. Назва\n"
"\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Перечитується таблиця розділів ...\n"
-#: fdisk/sfdisk.c:768
+#: fdisk/sfdisk.c:816
msgid ""
"The command to re-read the partition table failed\n"
"Reboot your system now, before using mkfs\n"
@@ -4431,31 +4447,31 @@ msgstr ""
"Команда перечитування таблиці розділів завершилась аварійно\n"
"Перезавантажте систему перед використанням mkfs\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Помилка закривання %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: немає такого розділу\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "нерозпізнаний формат - використовуються сектори\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# таблиця розділів диску %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "нереалізований формат - використовується %s\n"
-#: fdisk/sfdisk.c:888
+#: fdisk/sfdisk.c:936
#, c-format
msgid ""
"Units = cylinders of %lu bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4464,11 +4480,11 @@ msgstr ""
"Одиниці виміру = циліндри по %lu байт, блоки по 1024 байт, рахуючи від %d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr "Пристрій Завант Початок Кінець Циліндрів Блоків Ід Система\n"
-#: fdisk/sfdisk.c:896
+#: fdisk/sfdisk.c:944
#, c-format
msgid ""
"Units = sectors of 512 bytes, counting from %d\n"
@@ -4477,11 +4493,11 @@ msgstr ""
"Одиниці виміру = сектори по 512 байт, рахуючи від %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr "Пристрій Завант Початок Кінець Секторів Ід Система\n"
-#: fdisk/sfdisk.c:901
+#: fdisk/sfdisk.c:949
#, c-format
msgid ""
"Units = blocks of 1024 bytes, counting from %d\n"
@@ -4490,11 +4506,11 @@ msgstr ""
"Одиниця виміру = блоки по 1024 байт, рахуючи від %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr "Пристрій Завант Початок Кінець Блоків Ід Система\n"
-#: fdisk/sfdisk.c:906
+#: fdisk/sfdisk.c:954
#, c-format
msgid ""
"Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from %d\n"
@@ -4504,31 +4520,31 @@ msgstr ""
"%d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Пристрій Завант Початок Кінець Мб Блоків Ід Система\n"
-#: fdisk/sfdisk.c:1068
+#: fdisk/sfdisk.c:1116
#, c-format
msgid "\t\tstart: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"\t\tпочаток: (c,h,s) очікувалось (%ld,%ld,%ld) знайдено (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1075
+#: fdisk/sfdisk.c:1123
#, c-format
msgid "\t\tend: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr "\t\tкінець: (c,h,s) очікувалось (%ld,%ld,%ld) знайдено (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1078
+#: fdisk/sfdisk.c:1126
#, c-format
msgid "partition ends on cylinder %ld, beyond the end of the disk\n"
msgstr "розділ закінчується на циліндрі %ld, за межею обсягу диску\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Не знайдено розділів\n"
-#: fdisk/sfdisk.c:1092
+#: fdisk/sfdisk.c:1140
#, c-format
msgid ""
"Warning: The partition table looks like it was made\n"
@@ -4539,51 +4555,51 @@ msgstr ""
" для C/H/S=*/%ld/%ld (замість %ld/%ld/%ld).\n"
"Для цього виводу вважатиметься ця геометрія.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "відсутня таблиця розділів.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "дивно, визначено лише %d розділів.\n"
-#: fdisk/sfdisk.c:1152
+#: fdisk/sfdisk.c:1200
#, c-format
msgid "Warning: partition %s has size 0 but is not marked Empty\n"
msgstr "Попередження: розділ %s має розмір 0, але не позначений порожнім\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Попередження: розділ %s має розмір 0 та позначений завантажувальним\n"
-#: fdisk/sfdisk.c:1158
+#: fdisk/sfdisk.c:1206
#, c-format
msgid "Warning: partition %s has size 0 and nonzero start\n"
msgstr "Попередження: розділ %s має розмір 0 але починається не з нуля\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Попередження: розділ %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "не розташований у розділі %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Попередження: розділи %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "та %s перекриваються\n"
-#: fdisk/sfdisk.c:1193
+#: fdisk/sfdisk.c:1241
#, c-format
msgid ""
"Warning: partition %s contains part of the partition table (sector %lu),\n"
@@ -4592,17 +4608,17 @@ msgstr ""
"Попередження: розділ %s містить частину таблиці розділів (сектор %lu),\n"
"та її буде знищено при його заповненні\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Попередження: розділ %s починається з сектор 0\n"
-#: fdisk/sfdisk.c:1209
+#: fdisk/sfdisk.c:1257
#, c-format
msgid "Warning: partition %s extends past end of disk\n"
msgstr "Попередження: розділ %s поширюється за межі диску\n"
-#: fdisk/sfdisk.c:1224
+#: fdisk/sfdisk.c:1272
msgid ""
"Among the primary partitions, at most one can be extended\n"
" (although this is not a problem under Linux)\n"
@@ -4610,17 +4626,17 @@ msgstr ""
"Крім первинних розділів, принаймні один може бути розширеним\n"
" (хоча це не проблема для Linux)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Попередження: розділ %s починається не з межі циліндра\n"
-#: fdisk/sfdisk.c:1248
+#: fdisk/sfdisk.c:1296
#, c-format
msgid "Warning: partition %s does not end at a cylinder boundary\n"
msgstr "Попередження: розділ %s не закінчується на межі циліндра\n"
-#: fdisk/sfdisk.c:1266
+#: fdisk/sfdisk.c:1314
msgid ""
"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"
@@ -4630,7 +4646,7 @@ msgstr ""
"Це не має значення для Lilo, але DOS MBR не зможе завантажуватись з цього "
"диску.\n"
-#: fdisk/sfdisk.c:1273
+#: fdisk/sfdisk.c:1321
msgid ""
"Warning: usually one can boot from primary partitions only\n"
"LILO disregards the `bootable' flag.\n"
@@ -4638,7 +4654,7 @@ msgstr ""
"Попередження: зазвичай можна завантажуватись лише з первинних розділів\n"
"LILO не звертає уваги на ознаку `завантажувальний'.\n"
-#: fdisk/sfdisk.c:1279
+#: fdisk/sfdisk.c:1327
msgid ""
"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"
@@ -4647,11 +4663,11 @@ msgstr ""
"(активним)\n"
"Це несуттєво для LILO, але DOS MBR не зможе завантажуватись з цього диску.\n"
-#: fdisk/sfdisk.c:1293
+#: fdisk/sfdisk.c:1341
msgid "start"
msgstr "початок"
-#: fdisk/sfdisk.c:1296
+#: fdisk/sfdisk.c:1344
#, c-format
msgid ""
"partition %s: start: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
@@ -4659,22 +4675,22 @@ msgstr ""
"розділ %s: початок: (c,h,s) очікувалось (%ld,%ld,%ld) знайдено (%ld,%ld,%"
"ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
msgid "end"
msgstr "кінець"
-#: fdisk/sfdisk.c:1305
+#: fdisk/sfdisk.c:1353
#, c-format
msgid "partition %s: end: (c,h,s) expected (%ld,%ld,%ld) found (%ld,%ld,%ld)\n"
msgstr ""
"розділ %s: кінець: (c,h,s) очікувалось (%ld,%ld,%ld) знайдено (%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1308
+#: fdisk/sfdisk.c:1356
#, c-format
msgid "partition %s ends on cylinder %ld, beyond the end of the disk\n"
msgstr "розділ %s закінчується на циліндрі %ld, за межами диску\n"
-#: fdisk/sfdisk.c:1333
+#: fdisk/sfdisk.c:1381
#, c-format
msgid ""
"Warning: shifted start of the extd partition from %ld to %ld\n"
@@ -4683,7 +4699,7 @@ msgstr ""
"Попередження: зміщено початок розширеного розділу з %ld на %ld\n"
"(Лише для відображення. Не змінюйте вміст.)\n"
-#: fdisk/sfdisk.c:1339
+#: fdisk/sfdisk.c:1387
msgid ""
"Warning: extended partition does not start at a cylinder boundary.\n"
"DOS and Linux will interpret the contents differently.\n"
@@ -4691,133 +4707,133 @@ msgstr ""
"Попередження: розширений розділ не починаєтеся на межі циліндра.\n"
"DOS та Linux будуть інтерпретувати вміст по-різному.\n"
-#: fdisk/sfdisk.c:1357 fdisk/sfdisk.c:1434
+#: fdisk/sfdisk.c:1405 fdisk/sfdisk.c:1482
#, c-format
msgid "too many partitions - ignoring those past nr (%d)\n"
msgstr "надто багато розділів - ігнорується попередній nr (%d)\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "дерево розділів?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "знайдено Disk Manager - це нне вдаєтьсяобробити\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "знайдено DM6 сигнатуру - відміна операції\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "дивно..., розширений розділ нульового розміру?\n"
-#: fdisk/sfdisk.c:1527 fdisk/sfdisk.c:1538
+#: fdisk/sfdisk.c:1575 fdisk/sfdisk.c:1586
msgid "strange..., a BSD partition of size 0?\n"
msgstr "дивно..., BSD розмір нульового розміру?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: нерозпізнаний розділ\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "вказано параметр -n: Нічого не змінено\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "не вдається зберегти старі сектори - виконання перервано\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "не вдається записати розділ на %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "довгий або незавершений вхідний рядок - завершення\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "помилка вводу: очікувався символ `=' після поля %s\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "помилка вводу: очікувався символ %c після поля %s\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "нерозпізнаний ввід: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "число занадто велике\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "не цифри після числа\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "немає місця для дескриптору розділу\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "не вдається створити оточуючий розширений розділ\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "надто багато вхідних полів\n"
#. no free blocks left - don't read any further
-#: fdisk/sfdisk.c:2016
+#: fdisk/sfdisk.c:2066
msgid "No room for more\n"
msgstr "Немає більше місця\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Недопустимий тип\n"
-#: fdisk/sfdisk.c:2067
+#: fdisk/sfdisk.c:2117
#, c-format
msgid "Warning: given size (%lu) exceeds max allowable size (%lu)\n"
msgstr ""
"Попередження: вказаний розмір (%lu) перевищує допустимий розмір (%lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Попередження: порожній розділ\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Попередження: неправильний початок розділу (раніше %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "не розпізнана завантажувальна ознака - виберіть - або *\n"
-#: fdisk/sfdisk.c:2117 fdisk/sfdisk.c:2130
+#: fdisk/sfdisk.c:2167 fdisk/sfdisk.c:2180
msgid "partial c,h,s specification?\n"
msgstr "часткова специфікація цил,гол,сект?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Розширений розділ не там де має бути розширений\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "неправильний ввід\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "надто багато розділів\n"
-#: fdisk/sfdisk.c:2228
+#: fdisk/sfdisk.c:2278
msgid ""
"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"
@@ -4829,101 +4845,101 @@ msgstr ""
"Зазвичай, вам необхідно лише вказати <початок> та <розмір> (та можливо "
"<тип>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "версія"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Використання: %s [параметри] пристрій ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "пристрій: щось на зразок /dev/hda чи /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "корисні параметри:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [або --show-size]: вивести розмір розділу"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr " -c [або --id]: вивести або змінити ідентифікатор розділу"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [або --list]: вивести розділи кожного пристрою"
-#: fdisk/sfdisk.c:2260
+#: fdisk/sfdisk.c:2310
msgid " -d [or --dump]: idem, but in a format suitable for later input"
msgstr ""
" -d [або --dump]: те ж саме, але у форматі прийнятному для "
"подальшого вводу"
-#: fdisk/sfdisk.c:2261
+#: fdisk/sfdisk.c:2311
msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0"
msgstr ""
" -i [або --increment]: кількість циліндрів починається з 1, а не з 0"
-#: fdisk/sfdisk.c:2262
+#: fdisk/sfdisk.c:2312
msgid ""
" -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/"
"MB"
msgstr ""
" -uS, -uB, -uC, -uM: ввід/вивід у одиницях сектори/блоки/циліндри/Мб"
-#: fdisk/sfdisk.c:2263
+#: fdisk/sfdisk.c:2313
msgid " -T [or --list-types]:list the known partition types"
msgstr " -T [або --list-types]:вивести всі відомі типи розділів"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr ""
" -D [або --DOS]: для DOS-сумісності: втрачається трохи простору"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr " -R [або --re-read]: змусити ядро перечитати таблицю розділів"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# : змінити лише розділ з номером #"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : не записувати нічого на диск"
-#: fdisk/sfdisk.c:2268
+#: fdisk/sfdisk.c:2318
msgid ""
" -O file : save the sectors that will be overwritten to file"
msgstr ""
" -O file : зберегти у файл сектори, які будуть перезаписані"
-#: fdisk/sfdisk.c:2269
+#: fdisk/sfdisk.c:2319
msgid " -I file : restore these sectors again"
msgstr " -I file : відновити ці сектори знову"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [або --version]: вивести версію"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [або --help]: вивести це повідомлення"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "небезпечні параметри:"
-#: fdisk/sfdisk.c:2273
+#: fdisk/sfdisk.c:2323
msgid " -g [or --show-geometry]: print the kernel's idea of the geometry"
msgstr " -g [або --show-geometry]: вивести видану ядром геометрію"
-#: fdisk/sfdisk.c:2274
+#: fdisk/sfdisk.c:2324
msgid ""
" -x [or --show-extended]: also list extended partitions on output\n"
" or expect descriptors for them on input"
@@ -4931,115 +4947,115 @@ msgstr ""
" -x [або --show-extended]: також вивести перелік розширених розділів\n"
" або очікувати їх дескриптори при вводі"
-#: fdisk/sfdisk.c:2276
+#: fdisk/sfdisk.c:2326
msgid ""
" -L [or --Linux]: do not complain about things irrelevant for Linux"
msgstr " -L [або --Linux]: не скаржитись на несуттєві для Linux речі"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [або --quiet]: не виводити попередження"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " Ви можете перевизначити виявлену геометрію використовуючи:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr " -C# [або --cylinders #]:встановити кількість циліндрів"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -H# [або --heads #]: встановити кількість головок"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr " -S# [або --sectors #]: встановити кількість секторів"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Ви можете вимкнути перевірку логічності за допомогою:"
-#: fdisk/sfdisk.c:2283
+#: fdisk/sfdisk.c:2333
msgid " -f [or --force]: do what I say, even if it is stupid"
msgstr ""
" -f [або --force]: виконувати команди примусово, навіть безглузді"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Використання:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s пристрій\t\t вивести активні розділи пристрою\n"
-#: fdisk/sfdisk.c:2291
+#: fdisk/sfdisk.c:2341
#, c-format
msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n"
msgstr "%s пристрій n1 n2 ... активувати розділ n1 ..., де-активувати решту\n"
-#: fdisk/sfdisk.c:2292
+#: fdisk/sfdisk.c:2342
#, c-format
msgid "%s -An device\t activate partition n, inactivate the other ones\n"
msgstr "%s -An пристрій\t активувати розділ n, де-активувати решту розділів\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "немає команди?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "загалом: %d блоків\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "використання: sfdisk --print-id пристрій номер_розділу\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "використання: sfdisk --change-id пристрій номер_розділу ідентиф.\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "використання: sfdisk --id пристрій номер_пристрою [ідентиф.]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "можна вказувати лише один пристрій (за винятком -l чи -s)\n"
-#: fdisk/sfdisk.c:2648
+#: fdisk/sfdisk.c:2698
#, c-format
msgid "cannot open %s read-write\n"
msgstr "неможливі відкрити %s для читання-запису\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, c-format
msgid "cannot open %s for reading\n"
msgstr "неможливі відкрити %s для читання\n"
-#: fdisk/sfdisk.c:2675
+#: fdisk/sfdisk.c:2725
#, c-format
msgid "%s: OK\n"
msgstr "%s: Гаразд\n"
-#: fdisk/sfdisk.c:2692
+#: fdisk/sfdisk.c:2742
#, c-format
msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n"
msgstr "%s: %ld циліндрів, %ld головок, %ld секторів/трек\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "не вдається отримати розмір %s"
-#: fdisk/sfdisk.c:2787
+#: fdisk/sfdisk.c:2837
#, c-format
msgid "bad active byte: 0x%x instead of 0x80\n"
msgstr "неправильний 'активний' байт 0x%x замість 0x80\n"
-#: fdisk/sfdisk.c:2805 fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2889
+#: fdisk/sfdisk.c:2855 fdisk/sfdisk.c:2908 fdisk/sfdisk.c:2939
msgid ""
"Done\n"
"\n"
@@ -5047,7 +5063,7 @@ msgstr ""
"Виконано\n"
"\n"
-#: fdisk/sfdisk.c:2814
+#: fdisk/sfdisk.c:2864
#, c-format
msgid ""
"You have %d active primary partitions. This does not matter for LILO,\n"
@@ -5056,35 +5072,35 @@ msgstr ""
"Позначено активними %d розділів. Це немає значення для LILO,\n"
"Але DOS MBR може завантажуватись лише з дисків, у яких 1 активний розділ.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "розділ %s має ідентиф. %x та він не прихований\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "Неправильний Ідент. %lx\n"
-#: fdisk/sfdisk.c:2900
+#: fdisk/sfdisk.c:2950
msgid "This disk is currently in use.\n"
msgstr "Цей диск наразі використовується.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Фатальна помилка: не вдається знайти %s\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Попередження: %s не є блочним пристроєм\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Перевіряється, що ніхто наразі не використовує диск ...\n"
-#: fdisk/sfdisk.c:2928
+#: fdisk/sfdisk.c:2978
msgid ""
"\n"
"This disk is currently in use - repartitioning is probably a bad idea.\n"
@@ -5097,28 +5113,28 @@ msgstr ""
"диску.\n"
"Використовуйте параметр --no-reread щоб обминути цю перевірку.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Використовуйте параметр --force, щоб відхилити всі перевірки.\n"
-#: fdisk/sfdisk.c:2936
+#: fdisk/sfdisk.c:2986
msgid "OK\n"
msgstr "Гаразд\n"
-#: fdisk/sfdisk.c:2945
+#: fdisk/sfdisk.c:2995
msgid "Old situation:\n"
msgstr "Старий стан:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "Розділ %d не існує, не вдається його змінити\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Новий стан:\n"
-#: fdisk/sfdisk.c:2962
+#: fdisk/sfdisk.c:3012
msgid ""
"I don't like these partitions - nothing changed.\n"
"(If you really want this, use the --force option.)\n"
@@ -5126,19 +5142,19 @@ msgstr ""
"Ці розділи виглядають неправильно - нічого не змінено.\n"
"(Якщо ви дійсно цього бажаєте, використовуйте параметр --force.)\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "Ці розділи виглядають неправильно - можливо слід відповісти No\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Ви цим задоволені? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Бажаєте записати на диск? [ynq] "
-#: fdisk/sfdisk.c:2977
+#: fdisk/sfdisk.c:3027
msgid ""
"\n"
"sfdisk: premature end of input\n"
@@ -5146,15 +5162,15 @@ msgstr ""
"\n"
"sfdisk: передчасне закінчення вводу\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Завершення - нічого не змінено\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Відповідайте одне з y,n,q\n"
-#: fdisk/sfdisk.c:2993
+#: fdisk/sfdisk.c:3043
msgid ""
"Successfully wrote the new partition table\n"
"\n"
@@ -5162,7 +5178,7 @@ msgstr ""
"Успішно записано нову таблицю розділів\n"
"\n"
-#: fdisk/sfdisk.c:2999
+#: fdisk/sfdisk.c:3049
msgid ""
"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"
@@ -5267,45 +5283,45 @@ msgstr "getopt (розширена) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "внутрішня помилка, зв'яжіться з автором."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "система завантажена з MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "Ruffian BCD годинник\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "порт годинника настроєно на 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "боязливий TOY!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: помилка атомарної операція %s за 1000 ітерацій!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "не вдається відкрити /dev/port: %s"
-#: hwclock/cmos.c:594
+#: hwclock/cmos.c:598
msgid "I failed to get permission because I didn't try.\n"
msgstr "не вдається отримати дозвіл, тому-що не було зроблено спроби.\n"
-#: hwclock/cmos.c:597
+#: hwclock/cmos.c:601
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr ""
"%s не вдається отримати доступ до порту I/O: помилка системного виклику iopl"
"(3).\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Можливо слід мати права адміністратора.\n"
@@ -5778,36 +5794,37 @@ msgid ""
"method.\n"
msgstr "Щоб переглянути подробиці пошуку методу доступу вкажіть --debug.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Очікування зміни часу з KDGHWCLK у циклі\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "Помилка зчитування часу з системному виклику ioctl KDGHWCLK"
-#: hwclock/kd.c:67 hwclock/rtc.c:187
+#: hwclock/kd.c:78 hwclock/rtc.c:187
msgid "Timed out waiting for time change.\n"
msgstr "Вийшов час очікування зміни часу.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "Помилка зчитування у циклі часу з системному виклику ioctl KDGHWCLK"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "помилка зчитування часу у ioctl() з %s"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "помилка ioctl KDSHWCLK"
-#: hwclock/kd.c:166
+#. probably KDGHWCLK exists on m68k only
+#: hwclock/kd.c:176
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "не вдається відкрити /dev/tty1 чи /dev/vc/1"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "помилка ioctl KDSHWCLK"
@@ -6135,7 +6152,7 @@ msgstr "Помилка паролю."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:304
-#: mount/lomount.c:310
+#: mount/lomount.c:311
msgid "Password: "
msgstr "Пароль: "
@@ -6193,7 +6210,7 @@ msgstr "Finger інформацію НЕ змінено. Спробуйте пі
msgid "Finger information changed.\n"
msgstr "Finger інформацію змінено.\n"
-#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:327
+#: login-utils/chfn.c:520 login-utils/chsh.c:426 sys-utils/cytune.c:322
msgid "malloc failed"
msgstr "помилка виділення пам'яті"
@@ -6934,7 +6951,7 @@ msgstr "не вдається виконати umount, відмова від umo
msgid "Unmounting any remaining filesystems..."
msgstr "Відключення решти файлових систем..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: не вдається відключити %s: %s\n"
@@ -7576,17 +7593,17 @@ msgstr "Повідомлення від %s@%s (як %s) до %s у %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Повідомлення від %s@%s до %s у %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "Попередження: помилка читання %s: %s"
-#: mount/fstab.c:142 mount/fstab.c:167
+#: mount/fstab.c:163 mount/fstab.c:188
#, c-format
msgid "warning: can't open %s: %s"
msgstr "Попередження: не вдається відкрити %s: %s"
-#: mount/fstab.c:147
+#: mount/fstab.c:168
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: не вдається відкрити %s - натомість використовується %s\n"
@@ -7595,42 +7612,42 @@ msgstr "mount: не вдається відкрити %s - натомість в
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:451
+#: mount/fstab.c:472
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"не вдається створити файл блокування %s: %s (для перевизначення "
"використовуйте -n)"
-#: mount/fstab.c:466
+#: mount/fstab.c:487
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"не вдається створити посилання на файл блокування %s: %s (для перевизначення "
"використовуйте -n)"
-#: mount/fstab.c:478
+#: mount/fstab.c:499
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
"не вдається відкрити файл блокування %s: %s (для перевизначення "
"використовуйте -n)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "не вдається заблокувати файл блокування %s: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "не вдається заблокувати файл блокування %s: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "вийшов час очікування"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7639,22 +7656,22 @@ msgstr ""
"не вдається створити посилання %s\n"
"Можливо є застарілий файл файл блокування?\n"
-#: mount/fstab.c:563 mount/fstab.c:599
+#: mount/fstab.c:584 mount/fstab.c:622
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "не вдається відкрити %s (%s) - mtab не оновлено"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "помилка запису %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "помилка зімни режиму доступу до %s: %s\n"
-#: mount/fstab.c:633
+#: mount/fstab.c:658
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "не вдається перейменувати %s у %s: %s\n"
@@ -7715,28 +7732,28 @@ msgstr "mount: не вдається знайти жодний вільний lo
msgid "Couldn't lock into memory, exiting.\n"
msgstr "не вдається заблокувати у пам'яті, завершення.\n"
-#: mount/lomount.c:340
+#: mount/lomount.c:349
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): успішно завершено\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: не вдається видалити пристрій %s: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): успішно завершено\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
"Програма mount була скомпільована без підтримки loop-пристроїв. "
"Перекомпілюйте її \n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7749,188 +7766,188 @@ msgstr ""
" %s -d loop_пристрій # видалити\n"
" %s [ -e шифрування ] [ -o зсув ] loop_пристрій файл # встановити\n"
-#: mount/lomount.c:429 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:244
+#: mount/lomount.c:433 mount/sundries.c:30 mount/sundries.c:45
+#: mount/sundries.c:248
msgid "not enough memory"
msgstr "недостатньо пам'яті"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"При компіляції не було ввімкнено підтримку loop-пристроїв. Перекомпілюйте.\n"
-#: mount/mntent.c:168
+#: mount/mntent.c:166
#, c-format
msgid "[mntent]: warning: no final newline at the end of %s\n"
msgstr "[mntent]: Попередження: відсутній символ нового рядка наприкінці %s\n"
-#: mount/mntent.c:219
+#: mount/mntent.c:217
#, c-format
msgid "[mntent]: line %d in %s is bad%s\n"
msgstr "[mntent]: рядок %d у %s неправильний%s\n"
-#: mount/mntent.c:222
+#: mount/mntent.c:220
msgid "; rest of file ignored"
msgstr "; залишок файлу ігнорується"
-#: mount/mount.c:395
+#: mount/mount.c:371
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: згідно mtab, %s вже підключений у %s"
-#: mount/mount.c:399
+#: mount/mount.c:376
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: згідно mtab, %s підключений у %s"
-#: mount/mount.c:420
+#: mount/mount.c:396
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: не вдається відкрити %s для запису: %s"
-#: mount/mount.c:435 mount/mount.c:661
+#: mount/mount.c:413 mount/mount.c:640
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: помилка запису %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: помилка зміни прав доступу до %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s схожий на розділ підкачки - не підключатиметься"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "помилка підключення"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: лише адміністратор(root) може підключати %s у %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: loop-пристрій вказано двічі"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: тип вказано двічі"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: пропускається встановлення loop-пристрою\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: буде використовуватись loop-пристрій %s\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: помилка встановлення loop-пристрою\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: встановлення loop-пристрою успішно завершено\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: не вдається відкрити %s: %s"
-#: mount/mount.c:675
+#: mount/mount.c:656
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: аргумент для -p або --pass-fd повинен бути числом"
-#: mount/mount.c:687
+#: mount/mount.c:669
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: помилка відкривання %s для встановлення швидкості"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: помилка встановлення швидкості: %s"
-#: mount/mount.c:744 mount/mount.c:1284
+#: mount/mount.c:726 mount/mount.c:1302
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: помилка створення процесу: %s"
-#: mount/mount.c:825
+#: mount/mount.c:814
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: цю версію програми скомпільовано без підтримки `nfs'"
-#: mount/mount.c:864
+#: mount/mount.c:854
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: помилка підключення nfs версії 4, пробується 3..\n"
-#: mount/mount.c:875
+#: mount/mount.c:865
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: не вдається визначити тип файлової системи, та тип явно не вказаний"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: необхідно вказати тип файлової системи"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: помилка підключення"
-#: mount/mount.c:887 mount/mount.c:922
+#: mount/mount.c:877 mount/mount.c:912
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: точка монтування %s не є каталогом"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: доступ заборонено"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: для використання mount необхідно мати права адміністратора"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:895 mount/mount.c:899
+#: mount/mount.c:885 mount/mount.c:889
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s зайнятий"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc вже підключено"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s вже підключено або %s зайнятий"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: точка монтування %s не існує"
-#: mount/mount.c:911
+#: mount/mount.c:901
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: точка монтування %s є символічним посиланням, яке вказує нікуди"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: спеціальний пристрій %s не існує"
-#: mount/mount.c:924
+#: mount/mount.c:914
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7939,12 +7956,12 @@ msgstr ""
"mount: спеціальний пристрій %s не існує\n"
" (префікс шляху не є каталогом)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s ще не підключений, або неправильний параметр"
-#: mount/mount.c:939
+#: mount/mount.c:929
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
@@ -7954,35 +7971,41 @@ msgstr ""
"неправильний суперблок на %s,\n"
" або підключено надто багато файлових систем"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "таблиця монтування переповнена"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: не вдається прочитати суперблок"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: невідомий пристрій"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: файлова система типу %s не підтримується ядром"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l перелік відомих типів файлових систем"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: можливо ви мали на увазі %s"
-#: mount/mount.c:998
-msgid "mount: maybe you meant iso9660 ?"
+#: mount/mount.c:988
+#, fuzzy
+msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: можливо ви мали на увазі iso9660 ?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: можливо ви мали на увазі iso9660 ?"
+
+#: mount/mount.c:993
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -7990,12 +8013,12 @@ msgstr ""
"підтримується"
#. strange ...
-#: mount/mount.c:1007
+#: mount/mount.c:999
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s не є блочним пристроєм, та stat зазнав невдачі?"
-#: mount/mount.c:1009
+#: mount/mount.c:1001
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8004,47 +8027,47 @@ msgstr ""
"mount: ядро не розпізнало %s як блочний пристрій\n"
" (можливо треба виконати `insmod драйвер'?)"
-#: mount/mount.c:1012
+#: mount/mount.c:1004
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s не є блочним пристроєм (можливо, спробуйте `-o loop'?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s не є блочним пристроєм"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s не є правильним блочним пристроєм"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1021
+#: mount/mount.c:1013
msgid "block device "
msgstr "блочний пристрій "
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: не вдається підключити %s%s лише для читання"
-#: mount/mount.c:1027
+#: mount/mount.c:1019
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s захищений від запису, але було вказано ключ `-w'"
-#: mount/mount.c:1043
+#: mount/mount.c:1036
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s захищений від запису, монтується лише для читання"
-#: mount/mount.c:1126
+#: mount/mount.c:1135
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr "mount: не вказано тип - вважається nfs, через наявність двокрапки\n"
-#: mount/mount.c:1131
+#: mount/mount.c:1140
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: не вказано тип - вважається smbfs, через наявність префіксу //\n"
@@ -8052,22 +8075,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1147
+#: mount/mount.c:1156
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: продовження спроб у фоні \"%s\"\n"
-#: mount/mount.c:1158
+#: mount/mount.c:1167
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: залишено спроби підключити \"%s\"\n"
-#: mount/mount.c:1229
+#: mount/mount.c:1247
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s вже підключений у %s\n"
-#: mount/mount.c:1362
+#: mount/mount.c:1380
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8115,34 +8138,34 @@ msgstr ""
"Інші параметри: [-nfFrsvw] [-o параметри] [-p пароль].\n"
"Додаткову інформацію дивіться у man 8 mount .\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: це може робити лише адміністратор(root)"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: не знайдено %s - створюється..\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: не знайдено такого розділу"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: підключення %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "нічого не було підключено"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: не вдається знайти %s у %s"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: не вдається знайти %s у %s або %s"
@@ -8158,30 +8181,30 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: неправильний UUID"
-#: mount/mount_guess_fstype.c:468
+#: mount/mount_guess_fstype.c:489
msgid "mount: error while guessing filesystem type\n"
msgstr "mount: помилка при автоматичному визначенні типу файлової системи\n"
-#: mount/mount_guess_fstype.c:520
+#: mount/mount_guess_fstype.c:541
#, c-format
msgid "mount: you didn't specify a filesystem type for %s\n"
msgstr "mount: ви не вказали тип файлової системи для %s\n"
-#: mount/mount_guess_fstype.c:523
+#: mount/mount_guess_fstype.c:544
#, c-format
msgid " I will try all types mentioned in %s or %s\n"
msgstr " будуть випробувані всі типи вказані у %s або %s\n"
-#: mount/mount_guess_fstype.c:526
+#: mount/mount_guess_fstype.c:547
msgid " and it looks like this is swapspace\n"
msgstr " та він схожий розділ підкачки\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " буде випробувано тип %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Випробовується %s\n"
@@ -8414,11 +8437,11 @@ msgstr "umount: не вдається перепідключити %s у реж
msgid "%s umounted\n"
msgstr "%s відключено\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr "umount: не вдається знайти перелік файлових систем для відключення"
-#: mount/umount.c:467
+#: mount/umount.c:469
msgid ""
"Usage: umount [-hV]\n"
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n"
@@ -8428,42 +8451,42 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t тип_фс] [-O параметри]\n"
" umount [-f] [-r] [-n] [-v] спец_файл | каталог...\n"
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Спроба відключити %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "не вдається знайти %s у mtab\n"
-#: mount/umount.c:561
+#: mount/umount.c:534
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s не є підключеним (згідно mtab)"
-#: mount/umount.c:565
+#: mount/umount.c:538
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: здається %s підключений декілька разів"
-#: mount/umount.c:578
+#: mount/umount.c:551
#, c-format
msgid "umount: %s is not in the fstab (and you are not root)"
msgstr "umount: %s відсутній у fstab (та ви не адміністратор)"
-#: mount/umount.c:582
+#: mount/umount.c:555
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: підключений %s відрізняється від fstab"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, fuzzy, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: лише адміністратор може відключити %s від %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: це може робити лише адміністратор(root)"
@@ -8476,7 +8499,7 @@ msgstr ""
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Використання: ctrlaltdel hard|soft\n"
-#: sys-utils/cytune.c:120
+#: sys-utils/cytune.c:115
#, c-format
msgid ""
"File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
@@ -8486,7 +8509,7 @@ msgstr ""
"була %d,\n"
"та максимальна швидкість передачі у символах/секунду була %f\n"
-#: sys-utils/cytune.c:131
+#: sys-utils/cytune.c:126
#, c-format
msgid ""
"File %s, For threshold value %lu and timrout value %lu, Maximum characters "
@@ -8497,32 +8520,32 @@ msgstr ""
"кількість символів у fifo була %d,\n"
"та максимальна швидкість передачі у символах/секунду була %f\n"
-#: sys-utils/cytune.c:195
+#: sys-utils/cytune.c:190
#, c-format
msgid "Invalid interval value: %s\n"
msgstr "Неправильне значення інтервалу: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Неправильне встановлене значення: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Неправильне типове значення: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Неправильне значення встановленого часу: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Неправильне значення типового часу: %s\n"
-#: sys-utils/cytune.c:244
+#: sys-utils/cytune.c:239
#, c-format
msgid ""
"Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) "
@@ -8531,56 +8554,56 @@ msgstr ""
"Використання: %s [-q [-i інтервал]] ([-s значення]|[-S значення]) ([-t "
"значення]|[-T значення]) [-g|-G] файл [файл...]\n"
-#: sys-utils/cytune.c:256 sys-utils/cytune.c:275 sys-utils/cytune.c:295
-#: sys-utils/cytune.c:345
+#: sys-utils/cytune.c:251 sys-utils/cytune.c:270 sys-utils/cytune.c:290
+#: sys-utils/cytune.c:340
#, c-format
msgid "Can't open %s: %s\n"
msgstr "не вдається відкрити %s: %s\n"
-#: sys-utils/cytune.c:263
+#: sys-utils/cytune.c:258
#, c-format
msgid "Can't set %s to threshold %d: %s\n"
msgstr "не вдається встановити %s у граничне значення %d: %s\n"
-#: sys-utils/cytune.c:282
+#: sys-utils/cytune.c:277
#, c-format
msgid "Can't set %s to time threshold %d: %s\n"
msgstr "не вдається встановити %s у граничне значення часу %d: %s\n"
-#: sys-utils/cytune.c:300 sys-utils/cytune.c:357 sys-utils/cytune.c:388
+#: sys-utils/cytune.c:295 sys-utils/cytune.c:352 sys-utils/cytune.c:383
#, c-format
msgid "Can't get threshold for %s: %s\n"
msgstr "не вдається отримати граничне значення для %s: %s\n"
-#: sys-utils/cytune.c:306 sys-utils/cytune.c:363 sys-utils/cytune.c:394
+#: sys-utils/cytune.c:301 sys-utils/cytune.c:358 sys-utils/cytune.c:389
#, c-format
msgid "Can't get timeout for %s: %s\n"
msgstr "не вдається отримати таймаут для %s: %s\n"
-#: sys-utils/cytune.c:312
+#: sys-utils/cytune.c:307
#, c-format
msgid "%s: %ld current threshold and %ld current timeout\n"
msgstr "%s: %ld - поточна межа, та %ld - поточний таймаут\n"
-#: sys-utils/cytune.c:315
+#: sys-utils/cytune.c:310
#, c-format
msgid "%s: %ld default threshold and %ld default timeout\n"
msgstr "%s: %ld - типова межа, та %ld - типовий таймаут\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "не вдається встановити обробник сигналу"
-#: sys-utils/cytune.c:337 sys-utils/cytune.c:372
+#: sys-utils/cytune.c:332 sys-utils/cytune.c:367
msgid "gettimeofday failed"
msgstr "помилка у gettimeofday"
-#: sys-utils/cytune.c:350 sys-utils/cytune.c:382
+#: sys-utils/cytune.c:345 sys-utils/cytune.c:377
#, c-format
msgid "Can't issue CYGETMON on %s: %s\n"
msgstr "не вдається дати CYGETMON на %s: %s\n"
-#: sys-utils/cytune.c:424
+#: sys-utils/cytune.c:419
#, c-format
msgid ""
"%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8588,12 +8611,12 @@ msgstr ""
"%s: %lu переривань, %lu/%lu симв.; fifo: %lu межа, %lu таймаут, %lu макс, %"
"lu зараз\n"
-#: sys-utils/cytune.c:430
+#: sys-utils/cytune.c:425
#, c-format
msgid " %f int/sec; %f rec, %f send (char/sec)\n"
msgstr " %f перерв/сек; %f отрим, %f відпр (симв/сек)\n"
-#: sys-utils/cytune.c:435
+#: sys-utils/cytune.c:430
#, c-format
msgid ""
"%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n"
@@ -8601,7 +8624,7 @@ msgstr ""
"%s: %lu переривань, %lu симв; fifo: %lu межа, %lu таймаут, %lu макс, %lu "
"зараз\n"
-#: sys-utils/cytune.c:441
+#: sys-utils/cytune.c:436
#, c-format
msgid " %f int/sec; %f rec (char/sec)\n"
msgstr " %f перерв/сек; %f отрим (симв/сек)\n"
@@ -9895,6 +9918,9 @@ msgstr "Вхідний рядок надто довгий.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Недостатньо пам'яті для збільшення буфера.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: файлова система типу %s не підтримується ядром"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "помилка у системному виклику BLKGETSIZE на %s\n"
diff --git a/sys-utils/Makefile b/sys-utils/Makefile
index 4e67514e4..00944781d 100644
--- a/sys-utils/Makefile
+++ b/sys-utils/Makefile
@@ -69,6 +69,7 @@ nosln:
arch: arch.o
ctrlaltdel.o: ctrlaltdel.c $(LIB)/linux_reboot.h
ctrlaltdel: ctrlaltdel.o $(LIB)/my_reboot.o
+cytune.o: cytune.c cyclades.h
cytune: cytune.o
ipcrm: ipcrm.o
ipcs: ipcs.o
diff --git a/sys-utils/cyclades.h b/sys-utils/cyclades.h
new file mode 100644
index 000000000..afcf6005d
--- /dev/null
+++ b/sys-utils/cyclades.h
@@ -0,0 +1,16 @@
+struct cyclades_monitor {
+ unsigned long int_count;
+ unsigned long char_count;
+ unsigned long char_max;
+ unsigned long char_last;
+};
+
+#define CYGETMON 0x435901
+#define CYGETTHRESH 0x435902
+#define CYSETTHRESH 0x435903
+#define CYGETDEFTHRESH 0x435904
+#define CYSETDEFTHRESH 0x435905
+#define CYGETTIMEOUT 0x435906
+#define CYSETTIMEOUT 0x435907
+#define CYGETDEFTIMEOUT 0x435908
+#define CYSETDEFTIMEOUT 0x435909
diff --git a/sys-utils/cytune.c b/sys-utils/cytune.c
index 295e63bb7..1dd62ce6d 100644
--- a/sys-utils/cytune.c
+++ b/sys-utils/cytune.c
@@ -53,12 +53,7 @@
#include <linux/tty.h>
#include <termios.h>
-#include "../defines.h" /* for NEED_tqueue_h */
-#ifdef NEED_tqueue_h
-#include <linux/tqueue.h> /* required for old kernels (for struct tq_struct) */
- /* compilation errors on other kernels */
-#endif
-#include <linux/cyclades.h>
+#include "cyclades.h"
#if 0
#ifndef XMIT