summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Zak <kzak@redhat.com>2006-12-07 00:26:22 +0100
committerKarel Zak <kzak@redhat.com>2006-12-07 00:26:22 +0100
commit0b0bb92085fc7a7e7d2afe984e43161a2f4ec140 (patch)
treee560f6b005f0e83713e8259f2f12806dd8d39ec6
parentd26aa358f42df65da50014ad62b1a78f22c97400 (diff)
downloadutil-linux-0b0bb92085fc7a7e7d2afe984e43161a2f4ec140.tar.gz
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 037f6ce6..4ce2b65c 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 23087926..1e6a6f87 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 b9fd5578..b40f0e4a 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.12h
+2.12i
diff --git a/configure b/configure
index 8b0a96db..f98df560 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 a0a210e9..f5687d26 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 c9ccd3e3..663e925a 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 ea9773af..5c0c8d29 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 a5eec037..8d497b27 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 dbbe758f..cac76788 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 baefa434..6b05a168 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 643a1631..834dedfd 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 03c0ec48..aa8e10dc 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 00000000..0099bbf0
--- /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 2f28f12c..b1343f32 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 b34e17f6..1f5c63ba 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 cb3d5e8c..bd2b1530 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 z�pisu 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 "Pou�it�:\n"
@@ -1219,11 +1219,11 @@ msgstr " %s [ -c | -y | -n | -d ] za��zen�\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] za��zen�\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:1987
+#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2000
msgid "Unusable"
msgstr "Nepou�iteln�"
-#: 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� kl�vesa"
msgid "Press a key to continue"
msgstr "Stiskn�te kl�vesu pro pokra�ov�n�"
-#: 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�rn�"
@@ -1378,8 +1378,8 @@ msgstr "Prim�rn�"
msgid "Create a new primary partition"
msgstr "Vytvo�it nov� prim�rn� diskov� odd�l"
-#: 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 "Vytvo�it nov� logick� diskov� odd�l"
-#: 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 "Zru�it"
@@ -1423,161 +1423,176 @@ msgstr "Vytvo�it diskov� odd�l na konci voln�ho prostoru"
msgid "No room to create the extended partition"
msgstr "Pro roz���en� diskov� odd�l nen� dostatek m�sta"
-#: 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 rozd�len� disku.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Chybn� podpis na tabulce rozd�len� disku"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Vytisknout pouze tabulku rozd�len� disku"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "Nebyla nalezena ��dn� tabulka rozd�len� 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 v�t�� po�et cylindr�, ne� se vejde na disk."
-#: fdisk/cfdisk.c:1589
+#: fdisk/cfdisk.c:1602
msgid "Cannot open disk drive"
msgstr "Disk nelze otev��t"
-#: 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 otev�en pouze pro �ten� - nem�te pr�va pro z�pis"
-#: 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� prim�rn� diskov� odd�l"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Chybn� logick� diskov� odd�l"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Varov�n�!! Toto m��e v�st ke zni�en� dat na Va�em 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 ulo�it tabulku rozd�len� 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 rozd�len� disku nebyla ulo�ena"
-#: 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 "Ukl�d�m tabulku rozd�len� 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 rozd�len� disku byla ulo�ena 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 ulo�ena, ale nepoda�ilo se ji znovu na��st. Restartujte syst�m."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"��dn� prim�rn� diskov� odd�l 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 ""
"V�ce ne� 1 prim�rn� diskov� odd�l 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 n�zev souboru �i stiskn�te 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 otev��t"
-#: 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 " Prim�rn�"
-#: 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 "Nezn�m�"
-#: 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 rozd�len� 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 D�lka ID syst�mu soubor� "
"P��znaky\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 " ---Po��tek--- ----Konec---- Po��te�n�\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
#, fuzzy
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # P��z 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 "P��m�"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Vytisknout tabulku v p��m�m datov�m form�tu"
-#: 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 se�azenou 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 rozd�len� 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 "N�pov�da 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 vytv��en� diskov�ch odd�l� zalo�en�"
-#: fdisk/cfdisk.c:2194
+#: fdisk/cfdisk.c:2207
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "na knihovn� curses. Umo��uje vytv��en�, maz�n� a modifikaci"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "diskov�ch odd�l� na Va�em pevn�m 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 "P��kaz V�znam"
-#: 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 P�epne aktu�ln�mu odd�lu p��znak startovatelnosti"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Sma�e aktu�ln� odd�l"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Zm�n� geometrii"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " VAROV�N�: Tato volba by m�la b�t pou��v�na pouze lidmi,"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " kte�� v�d�, co �in�."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Vyp��e tuto n�pov�du"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maxim�ln� zv�t�� aktu�ln� diskov� odd�l "
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Pozn�mka: Toto m��e u�init odd�l 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 Vytvo�it na voln�m m�st� nov� odd�l"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p Vyp��e tabulku rozd�len� disku na obrazovku �i do souboru"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " P�i v�pisu tabulky rozd�len� disku si m��ete zvolit"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " z n�kolika form�t�:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - P��m� (p�esn� to, co by bylo zaps�no na disk)"
-#: fdisk/cfdisk.c:2215
+#: fdisk/cfdisk.c:2228
msgid " s - Table ordered by sectors"
msgstr " s - Tabulka se�azen� dle sektor�"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2229
msgid " t - Table in raw format"
msgstr " t - Tabulka v p��m�m form�tu"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2230
msgid " q Quit program without writing partition table"
msgstr " q Ukon�� program bez ulo�en� tabulky rozd�len� disku"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Zm�n� typ syst�mu soubor�"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Zm�n� jednotky pro zobrazen� velikosti odd�lu"
-#: 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 rozd�len� 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 m��e zni�it na disku, mus�te to potvrdit"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr " nebo odm�tnout naps�n�m `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 P�esune kurzor na p�edch�zej�c� odd�l."
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Dol� P�esune kurzor na dal�� odd�l."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L P�ekresl� obrazovku"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Vyp��e tuto n�pov�du"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Pozn�mka: V�echny p��kazy mohou b�t zad�ny mal�mi i velk�mi p�smeny"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "(s vyj�mkou z�pisu - 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 "Zm�n� 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 "Zm�n� geometrii hlav"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Zm�n� 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 zm�n�na"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Zadejte po�et cylindr�: "
-#: fdisk/cfdisk.c:2289 fdisk/cfdisk.c:2860
+#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2873
msgid "Illegal cylinders value"
msgstr "Chybn� po�et cylindr�"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Zadejte po�et hlav: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Chybn� po�et hlav"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Zadejte po�et 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� po�et sektor�"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Zadejte typ syst�mu soubor�: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Nelze nastavit typ SS na pr�zdn�"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Nelze nastavit typ SS na roz���en�"
-#: 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 "Nezn�m� (%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 "N�zev"
-#: fdisk/cfdisk.c:2586
+#: fdisk/cfdisk.c:2599
msgid "Flags"
msgstr "P��znaky"
-#: fdisk/cfdisk.c:2587
+#: fdisk/cfdisk.c:2600
msgid "Part Type"
msgstr "Typ odd�lu"
-#: 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 "P�epne p��znak startovatelnosti aktu�ln�mu diskov�mu odd�lu"
-#: 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 "Sma�e aktu�ln� diskov� odd�l"
-#: 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 "Zm�n� geometrii disku (pouze pro odborn�ky)"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Help"
msgstr "N�pov�da"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Vyp��e n�pov�du"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Zv�t�en�"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr ""
"Zv�t�� velikost aktu�ln�ho diskov�ho odd�lu na maximum (pouze pro odborn�ky)"
-#: 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� odd�l ve voln�m 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 "Vyp��e tabulku rozd�len� 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 ulo�en� tabulky rozd�len� 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 "Zm�n� typ syst�mu 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 "Zm�n� jednotky, ve kter�ch je ud�v�na velikost diskov�ho odd�lu"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write"
msgstr "Ulo�it"
-#: fdisk/cfdisk.c:2661
+#: fdisk/cfdisk.c:2674
msgid "Write partition table to disk (this might destroy data)"
msgstr "Ulo�� tabulku rozd�len� disku na disk (m��e zni�it data)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Tento odd�l nelze nastavit jako startovac�."
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Pr�zdn� diskov� odd�l 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� odd�l nelze zv�t�it."
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Tento diskov� odd�l je nepou�iteln�."
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Tento diskov� odd�l je ji� pou��v�n."
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Typ pr�zdn�ho diskov�ho odd�lu nelze zm�nit."
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "��dn� dal�� diskov� odd�ly"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Chybn� p��kaz"
-#: 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 "Mus�te 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� po�et alokovan�ch sektor� (%d) je v�t�� ne� maximum (%d).\n"
msgid "%lld unallocated sectors\n"
msgstr "nealokovan�ch 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� odd�l %d je ji� definov�n. P�ed op�tovn�m vytvo�en�m jej mus�te\n"
"nejprve smazat.\n"
-#: fdisk/fdisk.c: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 rozd�len� disku.\n"
msgid "Cannot open %s\n"
msgstr "%s nelze otev��t.\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 otev��t.\n"
@@ -3573,19 +3588,19 @@ msgstr ""
msgid "Do You know, You got a partition overlap on the disk?\n"
msgstr "V�te, �e na Va�em disku se diskov� odd�ly p�ekr�vaj�?\n"
-#: fdisk/fdisksgilabel.c:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Pokou��m se automaticky vytvo�it polo�ku pro cel� disk.\n"
-#: fdisk/fdisksgilabel.c:642
+#: fdisk/fdisksgilabel.c:640
msgid "The entire disk is already covered with partitions.\n"
msgstr "Diskov� odd�ly ji� zab�raj� 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� odd�ly se p�ekr�vaj�. 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 ""
"Doporu�uje se, aby jeden�ct� diskov� odd�l zauj�mal 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� odd�ly budou navz�jem p�ekr�vat. 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 "Pokou��m se zachovat parametry diskov�ho odd�lu %d.\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tZA��TEK=%d\tD�LKA=%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 ukazov�tka na %s - ukazov�tko 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 p�i posunu ukazov�tka: po�adavek 0x%08x%08x, v�sledek 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "nedostatek pam�ti - kon��m\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 z�pisu 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 ulo�en� sektor� (%s) nelze otev��t\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "chyba z�pisu na %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "vol�n� stat pro soubor s ulo�en�mi 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 ulo�en�mi sektory m� chybnou velikost - nebude obnoven\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "nedostatek pam�ti?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "soubor s ulo�en�mi sektory (%s) nelze otev��t\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "chyba p�i �ten� %s\n"
-#: fdisk/sfdisk.c:355
+#: fdisk/sfdisk.c:388
#, c-format
msgid "cannot open device %s for writing\n"
msgstr "za��zen� %s nelze otev��t pro z�pis\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "chyba p�i z�pisu 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. Pou�it� fdisku je v tom p��pad� pravd�podobn� zbyte�n�\n"
"[Pou�ijte p�ep�na� --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 "Varov�n�: dle HDIO_GETGEO je po�et 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 "Varov�n�: dle HDIO_GETGEO je po�et 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 "Varov�n�: dle BLKGETSIZE/HDIO_GETGEO je po�et 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 ""
"Varov�n�: podivn� po�et sektor� (%lu) - obvykle neb�v� v�ce ne� 63\n"
"To zp�sob� probl�my v�em program�m, kter� pou��vaj� CHS adresov�n�.\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 diskov�ho odd�lu %s m� chybn� po�et hlav: %lu (m�lo by b�t 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 diskov�ho odd�lu %s m� chybn� po�et sektor�: %lu (m�lo by b�t 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 diskov�ho odd�lu %s m� chybn� po�et cylindr�: %lu (m�lo by b�t 0-%lu)\n"
-#: fdisk/sfdisk.c:609
+#: fdisk/sfdisk.c:657
msgid ""
"Id Name\n"
"\n"
msgstr "Id N�zev\n"
-#: fdisk/sfdisk.c:762
+#: fdisk/sfdisk.c:810
msgid "Re-reading the partition table ...\n"
msgstr "Na��t�m znovu tabulku rozd�len� 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 ""
"Nepoda�ilo se znovu na��st tabulku rozd�len� disku.\n"
"Restartujte nyn�, p�ed pou�it�m mkfs, syst�m.\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Chyba p�i zav�r�n� %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "diskov� odd�l %s neexistuje\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "Nezn�m� form�t - pou��v�m sektory\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# tabulka rozd�len� disku pro %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "nepou��van� form�t - pou��v�m %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, po��t�no od %d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
#, fuzzy
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Za��z Boot Za��tek Konec #cylind #bloky Id Syst�m\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, po��t�no od %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
#, fuzzy
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Za��z Boot Za��tek Konec #sektory Id Syst�m\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, po��t�no od %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
#, fuzzy
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Za��z Boot Za��tek Konec #bloky Id Syst�m\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 " Za��z Boot Za��tek Konec MB #bloky Id Syst�m\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\tza��tek: (c,h,s) p�edpoklad (%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) p�edpoklad (%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� odd�l 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� odd�ly\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 (m�sto %ld/%ld/%ld).\n"
"Zobrazuji za pou�it� t�to geometrie.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "Nebyla nalezena ��dn� tabulka rozd�len� disku.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "Zvl�tn� - po�et definovan�ch diskov�ch odd�l� 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 ""
"Varov�n�: diskov� odd�l %s m� velikost 0 a nen� ozna�en jako pr�zdn�.\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Varov�n�: diskov� odd�l %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 "Varov�n�: diskov� odd�l %s m� velikost 0 a nenulov� za��tek.\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Varov�n�: diskov� odd�l %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "nen� obsa�en v diskov�m odd�lu %s.\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Varov�n�: diskov� odd�ly %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "a %s se navz�jem p�ekr�vaj�.\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 p��pad� zapln�n� ji zni��\n"
-#: fdisk/sfdisk.c:1205
+#: fdisk/sfdisk.c:1253
#, c-format
msgid "Warning: partition %s starts at sector 0\n"
msgstr "Varov�n�: diskov� odd�l %s za��n� 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 "Varov�n�: diskov� odd�l %s p�esahuje 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 prim�rn�ch diskov�ch odd�l� m��e b�t roz���en�m.\n"
" (a�koliv v Linux to nen� probl�m)\n"
-#: fdisk/sfdisk.c:1242
+#: fdisk/sfdisk.c:1290
#, c-format
msgid "Warning: partition %s does not start at a cylinder boundary\n"
msgstr "Varov�n�: diskov� odd�l %s neza��n� 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 "Varov�n�: diskov� odd�l %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 ""
"Varov�n�: v�ce ne� jeden prim�rn� diskov� odd�l je ozna�en jako startovac�.\n"
"LILU to ne�in� probl�my, 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 ""
"Varov�n�: oby�ejn� je mo�n� startovat pouze z prim�rn�ch diskov�ch odd�l|�.\n"
"LILO nebude br�t ohled na p��znak '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 ""
"Varov�n�: ��dn� prim�rn� diskov� odd�l nen� ozna�en jako startovac�.\n"
"LILU to ne�in� probl�my, 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� odd�l %s: za��tek: (c,h,s) p�edpoklad (%ld,%ld,%ld), nalezeno\n"
"(%ld,%ld,%ld)\n"
-#: fdisk/sfdisk.c:1302
+#: fdisk/sfdisk.c:1350
#, fuzzy
msgid "end"
msgstr "odesl�n�"
-#: 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� odd�l %s: konec: (c,h,s) p�edpoklad (%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� odd�l %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 ""
"Varov�n�: za��tek roz���en�ho diskov�ho odd�lu posunut z %ld na %ld.\n"
"(Pouze pro ��ely v�pisu. Nem��te 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 ""
"Varov�n�: roz���en� diskov� odd�l neza��n� na hranici cylindru.\n"
"DOS a Linux budou jeho obsah interpretovat rozd�ln�.\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 "p��li� mnoho diskov�ch odd�l� - ignoruji > %d\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "strom diskov�ch odd�l�?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "nalezen Disk Manager - s t�m neum�m pracovat\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "nalezen DM6 podpis - kon��m\n"
-#: fdisk/sfdisk.c:1520
+#: fdisk/sfdisk.c:1568
msgid "strange..., an extended partition of size 0?\n"
msgstr "zvl�tn�..., roz���en� diskov� odd�l 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 "zvl�tn�..., BSD diskov� odd�l o velikosti 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " diskov� odd�l %s nen� zn�m\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "byl zad�n p�ep�na� -n: Nic nebylo zm�n�no\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Chyba p�i ukl�d�n� star�ch sektor� - kon��m\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "Chyba p�i z�pisu na diskov� odd�l %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "p��li� dlouh� �i ne�pln� ��dek - kon��m\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "vstupn� chyba: po polo�ce %s jsem o�ek�val 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: neo�ek�van� znak %c po polo�ce %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 p��li� 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� m�sto pro popis diskov�ho odd�lu\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "okoln� roz�i�uj�c� diskov� odd�l nelze vytvo�it\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "p��li� mnoho vstupn�ch polo�ek\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 ""
"Varov�n�: zadan� velikost(%ld) p�ekra�uje maxim�ln� povolenou velikost (%"
"lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Varov�n�: pr�zdn� diskov� odd�l\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Varov�n�: chybn� za��tek diskov�ho odd�lu (d��v�j�� %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "nerozpoznan� p��znak '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 "ne�pln� c,h,s specifikace?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Roz���en� diskov� odd�l na neo�ek�van�m m�st�\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 "p��li� mnoho diskov�ch odd�l�\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 ""
"<za��tek> <velikost> <typ [E,S,L,X,hex]> <startovac� [-,*]> <c,h,s> <c,h,s>\n"
"Obvykle je t�eba zadat pouze <za��tek> a <velikost> (a mo�n� <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 "Pou�it�: %s [p�ep�na�e] za��zen� ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "za��zen�: n�co jako /dev/hda �i /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "u�ite�n� p�ep�na�e:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [�i --show-size]: vyp��e velikost diskov�ho odd�lu"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr " -c [�i --id]: vyp��e �i zm�n� Id diskov�ho odd�lu"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [�i --list]: ke ka�d�mu za��zen� vyp��e diskov� odd�ly"
-#: 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 form�tu vhodn�m k dal��mu zpracov�n�"
-#: 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 m�sto 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 pou�ije 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]:vyp��e zn�m� typy diskov�ch odd�l�"
-#: 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: ub�r� trochu m�sta"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr ""
" -R [�i --re-read]: donut� j�dro znovu na��st tabulku rozd�len� disku"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# : zm�n� pouze diskov� odd�l s ��slem #"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : ��dn� zm�ny nebudou ulo�eny 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�� zm�n�n� 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]: vyp��e informace o verzi"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [�i --help]: vyp��e tuto n�pov�du"
-#: fdisk/sfdisk.c:2272
+#: fdisk/sfdisk.c:2322
msgid "dangerous options:"
msgstr "nebezpe�n� p�ep�na�e:"
-#: 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]: vyp��e informace o geometrii, kter�\n"
" udr�uje j�dro"
-#: 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]: vyp��e informace o roz���en�ch diskov�ch\n"
" odd�lech a na vstupu bude o�ek�vat 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]: probl�my nepodstatn� pro Linux budou ignorov�ny"
-#: fdisk/sfdisk.c:2277
+#: fdisk/sfdisk.c:2327
msgid " -q [or --quiet]: suppress warning messages"
msgstr " -q [�i --quiet]: nebude vypisovat varovn� hl�ky"
-#: fdisk/sfdisk.c:2278
+#: fdisk/sfdisk.c:2328
msgid " You can override the detected geometry using:"
msgstr " Nalezenou geometrii m��ete p�epsat 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� po�et 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� po�et 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� po�et cylindr�"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Ov��ov�n� konzistence m��ete 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 ve�ker� - i nesmysln� - po�adavky"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Pou�it�:"
-#: fdisk/sfdisk.c:2290
+#: fdisk/sfdisk.c:2340
#, c-format
msgid "%s device\t\t list active partitions on device\n"
msgstr "%s za��zen�\t\t vyp��e aktivn� diskov� odd�ly na dan�m za��zen�\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 za��zen� n1 n2 ... aktivuje diskov� odd�ly 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 za��zen�\t aktivuje diskov� odd�ly n ..., deaktivuje ostatn�\n"
-#: fdisk/sfdisk.c:2456
+#: fdisk/sfdisk.c:2506
msgid "no command?\n"
msgstr "��dn� p��kaz?\n"
-#: fdisk/sfdisk.c:2574
+#: fdisk/sfdisk.c:2624
#, fuzzy, c-format
msgid "total: %llu blocks\n"
msgstr "celkov� po�et blok�: %d\n"
-#: fdisk/sfdisk.c:2611
+#: fdisk/sfdisk.c:2661
msgid "usage: sfdisk --print-id device partition-number\n"
msgstr "Pou�it�: sfdisk --print-id za��zen� ��slo diskov�ho odd�lu\n"
-#: fdisk/sfdisk.c:2613
+#: fdisk/sfdisk.c:2663
msgid "usage: sfdisk --change-id device partition-number Id\n"
msgstr "Pou�it�: sfdisk --change-id za��zen� Id diskov�ho odd�lu\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "Pou�it�: sfdisk --id za��zen� ��slo diskov�ho odd�lu [Id]\n"
-#: fdisk/sfdisk.c:2622
+#: fdisk/sfdisk.c:2672
msgid "can specify only one device (except with -l or -s)\n"
msgstr "m��ete zadat pouze jedno za��zen� (vyj�mkou jsou p�ep�na�e -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 otev��t.\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, fuzzy, c-format
msgid "cannot open %s for reading\n"
msgstr "%s pro �ten� nelze otev��t"
-#: 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 m�sto 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 jedn�m aktivn�m diskov�m odd�lem.\n"
-#: fdisk/sfdisk.c:2828
+#: fdisk/sfdisk.c:2878
#, c-format
msgid "partition %s has id %x and is not hidden\n"
msgstr "diskov� odd�l %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 pr�v� pou��v�n.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Fat�ln� chyba: %s nelze nal�zt\n"
-#: fdisk/sfdisk.c:2920
+#: fdisk/sfdisk.c:2970
#, c-format
msgid "Warning: %s is not a block device\n"
msgstr "Varov�n�: %s nen� blokov�m za��zen�m\n"
-#: fdisk/sfdisk.c:2926
+#: fdisk/sfdisk.c:2976
msgid "Checking that no-one is using this disk right now ...\n"
msgstr "Ov��uji, zda tento disk nen� pr�v� pou��v�n ...\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 ""
"v�echny odkl�dac� prostory na tomto disku. K potla�en� t�to kontroly m��ete\n"
"pou��t p�ep�na� --no-reread.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Pou�ijte p�ep�na� --force k potla�en� ve�ker�ch 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� odd�l %d neexistuje. Nelze jej zm�nit.\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 rozlo�en� diskov�ch odd�l� se mi nel�b� - nic nem�n�m.\n"
"(Pokud jej opravdu chcete pou��t, pak zadejte p�ep�na� --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 nel�b� - m�l byste odpov�d�t NO\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Vyhovuje V�m to? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Ulo�it 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: p�ed�asn� konec vstupu\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Kon��m - nebyly u�in�ny ��dn� zm�ny\n"
-#: fdisk/sfdisk.c:2985
+#: fdisk/sfdisk.c:3035
msgid "Please answer one of y,n,q\n"
msgstr "Odpov�zte pros�m 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 rozd�len� disku byla �sp�n� ulo�ena.\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 (roz���en�) 1.1.2\n"
msgid "internal error, contact the author."
msgstr "Vnit�n� chyba, oznamte ji autorovi."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "spu�t�n pomoc� MILO\n"
-#: hwclock/cmos.c:181
+#: hwclock/cmos.c:185
msgid "Ruffian BCD clock\n"
msgstr "hodnoty ulo�eny v BCD tvaru\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "vstupn�/v�stupn� port pro p��stup k hodin�m nastaven na 0x%x\n"
-#: hwclock/cmos.c:209
+#: hwclock/cmos.c:213
msgid "funky TOY!\n"
msgstr "pou�it p�ep�na� --funky-toy!\n"
-#: hwclock/cmos.c:263
+#: hwclock/cmos.c:267
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: 1000 ne�sp�n�ch 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 otev��t: %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 nesna�il, nepoda�ilo se mi z�skat pr�va pro p��stup.\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: p��stup k portu nelze z�skat: vol�n� iopl(3) selhalo.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Pravd�podobn� je t�eba m�t pr�va superu�ivatele.\n"
@@ -5733,36 +5748,37 @@ msgid ""
"method.\n"
msgstr "Pro zji�t�n� podrobnost� pou�ijte p�ep�na� --debug.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Ve smy�ce se pokou��m zjistit �as pomoc� KDGHWCLK.\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "vol�n� 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 �asov�m limitu se nepoda�ilo zjistit �as.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "vol�n� KDGHWCLK ioctl ve smy�ce selhalo."
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "�as se pomoc� vol�n� ioctl() pro %s nepoda�ilo zjistit"
-#: hwclock/kd.c:129
+#: hwclock/kd.c:140
msgid "ioctl KDSHWCLK failed"
msgstr "vol�n� 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 otev��t"
-#: hwclock/kd.c:171
+#: hwclock/kd.c:180
msgid "KDGHWCLK ioctl failed"
msgstr "vol�n� 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* zm�n�ny. Zkuste to op�t pozd�ji.\n"
msgid "Finger information changed.\n"
msgstr "Finger informace byly zm�n�ny.\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 "vol�n� malloc selhalo"
@@ -6884,7 +6900,7 @@ msgstr ""
msgid "Unmounting any remaining filesystems..."
msgstr "Odpojuji v�echny zb�vaj�c� syst�my 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 "Zpr�va od %s@%s (jako %s) na %s v %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Zpr�va od %s@%s na %s v %s ..."
-#: mount/fstab.c:114
+#: mount/fstab.c:135
#, c-format
msgid "warning: error reading %s: %s"
msgstr "varov�n�: chyba p�i �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 "varov�n�: %s nelze otev��t: %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 otev��t - pou��v�m %s\n"
@@ -7550,42 +7566,42 @@ msgstr "mount: %s nelze otev��t - pou��v�m %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 vytvo�it: %s\n"
"(pou�ijte p�ep�na� -n pro vynech�n� z�pisu 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 ""
"vol�n� link pro zamykac� soubor %s selhalo: %s\n"
"(pou�ijte p�ep�na� -n pro vynech�n� z�pisu 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 otev��t: %s\n"
"(pou�ijte p�ep�na� -n pro vynech�n� z�pisu 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 "vypr�el �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 vytvo�it.\n"
"Nen� n�kde 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 otev��t %s (%s) - mtab nebyl aktualizov�n"
-#: mount/fstab.c:607
+#: mount/fstab.c:630
#, c-format
msgid "error writing %s: %s"
msgstr "chyba p�i z�pisu %s: %s"
-#: mount/fstab.c:615
+#: mount/fstab.c:640
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "chyba p�i zm�n� m�du %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 p�ejmenovat na %s: %s\n"
@@ -7671,26 +7687,26 @@ msgstr "mount: ��dn� voln� loop za��zen� nelze naj�t"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Nelze zamknout v pam�ti. Kon��m.\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): �sp�ch\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: za��zen� %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): �sp�ch\n"
-#: mount/lomount.c:374
+#: mount/lomount.c:378
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Tento program byl p�elo�en bez podpory pro loop. P�elo�te jej znovu.\n"
-#: mount/lomount.c:411
+#: mount/lomount.c:415
#, c-format
msgid ""
"usage:\n"
@@ -7703,186 +7719,186 @@ msgstr ""
" %s -d loop za��zen� # sma�e\n"
" %s [ -e �ifra ] [ -o posun ] loop za��zen� 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 pam�ti"
-#: 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 p�i p�ekladu zad�na. P�elo�te 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]: varov�n�: %s nen� ukon�eno 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� p�ipojeno 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 p�ipojeno 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 otev��t pro z�pis: %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 p�i z�pisu %s: %s"
-#: mount/mount.c:442
+#: mount/mount.c:421
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: chyba p�i zm�n� m�du %s: %s"
-#: mount/mount.c:493
+#: mount/mount.c:472
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s vypad� jako odkl�dac� prostor - nep�ipojeno"
-#: mount/mount.c:553
+#: mount/mount.c:532
msgid "mount failed"
msgstr "p�ipojen� se nezda�ilo"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: pouze superu�ivatel m��e p�ipojit %s na %s"
-#: mount/mount.c:584
+#: mount/mount.c:563
msgid "mount: loop device specified twice"
msgstr "mount: za��zen� loop bylo zad�no dvakr�t"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: typ byl zad�n dvakr�t"
-#: mount/mount.c:601
+#: mount/mount.c:580
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: p�eskakuji nastaven� loop za��zen�\n"
-#: mount/mount.c:610
+#: mount/mount.c:589
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: chyst�m se pou��t za��zen� loop %s\n"
-#: mount/mount.c:615
+#: mount/mount.c:594
msgid "mount: failed setting up loop device\n"
msgstr "mount: nepoda�ilo se nastavit za��zen� loop\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: za��zen� 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 otev��t: %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 otev��t"
-#: 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: vol�n� 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 p�elo�ena 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, zkou��m 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 syst�mu soubor� nebyl zad�n a ani jej nelze zjistit"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: mus�te zadat typ syst�mu soubor�"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: p�ipojen� se nezda�ilo"
-#: 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: p��pojn� bod %s nen� adres��em"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: p��stup odm�tnut"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: mount m��e pou��vat pouze superu�ivatel"
#. 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� p�ipojeno"
#. no
#. yes, don't mention it
-#: mount/mount.c:901
+#: mount/mount.c:891
msgid "mount: proc already mounted"
msgstr "mount: proc je ji� p�ipojeno"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s je ji� p�ipojeno, �i je %s ji� pou��v�no"
-#: mount/mount.c:909
+#: mount/mount.c:899
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: p��pojn� 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: p��pojn� bod %s je symbolick�m odkazem, jen� nikam neukazuje"
-#: mount/mount.c:914
+#: mount/mount.c:904
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: speci�ln� za��zen� %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: speci�ln� za��zen� %s neexistuje\n"
" (n�zev cesty neza��n� adres��em)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s je�t� nen� p�ipojeno �i chybn� p�ep�na�"
-#: 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� p�ep�na�, chybn� superblok na %s\n"
" nebo p��li� mnoho p�ipojen�ch syst�m� soubor�"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "tabulka p�ipojen� je pln�"
-#: mount/mount.c:975
+#: mount/mount.c:965
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: superblok nelze p�e��st"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "umount: blokov� za��zen� %s je nezn�m�"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: typ ss %s nen� podporov�n j�drem"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l vypsat zn�m� typy syst�m� soubor�"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: pravd�podobn� 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: mo�n� jste myslel iso9660 ?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: mo�n� 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 za��zen�, �i ss typ %s nen� podporov�n"
#. 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� blokov�m za��zen�m a vol�n� 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: j�dro nerozpoznalo %s jako blokov� za��zen� (mo�n� `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� blokov�m za��zen�m (mo�n� pom��e `-o loop'?)"
-#: mount/mount.c:1015
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s nen� blokov�m za��zen�m"
-#: mount/mount.c:1018
+#: mount/mount.c:1010
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s nen� platn�m blokov�m za��zen�m"
#. 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� za��zen�"
-#: mount/mount.c:1023
+#: mount/mount.c:1015
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "umount: %s%s nelze p�ipojit v re�imu 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 chr�n�no proti z�pisu, p�ipojuji 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 chr�n�no proti z�pisu, p�ipojuji 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 zad�n typ - budu pou��vat nfs kv�li dvojte�ce\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 zad�n typ - budu pou��vat smbfs kv�li dvojte�ce\n"
@@ -8000,22 +8022,22 @@ msgstr "mount: nebyl zad�n typ - budu pou��vat smbfs kv�li dvojte�ce\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: kon��m \"%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� p�ipojeno 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�� p�ep�na�e: [-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 m��e prov�st pouze superu�ivatel"
-#: mount/mount.c:1549
+#: mount/mount.c:1567
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: %s nebylo nalezeno - vytv���m jej..\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: ��dn� odpov�daj�c� diskov� odd�l nebyl nalezen"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: p�ipojuji %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "nebyl p�ipojen ��dn� diskov� odd�l"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: %s nelze v %s nal�zt"
-#: mount/mount.c:1603
+#: mount/mount.c:1620
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: %s nelze nal�zt 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: mus�te zadat typ syst�mu 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 syst�mu 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 " Vyzkou��m v�echny 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 odkl�dac� prostor\n"
-#: mount/mount_guess_fstype.c:528
+#: mount/mount_guess_fstype.c:549
#, c-format
msgid " I will try type %s\n"
msgstr " Vyzkou��m typ %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Pou��v�m %s.\n"
@@ -8366,11 +8388,11 @@ msgstr "umount: %s nelze znovu p�ipojit v re�imu 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 syst�m� soubor� na odpojen� nelze nal�zt"
-#: 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] speci�ln� soubor | uzel...\n"
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Zkou��m 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 naj�t\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 p�ipojeno"
-#: 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 p�ipojeno v�ce 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: p�ipojen� %s neodpov�d� fstab"
-#: mount/umount.c:616
+#: mount/umount.c:593
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "unmount: pouze u�ivatel %s m��e odpojit %s ze %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: toto m��e prov�st pouze u�ivatel root"
@@ -8428,7 +8450,7 @@ msgstr "Pouze u�ivatel root m��e nastavit chov�n� Ctrl-Alt-Del.\n"
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Pou�it�: 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, maxim�ln� po�et znak� ve fifo byl %d\n"
"a maxim�ln� p�enosov� rychlost ve znac�ch 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 maxim�ln� p�enosov� rychlost ve znac�ch 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� rozp�t�: %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 ""
"Pou�it�: %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 otev��t: %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 "Zpracov�n� sign�lu 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 "vol�n� 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 prov�st: %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 p�eru�en�, %lu znak�; fifo: %lu pr�h, %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 p�er/sek; %f p��j, %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 p�eru�en�, %lu znak�; fifo: %lu pr�h, %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 p�er/sek; %f p��j (znak/sek)\n"
@@ -9846,6 +9868,9 @@ msgstr "Vstupn� ��dka je p��li� dlouh�.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Nedostatek pam�ti pro rostouc� buffer.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: typ ss %s nen� podporov�n j�drem"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "vol�n� BLKGETSIZE ioctl pro %s selhalo\n"
diff --git a/po/da.po b/po/da.po
index cf037b39..5fce7f3e 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 St�rr. 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 omr�de"
@@ -1400,8 +1400,8 @@ msgstr "Ugyldig tast"
msgid "Press a key to continue"
msgstr "Tryk en tast for at forts�tte"
-#: 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�r"
@@ -1409,8 +1409,8 @@ msgstr "Prim�r"
msgid "Create a new primary partition"
msgstr "Opret en ny prim�r 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 "Tilf�j partition i slutningen af det frie omr�de"
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 v�re 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� diskst�rrelsen"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Ugyldig prim�rpartition"
-#: 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 �del�gger 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 genindl�sning 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 prim�rpartitioner 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 prim�rpartitioner 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� sk�rmen: "
-#: 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 " Prim�r"
-#: 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 "F�rdig"
-#: 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 " F�rste 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 L�ngde 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 r�tdata 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 "Hj�lpesk�rm 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 b�r 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 g�r."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Vis denne sk�rm"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maksim�r partitionens diskforbrug"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Bem�rk: Dette kan g�re 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 omr�de"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2224
msgid " p Print partition table to the screen or to a file"
msgstr " p Udl�s partitionstabellen til sk�rmen 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 v�lge mellem:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - R�data (n�jagtig 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 r�data 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 partitionsst�rrelser"
-#: 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 v�re 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 �del�gge 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 " bekr�fte 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 mark�ren til forrige partition"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Pil ned Flyt mark�ren til n�ste partition"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Gentegner sk�rmen"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Vis denne sk�rm"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2243
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Bem�rk: 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 "F�rdig"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "F�rdig med geometri�ndring"
-#: 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 "St�rrelse: %lld byte, %ld Mb"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "St�rrelse: %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 "[M�rkat]"
-#: 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 "St�rrelse (MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
#, fuzzy
msgid " Size (GB)"
msgstr "St�rrelse (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 "Hj�lp"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Vis hj�lpesk�rm"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize"
msgstr "Maksim�r"
-#: fdisk/cfdisk.c:2655
+#: fdisk/cfdisk.c:2668
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Maksim�r 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 omr�de"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "Udl�s"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print partition table to the screen or to a file"
msgstr "Udl�s partitionstabellen til sk�rmen 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 �del�gge data)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Kan ikke g�re 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 st�rre 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 f�r du tilf�jer 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 "Fors�ger 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 f�rst!\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 f�rst!\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 "Fors�ger 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\tL�NGDE=%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 "s�gefejl p� %s - kunne ikke s�ge 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 "s�gefejl: �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 "l�bet t�r 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 "l�sefejl p� %s - kunne ikke l�se 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 st�rrelse - genskaber ikke\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "l�bet t�r 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 l�sning 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 st�rrelsen\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 meningsl�st.\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 h�jst 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-v�rdi: %lu (burde v�re 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-v�rdi: %lu (burde v�re 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-v�rdi: %lu (burde v�re 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 "Genindl�ser 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 genindl�sning af partitionstabellen mislykkedes\n"
"Genstart dit system nu, f�r 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 s�dan 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, t�ller 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, t�ller 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, t�ller 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, t�ller 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 "m�rkeligt, 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 st�rrelsen 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 st�rrelsen 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 st�rrelsen 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 �del�gge denne, n�r 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 n�r 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 prim�rpatitionerne m� v�re 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 cylindergr�nse\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 cylindergr�nse\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 prim�rpartitioner\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 prim�rpartition 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"
"(Vedr�rer 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 cylindergr�nse.\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 h�ndtere s�dan 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 "m�rkeligt... en udvidet partition med st�rrelsen 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 "m�rkeligt..., en BSD-partition med st�rrelsen 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 st�rrelse(%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, v�lg - 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> <st�rr> <type [E,S,L,X,hex]> <bootable [-,*]> <c,h,s> <c,h,s>\n"
"Du beh�ver normalt kun at angive <start> og <st�rr> (og m�ske <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 st�rrelse"
-#: 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: indl�s/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 genindl�se 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 r�d, der ikke vedr�rer 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 tilsides�tte 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]: g�r 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 ... aktiv�r partitionerne p� n1 ..., deaktiv�r 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 aktiv�r partition n, deaktiv�r 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 l�sning\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� st�rrelsen 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 ""
"F�rdig\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 prim�rpartitioner. 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 b�r 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 programm�ren."
-#: 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 fors�gte.\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 beh�ver nok root-rettigheder.\n"
@@ -5752,36 +5768,37 @@ msgstr ""
"Benyt tilvalget --debug for at se detaljerne fra vores s�gning 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 l�kke 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 afl�se 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 "Tidsudl�b mens der ventedes p� tids�ndring.\n"
-#: hwclock/kd.c:71
+#: hwclock/kd.c:82
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK ioctl for at afl�se tiden mislykkedes i l�kke"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() kunne ikke afl�se 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. Pr�v 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 udf�re 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 l�sning 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 l�sefil %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 l�nke l�sefilen %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 l�sefilen %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 l�se l�sefilen %s: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "kunne ikke l�se l�sefilen %s: %s"
-#: mount/fstab.c:507
+#: mount/fstab.c:528
msgid "timed out"
msgstr "tidsoverl�b"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7600,22 +7617,22 @@ msgstr ""
"Kunne ikke oprette l�nken %s\n"
"M�ske er der en efterladt l�sefil?\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 omd�be %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 l�se 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-underst�ttelse. Genovers�t 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 # klarg�r\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-underst�ttelse tilg�ngelig ved overs�ttelsen. Genovers�t "
"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: if�lge 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: if�lge 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-omr�de - 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 ops�tning 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: klarg�ring af loop-enhed mislykkedes\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: klarg�ringen 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 s�tte hastigheden"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: kunne ikke s�tte 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 underst�ttelse 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, pr�ver 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 n�gtet"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: skal v�re 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 l�nke 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 l�se 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 underst�ttes 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 m�ske iso9660 ?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: du mente m�ske 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 underst�ttes 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"
" (m�ske hj�lper '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: k�rer \"%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"
"L�s 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 g�re"
-#: 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 s�dan 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 g�t 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 fors�ge alle typerne, der n�vnes 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 swapomr�de\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 fors�ge type %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "Fors�ger %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 "Fors�ger 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 (if�lge 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 g�re"
@@ -8435,7 +8458,7 @@ msgstr "Du skal v�re root for at s�tte Ctrl-Alt-Del-opf�rslen.\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 gr�nsev�rdi %lu, Maksimale antal tegn i fifo var %d,\n"
"og den maksimale overf�rselshastighed 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 overf�rselshastighed 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 intervalv�rdi: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Ugyldig sat v�rdi: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Ugyldig standardv�rdi: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Ugyldig sat tidsv�rdi: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Ugyldig standard tidsv�rdi: %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 v�rdi]|[-S v�rdi]) ([-t v�rdi]|[-T v�rdi]) "
"[-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 s�tte %s til gr�nsen %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 s�tte %s til tidsgr�nsen %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� gr�nsen 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� tidsoverl�bet 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 gr�nse og %ld aktuelle tidsoverl�b\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 gr�nse og %ld standard tidsoverl�b\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "Kunne ikke s�tte signalh�ndteringen"
-#: 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 (afl�sning 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 udf�re 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 gr�nse, %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 gr�nse, %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 "L�b t�r for hukommelse under forst�rring af buffer.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: filsystemtype %s underst�ttes 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 cd3c65d1..a992b24f 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 0fbe2be5..b3e9578f 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 partici�n 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 "L�gica"
@@ -1449,7 +1449,7 @@ msgstr "L�gica"
msgid "Create a new logical partition"
msgstr "Crea una nueva partici�n 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 "Cancelar"
@@ -1485,167 +1485,183 @@ msgstr "A�ade la partici�n al final del espacio libre"
msgid "No room to create the extended partition"
msgstr "No hay espacio para crear la partici�n 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 "S�lo 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 vac�a? [y/N]"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Ha especificado m�s 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 s�lo 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 tama�o del disco"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Partici�n primaria incorrecta"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Partici�n l�gica incorrecta"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "�Atenci�n!: esta operaci�n 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 partici�n 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 m�s de una partici�n 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 partici�n.
-#: 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/L�g"
-#: fdisk/cfdisk.c:1953
+#: fdisk/cfdisk.c:1966
msgid " Primary"
msgstr " Primaria"
-#: 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 "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 N�mero 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 "S�lo 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 partici�n actual"
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Suprime la partici�n actual"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g Cambia los par�metros 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 " ATENCI�N: Se recomienda utilizar esta opci�n �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 utilizaci�n del disco de la partici�n actual"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Nota: Esta opci�n puede hacer que la partici�n 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 partici�n 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 partici�n"
-#: 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 escribir�a 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 visualizaci�n del tama�o de la partici�n"
-#: 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 may�sculas)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Esta operaci�n de escritura puede causar la destrucci�n"
-#: 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 partici�n 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 partici�n 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 may�sculas o min�sculas"
-#: 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 geometr�a 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 geometr�a de cabezas"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Cambiar geometr�a 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 operaci�n de cambio de geometr�a"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Escriba el n�mero 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 n�mero 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 n�mero 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 vac�o"
-#: 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/L�g"
-#: 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 "Tama�o: %lld bytes, %lld MB"
-#: fdisk/cfdisk.c:2577
+#: fdisk/cfdisk.c:2590
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Tama�o: %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 " Tama�o(MB)"
-#: fdisk/cfdisk.c:2597
+#: fdisk/cfdisk.c:2610
msgid " Size (GB)"
msgstr "Tama�o (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 partici�n 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 partici�n actual"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "Geometr�a"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Cambia la geometr�a del disco (s�lo 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 partici�n actual (s�lo 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 partici�n 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 tama�o de la partici�n (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 informaci�n)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "No se puede convertir esta partici�n en una partici�n iniciable"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "No se puede suprimir una partici�n vac�a"
-#: 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 partici�n"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Esta partici�n se encuentra en estado inutilizable"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Esta partici�n 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 partici�n vac�a"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "No hay m�s 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 m�ximo %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 partici�n %d ya est� definida. Supr�mala antes de volver a a�adirla.\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 v�lida\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 partici�n 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 autom�ticamente.\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. Corr�jalo 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 partici�n 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. Corr�jalo 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 ""
"operaci�n, 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 geometr�a del cilindro de %d. Este valor podr�a 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 par�metros de la partici�n %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 b�squeda 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 b�squeda: 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 partici�n (%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 partici�n (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
"Tama�o incorrecto de fichero de restaurar partici�n; no se efect�a "
"restauraci�n\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 partici�n (%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 geometr�a\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 tama�o\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 opci�n --force si realmente desea realizar esta operaci�n.]\n"
-#: fdisk/sfdisk.c:462
+#: fdisk/sfdisk.c:510
#, c-format
msgid "Warning: HDIO_GETGEO says that there are %lu heads\n"
msgstr "Atenci�n: 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 "Atenci�n: 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 "Atenci�n: 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 ""
"Atenci�n: n�mero improbable de sectores (%lu); normalmente 63 como m�ximo\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 partici�n %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 partici�n %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 partici�n %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 partici�n 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 N�cil N�bloq. 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 N�bloques 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 N�bloques 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 partici�n termina en el cilindro %ld, m�s 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 partici�n\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 geometr�a.\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 "Extra�amente s�lo 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 ""
"Atenci�n: la partici�n %s tiene tama�o 0 pero no est� marcada como vac�a\n"
-#: fdisk/sfdisk.c:1155
+#: fdisk/sfdisk.c:1203
#, c-format
msgid "Warning: partition %s has size 0 and is bootable\n"
msgstr "Atenci�n: la partici�n %s tiene tama�o 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 ""
"Atenci�n: la partici�n %s tiene tama�o 0 y principio distinto de cero\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Atenci�n: la partici�n %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 partici�n %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Atenci�n: 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 ""
"Atenci�n: la partici�n %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 "Atenci�n: la partici�n %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 "Atenci�n: la partici�n %s finaliza m�s 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 m�ximo 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 "Atenci�n: la partici�n %s no empieza en un l�mite 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 "Atenci�n: la partici�n %s no termina en un l�mite 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 ""
"Atenci�n: normalmente s�lo 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 ""
"Partici�n %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 ""
"Partici�n %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 partici�n %s termina en el cilindro %ld, m�s 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 ""
"Atenci�n: se desplaza el comienzo de la partici�n 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 interpretar�n 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 "Situaci�n an�mala: �partici�n extendida de tama�o 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 "Situaci�n an�mala: �partici�n BSD de tama�o 0?\n"
-#: fdisk/sfdisk.c:1572
+#: fdisk/sfdisk.c:1620
#, fuzzy, c-format
msgid " %s: unrecognized partition table type\n"
msgstr " %s: partici�n 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 ning�n 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 operaci�n\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "Error al escribir la partici�n en %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "L�nea de entrada larga o incompleta; se abandona la operaci�n\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 `=' despu�s 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: car�cter 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 "N�mero demasiado elevado\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "Datos extra�os tras el n�mero\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "No hay espacio para descriptor de partici�n\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "No se puede crear partici�n 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 m�s 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 ""
"Atenci�n: el tama�o dado (%lu) supera el tama�o m�ximo permitido (%lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Atenci�n: partici�n vac�a\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Atenci�n: principio de partici�n 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 "�Especificaci�n parcial de cil,cab,sect?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Partici�n extendida en ubicaci�n 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 s�lo debe especificar <principio> y <tama�o> (y quiz�s <tipo>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "versi�n"
-#: 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 tama�o de una partici�n"
-#: 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 partici�n"
-#: 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]: N�mero 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 n�cleo 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 partici�n con el n�mero #"
-#: 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 versi�n"
-#: 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 n�cleo sobre la geometr�a"
-#: 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 tambi�n 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 geometr�a 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 n�mero de cilindros que se utilizar�n"
-#: 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 n�mero de cabezas que se utilizar�n"
-#: 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 n�mero de sectores que se utilizar�n"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Puede desactivar toda comprobaci�n 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 il�gico"
-#: 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 partici�n 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 n�mero-partici�n\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 n�mero-partici�n Id\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "uso: sfdisk --id dispositivo n�mero-partici�n [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 s�lo 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 tama�o 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 s�lo puede iniciar discos con una partici�n 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�n %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 "Atenci�n: %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"
"comprobaci�n.\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 "Situaci�n anterior:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "La partici�n %d no existe; no se puede cambiar\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Situaci�n 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 operaci�n, use la opci�n --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 operaci�n; 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 operaci�n? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "�Desea escribir esta informaci�n 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 at�mico 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 opci�n --debug para ver los detalles de la b�squeda para un "
"m�todo 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 contrase�a."
#: 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 "Contrase�a: "
@@ -6304,7 +6321,7 @@ msgstr ""
msgid "Finger information changed.\n"
msgstr "Se ha cambiado la informaci�n 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 asignaci�n de memoria (malloc) ha fallado"
@@ -7053,7 +7070,7 @@ msgstr "No se puede ejecutar umount; se abandona la operaci�n 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 "atenci�n: 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 "atenci�n: 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 ning�n 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): ejecuci�n 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): ejecuci�n 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 "
"compilaci�n.\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 hab�a soporte de bucle disponible. Vuelva a realizar la "
"compilaci�n.\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�n: no hay ninguna nueva l�nea 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 l�nea %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: seg�n 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: seg�n 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 err�neo"
-#: mount/mount.c:555
+#: mount/mount.c:534
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: s�lo 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 configuraci�n 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: configuraci�n 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 n�mero"
-#: 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 versi�n 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 versi�n 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 err�neo"
-#: 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 simb�lico 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 todav�a o una opci�n 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 n�mero 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 n�cleo"
+#: 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 quer�a 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 quer�a referirse a iso9660?"
-#: mount/mount.c:1001
+#: mount/mount.c:990
+#, fuzzy
+msgid "mount: maybe you meant 'vfat'?"
+msgstr "mount: �tal vez quer�a 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 n�cleo 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 v�lido"
#. 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 s�lo 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 opci�n `-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 s�lo 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 ning�n 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 ning�n 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 m�s.\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: s�lo el usuario root puede efectuar esta acci�n"
-#: 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 partici�n"
-#: 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 ning�n 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 s�lo 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 (seg�n 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: s�lo %s puede desmontar %s desde %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: s�lo el usuario root puede efectuar esta acci�n"
@@ -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, m�ximo de caracteres en fifo fue %d\n"
"y velocidad de transferencia m�xima 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 m�xima 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 inv�lido: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Valor establecido inv�lido: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Valor predeterminado inv�lido: %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 inv�lido: %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 inv�lido: %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 se�ales"
-#: 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 m�ximo, %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 recepci�n, %f env�o (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 "
"m�ximo, %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 recepci�n (caracteres/seg.)\n"
@@ -10040,6 +10062,10 @@ msgstr "L�nea de entrada demasiado larga.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "No queda memoria al aumentar el tama�o del b�fer.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr ""
+#~ "mount: el tipo de sistema de ficheros %s no est� soportado por el n�cleo"
+
#~ 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 58ecf4fc..b345531d 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 m�nda klahvi j�tkamiseks"
-#: 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 "T�hista"
@@ -1420,161 +1420,177 @@ msgstr "Lisada partitsioon vaba ruumi l�ppu"
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 v�i vale signatuur partitsioonitabelis"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Tr�kkida 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 t�hja 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 v�ib Teie kettal andmeid h�vitada!"
-#: 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 v�i 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' v�i `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 eba�nnestus. 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 m�rgitud 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 m�rgitud 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 v�i vajuta RETURN ekraanil n�itamiseks: "
-#: 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 ""
" # T��p Sektor Sektor Offset Pikkus Failis�st. t��p (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----- -----L�pp----- 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 "Tr�kkida 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 "Tr�kkida tabel j�rjestatuna sektorite j�rgi"
-#: 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 "Tr�kkida lihtsalt tabel"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "Ei tr�ki 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 k�vakettal."
-#: 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 "K�sk T�hendus"
-#: 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 k�sk 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 N�idata 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 " M�rkus: see v�ib teha ketta mitte�hilduvaks DOSi,"
-#: fdisk/cfdisk.c:2209
+#: fdisk/cfdisk.c:2222
msgid " DOS, OS/2, ..."
msgstr " OS/2 ja muude operatsioonis�teemidega."
-#: 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 V�ljastada partitsioonitabel ekraanile v�i faili"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2225
msgid " There are several different formats for the partition"
msgstr " V�ljastamisel v�ite 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 j�rgi j�rjestatud 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 V�ljuda programmist ilam muutusi salvestamata"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2231
msgid " t Change the filesystem type"
msgstr " t Muuta jooksva partitsiooni failis�steemi t��pi"
-#: 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, suurt�ht)"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Kuna see v�ib kettalt andmeid h�vitada, k�sitakse"
-#: 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 " t�iss�naga (`jah' v�i `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 j�rgmisele 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 " ? N�idata 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 "M�rkus: k�iki neid k�ske saab sisestada nii suur- kui v�iket�htedena,"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "v�lja 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 failis�steemi t��bi number: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Failis�steemi t��pi ei saa muuta t�hjaks"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Failis�steemi t��pi 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 "P�id: %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 "T��p"
-#: fdisk/cfdisk.c:2588
+#: fdisk/cfdisk.c:2601
msgid "FS Type"
msgstr "FS t��p"
-#: 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 "N�idata 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 "V�ljastada partitsioonitabel ekraanile v�i faili"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit"
msgstr "V�lja"
-#: fdisk/cfdisk.c:2658
+#: fdisk/cfdisk.c:2671
msgid "Quit program without writing partition table"
msgstr "V�ljuda programmist ilam muutusi salvestamata"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Type"
msgstr "T��p"
-#: fdisk/cfdisk.c:2659
+#: fdisk/cfdisk.c:2672
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Muuta failis�steemi t��pi (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 n�itamise �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 (v�ib h�vitada 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 "T�hja 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 "T�hja partitsiooni t��pi 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 k�sk"
-#: 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 m��rama, 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 m�ned 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 k�igepealt!\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 t��pi \"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 k�igepealt �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. P�rast 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 s�ilitada 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 "M�lu 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 "M�lu 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 m�ttetu.\n"
"Kasutage --force v�tit, kui t�esti 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 k�igi 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 v��rtust: %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 v��rtust: %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 L�pp #sil #plokke ID S�steem\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 L�pp #sektors ID S�steem\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 L�pp #plokke ID S�steem\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 L�pp MB #plokke ID S�steem\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\tl�pp: (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 l�peb silindril %ld, tagapool ketta l�ppu\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 n�itamisel.\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 m�rgitud t�hjaks\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 m�rgitud 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 h�vitab selle, kui ta andmetega t�idetakse\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 s�idab �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 l�ppe 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 v�ib 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 m�rgitud 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: t�hi 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 [ v�tmed ] 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 v�i 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 k�sinudki\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 v�tit, et n�ha otsingu detaile juurdep��su otsimisel\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Ootan ts�kils, kuni KDGHWCLK abil saadud aeg edasi l�heb\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 ts�kils"
-#: 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 v�i /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 "M�lu sai otsa"
@@ -6837,7 +6854,7 @@ msgstr "Ei suuda k�ivitada umount'i, annan alla umount'iga tegelemisel"
msgid "Unmounting any remaining filesystems..."
msgstr "Monteerin lahti k�ik allesj��nud failis�steemid"
-#: 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 k�ivitada 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 failis�steemide t��pidest"
-#: 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 4dddbee1..ede670c3 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 "k�ytt�:\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 k�ytett�viss�"
-#: 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 "V��r� n�pp�in"
msgid "Press a key to continue"
msgstr "Paina n�pp�int� 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 ensi�osio"
-#: 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 tyhj�n 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 "N�yt� 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 tyhj�ll� osiotaululla [y/N]?"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Annoit suuremman sylinterim��r�n 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 ensi�osio"
-#: 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!! T�m� 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 ep�onnistui. Tietokone on "
"k�ynnistett�v� uudelleen, jotta taulu p�ivittyy."
-#: fdisk/cfdisk.c:1840
+#: fdisk/cfdisk.c:1853
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Yht��n ensi�osiota ei ole merkitty k�ynnistett�v�ksi. DOS MBR ei k�ynnist� "
"t�t�."
-#: 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 ensi�osio on merkitty k�ynnistett�v�ksi. DOS MBR ei "
"k�ynnist� t�t�."
-#: 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 "Sy�t� tiedostonimi tai paina RETURN saadaksesi n�yt�lle: "
-#: 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 mit��n"
-#: 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 "K�ynnistett�v�"
-#: 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 mit��n"
-#: 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.j�rj. 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 P��t Sekt Syl ID P��t Sekt Syl sektori m��r�\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 "N�yt� 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 "N�yt� taulu j�rjestettyn� 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 "N�yt� osiotaulu"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "�l� n�yt� 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 "T�m� 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 k�ynnistett�vyyslippu p��lle/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: T�t� valitsinta tulee k�ytt�� vain niiden,"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " jotka tiet�v�t mit� ovat tekem�ss�."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h N�yt� t�m� ohjeruutu"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maksimoi nykyisen osion levynk�ytt�"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Huom: T�m� saattaa tehd� osiosta ep�yhteensopivan"
-#: 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 tyhj�st� 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 j�rjestetty 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 tiedostoj�rjestelm�n tyyppi�"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr " u Muuta osiokokon�kym�n yksik�it�"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2233
msgid " Rotates through MB, sectors and cylinders"
msgstr " Vaihtaa megatavujen, sektoreiden ja sylinterien v�lill�"
-#: 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 t�m� 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 yl�s 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 " ? N�yt� t�m� 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 "P��t"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Vaihda p��geometriaa"
-#: 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 m��r�: "
-#: 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 p�iden m��r�: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Virheellinen p��arvo"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Anna sektorien m��r� uraa kohden: "
-#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2328 fdisk/cfdisk.c:2890
msgid "Illegal sectors value"
msgstr "Virheellinen sektorim��r�"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Anna tiedostoj�rjestelm�n tyyppi: "
-#: fdisk/cfdisk.c:2436
+#: fdisk/cfdisk.c:2449
msgid "Cannot change FS Type to empty"
msgstr "Tiedostoj�rjestelm�n tyyppi� ei voi muuttaa tyhj�ksi"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Tiedostoj�rjestelm�n 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 "P��t: %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.j�rj.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 "K�ynnistett�v�"
-#: fdisk/cfdisk.c:2651
+#: fdisk/cfdisk.c:2664
msgid "Toggle bootable flag of the current partition"
msgstr "Aseta nykyisen osion k�ynnistett�vyyslippu p��lle/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 "N�yt� 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 tilank�ytt� (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 tyhj�st� tilasta"
-#: fdisk/cfdisk.c:2657
+#: fdisk/cfdisk.c:2670
msgid "Print"
msgstr "N�yt�"
-#: 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 tiedostoj�rjestelm�n tyyppi (DOS, Linux, OS/2, jne)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Yksik�t"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Vaihda osiokokon�yt�n yksik�t (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 (t�m� saattaa tuhota dataa)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "T�st� osiosta ei voi tehd� k�ynnistett�v��"
-#: 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 "T�t� osiota ei voi maksimoida"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "T�m� osio on ei ole k�ytett�viss�"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "T�m� osio on jo k�yt�ss�"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "Tyhj�n 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 "p��t"
-#: 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 kokonaism��r� %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 m��ritelty. Poista se ennen uudelleen lis��mist�.\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 sis�ll� 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 "Tied�tk�, ett� levyll� on p��llekk�isi� osioita?\n"
-#: fdisk/fdisksgilabel.c:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "Yritet��n 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 k�yt�ss�.\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 p��llekk�isi� osioita. T�m� 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 eritt�in 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 p��llekk�isi� osioita. T�m� 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 ""
"tietenk��n 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. T�m� 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 "Yritet��n s�ilytt�� 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 v��r� - 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 todenn�k�isesti turhaa.\n"
"[K�yt� --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� p�it� 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 ""
"T�st� aiheutuu ongelmia kaikkien C/H/S-osoitusta k�ytt�vien ohjelmien "
"kanssa.\n"
-#: fdisk/sfdisk.c:477
+#: fdisk/sfdisk.c:525
#, c-format
msgid ""
"\n"
@@ -4383,13 +4399,13 @@ msgstr ""
# ensimm�inen %s on "start" tai "end", joita ei voi suomentaa
# bugiraportti t�ytyy l�hett�� 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 p��arvo 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 ep�onnistui\n"
"K�ynnist� j�rjestelm� uudelleen nyt, ennen mkfs:n k�ytt��\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 - k�ytet��n 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 - k�ytet��n %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 K�ynn Alku Loppu #syl #lohkot Id J�rjestelm�\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 ""
"Yksik�t = 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 K�ynn Alku Loppu #sektorit Id J�rjestelm�\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 ""
"Yksik�t = 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 K�ynn Alku Loppu #lohkot Id J�rjestelm�\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 K�ynn Alku Loppu Mt #lohkot Id J�rjestelm�\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) l�ytyi (%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) l�ytyi (%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 j�lkeen\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Osioita ei l�ytynyt\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"
"T�ss� listauksessa k�ytet��n 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 m��ritelty.\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 tyhj�ksi\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 k�ynnistett�v�ksi\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 sis�lly 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 p��llekk�iset\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 sis�lt�� osan osiotaulusta (sektori %lu), ja se tulee\n"
"tuhoutumaan kun osiota k�ytet��n\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 ensi�osio voi olla laajennettu\n"
" (t�m� 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 k�ynnist� t�lt� 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 ensi�osiolta voi k�ynnist��\n"
"LILO ei v�lit� \"k�ynnistett�v�\"-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 k�ynnist� t�lt� "
"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) l�ytyi (%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) l�ytyi (%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 j�lkeen\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 sis�lt��.)\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 sis�ll�n 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) j�lkeisi�\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 k�sitell�\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "DM6-allekirjoitus l�ytyi - 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: Mit��n ei muutettu\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "Vanhojen sektoreiden tallennus ep�onnistui - keskeytet��n\n"
-#: fdisk/sfdisk.c:1605
+#: fdisk/sfdisk.c:1653
#, c-format
msgid "Failed writing the partition on %s\n"
msgstr "Osion kirjoitus ep�onnistui laitteelle %s\n"
-#: fdisk/sfdisk.c:1682
+#: fdisk/sfdisk.c:1730
msgid "long or incomplete input line - quitting\n"
msgstr "liian pitk� tai ep�t�ydellinen sy�terivi - lopetetaan\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "sy�tevirhe: kent�n %s j�lkeen odotetaan l�ytyv�n \"=\"\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "sy�tevirhe: odottamaton merkki %c kent�n %s j�lkeen\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "tunnistamaton sy�te: %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 per�ss�\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 "ymp�r�iv�� laajennettua osiota ei voi rakentaa\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "liian monta sy�tekentt��\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 \"k�ynnistett�v�\"-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-m��ritys?\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 sy�te\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]> <k�ynnistett�v� [-,*]> <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 "K�ytt�: %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 "hy�dylliset valitsimet:"
-#: fdisk/sfdisk.c:2257
+#: fdisk/sfdisk.c:2307
msgid " -s [or --show-size]: list size of a partition"
msgstr " -s [tai --show-size]: n�yt� osion koko"
-#: fdisk/sfdisk.c:2258
+#: fdisk/sfdisk.c:2308
msgid " -c [or --id]: print or change partition Id"
msgstr " -c [tai --id: n�yt� 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 sy�tteeksi"
-#: 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: k�yt� yksikk�in� 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 v�h�n tilaa"
-#: fdisk/sfdisk.c:2265
+#: fdisk/sfdisk.c:2315
msgid " -R [or --re-read]: make kernel reread partition table"
msgstr " -R [tai --re-read]: k�ske 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 n�m� sektorit"
-#: fdisk/sfdisk.c:2270
+#: fdisk/sfdisk.c:2320
msgid " -v [or --version]: print version"
msgstr " -v [tai --version]: n�yt� versio"
-#: fdisk/sfdisk.c:2271
+#: fdisk/sfdisk.c:2321
msgid " -? [or --help]: print this message"
msgstr " -? [tai --help]: n�yt� t�m� 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]: n�yt� ytimen k�sitys 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 my�s laajennetut osiot tulosteessa\n"
" tai odota sy�tteest� 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 merkityksett�mist� 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 k�ytt�m�ll�:"
-#: fdisk/sfdisk.c:2279
+#: fdisk/sfdisk.c:2329
msgid " -C# [or --cylinders #]:set the number of cylinders to use"
msgstr " -C# [tai --cylinders #]:aseta k�ytett�v� sylinterien m��r�"
-#: fdisk/sfdisk.c:2280
+#: fdisk/sfdisk.c:2330
msgid " -H# [or --heads #]: set the number of heads to use"
msgstr " -h# [tai --heads #]: aseta k�ytett�v� p�iden m��r�"
-#: fdisk/sfdisk.c:2281
+#: fdisk/sfdisk.c:2331
msgid " -S# [or --sectors #]: set the number of sectors to use"
msgstr " -S# [tai --sectors #]: aseta k�ytett�v� sektorien m��r�"
-#: 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� k�sken, vaikka se olisi tyhm��"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "K�ytt�:"
-#: 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 "k�ytt�: 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 "k�ytt�: 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 "k�ytt�: 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 p��t�, %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 ensi�osioita on %d kappaletta. T�m� ei haittaa LILOa, mutta\n"
"DOS MBR k�ynnist�� 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 k�tketty\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 t�ll� hetkell� k�yt�ss�.\n"
-#: fdisk/sfdisk.c:2917
+#: fdisk/sfdisk.c:2967
#, c-format
msgid "Fatal error: cannot find %s\n"
msgstr "Vakava virhe: laitetta %s ei l�ydy\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 k�yt� 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"
"K�yt� valitsinta --no-reread t�m�n testin ohittamiseen.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "K�yt� --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� n�ist� osioista - mit��n ei muutettu.\n"
"(Jos todella haluat t�t�, k�yt� 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� t�st� - kannattaa todenn�k�isesti vastata \"No\"\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "Oletko tyytyv�inen t�h�n? [ynq] "
-#: fdisk/sfdisk.c:2972
+#: fdisk/sfdisk.c:3022
msgid "Do you want to write this to disk? [ynq] "
msgstr "Haluatko kirjoittaa t�m�n 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 sy�tteen loppu\n"
-#: fdisk/sfdisk.c:2979
+#: fdisk/sfdisk.c:3029
msgid "Quitting - nothing changed\n"
msgstr "Lopetetaan - mit��n 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 "sis�inen virhe, ota yhteytt� tekij��n."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "k�ynnistetty 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\" ep�onnistui 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 k�ytt�oikeutta, koska en yritt�nyt.\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 k�ytt�oikeutta I/O-porttiin: iopl(3)-kutsu ep�onnistui.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Tarvitset todenn�k�isesti p��k�ytt�j�n oikeudet.\n"
@@ -5750,36 +5766,37 @@ msgid ""
msgstr ""
"K�yt� --debug -valitsinta n�hd�ksesi yksityiskohdat k�ytt�tavan etsinn�st�.\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 ep�onnistui"
-#: 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 ep�onnistui 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 ep�onnistui"
-#: 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 ep�onnistui"
@@ -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� my�hemmin 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\" ep�onnistui"
@@ -6906,7 +6923,7 @@ msgstr "Ohjelmaa umount ei voi k�ynnist��, luovutaan irrotusyrityksest�."
msgid "Unmounting any remaining filesystems..."
msgstr "Irrotetaan j�ljell� olevat tiedostoj�rjestelm�t..."
-#: 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 k�ytt�j�lt� %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 (k�yt� 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 (k�yt� 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 (k�yt� 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 p�ivitetty"
-#: 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 "nime�minen %s -> %s ei onnistu: %s\n"
@@ -7685,26 +7702,26 @@ msgstr "mount: ei l�ytynyt yht��n 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 "T�m� mount on k��nnetty ilman loop-tukea. K��nn� 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 k��nn�ksen aikana. K��nn� 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 j�tet��n 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 "liitt�minen ep�onnistui"
-#: 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 k�ytt�� 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 ep�onnistui\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: t�m� versio on k��nnetty 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: ep�onnistui nfs mount -versiolla 4, yritet��n 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: Tiedostoj�rjestelm�n tyyppi� ei voitu m��ritt��, eik� tyyppi� ole "
"annettu"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: tiedostoj�rjestelm�n tyyppi on annettava"
#. should not happen
-#: mount/mount.c:881
+#: mount/mount.c:871
msgid "mount: mount failed"
msgstr "mount: liitos ep�onnistui"
-#: 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 ev�tty"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: mountin k�ytt��n vaaditaan p��k�ytt�j�n 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"
" tiedostoj�rjestelm��"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "liitostaulukko t�ynn�"
-#: 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 tiedostoj�rjestelm�tyyppi� %s"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l listaa tunnetut tiedostoj�rjestelm�tyypit"
-#: mount/mount.c:996
+#: mount/mount.c:986
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: tarkoitat todenn�k�isesti %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 ep�onnistuu?"
-#: 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, liitet��n 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: siirret��n 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 lis�tietoja 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 l�ytynyt %s - luodaan se..\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: osiota ei l�ydy"
-#: mount/mount.c:1563
+#: mount/mount.c:1581
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: liitet��n %s\n"
-#: mount/mount.c:1572
+#: mount/mount.c:1590
msgid "nothing was mounted"
msgstr "mit��n ei liitetty"
-#: mount/mount.c:1587
+#: mount/mount.c:1605
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: %s ei l�ydy 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 l�ydy 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 tiedostoj�rjestelm�n 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� tiedostoj�rjestelm�lle %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 t�m� n�ytt�� 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 tiedostoj�rjestelmien listaa ei l�ydy"
-#: 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 "Yritet��n irrottaa %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "%s ei l�ytynyt 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� t�m�n"
@@ -8449,7 +8472,7 @@ msgstr "Vain root voi m��ritell� Ctrl-Alt-Del:n vaikutuksen.\n"
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "K�ytt�: 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 merkkim��r� 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 ""
"merkkim��r� 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 sis�inen 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 ""
"K�ytt�: %s [-q [-i v�li]] ([-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 "Signaalik�sittelij�� 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 ep�onnistui"
-#: 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 k�ytt�� 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 "Sy�terivi 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 tiedostoj�rjestelm�tyyppi� %s"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "BLKGETSIZE-ioctl ep�onnistui laitteelle %s\n"
diff --git a/po/fr.po b/po/fr.po
index 15e85fdc..a52daefe 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 D�but Sec Taille P�riph�rique\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 ] p�riph�rique\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] p�riph�rique\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� ill�gale"
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 "Cr�er 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 "Cr�er 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 cr�er 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 pr�sente.\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 pr�sente.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Voulez-vous d�buter avec une table � z�ro [o/N]"
-#: fdisk/cfdisk.c:1557
+#: fdisk/cfdisk.c:1570
msgid "You specified more cylinders than fit on disk"
msgstr "Vous avez sp�cifi� 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 erron�e"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Partition logique erronn�e"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "AVERTISSEMENT!! Cela pourrait d�truire les donn�es 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 r�pondre � 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. R�amorcer 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� amor�able. 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� amor�able. 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 " --- D�but --- ---- Fin ---- D�but Num�ro de\n"
-#: fdisk/cfdisk.c:2126
+#: fdisk/cfdisk.c:2139
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Fan. T�te Sect Cyl ID T�te 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 cr�er, d�truire 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 d�truire la partition courante"
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g modifier les param�tres: cylindres, t�tes, 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 cr�er 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 diff�rents pour la partition"
-#: fdisk/cfdisk.c:2213
+#: fdisk/cfdisk.c:2226
msgid " that you can choose from:"
msgstr " que vous d�sirez:"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2227
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - donn�es 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 ordonn�e 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 syst�me de fichiers"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2232
msgid " u Change units of the partition size display"
msgstr ""
" u modifier les unit�s 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 d�truire des donn�es 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 r�ponse � 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 "Fl�che-haut d�placer le curseur vers la partition pr�c�dente"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Fl�che-bas d�placer le curseur vers la partition suivante"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L r�afficher 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 g�om�trie des cylindres"
-#: fdisk/cfdisk.c:2263 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2276 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "T�tes"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Modifier la g�om�trie de t�te"
-#: fdisk/cfdisk.c:2264
+#: fdisk/cfdisk.c:2277
msgid "Change sector geometry"
msgstr "Modifier la g�om�trie de secteur"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done"
msgstr "Compl�t�"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "Modification de la g�om�trie compl�t�"
-#: 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 ill�gale pour les cylindres"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Entrer le nombre de t�tes: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Valeur ill�gale pour les t�tes"
-#: 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 ill�gale pour les secteurs"
-#: fdisk/cfdisk.c:2418
+#: fdisk/cfdisk.c:2431
msgid "Enter filesystem type: "
msgstr "Entrer le type de syst�me 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 "T�tes: %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 "Amor�able"
-#: 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 "D�truire"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "D�truire la partition courante"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Geometry"
msgstr "G�om�trie"
-#: fdisk/cfdisk.c:2653
+#: fdisk/cfdisk.c:2666
msgid "Change disk geometry (experts only)"
msgstr "Modifier la g�om�trie 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 "Cr�er 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 syst�me de fichier (DOS, Linux, OS/2, etc)"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Units"
msgstr "Unit�s"
-#: fdisk/cfdisk.c:2660
+#: fdisk/cfdisk.c:2673
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
"Mofifier les unit�s 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 d�truire les donn�es)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Ne peut cr�er cette partition comme �tant amor�able"
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "Ne peut d�truire 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 d�j� 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 ill�gale"
-#: 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 "t�tes"
-#: 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 allou�s %d plus grand que le maximum %d\n"
msgid "%lld unallocated sectors\n"
msgstr "%d secteurs non-allou�s\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 d�j� d�fini. La d�truire 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 g�n�ration d'une entr�e compl�te 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 d�j� 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 ""
"irr�cup�rable.\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 utilis�e. Cette valeur peut �tre tronqu�e pour les p�riph�rique 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 param�tres 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\tD�BUT=%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 rep�rage sur %s - ne peut rep�rer %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 rep�rage: d�sir� 0x%08x%08x, obtenu 0x%08x%08x\n"
-#: fdisk/sfdisk.c:215
+#: fdisk/sfdisk.c:248
msgid "out of memory - giving up\n"
msgstr "m�moire �puis�e - 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 erron�e - pas de "
"recouvrement\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "m�moire �puis�e?\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 p�riph�rique %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 g�om�trie\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 d�sirez 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 t�tes\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 probl�mes 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 t�tes, %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 t�te: %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 �chou�e.\n"
"R�-amorcer le syst�me 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 " P�riph Amor D�but Fin #cyls #blocs Id Syst�me\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 ""
"Unit�s= secteurs de 512 octets, d�compte � partir de %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr " P�riph Amorce D�but Fin #secteurs Id Syst�me\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 ""
"Unit�s= blocs de 1024 octets, d�compte � partir de %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr " P�riph Amorce D�but Fin #blocs Id Syst�me\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 " P�riph Amor D�but Fin Mo #blocs Id Syst�me\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\td�but: (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 rep�r�e\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 g�om�trie suivante sera assum�e.\n"
-#: fdisk/sfdisk.c:1141
+#: fdisk/sfdisk.c:1189
msgid "no partition table present.\n"
msgstr "aucune table de partitions pr�sente.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "�trange, seulement %d partitions d�finies.\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 marqu�e 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 amor�able\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 d�but non � "
"z�ro\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 d�truira 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 d�bute 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 probl�me 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 d�bute pas sur une fronti�re 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 fronti�re 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'amor�age � partir d'une\n"
"partition primaire LILO ne s'occupe pas du fanion d'amor�age.\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 "d�but"
-#: 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: d�but: (c,h,s) esp�r� (%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) esp�r� (%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: d�but d�cal� 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 d�bute pas sur une fronti�re de.\n"
"cylindres DOS et Linux interpr�teront les contenus diff�remment.\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 ignor�es\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 d�tect� - incapable de traiter cela\n"
-#: fdisk/sfdisk.c:1500
+#: fdisk/sfdisk.c:1548
msgid "DM6 signature found - giving up\n"
msgstr "signature DM6 signature rep�r� - 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'entr�e longue ou incompl�te - abandon\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "erreur d'entr�e: � = � esp�r� apr�s 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'entr�e: caract�re inattendu %c apr�s le champ %s\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "entr�e 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 apr�s 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'entr�e\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 ill�gal\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 donn�e (%lu) exc�de 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: d�but de partition corrompu (auparavant %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "fanion d'amor�age 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 "sp�cification 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 "entr�e erron�e\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 sp�cifier:\n"
"<d�but> 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] p�riph�rique ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "p�riph�rique: 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 p�riph�rique"
-#: 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 ult�rieure"
-#: 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 unit�s 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 num�ro #"
-#: 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 �cras�s 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 m�moire"
-#: 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 donn�es contenues dans le\n"
" kernel de la g�om�trie"
-#: 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'entr�e 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 g�om�trie 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 t�tes � 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 d�sactiver toutes les v�rifications 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]: ex�cuter aveugl�ment la commande donn�e"
-#: 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 p�riph�rique\t\t lister les partitions actives du p�riph�rique\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 p�riph�rique n1 n2 ... activer les partitions n1 ..., d�sactiver 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 pr�iph�rique\t activer la partition n, d�sactiver 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 p�riph�rique num�ro-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 p�riph�rique num�ro-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 p�riph�rique num�ro-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 sp�cifier seulement un p�riph�rique (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 t�tes, %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 ""
"Compl�t�\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 pr�sentement 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 p�riph�rique 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 "V�rification 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 v�rification.\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 v�rifications.\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 d�sirez 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 "
"r�pondre 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 pr�matur�e de l'entr�e\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 r�ponse 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 ""
"Succ�s 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 (am�lior�) 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 "dr�le 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 it�rations!"
-#: 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'acc�s 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 privil�ges de root.\n"
@@ -5906,37 +5922,38 @@ msgstr ""
"Utiliser l'option --debug pour voir les d�tails de la recherche d'une "
"m�thode 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 ex�cuter un umount, abandon sur le umount."
msgid "Unmounting any remaining filesystems..."
msgstr "D�monter tous les syst�mes de fichiers restants..."
-#: login-utils/shutdown.c:648
+#: login-utils/shutdown.c:659
#, c-format
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "arr�t syst�me: ne peut d�monter %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 cr�er 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 d�lai"
-#: mount/fstab.c:514
+#: mount/fstab.c:535
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7779,22 +7796,22 @@ msgstr ""
"Ne peut cr�er 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 rep�rer un p�riph�rique de type loop disponible"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Ne peut verrouiller en m�moire, fin d'ex�cutio.\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): succ�s\n"
-#: mount/lomount.c:356
+#: mount/lomount.c:360
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: ne peut d�truire le p�riph�rique %s: %s\n"
-#: mount/lomount.c:366
+#: mount/lomount.c:370
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): succ�s\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� compil�e 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 p�riph�rique_de_boucle # delete\n"
" %s [ -e encryption ] [ -o d�calage ] p�riph�rique_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 m�moire"
-#: 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 d�j� 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: p�riph�rique de type loop sp�cifi� deux fois"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: type sp�cifi� 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 p�riph�rique 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 pr�pare � utiliser le p�riph�rique 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 p�riph�rique de type loop\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: r�ussite d'initialisation du p�riph�rique 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 d�terminer le type de syst�me de fichiers et aucun n'a �t� "
"sp�cifi�"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: vous devez sp�cifier le type de syst�me 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 r�pertoire"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: permission refus�e"
-#: 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 d�j� mont�"
-#: mount/mount.c:903
+#: mount/mount.c:893
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s est d�j� 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: p�riph�rique sp�cial %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 p�riph�rique sp�cial %s n'existe pas\n"
" (un pr�fixe de chemin n'est pas un r�pertoire)\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 d�j� mont� ou option erron�e"
-#: 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 syst�mes de fichiers mont�s"
-#: mount/mount.c:973
+#: mount/mount.c:963
msgid "mount table full"
msgstr "table de p�riph�riques mont�s 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: p�riph�rique 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 syst�me 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 p�riph�rique 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 reconna�t pas %s comme un p�riph�rique 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 p�riph�rique 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 p�riph�rique 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 p�riph�rique 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 "p�riph�rique 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 prot�g� 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 prot�g� 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 arri�re 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 d�j� 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 d�tails ex�cuter: 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� rep�r� - on le cr�e..\n"
-#: mount/mount.c:1561
+#: mount/mount.c:1579
msgid "mount: no such partition found"
msgstr "mount: pas de telle partition rep�r�e"
-#: 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 rep�rer %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 rep�rer %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 syst�me 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 sp�cifier le type de syst�me 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 mentionn�s 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 d�mont�\n"
-#: mount/umount.c:436
+#: mount/umount.c:438
msgid "umount: cannot find list of filesystems to unmount"
msgstr "umount: ne peut rep�rer la liste des syst�mes de fichiers � d�monter"
-#: 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] sp�cial | noeud...\n"
-#: mount/umount.c:548
+#: mount/umount.c:521
#, c-format
msgid "Trying to umount %s\n"
msgstr "Tentative pour d�monter %s\n"
-#: mount/umount.c:554
+#: mount/umount.c:527
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Ne peut rep�rer %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 d�saccord 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 d�monter %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 ex�cuter 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 caract�res/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 caract�res dans le fifo �tait de %d,\n"
"et le taux de transfert maximum en caract�res/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 d�faut 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 d�faut 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 d�lai de gr�ce 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 d�lais de gr�ce 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 d�faut et %ld d�lai de gr�ce par d�faut\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 d�lai, %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 re�u, %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 (caract�res/sec)\n"
@@ -10058,6 +10081,10 @@ msgstr "Ligne d'entr�e trop longue.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "M�moire �puis�e 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 51aa969b..d414d127 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 d7de0127..ebc9067f 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 df059dca..8b6ef159 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 a35ad2a3..163d39f3 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 "Inutiliz�vel"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:1989
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2002
msgid "Free Space"
msgstr "Espa�o 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 "Prim�ria"
@@ -1395,8 +1395,8 @@ msgstr "Prim�ria"
msgid "Create a new primary partition"
msgstr "Cria uma nova parti��o 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"
@@ -1404,7 +1404,7 @@ msgstr "L�gica"
msgid "Create a new logical partition"
msgstr "Cria uma nova parti��o 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 "Cancelar"
@@ -1440,166 +1440,181 @@ msgstr "Adicionar parti��o no final do espa�o livre"
msgid "No room to create the extended partition"
msgstr "Espa�o insuficiente para cria��o de parti��o 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 parti��es presente.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Assinatura inv�lida na tabela de parti��es"
-#: fdisk/cfdisk.c:1505
+#: fdisk/cfdisk.c:1516
+#, fuzzy
+msgid "Bad signature on partition table"
+msgstr "Mostrar somente a tabela de parti��es"
+
+#: fdisk/cfdisk.c:1520
+#, fuzzy
+msgid "Unknown partition table type"
+msgstr "nenhuma tabela de parti��es 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 "N�o foi poss�vel 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� n�o tem permiss�o para gravar"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "N�o foi poss�vel obter o tamanho do disco"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Parti��o prim�ria inv�lida"
-#: fdisk/cfdisk.c:1668
+#: fdisk/cfdisk.c:1681
msgid "Bad logical partition"
msgstr "Parti��o l�gica inv�lida"
-#: 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 parti��es 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 parti��es N�O 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 parti��es 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 parti��es 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 parti��es 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 ""
"N�o existem parti��es prim�rias marcadas como inicializ�veis. MBR DOS n�o "
"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 parti��o prim�ria est� marcada como inicializ�vel. MBR DOS n�o "
"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 "N�o foi poss�vel 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/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 "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 "Conclu�do"
-#: 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 parti��es 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) "
"Op��es\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 " --- In�cio --- ---- Fim ---- N�m. 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 parti��es"
-#: fdisk/cfdisk.c:2163
+#: fdisk/cfdisk.c:2176
msgid "Don't print the table"
msgstr "N�o 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 fun��es "
-#: 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 parti��es na unidade"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "de disco r�gido."
-#: 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 op��o da parti��o atual como inicializ�vel."
-#: fdisk/cfdisk.c:2202
+#: fdisk/cfdisk.c:2215
msgid " d Delete the current partition"
msgstr " d Exclui a parti��o atual."
-#: fdisk/cfdisk.c:2203
+#: fdisk/cfdisk.c:2216
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g Altera par�metros de cilindros, cabe�as, 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 op��o 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 est�o 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 parti��o atual."
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2221
msgid " Note: This may make the partition incompatible with"
msgstr " Nota: Isto pode tornar a parti��o incompat�vel 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 parti��o a partir do espa�o 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 parti��es 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 parti��o:"
-#: 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 parti��es."
-#: 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 exibi��o do tamanho das parti��es."
-#: 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 parti��es no disco (� necess�rio usar W "
"mai�sculo)."
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2235
msgid " Since this might destroy data on the disk, you must"
msgstr " Como esta op��o 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 grava��o indicando `sim' ou"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2237
msgid " `no'"
msgstr " `n�o'"
-#: 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 parti��o 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 pr�xima parti��o."
-#: 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 mai�sculas ou"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "min�sculas (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 "Cabe�as"
-#: fdisk/cfdisk.c:2263
+#: fdisk/cfdisk.c:2276
msgid "Change head geometry"
msgstr "Alterar geometria das cabe�as"
-#: 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 "Conclu�do"
-#: fdisk/cfdisk.c:2265
+#: fdisk/cfdisk.c:2278
msgid "Done with changing geometry"
msgstr "A altera��o da geometria foi conclu�da"
-#: fdisk/cfdisk.c:2278
+#: fdisk/cfdisk.c:2291
msgid "Enter the number of cylinders: "
msgstr "Digite o n�mero 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 inv�lido"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2308
msgid "Enter the number of heads: "
msgstr "Digite o n�mero de cabe�as: "
-#: fdisk/cfdisk.c:2302 fdisk/cfdisk.c:2870
+#: fdisk/cfdisk.c:2315 fdisk/cfdisk.c:2883
msgid "Illegal heads value"
msgstr "Valor de cabe�as inv�lido"
-#: fdisk/cfdisk.c:2308
+#: fdisk/cfdisk.c:2321
msgid "Enter the number of sectors per track: "
msgstr "Digite o n�mero 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 inv�lido"
-#: 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 "N�o foi poss�vel 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 "N�o foi poss�vel 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/l�g"
-#: 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 "Cabe�as: %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 "Op��es"
-#: 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 "[R�tulo]"
-#: 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 op��o da parti��o atual como inicializ�vel"
-#: 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 parti��o 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 usu�rios avan�ados)"
-#: 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 parti��o atual (somente para usu�rios "
"avan�ados)"
-#: 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 parti��o a partir do espa�o 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 parti��es 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 parti��es"
-#: 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 parti��es (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 parti��es no disco (isto poder� destruir dados)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "N�o foi poss�vel tornar esta parti��o inicializ�vel."
-#: fdisk/cfdisk.c:2717
+#: fdisk/cfdisk.c:2730
msgid "Cannot delete an empty partition"
msgstr "N�o foi poss�vel excluir uma parti��o vazia"
-#: fdisk/cfdisk.c:2737 fdisk/cfdisk.c:2739
+#: fdisk/cfdisk.c:2750 fdisk/cfdisk.c:2752
msgid "Cannot maximize this partition"
msgstr "N�o foi poss�vel maximizar esta parti��o"
-#: fdisk/cfdisk.c:2747
+#: fdisk/cfdisk.c:2760
msgid "This partition is unusable"
msgstr "Esta parti��o � inutiliz�vel"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Esta parti��o j� est� sendo usada"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2779
msgid "Cannot change the type of an empty partition"
msgstr "N�o foi poss�vel alterar o tipo de uma parti��o vazia"
-#: fdisk/cfdisk.c:2793 fdisk/cfdisk.c:2799
+#: fdisk/cfdisk.c:2806 fdisk/cfdisk.c:2812
msgid "No more partitions"
msgstr "Sem mais parti��es"
-#: fdisk/cfdisk.c:2806
+#: fdisk/cfdisk.c:2819
msgid "Illegal command"
msgstr "Comando inv�lido"
-#: 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 "cabe�as"
-#: 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 m�ximo: %d\n"
msgid "%lld unallocated sectors\n"
msgstr "%d setores n�o 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 parti��o %d j� est� definida. Exclua essa parti��o 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 n�o cont�m uma tabela de parti��es v�lida\n"
msgid "Cannot open %s\n"
msgstr "N�o foi poss�vel 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 "n�o foi poss�vel 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 sobreposi��o de parti��es 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 parti��es.\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 sobreposi��o de parti��es 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 parti��o 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 sobreposi��o de parti��es 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 conte�do anterior n�o 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 par�metros da parti��o %d.\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tIN�CIO=%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 - n�o foi poss�vel 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 "mem�ria 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 - n�o foi poss�vel 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 n�o 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 grava��o em %s - n�o foi poss�vel 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 ""
"n�o foi poss�vel abrir o arquivo de salvamento de setor da parti��o (%s)\n"
-#: fdisk/sfdisk.c:309
+#: fdisk/sfdisk.c:342
#, c-format
msgid "write error on %s\n"
msgstr "erro de grava��o em %s\n"
-#: fdisk/sfdisk.c:327
+#: fdisk/sfdisk.c:360
#, c-format
msgid "cannot stat partition restore file (%s)\n"
msgstr "n�o foi poss�vel stat arquivo de restaura��o de parti��o (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr ""
"o arquivo de restaura��o da parti��o possui tamanho incorreto - n�o "
"restaurando\n"
-#: fdisk/sfdisk.c:336
+#: fdisk/sfdisk.c:369
msgid "out of memory?\n"
msgstr "mem�ria insuficiente?\n"
-#: fdisk/sfdisk.c:342
+#: fdisk/sfdisk.c:375
#, c-format
msgid "cannot open partition restore file (%s)\n"
msgstr "n�o foi poss�vel abrir o arquivo de restaura��o de parti��o (%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 "n�o foi poss�vel abrir o dispositivo %s para grava��o\n"
-#: fdisk/sfdisk.c:367
+#: fdisk/sfdisk.c:400
#, c-format
msgid "error writing sector %lu on %s\n"
msgstr "erro na grava��o 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: n�o foi poss�vel obter a geometria\n"
-#: fdisk/sfdisk.c:430
+#: fdisk/sfdisk.c:470
#, c-format
msgid "Disk %s: cannot get size\n"
msgstr "Disco %s: n�o foi poss�vel 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 n�o trar� qualquer resultado\n"
"(use a op��o --force se realmente quiser realizar esta opera��o).\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 cabe�as\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 endere�amento 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 cabe�as, %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 parti��o %s possui valor imposs�vel para cabe�a: %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 parti��o %s possui valor imposs�vel 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 parti��o %s possui valor imposs�vel 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 parti��es...\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 parti��es 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: parti��o inexistente\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "formato n�o reconhecido - usando setores\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# tabela de parti��o de %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "formato n�o 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 In�cio 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 In�cio 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 In�cio 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 In�cio 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\tin�cio: (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 parti��o termina no cilindro %ld, al�m do final do disco\n"
-#: fdisk/sfdisk.c:1088
+#: fdisk/sfdisk.c:1136
msgid "No partitions found\n"
msgstr "Nenhuma parti��o 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 parti��es presente.\n"
-#: fdisk/sfdisk.c:1143
+#: fdisk/sfdisk.c:1191
#, c-format
msgid "strange, only %d partitions defined.\n"
msgstr "estranho, somente %d parti��es est�o 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 parti��o %s possui tamanho 0, mas n�o 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 parti��o %s possui tamanho 0 e � inicializ�vel\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 parti��o %s possui tamanho 0 e in�cio diferente de zero\n"
-#: fdisk/sfdisk.c:1169
+#: fdisk/sfdisk.c:1217
#, c-format
msgid "Warning: partition %s "
msgstr "Aviso: a parti��o %s "
-#: fdisk/sfdisk.c:1170
+#: fdisk/sfdisk.c:1218
#, c-format
msgid "is not contained in partition %s\n"
msgstr "n�o est� contida na parti��o %s\n"
-#: fdisk/sfdisk.c:1181
+#: fdisk/sfdisk.c:1229
#, c-format
msgid "Warning: partitions %s "
msgstr "Aviso: as parti��es %s "
-#: fdisk/sfdisk.c:1182
+#: fdisk/sfdisk.c:1230
#, c-format
msgid "and %s overlap\n"
msgstr "e %s se sobrep�em\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 parti��o %s come�a 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 parti��o %s se estende al�m 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 parti��es prim�rias, 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 parti��o %s n�o 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 parti��o %s n�o 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 n�o faz diferen�a para o LILO, mas o MBR DOS n�o 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 parti��es prim�rias.\n"
"O LILO desconsidera o flag `inicializ�vel'.\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 n�o faz diferen�a para o LILO, mas o MBR DOS n�o 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 ""
"parti��o %s - in�cio: (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 ""
"parti��o %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 parti��o %s termina no cilindro %ld, al�m 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 parti��o 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 parti��o extendida n�o 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 "n�mero excessivo de parti��es - ignorando aquelas al�m do n� %d\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "�rvore de parti��es?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "Gerenciador de disco detectado - n�o � poss�vel 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 parti��o 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 parti��o 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: parti��o n�o reconhecida\n"
-#: fdisk/sfdisk.c:1584
+#: fdisk/sfdisk.c:1632
msgid "-n flag was given: Nothing changed\n"
msgstr "a op��o -n foi fornecida: nada foi alterado\n"
-#: fdisk/sfdisk.c:1600
+#: fdisk/sfdisk.c:1648
msgid "Failed saving the old sectors - aborting\n"
msgstr "N�o foi poss�vel 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 "N�o foi poss�vel gravar a parti��o 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 ap�s 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 ap�s o campo %s\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "entrada n�o reconhecida: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "n�mero grande demais\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "lixo ap�s o n�mero\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "sem espa�o para o descritor da parti��o\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "n�o foi poss�vel criar a parti��o estendida envolt�ria\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "n�mero 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 "N�o h� espa�o para mais\n"
-#: fdisk/sfdisk.c:2035
+#: fdisk/sfdisk.c:2085
msgid "Illegal type\n"
msgstr "Tipo inv�lido\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 m�ximo permitido (%lu)\n"
-#: fdisk/sfdisk.c:2073
+#: fdisk/sfdisk.c:2123
msgid "Warning: empty partition\n"
msgstr "Aten��o: parti��o vazia\n"
-#: fdisk/sfdisk.c:2087
+#: fdisk/sfdisk.c:2137
#, c-format
msgid "Warning: bad partition start (earliest %lu)\n"
msgstr "Aviso: in�cio de parti��o inv�lido (mais adiantado %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "op��o de inicializa��o n�o 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 "especifica��o cil,cab,set parcial?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Parti��o estendida n�o est� no lugar esperado\n"
-#: fdisk/sfdisk.c:2173
+#: fdisk/sfdisk.c:2223
msgid "bad input\n"
msgstr "entrada inv�lida\n"
-#: fdisk/sfdisk.c:2195
+#: fdisk/sfdisk.c:2245
msgid "too many partitions\n"
msgstr "N�mero excessivo de parti��es\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� � necess�rio especificar <in�cio> e <tamanho> (e, talvez, "
"<tipo>).\n"
-#: fdisk/sfdisk.c:2248
+#: fdisk/sfdisk.c:2298
msgid "version"
msgstr "vers�o"
-#: fdisk/sfdisk.c:2254
+#: fdisk/sfdisk.c:2304
#, c-format
msgid "Usage: %s [options] device ...\n"
msgstr "Uso: %s [op��es] 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 "op��es �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 parti��o"
-#: 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 parti��o"
-#: fdisk/sfdisk.c:2259
+#: fdisk/sfdisk.c:2309
msgid " -l [or --list]: list partitions of each device"
msgstr " -l [ou --list]: lista as parti��es 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 parti��o 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: desperdi�a um pouco "
"de espa�o"
-#: 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 parti��es"
-#: fdisk/sfdisk.c:2266
+#: fdisk/sfdisk.c:2316
msgid " -N# : change only the partition with number #"
msgstr " -N# : altera somente a parti��o de n�mero #"
-#: fdisk/sfdisk.c:2267
+#: fdisk/sfdisk.c:2317
msgid " -n : do not actually write to disk"
msgstr " -n : n�o 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 ser�o 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 vers�o"
-#: 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 "op��es 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 suposi��o 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]: tamb�m lista parti��es estendidas na sa�da\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]: n�o 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 n�mero 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 n�mero de cabe�as 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 n�mero 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 verifica��es de consist�ncia 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]: fa�a 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 parti��es 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 parti��es 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 parti��o 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 n�mero-parti��o\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 n�mero-parti��o ID\n"
-#: fdisk/sfdisk.c:2615
+#: fdisk/sfdisk.c:2665
msgid "usage: sfdisk --id device partition-number [Id]\n"
msgstr "Uso: sfdisk --id dispositivo n�mero-parti��o [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 "n�o foi poss�vel abrir %s\n"
-#: fdisk/sfdisk.c:2650
+#: fdisk/sfdisk.c:2700
#, fuzzy, c-format
msgid "cannot open %s for reading\n"
msgstr "n�o foi poss�vel 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 cabe�as, %ld setores/trilha\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "N�o foi poss�vel 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 inv�lido: 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 ""
"Conclu�do\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 parti��es prim�rias ativas. Isto n�o faz diferen�a para o\n"
"LILO, mas o MBR DOS s� inicializar� em discos com uma parti��o 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 parti��o %s possui ID %x e n�o est� escondida\n"
-#: fdisk/sfdisk.c:2885
+#: fdisk/sfdisk.c:2935
#, c-format
msgid "Bad Id %lx\n"
msgstr "ID inv�lida: %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: n�o foi poss�vel 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 n�o � 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 ningu�m 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 parti��es de permuta deste disco. Use a op��o --no-reread para "
"suprimir esta verifica��o.\n"
-#: fdisk/sfdisk.c:2932
+#: fdisk/sfdisk.c:2982
msgid "Use the --force flag to overrule all checks.\n"
msgstr "Use a op��o --force para cancelar todas as verifica��es.\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 "Situa��o antiga:\n"
-#: fdisk/sfdisk.c:2949
+#: fdisk/sfdisk.c:2999
#, c-format
msgid "Partition %d does not exist, cannot change it\n"
msgstr "A parti��o %d n�o existe; n�o � poss�vel alter�-la.\n"
-#: fdisk/sfdisk.c:2957
+#: fdisk/sfdisk.c:3007
msgid "New situation:\n"
msgstr "Situa��o 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 n�o gosto destas parti��es: nada foi alterado\n"
"(se voc� realmente quiser us�-las, use a op��o --force).\n"
-#: fdisk/sfdisk.c:2965
+#: fdisk/sfdisk.c:3015
msgid "I don't like this - probably you should answer No\n"
msgstr "Eu n�o gosto disto - provavelmente voc� deveria responder N�o\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 parti��es 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 "Rel�gio BCD Ruffian\n"
-#: hwclock/cmos.c:197
+#: hwclock/cmos.c:201
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "porta do rel�gio 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 at�mico falhou por 1000 itera��es!"
-#: hwclock/cmos.c:587
+#: hwclock/cmos.c:591
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "N�o � poss�vel 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 "N�o consegui obter permiss�o porque n�o 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 s�o necess�rios privil�gios de root.\n"
@@ -5820,37 +5835,38 @@ msgstr ""
"Use a op��o --debug para consultar os detalhes de nossa busca por um m�todo "
"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 la�o 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 la�o"
-#: hwclock/kd.c:93
+#: hwclock/kd.c:104
#, fuzzy, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() n�o 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 "N�o foi poss�vel 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 informa��es 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 "N�o � poss�vel 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: n�o foi poss�vel 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: n�o foi poss�vel 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: n�o foi poss�vel abrir %s - usando %s\n"
@@ -7639,42 +7655,42 @@ msgstr "mount: n�o foi poss�vel 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 ""
"n�o foi poss�vel criar o arquivo de bloqueio %s: %s (use a op��o -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 ""
"n�o foi poss�vel vincular o arquivo de bloqueio %s: %s (use a op��o -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 ""
"n�o foi poss�vel abrir o arquivo de bloqueio %s: %s (use a op��o -n para "
"anular)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "N�o foi poss�vel 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 "n�o foi poss�vel 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 ""
"N�o foi poss�vel criar o v�nculo %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 "N�o foi poss�vel abrir %s (%s) - mtab n�o 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 "n�o foi poss�vel renomear %s para %s: %s\n"
@@ -7761,26 +7777,26 @@ msgstr "mount: n�o foi poss�vel localizar nenhum dispositivo de la�o livre"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "N�o � poss�vel bloquear (lock) na mem�ria, 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: n�o foi poss�vel 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 la�os. 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_la�o arquivo # "
"configura��o\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 "n�o h� mem�ria suficiente"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr "N�o havia suporte a la�o dispon�vel quando da compila��o. 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: n�o 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 inv�lido(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: n�o foi poss�vel abrir %s para grava��o: %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 espa�o de permuta - n�o 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 la�o 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 configura��o de um dispositivo de la�o\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 la�o %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 la�o\n"
-#: mount/mount.c:619
+#: mount/mount.c:598
msgid "mount: setup loop device successfully\n"
msgstr "mount: configura��o de dispositivo de la�o realizada com sucesso\n"
-#: mount/mount.c:656
+#: mount/mount.c:635
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: n�o foi poss�vel 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: n�o foi poss�vel abrir %s para configura��o da velocidade"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: n�o foi poss�vel 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: n�o foi poss�vel 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 vers�o 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 vers�o 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: n�o foi poss�vel 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 n�o � um diret�rio"
-#: mount/mount.c:889
+#: mount/mount.c:879
msgid "mount: permission denied"
msgstr "mount: permiss�o negada"
-#: mount/mount.c:891
+#: mount/mount.c:881
msgid "mount: must be superuser to use mount"
msgstr "mount: � necess�rio ser superusu�rio 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 n�o 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 v�nculo simb�lico 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 n�o 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 n�o existe\n"
" (um prefixo de caminho n�o � um diret�rio)\n"
-#: mount/mount.c:937
+#: mount/mount.c:927
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s j� n�o est� montado ou op��o inv�lida"
-#: 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 ""
"inv�lido em %s,\n"
" ou n�mero 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: n�o foi poss�vel 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 n�o � 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 n�o � 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 n�o � 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 n�o 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 n�o � 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 n�o � 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 n�o � um dispositivo de blocos v�lido"
#. 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: n�o foi poss�vel 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 grava��o mas a op��o -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 grava��o; 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 op��es: [-nfFrsvw] [-o op��es].\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: opera��o 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 parti��o n�o 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: n�o foi poss�vel 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: n�o foi poss�vel localizar %s em %s ou %s"
@@ -8208,31 +8230,31 @@ msgstr ""
msgid "mount: bad UUID"
msgstr "mount: UUID inv�lida"
-#: 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: n�o 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 espa�o 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: n�o foi poss�vel 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: n�o foi poss�vel 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 "N�o foi poss�vel 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 n�o 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 m�ltiplas 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 n�o est� na fstab (e voc� n�o � 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 n�o 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: opera��o 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 transfer�ncia m�xima, 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 ""
"n�mero m�ximo de caracteres em fifo era de %d\n"
"e a taxa de transfer�ncia m�xima, 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 inv�lido: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Valor definido inv�lido: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Valor padr�o inv�lido: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Valor de defini��o de hor�rio inv�lido: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Valor padr�o de hor�rio inv�lido: %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 "N�o foi poss�vel 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 "N�o foi poss�vel 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 "N�o foi poss�vel definir %s para o limiar de hor�rio %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 "N�o foi poss�vel 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 "N�o foi poss�vel 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 "N�o foi poss�vel 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 "N�o foi poss�vel 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 m�x, %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 m�x, %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 mem�ria quando o buffer cresce.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: o tipo de sistema de arquivos %s n�o � 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 bb67debd..5ceb35d4 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 "Logi�en"
@@ -1361,7 +1361,7 @@ msgstr "Logi�en"
msgid "Create a new logical partition"
msgstr "Ustvari nov logi�en 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 "Prekli�i"
@@ -1397,168 +1397,184 @@ msgstr "Dodaj razdelek na konec prostega obmo�ja"
msgid "No room to create the extended partition"
msgstr "Ni prostora za ustvarjanje raz�irjenega 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 "Izpi�i 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 mogo�e 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 logi�ni razdelek"
-#: fdisk/cfdisk.c:1783
+#: fdisk/cfdisk.c:1796
msgid "Warning!! This may destroy data on your disk!"
msgstr "Opozorilo! To lahko uni�i 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 prepri�ani, 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, a�uriranje tabele neuspe�no. Ponovno za�enite "
"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 ozna�en 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 ozna�en 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 " Logi�en"
#. 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 " ----Za�etni--- ----Kon�ni---- Za�etni �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, bri�ete ali spreminjate razdelke"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "na va�em 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 "Ozna�i, ali je razdelek zagonski"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete"
msgstr "Izbri�i"
-#: fdisk/cfdisk.c:2652
+#: fdisk/cfdisk.c:2665
msgid "Delete the current partition"
msgstr "Izbri�i 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 "Izpi�i 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 "Raz�iri trenutni razdelek �ez celotno prosto obmo�je (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 obmo�ju 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 "Izpi�i 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 "Pi�i"
-#: 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 "po�lji"
-#: 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 "razli�ica"
-#: 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 mogo�e 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 neuspe�en 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 posku�ali.\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) neuspe�en.\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 opu��eni."
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 to�ka %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 "blo�na 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 na�inu"
-#: 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 za��itena pred pisanjem, priklapljamo v bralnem na�inu"
-#: 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 poi��ete v priro�niku 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 0a346613..d1020f95 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 "anv�ndning:\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 "Oanv�ndbar"
-#: 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 f�r att forts�tta"
-#: 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�r"
@@ -1414,8 +1414,8 @@ msgstr "Prim�r"
msgid "Create a new primary partition"
msgstr "Skapa en ny prim�r 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 "L�gg till partition i slutet av det lediga utrymmet"
msgid "No room to create the extended partition"
msgstr "Ingen plats att skapa den ut�kade 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 tillg�nglig.\n"
+
+#: fdisk/cfdisk.c:1506
+#, fuzzy
+msgid "No partition table. Starting with zero table."
msgstr "Ingen partitionstabell eller ok�nd 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 tillg�nglig.\n"
+
+#: fdisk/cfdisk.c:1522
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Vill du b�rja 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 r�ttighet att skriva"
-#: fdisk/cfdisk.c:1612
+#: fdisk/cfdisk.c:1625
msgid "Cannot get disk size"
msgstr "Kan inte h�mta diskstorlek"
-#: fdisk/cfdisk.c:1638
+#: fdisk/cfdisk.c:1651
msgid "Bad primary partition"
msgstr "Felaktig prim�r 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 f�rst�ra 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 s�ker 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 oml�sning av tabellen misslyckades. Starta om "
"f�r 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 prim�ra 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 prim�r 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 f�r att visa p� sk�rmen: "
-#: 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 "
# Prim�r/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 " Prim�r "
-#: 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 "Ok�nd"
-#: 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 f�r %s\n"
-#: fdisk/cfdisk.c:2040
+#: fdisk/cfdisk.c:2053
msgid " First Last\n"
msgstr " F�rsta 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 Avst�nd L�ngd 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 "R�tt"
-#: fdisk/cfdisk.c:2160
+#: fdisk/cfdisk.c:2173
msgid "Print the table using raw data format"
msgstr "Visa tabellen i r�tt 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 "Hj�lpsk�rm f�r cfdisk"
-#: fdisk/cfdisk.c:2193
+#: fdisk/cfdisk.c:2206
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Det h�r �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 "l�ter dig skapa, ta bort och �ndra partitioner p� din"
-#: fdisk/cfdisk.c:2195
+#: fdisk/cfdisk.c:2208
msgid "disk drive."
msgstr "h�rddisk."
-#: 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 f�r cylindrar, huvuden, sektorer-per-sp�r"
-#: fdisk/cfdisk.c:2204
+#: fdisk/cfdisk.c:2217
msgid " WARNING: This option should only be used by people who"
msgstr " VARNING: Denna flagga b�r endast anv�ndas av personer som"
-#: fdisk/cfdisk.c:2205
+#: fdisk/cfdisk.c:2218
msgid " know what they are doing."
msgstr " vet vad de g�r."
-#: fdisk/cfdisk.c:2206
+#: fdisk/cfdisk.c:2219
msgid " h Print this screen"
msgstr " h Visa denna hj�lpsk�rm"
-#: fdisk/cfdisk.c:2207
+#: fdisk/cfdisk.c:2220
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximera diskanv�ndandet 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 g�ra 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 fr�n 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� sk�rmen 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 v�lja 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 r�tt 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 (m�ste 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 f�rst�ra data p� disken m�ste du"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2236
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
" antingen bekr�fta 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 mark�ren till f�reg�ende partition"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2239
msgid "Down Arrow Move cursor to the next partition"
msgstr "Nerpil Flytta mark�ren till n�sta partition"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2240
msgid "CTRL-L Redraws the screen"
msgstr "CTRL+L Rita om sk�rmen"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2241
msgid " ? Print this screen"
msgstr " ? Visa denna sk�rm"
-#: 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 bokst�ver"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2244
msgid "case letters (except for Writes)."
msgstr "(utom f�r 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 "F�rdig med geometri�ndring"
-#: 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 sp�r: "
-#: 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 v�rde"
-#: fdisk/cfdisk.c:2438
+#: fdisk/cfdisk.c:2451
msgid "Cannot change FS Type to extended"
msgstr "Kan inte �ndra filsystemstypen till ut�kad"
-#: fdisk/cfdisk.c:2469
+#: fdisk/cfdisk.c:2482
#, c-format
msgid "Unk(%02X)"
msgstr "Ok�nd(%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 "Ok�nd (%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 sp�r: %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 "Hj�lp"
-#: fdisk/cfdisk.c:2654
+#: fdisk/cfdisk.c:2667
msgid "Print help screen"
msgstr "Visa hj�lpsk�rm"
-#: 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 diskanv�ndningen f�r 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 fr�n 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� sk�rmen 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 f�rst�ra data)"
-#: fdisk/cfdisk.c:2707
+#: fdisk/cfdisk.c:2720
msgid "Cannot make this partition bootable"
msgstr "Kan inte g�ra 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 oanv�ndbar"
-#: fdisk/cfdisk.c:2749
+#: fdisk/cfdisk.c:2762
msgid "This partition is already in use"
msgstr "Denna partition anv�nds 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 m�ste st�lla 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 st�rre �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 l�gger 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 inneh�ller 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� h�rddisken?\n"
-#: fdisk/fdisksgilabel.c:637
+#: fdisk/fdisksgilabel.c:635
msgid "Attempting to generate entire disk entry automatically.\n"
msgstr "F�rs�ker att generera fullst�ndig 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 t�ckt 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 f�rst!\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"
"t�cker hela h�rddisken 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� h�rddisken. Fixa det f�rst!\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 inneh�llet att vara sp�rl�st 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 ""
"geometricylinderv�rdet %d.\n"
"Detta v�rde kan vara avkortat f�r 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 "F�rs�ker att beh�lla parametrarna f�r partition %d.\n"
-#: fdisk/fdisksgilabel.c:743
+#: fdisk/fdisksgilabel.c:741
#, c-format
msgid "ID=%02x\tSTART=%d\tLENGTH=%d\n"
msgstr "ID=%02x\tB�RJAN=%d\tL�NGD=%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 "s�kfel 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 "s�kfel: 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 "l�sfel p� %s - kan inte l�sa 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� partitions�terst�llningsfil (%s)\n"
-#: fdisk/sfdisk.c:332
+#: fdisk/sfdisk.c:365
msgid "partition restore file has wrong size - not restoring\n"
msgstr "partitions�terst�llningsfilen har fel storlek - �terst�ller 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 partitions�terst�llningsfilen (%s)\n"
-#: fdisk/sfdisk.c:348
+#: fdisk/sfdisk.c:381
#, c-format
msgid "error reading %s\n"
msgstr "fel vid l�sning 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 f�r 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 anv�nda fdisk p� det �r troligtvis meningsl�st.\n"
"[Anv�nd 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 s�ger 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 s�ger 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 s�ger 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 anv�nder 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/sp�r\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 om�jligt v�rde p� huvud: %lu (m�ste 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 om�jligt v�rde p� sektor: %lu (m�ste 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 om�jligt v�rde p� cylinder: %lu (m�ste 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 "L�ser 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 f�r att l�sa om partitionstabellen misslyckades\n"
"Starta om ditt system nu, innan du anv�nder mkfs\n"
-#: fdisk/sfdisk.c:773
+#: fdisk/sfdisk.c:821
#, c-format
msgid "Error closing %s\n"
msgstr "Fel vid st�ngning av %s\n"
-#: fdisk/sfdisk.c:811
+#: fdisk/sfdisk.c:859
#, c-format
msgid "%s: no such partition\n"
msgstr "%s: det finns ingen s�dan partition\n"
-#: fdisk/sfdisk.c:834
+#: fdisk/sfdisk.c:882
msgid "unrecognized format - using sectors\n"
msgstr "ok�nt format - anv�nder sektorer\n"
-#: fdisk/sfdisk.c:873
+#: fdisk/sfdisk.c:921
#, c-format
msgid "# partition table of %s\n"
msgstr "# partitionstabell f�r %s\n"
-#: fdisk/sfdisk.c:884
+#: fdisk/sfdisk.c:932
#, c-format
msgid "unimplemented format - using %s\n"
msgstr "oimplementerat format - anv�nder %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, r�knat fr�n %d\n"
"\n"
-#: fdisk/sfdisk.c:891
+#: fdisk/sfdisk.c:939
msgid " Device Boot Start End #cyls #blocks Id System\n"
msgstr " Enhet Start B�rjan 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, r�knat fr�n %d\n"
"\n"
-#: fdisk/sfdisk.c:898
+#: fdisk/sfdisk.c:946
msgid " Device Boot Start End #sectors Id System\n"
msgstr " Enhet Start B�rjan 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, r�knat fr�n %d\n"
"\n"
-#: fdisk/sfdisk.c:903
+#: fdisk/sfdisk.c:951
msgid " Device Boot Start End #blocks Id System\n"
msgstr " Enhet Start B�rjan 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, r�knat fr�n %d\n"
"\n"
-#: fdisk/sfdisk.c:908
+#: fdisk/sfdisk.c:956
msgid " Device Boot Start End MiB #blocks Id System\n"
msgstr " Enhet Start B�rjan 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\tb�rjan: (c,h,s) (%ld,%ld,%ld) f�rv�ntades (%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) f�rv�ntades (%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, utanf�r slutet p� h�rddisken\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 ""
" f�r C/H/S=*/%ld/%ld (ist�llet f�r %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 tillg�nglig.\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 b�rjan 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 inneh�ller en del av partitionstabellen (sektor %lu),\n"
"och kommer att f�rst�ra 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 b�rjar 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 forts�tter utanf�r h�rddisken\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 prim�ra partitionerna kan vara ut�kad\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 b�rjar inte p� en j�mn cylindergr�ns\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 j�mn cylindergr�ns\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 fr�n prim�ra 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 "b�rjan"
-#: 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: b�rjan: (c,h,s) (%ld,%ld,%ld) f�rv�ntades (%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) f�rv�ntades (%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, utanf�r slutet p� h�rddisken\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 b�rjan p� extd-partitionen fr�n %ld till %ld\n"
"(Endast f�r listnings�ndam�l. �ndra inte dess inneh�ll).\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: ut�kad partition b�rjar inte p� j�mn cylindergr�ns.\n"
"DOS och Linux kommer att tolka inneh�llet 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 "f�r m�nga partitioner - ignorerar de efter nummer (%d)\n"
-#: fdisk/sfdisk.c:1372
+#: fdisk/sfdisk.c:1420
msgid "tree of partitions?\n"
msgstr "tr�d med partitioner?\n"
-#: fdisk/sfdisk.c:1493
+#: fdisk/sfdisk.c:1541
msgid "detected Disk Manager - unable to handle that\n"
msgstr "uppt�ckte 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 ut�kad 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: ok�nd 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 "l�ng eller ofullst�ndig indatarad - avslutar\n"
-#: fdisk/sfdisk.c:1718
+#: fdisk/sfdisk.c:1766
#, c-format
msgid "input error: `=' expected after %s field\n"
msgstr "indatafel: \"=\" f�rv�ntas efter %s-f�lt\n"
-#: fdisk/sfdisk.c:1725
+#: fdisk/sfdisk.c:1773
#, c-format
msgid "input error: unexpected character %c after %s field\n"
msgstr "indatafel: ov�ntat tecken %c efter %s-f�lt\n"
-#: fdisk/sfdisk.c:1731
+#: fdisk/sfdisk.c:1779
#, c-format
msgid "unrecognized input: %s\n"
msgstr "ok�nd indata: %s\n"
-#: fdisk/sfdisk.c:1773
+#: fdisk/sfdisk.c:1821
msgid "number too big\n"
msgstr "talet �r f�r stort\n"
-#: fdisk/sfdisk.c:1777
+#: fdisk/sfdisk.c:1825
msgid "trailing junk after number\n"
msgstr "eftersl�pande skr�p efter tal\n"
-#: fdisk/sfdisk.c:1898
+#: fdisk/sfdisk.c:1948
msgid "no room for partition descriptor\n"
msgstr "ingen plats f�r partitionshandtag\n"
-#: fdisk/sfdisk.c:1931
+#: fdisk/sfdisk.c:1981
msgid "cannot build surrounding extended partition\n"
msgstr "kan inte bygga omgivande ut�kad partition\n"
-#: fdisk/sfdisk.c:1982
+#: fdisk/sfdisk.c:2032
msgid "too many input fields\n"
msgstr "f�r m�nga 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 f�r 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 st�rsta till�tna 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 b�rjan p� partition (f�rsta %lu)\n"
-#: fdisk/sfdisk.c:2100
+#: fdisk/sfdisk.c:2150
msgid "unrecognized bootable flag - choose - or *\n"
msgstr "ok�nd startbarhetsflagga - v�lj - 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 ofullst�ndig?\n"
-#: fdisk/sfdisk.c:2141
+#: fdisk/sfdisk.c:2191
msgid "Extended partition not where expected\n"
msgstr "Ut�kad partition finns inte d�r den f�rv�ntades\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 "f�r m�nga 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 ""
"<b�rjan> <storlek> <typ [E,S,L,X,hex]> <startbar [-,*]> <c,h,s> <c,h,s>\n"
"Vanlligtvis beh�ver du bara ange <b�rjan> 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 "Anv�ndning: %s [flaggor] enhet ...\n"
-#: fdisk/sfdisk.c:2255
+#: fdisk/sfdisk.c:2305
msgid "device: something like /dev/hda or /dev/sda"
msgstr "enhet: n�gonting liknande /dev/hda eller /dev/sda"
-#: fdisk/sfdisk.c:2256
+#: fdisk/sfdisk.c:2306
msgid "useful options:"
msgstr "anv�ndbara 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 l�mpligt f�r 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 fr�n 1 ist�llet f�r fr�n 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 k�nda partitionstyperna"
-#: fdisk/sfdisk.c:2264
+#: fdisk/sfdisk.c:2314
msgid " -D [or --DOS]: for DOS-compatibility: waste a little space"
msgstr " -D [eller --DOS]: f�r DOS-kompatibilitet: sl�sa 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]: g�r s� att k�rnan l�ser 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 h�rddisken"
-#: 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 : �terst�ll 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 k�rnans 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 ut�kade partitioner i utdata\n"
" eller f�rv�nta handtag f�r 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 f�r 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 �sidos�tta den detekterade geometrin genom att anv�nda:"
-#: 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>]:st�ll in antalet cylindrar att anv�nda"
-#: 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>]:st�ll in antalet huvuden att anv�nda"
-#: 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>]:st�ll in antalet sektorer att anv�nda"
-#: fdisk/sfdisk.c:2282
+#: fdisk/sfdisk.c:2332
msgid "You can disable all consistency checking with:"
msgstr "Du kan st�nga 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]: g�r vad jag s�ger �ven om det �r dumt"
-#: fdisk/sfdisk.c:2289
+#: fdisk/sfdisk.c:2339
msgid "Usage:"
msgstr "Anv�ndning:"
-#: 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 "anv�ndning: 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 "anv�ndning: 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 "anv�ndning: 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 f�r l�sning 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 f�r l�sning\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/sp�r\n"
-#: fdisk/sfdisk.c:2709
+#: fdisk/sfdisk.c:2759
#, fuzzy, c-format
msgid "Cannot get size of %s\n"
msgstr "kan inte h�mta 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 ist�llet f�r 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 ""
"F�rdig\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 h�rddisk 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 h�rddisk anv�nds f�r tillf�llet.\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 anv�nder h�rddisken 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 utv�xlade. Anv�nd flaggan --no-reread f�r 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 "Anv�nd flaggan --force f�r 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 g�ra detta b�r du anv�nda 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 b�r nog svara nej\n"
-#: fdisk/sfdisk.c:2970
+#: fdisk/sfdisk.c:3020
msgid "Are you satisfied with this? [ynq] "
msgstr "�r du n�jd 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: f�r 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 (ut�kad) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "internt fel, kontakta f�rfattaren."
-#: hwclock/cmos.c:172
+#: hwclock/cmos.c:176
msgid "booted from MILO\n"
msgstr "startade fr�n 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 "h�ftig 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 f�r 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� till�telse eftersom jag inte f�rs�kte.\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-porttillg�ng: iopl(3)-anropet misslyckades.\n"
-#: hwclock/cmos.c:600
+#: hwclock/cmos.c:604
msgid "Probably you need root privileges.\n"
msgstr "Du beh�ver troligtvis root-privilegier.\n"
@@ -5792,36 +5808,37 @@ msgstr ""
"Anv�nd flaggan --debug f�r att se detaljerna �ver v�r s�kning efter en "
"�tkomstmetod.\n"
-#: hwclock/kd.c:43
+#: hwclock/kd.c:54
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "V�ntar i slingan p� att tiden fr�n KDGHWCLK ska �ndras\n"
-#: hwclock/kd.c:46
+#: hwclock/kd.c:57
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK-ioctl f�r att l�sa 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 v�ntan 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 f�r att l�sa 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 l�sa tid fr�n %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 "L�senordsfel."
#: 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 "L�senord: "
@@ -6205,7 +6222,7 @@ msgstr "Fingerinformationen �ndrades *INTE*. F�rs�k 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 k�ra umount, ger upp med umount."
msgid "Unmounting any remaining filesystems..."
msgstr "Avmonterar alla �terst�ende 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 fr�n %s@%s (som %s) p� %s klockan %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Meddelande fr�n %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 l�sning 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 - anv�nder %s ist�llet\n"
@@ -7616,36 +7633,36 @@ msgstr "mount: kunde inte �ppna %s - anv�nder %s ist�llet\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 l�sfilen %s: %s (anv�nd flaggan -n f�r att �sidos�tta)"
-#: 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 l�nka l�sfilen %s: %s (anv�nd flaggan -n f�r att �sidos�tta)"
-#: 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 l�sfilen %s: %s (anv�nd flaggan -n f�r att �sidos�tta)"
-#: mount/fstab.c:493
+#: mount/fstab.c:514
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Kan inte l�sa l�sfilen %s: %s\n"
-#: mount/fstab.c:505
+#: mount/fstab.c:526
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "kan inte l�sa l�sfilen %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 l�nken %s\n"
"Det finns kanske en kvargl�md l�sfil?\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 r�ttigheter 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 n�gon ledig slingenhet"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Kunde inte l�sa 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 st�d f�r slingor. Du b�r 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 avst�nd ] 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 tillr�ckligt med minne"
-#: mount/lomount.c:509
+#: mount/lomount.c:513
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Inget st�d f�r slingor fanns tillg�ngligt vid kompileringen. Du b�r\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 f�r 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 r�ttigheter 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 v�xlingsutrymme - 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� g�nger"
-#: mount/mount.c:589
+#: mount/mount.c:568
msgid "mount: type specified twice"
msgstr "mount: typen angiven tv� g�nger"
-#: 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 anv�nda 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 m�ste 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 f�r inst�llning av hastighet"
-#: mount/mount.c:690
+#: mount/mount.c:672
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: kan inte st�lla 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 st�d f�r 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, f�rs�ker 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 avg�ra filsystemstypen, och ingen angavs"
-#: mount/mount.c:878
+#: mount/mount.c:868
msgid "mount: you must specify the filesystem type"
msgstr "mount: du m�ste 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: m�ste vara superanv�ndaren f�r att anv�nda 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 l�nk 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 s�kv�gsprefix �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 f�r m�nga 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 l�sa superblock"
-#: mount/mount.c:979
+#: mount/mount.c:969
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: ok�nd enhet"
-#: mount/mount.c:984
-#, c-format
-msgid "mount: fs type %s not supported by kernel"
-msgstr "mount: filsystemstypen %s st�ds inte av k�rnan"
+#: mount/mount.c:974
+#, fuzzy, c-format
+msgid "mount: unknown filesystem type '%s'"
+msgstr " l visa k�nda 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� st�ds 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: k�rnan k�nner 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 (f�rs�k 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 l�sbar"
-#: 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 l�sbar"
-#: 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: f�rl�gger \"%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 l�senordfd].\n"
"S�g man 8 mount f�r m�nga fler detaljer.\n"
-#: mount/mount.c:1544
+#: mount/mount.c:1562
msgid "mount: only root can do that"
msgstr "mount: endast root kan g�ra 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 s�dan 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 f�r %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 f�rs�ka med alla typer n�mnda 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 v�xlingsutrymme\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 f�rs�ka med typen %s\n"
-#: mount/mount_guess_fstype.c:616
+#: mount/mount_guess_fstype.c:637
#, c-format
msgid "Trying %s\n"
msgstr "F�rs�ker med %s\n"
@@ -8424,11 +8447,11 @@ msgstr "umount: kunde inte montera om %s som endast l�sbar\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 "F�rs�ker 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 g�nger"
-#: 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 st�mmer 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 fr�n %s"
-#: mount/umount.c:688
+#: mount/umount.c:665
msgid "umount: only root can do that"
msgstr "umount: endast root kan g�ra det"
@@ -8485,7 +8508,7 @@ msgstr "Du m�ste vara root f�r att kunna st�lla in Ctrl-Alt-Del-beteendet.\n"
msgid "Usage: ctrlaltdel hard|soft\n"
msgstr "Anv�ndning: 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, f�r tr�skelv�rde %lu, st�rsta antalet tecken i fifon var %d,\n"
"och den maximala �verf�ringshastigheten 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 �verf�ringshastigheten 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 intervallv�rde: %s\n"
-#: sys-utils/cytune.c:203
+#: sys-utils/cytune.c:198
#, c-format
msgid "Invalid set value: %s\n"
msgstr "Ogiltigt inst�llt v�rde: %s\n"
-#: sys-utils/cytune.c:211
+#: sys-utils/cytune.c:206
#, c-format
msgid "Invalid default value: %s\n"
msgstr "Ogiltigt standardv�rde: %s\n"
-#: sys-utils/cytune.c:219
+#: sys-utils/cytune.c:214
#, c-format
msgid "Invalid set time value: %s\n"
msgstr "Ogiltigt inst�llt tidsv�rde: %s\n"
-#: sys-utils/cytune.c:227
+#: sys-utils/cytune.c:222
#, c-format
msgid "Invalid default time value: %s\n"
msgstr "Ogiltigt standardtidsv�rde: %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 ""
"Anv�ndning: %s [-q [-i intervall]] ([-s v�rde]|[-S v�rde]) ([-t v�rde]|[-T "
"v�rde]) [-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 st�lla in %s till tr�skelv�rde %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 st�lla in %s till tidstr�skelv�rde %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� tr�skelv�rde f�r %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 f�r %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 tr�skel 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 standardtr�skel och %ld standardtimeout\n"
-#: sys-utils/cytune.c:333
+#: sys-utils/cytune.c:328
msgid "Can't set signal handler"
msgstr "Kan inte st�lla 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 tr�skel, %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 tr�skel, %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 f�r l�ng.\n"
msgid "Out of memory when growing buffer.\n"
msgstr "Slut p� minne vid v�xande av buffert.\n"
+#~ msgid "mount: fs type %s not supported by kernel"
+#~ msgstr "mount: filsystemstypen %s st�ds inte av k�rnan"
+
#~ msgid "BLKGETSIZE ioctl failed for %s\n"
#~ msgstr "BLKGETSIZE-ioctl misslyckades f�r %s\n"
diff --git a/po/tr.po b/po/tr.po
index 2d486625..fe5258cc 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 32394959..373c841a 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 4e67514e..00944781 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 00000000..afcf6005
--- /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 295e63bb..1dd62ce6 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