summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--HISTORY8
-rw-r--r--Makefile10
-rw-r--r--VERSION2
-rwxr-xr-xconfigure11
-rw-r--r--disk-utils/Makefile7
-rw-r--r--disk-utils/mkswap.86
-rw-r--r--disk-utils/mkswap.c112
-rw-r--r--disk-utils/swapheader.h19
-rw-r--r--mount/Makefile13
-rw-r--r--mount/fstab.c23
-rw-r--r--mount/get_label_uuid.c162
-rw-r--r--mount/lomount.c9
-rw-r--r--mount/mount.c1
-rw-r--r--mount/mount_blkid.c7
-rw-r--r--mount/mount_by_label.c10
-rw-r--r--mount/sundries.c54
-rw-r--r--mount/sundries.h1
-rw-r--r--mount/swapon.849
-rw-r--r--mount/swapon.c240
-rw-r--r--mount/umount.c5
-rw-r--r--mount/xmalloc.c66
-rw-r--r--mount/xmalloc.h8
-rw-r--r--po/ca.po1294
-rw-r--r--po/cs.po1292
-rw-r--r--po/da.po1294
-rw-r--r--po/de.po1299
-rw-r--r--po/es.po1297
-rw-r--r--po/et.po1284
-rw-r--r--po/fi.po1294
-rw-r--r--po/fr.po1296
-rw-r--r--po/it.po1288
-rw-r--r--po/ja.po1292
-rw-r--r--po/nl.po1294
-rw-r--r--po/pt_BR.po1290
-rw-r--r--po/sl.po1287
-rw-r--r--po/sv.po1296
-rw-r--r--po/tr.po1296
-rw-r--r--po/uk.po1294
-rw-r--r--sys-utils/tunelp.86
39 files changed, 11437 insertions, 10079 deletions
diff --git a/HISTORY b/HISTORY
index aea7683b1..8cb1b2a86 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,3 +1,11 @@
+util-linux 2.12n,o
+
+* lomount: revert patch from 2.12j
+* lptune.8: -T option is obsolete
+* mkswap, mkswap.8, swapon: support labels
+ (use HAVE_BLKID=no as long as the blkid library doesnt support this)
+* umount: allow user unmounting repeatedly mounted nfs mounts
+
util-linux 2.12m
* cfdisk: recognize JFS, support reiserfs labels (flavio.stanchina@tin.it)
diff --git a/Makefile b/Makefile
index dd4b84e8e..fa185f308 100644
--- a/Makefile
+++ b/Makefile
@@ -52,7 +52,15 @@ distclean: make_include clean
cd mount && make distclean
-rm -f defines.h make_include
-#
+tar: make_include clean
+ cd mount && make distclean
+ cd po && make update-po && make util-linux.pot && \
+ mv util-linux.pot ../../util-linux-$(VERSION).pot && \
+ make distclean
+ -rm -f defines.h make_include
+ cd .. && tar cvfz util-linux-$(VERSION).tar.gz ./util-linux-$(VERSION)
+ @echo = made util-linux-$(VERSION).pot and util-linux-$(VERSION).tar.gz
+
# dist:
# (cd /tmp; \
# rm -rf /tmp/util-linux-$(VERSION); \
diff --git a/VERSION b/VERSION
index 14a1f815a..efea0fc3a 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.12m
+2.12o
diff --git a/configure b/configure
index cb7fa3ee1..6d73b2195 100755
--- a/configure
+++ b/configure
@@ -12,6 +12,7 @@
# H4. For nls.h: do we have <locale.h>?
# H5. For cal.c: do we have <langinfo.h>?
# H6. For mkswap.c: do we have <sys/user.h> or <asm/page.h>?
+# H6a For mkswap.c: do we have <uuid/uuid.h>?
# H7. For nfsmount.c: do we have <rpcsvc/nfs_prot.h>?
# 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>?
@@ -164,6 +165,16 @@ else if ./testincl "asm/page.h"; then
fi; fi
#
+# H6a. For mkswap.c: do we have <uuid/uuid.h>?
+#
+if ./testincl "uuid/uuid.h"; then
+ echo "#define HAVE_uuid_uuid_h" >> defines.h
+ echo "HAVE_UUID=yes" >> make_include
+else
+ echo "HAVE_UUID=no" >> make_include
+fi
+
+#
# H7. For nfsmount.c: do we have <rpcsvc/nfs_prot.h>?
#
if ./testincl "rpcsvc/nfs_prot.h"; then
diff --git a/disk-utils/Makefile b/disk-utils/Makefile
index febbb22ea..5a3332346 100644
--- a/disk-utils/Makefile
+++ b/disk-utils/Makefile
@@ -36,6 +36,10 @@ ifeq "$(HAVE_ZLIB)" "yes"
SBIN:=$(SBIN) fsck.cramfs mkfs.cramfs
endif
+ifeq "$(HAVE_UUID)" "yes"
+MKSWAP_LIBS=-luuid
+endif
+
all: $(SBIN) $(USRBIN)
fsck.cramfs: fsck.cramfs.o
@@ -50,6 +54,9 @@ fsck.cramfs.o mkfs.cramfs.o: cramfs.h
fsck.minix.o mkfs.minix.o: bitops.h minix.h
+mkswap: mkswap.o $(LIB)/xstrncpy.o
+ $(CC) $(LDFLAGS) -o $@ $^ $(MKSWAP_LIBS)
+
install: all
$(INSTALLDIR) $(SBINDIR) $(USRBINDIR) $(ETCDIR)
$(INSTALLBIN) $(SBIN) $(SBINDIR)
diff --git a/disk-utils/mkswap.8 b/disk-utils/mkswap.8
index e143704bd..3463acc2a 100644
--- a/disk-utils/mkswap.8
+++ b/disk-utils/mkswap.8
@@ -7,7 +7,7 @@
.SH NAME
mkswap \- set up a Linux swap area
.SH SYNOPSIS
-.BI "mkswap [\-c] [\-v" N "] [\-f] [\-p " PSZ "] "device " [" size "]"
+.BI "mkswap [\-c] [\-v" N "] [\-f] [\-p " PSZ "] [\-L " label "] " device " [" size "]"
.SH DESCRIPTION
.B mkswap
sets up a Linux swap area on a device or in a file.
@@ -131,6 +131,10 @@ as that probably means one is going to erase the partition table.
.BI "\-p " PSZ
Specify the page size to use.
.TP
+.BI "\-L " label
+Specify a label, to allow swapon by label.
+(Only for new style swap areas.)
+.TP
.B \-v0
Create an old style swap area.
.TP
diff --git a/disk-utils/mkswap.c b/disk-utils/mkswap.c
index d5f2ba0ec..67586fd19 100644
--- a/disk-utils/mkswap.c
+++ b/disk-utils/mkswap.c
@@ -39,8 +39,15 @@
#include <sys/ioctl.h> /* for _IO */
#include <sys/utsname.h>
#include <sys/stat.h>
+#include "../defines.h"
+#include "swapheader.h"
+#include "xstrncpy.h"
#include "nls.h"
+#ifdef HAVE_uuid_uuid_h
+#include <uuid/uuid.h>
+#endif
+
/* Try to get PAGE_SIZE from libc or kernel includes */
#ifdef HAVE_sys_user_h
/* Note: <sys/user.h> says: for gdb only */
@@ -154,18 +161,11 @@ static int kernel_pagesize; /* obtained via getpagesize(); */
static int defined_pagesize = 0; /* PAGE_SIZE, when that exists */
static int pagesize;
static long *signature_page;
-
-struct swap_header_v1 {
- char bootbits[1024]; /* Space for disklabel etc. */
- unsigned int version;
- unsigned int last_page;
- unsigned int nr_badpages;
- unsigned int padding[125];
- unsigned int badpages[1];
-} *p;
+struct swap_header_v1 *p;
static void
init_signature_page(void) {
+
#ifdef PAGE_SIZE
defined_pagesize = PAGE_SIZE;
#endif
@@ -192,7 +192,7 @@ init_signature_page(void) {
pagesize, defined_pagesize);
signature_page = (long *) malloc(pagesize);
- memset(signature_page,0,pagesize);
+ memset(signature_page, 0, pagesize);
p = (struct swap_header_v1 *) signature_page;
}
@@ -203,6 +203,62 @@ write_signature(char *sig) {
strncpy(sp+pagesize-10, sig, 10);
}
+#if 0
+static int
+tohex(int a) {
+ return ((a < 10) ? '0'+a : 'a'+a-10);
+}
+
+static void
+uuid_unparse(unsigned char *uuid, char *s) {
+ int i;
+
+ for (i=0; i<16; i++) {
+ if (i == 4 || i == 6 || i == 8 || i == 10)
+ *s++ = '-';
+ *s++ = tohex((uuid[i] >> 4) & 0xf);
+ *s++ = tohex(uuid[i] & 0xf);
+ }
+ *s = 0;
+}
+#endif
+
+static void
+write_uuid_and_label(char *uuid, char *volume_name) {
+ struct swap_header_v1_2 *h;
+
+ /* Sanity check */
+ if (sizeof(struct swap_header_v1) !=
+ sizeof(struct swap_header_v1_2)) {
+ fprintf(stderr,
+ _("Bad swap header size, no label written.\n"));
+ return;
+ }
+
+ h = (struct swap_header_v1_2 *) signature_page;
+ if (uuid)
+ memcpy(h->uuid, uuid, sizeof(h->uuid));
+ if (volume_name) {
+ xstrncpy(h->volume_name, volume_name, sizeof(h->volume_name));
+ if (strlen(volume_name) > strlen(h->volume_name))
+ fprintf(stderr, _("Label was truncated.\n"));
+ }
+ if (uuid || volume_name) {
+ if (volume_name)
+ printf("LABEL=%s, ", h->volume_name);
+ else
+ printf(_("no label, "));
+#ifdef HAVE_uuid_uuid_h
+ if (uuid) {
+ char uuid_string[37];
+ uuid_unparse(uuid, uuid_string);
+ printf("UUID=%s\n", uuid_string);
+ } else
+#endif
+ printf(_("no uuid\n"));
+ }
+}
+
/*
* Find out what the maximum amount of swap space is that the kernel will
* handle. This wouldn't matter if the kernel just used as much of the
@@ -323,7 +379,7 @@ bit_test_and_clear (unsigned long *addr, unsigned int nr) {
static void
usage(void) {
fprintf(stderr,
- _("Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"),
+ _("Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"),
program_name);
exit(1);
}
@@ -448,8 +504,13 @@ main(int argc, char ** argv) {
int force = 0;
char *block_count = 0;
char *pp;
+ char *opt_label = NULL;
+ char *uuid = NULL;
+#ifdef HAVE_uuid_uuid_h
+ uuid_t uuid_dat;
+#endif
- program_name = (argc && *argv) ? argv[0] : "fsck.minix";
+ program_name = (argc && *argv) ? argv[0] : "mkswap";
if ((pp = strrchr(program_name, '/')) != NULL)
program_name = pp+1;
@@ -477,10 +538,16 @@ main(int argc, char ** argv) {
if (!*pp && i+1 < argc)
pp = argv[++i];
if (isnzdigit(*pp))
- user_pagesize=atoi(pp);
+ user_pagesize = atoi(pp);
else
usage();
break;
+ case 'L':
+ pp = argv[i]+2;
+ if (!*pp && i+1 < argc)
+ pp = argv[++i];
+ opt_label = pp;
+ break;
case 'v':
version = atoi(argv[i]+2);
break;
@@ -495,6 +562,11 @@ main(int argc, char ** argv) {
usage();
}
+#ifdef HAVE_uuid_uuid_h
+ uuid_generate(uuid_dat);
+ uuid = uuid_dat;
+#endif
+
init_signature_page(); /* get pagesize */
if (!device_name) {
@@ -525,6 +597,10 @@ main(int argc, char ** argv) {
}
if (version == -1) {
+ /* labels only for v1 */
+ if (opt_label)
+ version = 1;
+ else
/* use version 1 as default, if possible */
if (PAGES <= V0_MAX_PAGES && PAGES > V1_MAX_PAGES)
version = 0;
@@ -564,6 +640,13 @@ main(int argc, char ** argv) {
program_name, PAGES * pagesize / 1000);
}
+ if (opt_label && version == 0) {
+ fprintf(stderr,
+ _("%s: error: label only with v1 swap area\n"),
+ program_name);
+ usage();
+ }
+
DEV = open(device_name,O_RDWR);
if (DEV < 0 || fstat(DEV, &statbuf) < 0) {
perror(device_name);
@@ -618,6 +701,9 @@ the -f option to force it.\n"),
version, (unsigned long long)goodpages * pagesize / 1000);
write_signature((version == 0) ? "SWAP-SPACE" : "SWAPSPACE2");
+ if (version == 1)
+ write_uuid_and_label(uuid, opt_label);
+
offset = ((version == 0) ? 0 : 1024);
if (lseek(DEV, offset, SEEK_SET) != offset)
die(_("unable to rewind swap-device"));
diff --git a/disk-utils/swapheader.h b/disk-utils/swapheader.h
new file mode 100644
index 000000000..9411e3d2d
--- /dev/null
+++ b/disk-utils/swapheader.h
@@ -0,0 +1,19 @@
+struct swap_header_v1 {
+ char bootbits[1024]; /* Space for disklabel etc. */
+ unsigned int version;
+ unsigned int last_page;
+ unsigned int nr_badpages;
+ unsigned int padding[125];
+ unsigned int badpages[1];
+};
+
+struct swap_header_v1_2 {
+ char bootbits[1024]; /* Space for disklabel etc. */
+ unsigned int version;
+ unsigned int last_page;
+ unsigned int nr_badpages;
+ unsigned char uuid[16];
+ char volume_name[16];
+ unsigned int padding[117];
+ unsigned int badpages[1];
+};
diff --git a/mount/Makefile b/mount/Makefile
index 9258fbdf4..911f96c7c 100644
--- a/mount/Makefile
+++ b/mount/Makefile
@@ -47,18 +47,19 @@ install: $(PROGS)
%.o: %.c
$(COMPILE) $<
-mount: mount.o fstab.o sundries.o realpath.o mntent.o version.o \
+mount: mount.o fstab.o sundries.o xmalloc.o realpath.o mntent.o version.o \
get_label_uuid.o mount_by_label.o mount_blkid.o mount_guess_fstype.o \
getusername.o $(LIB)/setproctitle.o $(LIB)/env.o $(NFS_OBJS) $(LO_OBJS)
$(LINK) $^ -o $@ $(BLKID_LIB)
-umount: umount.o fstab.o sundries.o realpath.o mntent.o getusername.o \
- get_label_uuid.o mount_by_label.o mount_blkid.o version.o \
- $(LIB)/env.o $(LO_OBJS)
+umount: umount.o fstab.o sundries.o xmalloc.o realpath.o mntent.o \
+ getusername.o get_label_uuid.o mount_by_label.o mount_blkid.o \
+ version.o $(LIB)/env.o $(LO_OBJS)
$(LINK) $^ -o $@ $(BLKID_LIB)
-swapon: swapon.o version.o
- $(LINK) $^ -o $@
+swapon: swapon.o version.o xmalloc.o \
+ get_label_uuid.o mount_by_label.o mount_blkid.o
+ $(LINK) $^ -o $@ $(BLKID_LIB)
main_losetup.o: lomount.c
$(COMPILE) -DMAIN lomount.c -o $@
diff --git a/mount/fstab.c b/mount/fstab.c
index 09b5f584d..1a7ce4e58 100644
--- a/mount/fstab.c
+++ b/mount/fstab.c
@@ -11,7 +11,8 @@
#include <sys/stat.h>
#include "mntent.h"
#include "fstab.h"
-#include "sundries.h" /* for xmalloc() etc */
+#include "sundries.h"
+#include "xmalloc.h"
#include "mount_blkid.h"
#include "paths.h"
#include "nls.h"
@@ -411,6 +412,15 @@ setlkw_timeout (int sig) {
/* nothing, fcntl will fail anyway */
}
+/* Remove lock file. */
+void
+unlock_mtab (void) {
+ if (we_created_lockfile) {
+ unlink (MOUNTED_LOCK);
+ we_created_lockfile = 0;
+ }
+}
+
/* Create the lock file.
The lock file will be removed if we catch a signal or when we exit. */
/* The old code here used flock on a lock file /etc/mtab~ and deleted
@@ -436,6 +446,8 @@ lock_mtab (void) {
int tries = 3;
char linktargetfile[MOUNTLOCK_LINKTARGET_LTH];
+ at_die = unlock_mtab;
+
if (!signals_have_been_setup) {
int sig = 0;
struct sigaction sa;
@@ -543,15 +555,6 @@ lock_mtab (void) {
}
}
-/* Remove lock file. */
-void
-unlock_mtab (void) {
- if (we_created_lockfile) {
- unlink (MOUNTED_LOCK);
- we_created_lockfile = 0;
- }
-}
-
/*
* Update the mtab.
* Used by umount with null INSTEAD: remove the last DIR entry.
diff --git a/mount/get_label_uuid.c b/mount/get_label_uuid.c
index 411e6a847..8b5942f71 100644
--- a/mount/get_label_uuid.c
+++ b/mount/get_label_uuid.c
@@ -1,6 +1,6 @@
#ifndef HAVE_BLKID
/*
- * Get label. Used by both mount and umount.
+ * Get label. Used by mount, umount and swapon.
*/
#include <stdio.h>
#include <fcntl.h>
@@ -8,8 +8,10 @@
#include <stdlib.h>
#include <string.h>
+#include "xmalloc.h"
#include "linux_fs.h"
#include "get_label_uuid.h"
+#include "../disk-utils/swapheader.h"
/*
* See whether this device has (the magic of) a RAID superblock at the end.
@@ -60,15 +62,48 @@ reiserfs_magic_version(const char *magic) {
return rc;
}
+static void
+store_uuid(char *udest, char *usrc) {
+ if (usrc)
+ memcpy(udest, usrc, 16);
+ else
+ memset(udest, 0, 16);
+}
+
+static void
+store_label(char **ldest, char *lsrc, int len) {
+ *ldest = xmalloc(len+1);
+ memset(*ldest, 0, len+1);
+ memcpy(*ldest, lsrc, len);
+}
+
+static int
+is_v1_swap_partition(int fd, char **label, char *uuid) {
+ int n = getpagesize();
+ char *buf = xmalloc(n);
+ struct swap_header_v1_2 *p = (struct swap_header_v1_2 *) buf;
+
+ if (lseek(fd, 0, SEEK_SET) == 0
+ && read(fd, buf, n) == n
+ && !strncmp(buf+n-10, "SWAPSPACE2", 10)
+ && p->version == 1) {
+ store_uuid(uuid, p->uuid);
+ store_label(label, p->volume_name, 16);
+ return 1;
+ }
+ return 0;
+}
+
+
/*
* Get both label and uuid.
- * For now, only ext2, ext3, xfs, ocfs, ocfs2, reiserfs are supported
+ * For now, only ext2, ext3, xfs, ocfs, ocfs2, reiserfs, swap are supported
+ *
+ * Return 0 on success.
*/
int
get_label_uuid(const char *device, char **label, char *uuid) {
int fd;
- int rv = 1;
- size_t namesize;
struct ext2_super_block e2sb;
struct xfs_super_block xfsb;
struct jfs_super_block jfssb;
@@ -76,47 +111,50 @@ get_label_uuid(const char *device, char **label, char *uuid) {
struct ocfs_volume_label olbl;
struct ocfs2_super_block osb;
struct reiserfs_super_block reiserfssb;
+ int blksize;
+ int rv = 0;
fd = open(device, O_RDONLY);
if (fd < 0)
- return rv;
+ return -1;
/* If there is a RAID partition, or an error, ignore this partition */
if (is_raid_partition(fd)) {
- close(fd);
- return rv;
+ rv = 1;
+ goto done;
}
+ if (is_v1_swap_partition(fd, label, uuid))
+ goto done;
+
if (lseek(fd, 1024, SEEK_SET) == 1024
&& read(fd, (char *) &e2sb, sizeof(e2sb)) == sizeof(e2sb)
&& (ext2magic(e2sb) == EXT2_SUPER_MAGIC)) {
- memcpy(uuid, e2sb.s_uuid, sizeof(e2sb.s_uuid));
- namesize = sizeof(e2sb.s_volume_name);
- if ((*label = calloc(namesize + 1, 1)) != NULL)
- memcpy(*label, e2sb.s_volume_name, namesize);
- rv = 0;
+ store_uuid(uuid, e2sb.s_uuid);
+ store_label(label, e2sb.s_volume_name,
+ sizeof(e2sb.s_volume_name));
+ goto done;
}
- else if (lseek(fd, 0, SEEK_SET) == 0
+
+ if (lseek(fd, 0, SEEK_SET) == 0
&& read(fd, (char *) &xfsb, sizeof(xfsb)) == sizeof(xfsb)
&& (strncmp(xfsb.s_magic, XFS_SUPER_MAGIC, 4) == 0)) {
- memcpy(uuid, xfsb.s_uuid, sizeof(xfsb.s_uuid));
- namesize = sizeof(xfsb.s_fname);
- if ((*label = calloc(namesize + 1, 1)) != NULL)
- memcpy(*label, xfsb.s_fname, namesize);
- rv = 0;
+ store_uuid(uuid, xfsb.s_uuid);
+ store_label(label, xfsb.s_fname, sizeof(xfsb.s_fname));
+ goto done;
}
- else if (lseek(fd, 0, SEEK_SET) == 0
+
+ if (lseek(fd, 0, SEEK_SET) == 0
&& read(fd, (char *) &ovh, sizeof(ovh)) == sizeof(ovh)
&& (strncmp(ovh.signature, OCFS_MAGIC, sizeof(OCFS_MAGIC)) == 0)
&& (lseek(fd, 512, SEEK_SET) == 512)
&& read(fd, (char *) &olbl, sizeof(olbl)) == sizeof(olbl)) {
- uuid[0] = '\0';
- namesize = ocfslabellen(olbl);
- if ((*label = calloc(namesize + 1, 1)) != NULL)
- memcpy(*label, olbl.label, namesize);
- rv = 0;
+ store_uuid(uuid, NULL);
+ store_label(label, olbl.label, ocfslabellen(olbl));
+ goto done;
}
- else if (lseek(fd, JFS_SUPER1_OFF, SEEK_SET) == JFS_SUPER1_OFF
+
+ if (lseek(fd, JFS_SUPER1_OFF, SEEK_SET) == JFS_SUPER1_OFF
&& read(fd, (char *) &jfssb, sizeof(jfssb)) == sizeof(jfssb)
&& (strncmp(jfssb.s_magic, JFS_MAGIC, 4) == 0)) {
@@ -136,55 +174,47 @@ get_label_uuid(const char *device, char **label, char *uuid) {
if (assemble4le(jfssb.s_version) == 1 &&
strncmp(jfssb.s_label, jfssb.s_fpack, 11) != 0) {
- memset(uuid, 0, 16);
- namesize = sizeof(jfssb.s_fpack);
- if ((*label = calloc(namesize + 1, 1)) != NULL)
- memcpy(*label, jfssb.s_fpack, namesize);
+ store_uuid(uuid, NULL);
+ store_label(label, jfssb.s_fpack,
+ sizeof(jfssb.s_fpack));
} else {
- memcpy(uuid, jfssb.s_uuid, sizeof(jfssb.s_uuid));
- namesize = sizeof(jfssb.s_label);
- if ((*label = calloc(namesize + 1, 1)) != NULL)
- memcpy(*label, jfssb.s_label, namesize);
+ store_uuid(uuid, jfssb.s_uuid);
+ store_label(label, jfssb.s_label,
+ sizeof(jfssb.s_label));
}
- rv = 0;
+ goto done;
}
- else if (lseek(fd, REISERFS_DISK_OFFSET_IN_BYTES, SEEK_SET)
- == REISERFS_DISK_OFFSET_IN_BYTES
+
+ if (lseek(fd, REISERFS_DISK_OFFSET_IN_BYTES, SEEK_SET)
+ == REISERFS_DISK_OFFSET_IN_BYTES
&& read(fd, (char *) &reiserfssb, sizeof(reiserfssb))
- == sizeof(reiserfssb)
- /* Only 3.6.x format supers have labels or uuids.
- Label and UUID can be set by reiserfstune -l/-u. */
+ == sizeof(reiserfssb)
+ /* Only 3.6.x format supers have labels or uuids.
+ Label and UUID can be set by reiserfstune -l/-u. */
&& reiserfs_magic_version(reiserfssb.s_magic) > 1) {
- namesize = sizeof (reiserfssb.s_label);
- if ((*label = calloc(namesize + 1, 1)) != NULL)
- memcpy(*label, reiserfssb.s_label, namesize);
- memcpy(uuid, reiserfssb.s_uuid, sizeof (reiserfssb.s_uuid));
- rv = 0;
+ store_uuid(uuid, reiserfssb.s_uuid);
+ store_label(label, reiserfssb.s_label,
+ sizeof(reiserfssb.s_label));
+ goto done;
}
- else {
- int blksize, blkoff;
-
- for (blksize = OCFS2_MIN_BLOCKSIZE;
- blksize <= OCFS2_MAX_BLOCKSIZE;
- blksize <<= 1) {
- blkoff = blksize * OCFS2_SUPER_BLOCK_BLKNO;
- if (lseek(fd, blkoff, SEEK_SET) == blkoff
- && read(fd, (char *) &osb, sizeof(osb))
- == sizeof(osb)
- && strncmp(osb.signature,
- OCFS2_SUPER_BLOCK_SIGNATURE,
- sizeof(OCFS2_SUPER_BLOCK_SIGNATURE))
- == 0) {
- memcpy(uuid, osb.s_uuid, sizeof(osb.s_uuid));
- namesize = sizeof(osb.s_label);
- if ((*label = calloc(namesize, 1)) != NULL)
- memcpy(*label, osb.s_label, namesize);
- rv = 0;
- break;
- }
+
+ for (blksize = OCFS2_MIN_BLOCKSIZE;
+ blksize <= OCFS2_MAX_BLOCKSIZE;
+ blksize <<= 1) {
+ int blkoff = blksize * OCFS2_SUPER_BLOCK_BLKNO;
+
+ if (lseek(fd, blkoff, SEEK_SET) == blkoff
+ && read(fd, (char *) &osb, sizeof(osb)) == sizeof(osb)
+ && strncmp(osb.signature,
+ OCFS2_SUPER_BLOCK_SIGNATURE,
+ sizeof(OCFS2_SUPER_BLOCK_SIGNATURE)) == 0) {
+ store_uuid(uuid, osb.s_uuid);
+ store_label(label, osb.s_label, sizeof(osb.s_label));
+ goto done;
}
}
-
+ rv = 1;
+ done:
close(fd);
return rv;
}
diff --git a/mount/lomount.c b/mount/lomount.c
index 002f34204..000a7b814 100644
--- a/mount/lomount.c
+++ b/mount/lomount.c
@@ -242,7 +242,7 @@ int
set_loop(const char *device, const char *file, unsigned long long offset,
const char *encryption, int pfd, int *loopro) {
struct loop_info64 loopinfo64;
- int fd, ffd, mode, i, n;
+ int fd, ffd, mode, i;
char *pass;
mode = (*loopro ? O_RDONLY : O_RDWR);
@@ -299,11 +299,10 @@ set_loop(const char *device, const char *file, unsigned long long offset,
default:
pass = xgetpass(pfd, _("Password: "));
gotpass:
+ memset(loopinfo64.lo_encrypt_key, 0, LO_KEY_SIZE);
xstrncpy(loopinfo64.lo_encrypt_key, pass, LO_KEY_SIZE);
- n = strlen(pass);
- memset(pass, 0, n);
- loopinfo64.lo_encrypt_key_size =
- (n < LO_KEY_SIZE) ? n : LO_KEY_SIZE;
+ memset(pass, 0, strlen(pass));
+ loopinfo64.lo_encrypt_key_size = LO_KEY_SIZE;
}
if (ioctl(fd, LOOP_SET_FD, ffd) < 0) {
diff --git a/mount/mount.c b/mount/mount.c
index 3a59c370c..0f48ea931 100644
--- a/mount/mount.c
+++ b/mount/mount.c
@@ -24,6 +24,7 @@
#include "mount_blkid.h"
#include "mount_constants.h"
#include "sundries.h"
+#include "xmalloc.h"
#include "mntent.h"
#include "fstab.h"
#include "lomount.h"
diff --git a/mount/mount_blkid.c b/mount/mount_blkid.c
index 47c48b39e..c485c913c 100644
--- a/mount/mount_blkid.c
+++ b/mount/mount_blkid.c
@@ -74,6 +74,8 @@ mount_get_devname_by_uuid(const char *uuid) {
return get_spec_by_uuid(uuid);
}
+extern char *progname;
+
const char *
mount_get_devname_by_label(const char *volumelabel) {
const char *spec, *spec2;
@@ -82,9 +84,8 @@ mount_get_devname_by_label(const char *volumelabel) {
spec2 = second_occurrence_of_vol_label(volumelabel);
if (spec2)
die (EX_FAIL,
- _("mount: the label %s occurs on "
- "both %s and %s - not mounted\n"),
- volumelabel, spec, spec2);
+ _("%s: error: the label %s occurs on both %s and %s\n"),
+ progname, volumelabel, spec, spec2);
return spec;
}
diff --git a/mount/mount_by_label.c b/mount/mount_by_label.c
index 29ec35448..91e9f3ac8 100644
--- a/mount/mount_by_label.c
+++ b/mount/mount_by_label.c
@@ -40,6 +40,8 @@
#define EVMS_VOLUME_NAME_SIZE 127
#define PROC_EVMS_VOLUMES "/proc/evms/volumes"
+extern char *progname;
+
static struct uuidCache_s {
struct uuidCache_s *next;
char uuid[16];
@@ -82,7 +84,7 @@ uuidcache_init_lvm(void) {
sprintf(buffer, "%s/%s/LVs", VG_DIR, vg_iter->d_name);
lv_list = opendir(buffer);
if (lv_list == NULL) {
- perror("mount (init_lvm)");
+ perror("uuidcache_init_lvm");
continue;
}
seekdir(lv_list, 2);
@@ -187,9 +189,9 @@ uuidcache_init(void) {
if (!procpt) {
static int warn = 0;
if (!warn++)
- error (_("mount: could not open %s, so UUID and LABEL "
+ error (_("%s: could not open %s, so UUID and LABEL "
"conversion cannot be done.\n"),
- PROC_PARTITIONS);
+ progname, PROC_PARTITIONS);
return;
}
#if 0
@@ -310,7 +312,7 @@ get_spec_by_uuid(const char *s) {
return get_spec_by_x(UUID, uuid);
bad_uuid:
- die(EX_USAGE, _("mount: bad UUID"));
+ die(EX_USAGE, _("%s: bad UUID"), progname);
return NULL; /* just for gcc */
}
diff --git a/mount/sundries.c b/mount/sundries.c
index 2118ce285..1be9099ba 100644
--- a/mount/sundries.c
+++ b/mount/sundries.c
@@ -18,46 +18,6 @@
#include "nfsmount.h"
#include "nls.h"
-void *
-xmalloc (size_t size) {
- void *t;
-
- if (size == 0)
- return NULL;
-
- t = malloc (size);
- if (t == NULL)
- die (EX_SYSERR, _("not enough memory"));
-
- return t;
-}
-
-void *
-xrealloc (void *p, size_t size) {
- void *t;
-
- t = realloc(p, size);
- if (t == NULL)
- die (EX_SYSERR, _("not enough memory"));
-
- return t;
-}
-
-char *
-xstrdup (const char *s) {
- char *t;
-
- if (s == NULL)
- return NULL;
-
- t = strdup (s);
-
- if (t == NULL)
- die (EX_SYSERR, _("not enough memory"));
-
- return t;
-}
-
char *
xstrndup (const char *s, int n) {
char *t;
@@ -147,20 +107,6 @@ error (const char *fmt, ...) {
free (fmt2);
}
-/* Fatal error. Print message and exit. */
-void
-die (int err, const char *fmt, ...) {
- va_list args;
-
- va_start (args, fmt);
- vfprintf (stderr, fmt, args);
- fprintf (stderr, "\n");
- va_end (args);
-
- unlock_mtab ();
- exit (err);
-}
-
/* True if fstypes match. Null *TYPES means match anything,
except that swap types always return false. */
/* Accept nonfs,proc,devpts and nonfs,noproc,nodevpts
diff --git a/mount/sundries.h b/mount/sundries.h
index a3a762f6f..af0df4e27 100644
--- a/mount/sundries.h
+++ b/mount/sundries.h
@@ -26,7 +26,6 @@ void error (const char *fmt, ...);
int matching_type (const char *type, const char *types);
int matching_opts (const char *options, const char *test_opts);
void *xmalloc (size_t size);
-void *xrealloc (void *t, size_t size);
char *xstrdup (const char *s);
char *xstrndup (const char *s, int n);
char *xstrconcat2 (const char *, const char *);
diff --git a/mount/swapon.8 b/mount/swapon.8
index f1f40263e..99d4c3c57 100644
--- a/mount/swapon.8
+++ b/mount/swapon.8
@@ -58,6 +58,15 @@ swapon, swapoff \- enable/disable devices and files for paging and swapping
.SH DESCRIPTION
.B Swapon
is used to specify devices on which paging and swapping are to take place.
+
+The device or file used is given by the
+.I specialfile
+parameter. It may be of the form
+.BI \-L " label"
+or
+.BI \-U " uuid"
+to indicate a device by label or uuid.
+
Calls to
.B swapon
normally occur in the system multi-user initialization file
@@ -67,16 +76,6 @@ is interleaved across several devices and files.
Normally, the first form is used:
.TP
-.B \-h
-Provide help
-.TP
-.B \-V
-Display version
-.TP
-.B \-s
-Display swap usage summary by device. Equivalent to "cat /proc/swaps".
-Not available before Linux 2.1.25.
-.TP
.B \-a
All devices marked as ``swap'' swap devices in
.I /etc/fstab
@@ -88,8 +87,17 @@ When
.B \-a
is used with swapon,
.B \-e
-makes swapon silently skip devices that
-do not exist.
+makes swapon silently skip devices that do not exist.
+.TP
+.B \-h
+Provide help
+.TP
+.BI \-L " label"
+Use the partition that has the specified
+.IR label .
+(For this, access to
+.I /proc/partitions
+is needed.)
.TP
.BI \-p " priority"
Specify priority for
@@ -98,7 +106,8 @@ This option is only available if
.B swapon
was compiled under and is used under a 1.3.2 or later kernel.
.I priority
-is a value between 0 and 32767. See
+is a value between 0 and 32767. Higher numbers indicate higher
+priority. See
.BR swapon (2)
for a full description of swap priorities. Add
.BI pri= value
@@ -107,8 +116,22 @@ to the option field of
for use with
.BR "swapon -a" .
.TP
+.B \-s
+Display swap usage summary by device. Equivalent to "cat /proc/swaps".
+Not available before Linux 2.1.25.
+.TP
+.BI \-U " uuid"
+Use the partition that has the specified
+.IR uuid .
+(For this, access to
+.I /proc/partitions
+is needed.)
+.TP
.B \-v
Be verbose.
+.TP
+.B \-V
+Display version
.PP
.B Swapoff
disables swapping on the specified devices and files.
diff --git a/mount/swapon.c b/mount/swapon.c
index dadfc04ef..28faff90b 100644
--- a/mount/swapon.c
+++ b/mount/swapon.c
@@ -11,9 +11,12 @@
#include <mntent.h>
#include <errno.h>
#include <sys/stat.h>
+#include "xmalloc.h"
#include "swap_constants.h"
#include "swapargs.h"
#include "nls.h"
+#include "mount_blkid.h"
+#include "mount_by_label.h"
#define streq(s, t) (strcmp ((s), (t)) == 0)
@@ -32,7 +35,7 @@ int priority = -1; /* non-prioritized swap by default */
int ifexists = 0;
extern char version[];
-static char *program_name;
+char *progname;
static struct option longswaponopts[] = {
/* swapon only */
@@ -53,9 +56,9 @@ static void
swapon_usage(FILE *fp, int n) {
fprintf(fp, _("usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
- " %s [-v] [-p priority] special ...\n"
+ " %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"),
- program_name, program_name, program_name, program_name);
+ progname, progname, progname, progname);
exit(n);
}
@@ -64,7 +67,7 @@ swapoff_usage(FILE *fp, int n) {
fprintf(fp, _("usage: %s [-hV]\n"
" %s -a [-v]\n"
" %s [-v] special ...\n"),
- program_name, program_name, program_name);
+ progname, progname, progname);
exit(n);
}
@@ -132,7 +135,7 @@ read_proc_swaps(void) {
}
static int
-is_in_proc_swaps(char *fname) {
+is_in_proc_swaps(const char *fname) {
int i;
for (i = 0; i < numSwaps; i++)
@@ -149,7 +152,7 @@ display_summary(void)
if ((swaps = fopen(PROC_SWAPS, "r")) == NULL) {
int errsv = errno;
- fprintf(stderr, "%s: %s: %s\n", program_name, PROC_SWAPS,
+ fprintf(stderr, "%s: %s: %s\n", progname, PROC_SWAPS,
strerror(errsv));
return -1 ;
}
@@ -162,17 +165,25 @@ display_summary(void)
}
static int
-do_swapon(const char *special, int prio) {
+do_swapon(const char *orig_special, int prio) {
int status;
struct stat st;
+ const char *special;
if (verbose)
- printf(_("%s on %s\n"), program_name, special);
+ printf(_("%s on %s\n"), progname, orig_special);
+
+ special = mount_get_devname(orig_special);
+ if (!special) {
+ fprintf(stderr, _("%s: cannot find the device for %s\n"),
+ progname, orig_special);
+ return -1;
+ }
if (stat(special, &st) < 0) {
int errsv = errno;
- fprintf(stderr, _("swapon: cannot stat %s: %s\n"),
- special, strerror(errsv));
+ fprintf(stderr, _("%s: cannot stat %s: %s\n"),
+ progname, special, strerror(errsv));
return -1;
}
@@ -182,10 +193,10 @@ do_swapon(const char *special, int prio) {
int permMask = (S_ISBLK(st.st_mode) ? 07007 : 07077);
if ((st.st_mode & permMask) != 0) {
- fprintf(stderr, _("swapon: warning: %s has "
+ fprintf(stderr, _("%s: warning: %s has "
"insecure permissions %04o, "
"%04o suggested\n"),
- special, st.st_mode & 07777,
+ progname, special, st.st_mode & 07777,
~permMask & 0666);
}
}
@@ -194,9 +205,9 @@ do_swapon(const char *special, int prio) {
if (S_ISREG(st.st_mode)) {
if (st.st_blocks * 512 < st.st_size) {
fprintf(stderr,
- _("swapon: Skipping file %s - it appears "
+ _("%s: Skipping file %s - it appears "
"to have holes.\n"),
- special);
+ progname, special);
return -1;
}
}
@@ -221,17 +232,42 @@ do_swapon(const char *special, int prio) {
#endif
if (status < 0) {
int errsv = errno;
- fprintf(stderr, "%s: %s: %s\n", program_name,
- special, strerror(errsv));
+ fprintf(stderr, "%s: %s: %s\n",
+ progname, orig_special, strerror(errsv));
}
return status;
}
static int
-do_swapoff(const char *special, int quiet) {
+cannot_find(const char *special) {
+ fprintf(stderr, _("%s: cannot find the device for %s\n"),
+ progname, special);
+ return -1;
+}
+
+static int
+swapon_by_label(const char *label, int prio) {
+ const char *special = mount_get_devname_by_label(label);
+ return special ? do_swapon(special, prio) : cannot_find(label);
+}
+
+static int
+swapon_by_uuid(const char *uuid, int prio) {
+ const char *special = mount_get_devname_by_uuid(uuid);
+ return special ? do_swapon(special, prio) : cannot_find(uuid);
+}
+
+static int
+do_swapoff(const char *orig_special, int quiet) {
+ const char *special;
+
if (verbose)
- printf(_("%s on %s\n"), program_name, special);
+ printf(_("%s on %s\n"), progname, orig_special);
+
+ special = mount_get_devname(orig_special);
+ if (!special)
+ return cannot_find(orig_special);
if (swapoff(special) == 0)
return 0; /* success */
@@ -242,22 +278,96 @@ do_swapoff(const char *special, int quiet) {
}
if (!quiet || errno == ENOMEM) {
- int errsv = errno;
- fprintf(stderr, "%s: %s: %s\n", program_name,
- special, strerror(errsv));
+ fprintf(stderr, "%s: %s: %s\n",
+ progname, orig_special, strerror(errno));
}
return -1;
}
static int
-main_swapon(int argc, char *argv[]) {
+swapoff_by_label(const char *label, int quiet) {
+ const char *special = mount_get_devname_by_label(label);
+ return special ? do_swapoff(special, quiet) : cannot_find(label);
+}
+
+static int
+swapoff_by_uuid(const char *uuid, int quiet) {
+ const char *special = mount_get_devname_by_uuid(uuid);
+ return special ? do_swapoff(special, quiet) : cannot_find(uuid);
+}
+
+static int
+swapon_all(void) {
FILE *fp;
struct mntent *fstab;
int status = 0;
- int c;
- while ((c = getopt_long(argc, argv, "ahep:svV",
- longswaponopts, NULL)) != -1) {
+ read_proc_swaps();
+
+ fp = setmntent(_PATH_FSTAB, "r");
+ if (fp == NULL) {
+ int errsv = errno;
+ fprintf(stderr, _("%s: cannot open %s: %s\n"),
+ progname, _PATH_FSTAB, strerror(errsv));
+ exit(2);
+ }
+
+ while ((fstab = getmntent(fp)) != NULL) {
+ const char *orig_special = fstab->mnt_fsname;
+ const char *special;
+ int skip = 0;
+ int pri = priority;
+
+ if (!streq(fstab->mnt_type, MNTTYPE_SWAP))
+ continue;
+
+ special = mount_get_devname(orig_special);
+ if (!special)
+ continue;
+
+ if (!is_in_proc_swaps(special) &&
+ (!ifexists || !access(special, R_OK))) {
+ /* parse mount options; */
+ char *opt, *opts = strdup(fstab->mnt_opts);
+
+ for (opt = strtok(opts, ","); opt != NULL;
+ opt = strtok(NULL, ",")) {
+ if (strncmp(opt, "pri=", 4) == 0)
+ pri = atoi(opt+4);
+ if (strcmp(opt, "noauto") == 0)
+ skip = 1;
+ }
+ if (!skip)
+ status |= do_swapon(special, pri);
+ }
+ }
+ fclose(fp);
+
+ return status;
+}
+
+static const char **llist = NULL;
+static int llct = 0;
+static const char **ulist = NULL;
+static int ulct = 0;
+
+static void addl(const char *label) {
+ llist = (const char **) xrealloc(llist, (++llct) * sizeof(char *));
+ llist[llct-1] = label;
+}
+
+static void addu(const char *uuid) {
+ ulist = (const char **) xrealloc(ulist, (++ulct) * sizeof(char *));
+ ulist[ulct-1] = uuid;
+}
+
+static int
+main_swapon(int argc, char *argv[]) {
+ int status = 0;
+ int c, i;
+
+ while ((c = getopt_long(argc, argv, "ahep:svVL:U:",
+ longswaponopts, NULL)) != -1) {
switch (c) {
case 'a': /* all */
++all;
@@ -268,6 +378,12 @@ main_swapon(int argc, char *argv[]) {
case 'p': /* priority */
priority = atoi(optarg);
break;
+ case 'L':
+ addl(optarg);
+ break;
+ case 'U':
+ addu(optarg);
+ break;
case 'e': /* ifexists */
ifexists = 1;
break;
@@ -278,7 +394,7 @@ main_swapon(int argc, char *argv[]) {
++verbose;
break;
case 'V': /* version */
- printf("%s: %s\n", program_name, version);
+ printf("%s: %s\n", progname, version);
exit(0);
case 0:
break;
@@ -289,46 +405,20 @@ main_swapon(int argc, char *argv[]) {
}
argv += optind;
- if (!all && *argv == NULL)
+ if (!all && !llct && !ulct && *argv == NULL)
swapon_usage(stderr, 2);
- if (ifexists && (!all || strcmp(program_name, "swapon")))
- swapon_usage(stderr, 1);
+ if (ifexists && (!all || strcmp(progname, "swapon")))
+ swapon_usage(stderr, 1);
- if (all) {
- read_proc_swaps();
+ if (all)
+ status |= swapon_all();
- fp = setmntent(_PATH_FSTAB, "r");
- if (fp == NULL) {
- int errsv = errno;
- fprintf(stderr, _("%s: cannot open %s: %s\n"),
- program_name, _PATH_FSTAB, strerror(errsv));
- exit(2);
- }
- while ((fstab = getmntent(fp)) != NULL) {
- char *special = fstab->mnt_fsname;
- int skip = 0;
- int pri = priority;
+ for (i = 0; i < llct; i++)
+ status |= swapon_by_label(llist[i], priority);
- if (streq(fstab->mnt_type, MNTTYPE_SWAP) &&
- !is_in_proc_swaps(special)
- && (!ifexists || !access(special, R_OK))) {
- /* parse mount options; */
- char *opt, *opts = strdup(fstab->mnt_opts);
-
- for (opt = strtok(opts, ","); opt != NULL;
- opt = strtok(NULL, ",")) {
- if (strncmp(opt, "pri=", 4) == 0)
- pri = atoi(opt+4);
- if (strcmp(opt, "noauto") == 0)
- skip = 1;
- }
- if (!skip)
- status |= do_swapon(special, pri);
- }
- }
- fclose(fp);
- }
+ for (i = 0; i < ulct; i++)
+ status |= swapon_by_uuid(ulist[i], priority);
while (*argv != NULL)
status |= do_swapon(*argv++, priority);
@@ -343,7 +433,7 @@ main_swapoff(int argc, char *argv[]) {
int status = 0;
int c, i;
- while ((c = getopt_long(argc, argv, "ahvV",
+ while ((c = getopt_long(argc, argv, "ahvVL:U:",
longswapoffopts, NULL)) != -1) {
switch (c) {
case 'a': /* all */
@@ -356,8 +446,14 @@ main_swapoff(int argc, char *argv[]) {
++verbose;
break;
case 'V': /* version */
- printf("%s: %s\n", program_name, version);
+ printf("%s: %s\n", progname, version);
exit(0);
+ case 'L':
+ addl(optarg);
+ break;
+ case 'U':
+ addu(optarg);
+ break;
case 0:
break;
case '?':
@@ -367,13 +463,19 @@ main_swapoff(int argc, char *argv[]) {
}
argv += optind;
- if (!all && *argv == NULL)
+ if (!all && !llct && !ulct && *argv == NULL)
swapoff_usage(stderr, 2);
/*
* swapoff any explicitly given arguments.
* Complain in case the swapoff call fails.
*/
+ for (i = 0; i < llct; i++)
+ status |= swapoff_by_label(llist[i], !QUIET);
+
+ for (i = 0; i < ulct; i++)
+ status |= swapoff_by_uuid(ulist[i], !QUIET);
+
while (*argv != NULL)
status |= do_swapoff(*argv++, !QUIET);
@@ -398,7 +500,7 @@ main_swapoff(int argc, char *argv[]) {
if (fp == NULL) {
int errsv = errno;
fprintf(stderr, _("%s: cannot open %s: %s\n"),
- program_name, _PATH_FSTAB, strerror(errsv));
+ progname, _PATH_FSTAB, strerror(errsv));
exit(2);
}
while ((fstab = getmntent(fp)) != NULL) {
@@ -420,12 +522,12 @@ main(int argc, char *argv[]) {
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
- program_name = argv[0];
- p = strrchr(program_name, '/');
+ progname = argv[0];
+ p = strrchr(progname, '/');
if (p)
- program_name = p+1;
+ progname = p+1;
- if (streq(program_name, "swapon"))
+ if (streq(progname, "swapon"))
return main_swapon(argc, argv);
else
return main_swapoff(argc, argv);
diff --git a/mount/umount.c b/mount/umount.c
index 15d94f938..b26c28d45 100644
--- a/mount/umount.c
+++ b/mount/umount.c
@@ -571,7 +571,10 @@ umount_file (char *arg) {
die(2,
_("umount: %s is not mounted (according to mtab)"),
file);
- if (!is_mounted_once(file))
+ /* The 2.4 kernel will generally refuse to mount the same
+ filesystem on the same mount point, but will accept NFS.
+ So, unmounting must be possible. */
+ if (!is_mounted_once(file) && strcmp(mc->m.mnt_type,"nfs"))
die(2,
_("umount: it seems %s is mounted multiple times"),
file);
diff --git a/mount/xmalloc.c b/mount/xmalloc.c
new file mode 100644
index 000000000..c3f51e50c
--- /dev/null
+++ b/mount/xmalloc.c
@@ -0,0 +1,66 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h> /* strdup() */
+#include "xmalloc.h"
+#include "nls.h" /* _() */
+#include "sundries.h" /* EX_SYSERR */
+
+void (*at_die)(void) = NULL;
+
+/* Fatal error. Print message and exit. */
+void
+die(int err, const char *fmt, ...) {
+ va_list args;
+
+ va_start(args, fmt);
+ vfprintf(stderr, fmt, args);
+ fprintf(stderr, "\n");
+ va_end(args);
+
+ if (at_die)
+ (*at_die)();
+
+ exit(err);
+}
+
+static void
+die_if_null(void *t) {
+ if (t == NULL)
+ die(EX_SYSERR, _("not enough memory"));
+}
+
+void *
+xmalloc (size_t size) {
+ void *t;
+
+ if (size == 0)
+ return NULL;
+
+ t = malloc(size);
+ die_if_null(t);
+
+ return t;
+}
+
+void *
+xrealloc (void *p, size_t size) {
+ void *t;
+
+ t = realloc(p, size);
+ die_if_null(t);
+
+ return t;
+}
+
+char *
+xstrdup (const char *s) {
+ char *t;
+
+ if (s == NULL)
+ return NULL;
+
+ t = strdup(s);
+ die_if_null(t);
+
+ return t;
+}
diff --git a/mount/xmalloc.h b/mount/xmalloc.h
new file mode 100644
index 000000000..91d64c5a3
--- /dev/null
+++ b/mount/xmalloc.h
@@ -0,0 +1,8 @@
+#include <sys/types.h>
+#include <stdarg.h>
+
+extern void *xmalloc(size_t size);
+extern void *xrealloc(void *p, size_t size);
+extern char *xstrdup(const char *s);
+extern void die(int err, const char *fmt, ...);
+extern void (*at_die)(void);
diff --git a/po/ca.po b/po/ca.po
index 3217486d0..7a40362d2 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+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"
@@ -157,7 +157,7 @@ msgstr "ús: %s [ -n ] dispositiu\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -766,7 +766,7 @@ msgstr "masses ínodes; el màxim és de 512"
msgid "not enough space, need at least %lu blocks"
msgstr "no hi ha prou espai, com a mínim es necessiten %lu blocs"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Dispositiu: %s\n"
@@ -840,7 +840,7 @@ msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr ""
"Ús: mkfs [-V] [-t tipus_sis._fitx.] [opcions_sis._fitx.] dispositiu [mida]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1077,7 +1077,7 @@ msgstr "Error cercant durant la comprovació de blocs"
msgid "Weird values in do_check: probably bugs\n"
msgstr "Valors estranys en do_check: Probablement hi han errors\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "Error cercant en check_blocks"
@@ -1136,64 +1136,86 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Assumint que la mida de les pàgines és de %d (no %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "etiqueta"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Ús: %s [-c] [-v0|-v1] [-pMIDA_PÀG] /dev/_nom_ [blocs]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "hi han masses pàgines incorrectes"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Memòria esgotada"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "una pàgina incorrecta\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, fuzzy, c-format
msgid "%lu bad pages\n"
msgstr "%d pàgines incorrectes\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: Error: No heu especificat a on està l'espai d'intercanvi?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, fuzzy, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: Error: La mida %ld es superior a la mida del dispositiu %d\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: Error: Versió desconeguda %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: Error: L'espai d'intercanvi ha de tindre com a mínim %ldkB\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: Atenció: L'espai d'intercanvi s'ha truncat en %ldkB\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: Error: No heu especificat a on està l'espai d'intercanvi?\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "No s'intentarà crear el dispositiu d'intercanvi en '%s'"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "fatal: No es pot llegir la primera pàgina"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1206,24 +1228,24 @@ msgstr ""
"la taula de particions. No s'ha creat l'espai d'intercanvi. Si de veres\n"
"desitgeu crear-lo en aquest dispositiu, useu l'opció -f per a forçar-ho.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "No es pot configurar l'espai d'intercanvi: No es pot llegir"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Configurant l'espai d'intercanvi versió %d, mida = %llu KiB\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "No es pot rebobinar el dispositiu d'intercanvi"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "no es pot escriure la pàgina de la firma"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync ha fallat"
@@ -1265,57 +1287,62 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Inutilitzable"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Espai lliure"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "S'ha modificat el disc.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Reinicieu el sistema per a assegurar-vos de que la taula de particions ha "
"estat actualitzada correctament.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1327,317 +1354,317 @@ msgstr ""
"particions de DOS 6.x, si us plau consulteu la pàgina\n"
"del manual de cfdisk per a informació addicional.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "ERROR FATAL"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Premeu una tecla per a sortir de cfdisk"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Error accedint a la unitat de disc"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "No es pot llegir la unitat de disc"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "No es pot escriure en la unitat de disc"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Hi han masses particions"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "La partició comença abans del sector 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "La partició acaba abans del sector 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "La partició comença despres de la fí del disc"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "La partició acaba despres de la fí del disc"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr "La partició acaba en l'últim cilindre parcial"
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "les particions lògiques no estan en un ordre de disc"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "solapament de particions lògiques"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "solapament de les particions lògiques ampliades"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!!! Error intern al crear una unitat lògica sense partició estesa !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"No es pot crear una unitat lògica aquí; es crearan dos particions esteses"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Ítem del menú massa llarg; l'aspecte del menú pot ser estrany."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Menú sense direcció; l'opció per defecte és horitzontal."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Tecla no permesa"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Premeu una tecla per a continuar"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primària"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Crear una nova partició primària"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Lògica"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Crear una nova partició lògica"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Cancel·lar"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "No crear cap partició"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Error intern !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Mida (en MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Principi"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Afegir partició al principi de l'espai lliure"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Final"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Afegir partició al final de l'espai lliure"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "No hi ha espai per a crear la partició estesa"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
#, fuzzy
msgid "No partition table.\n"
msgstr "no hi ha cap taula de particions.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
#, 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:1520
+#: fdisk/cfdisk.c:1569
#, fuzzy
msgid "Bad signature on partition table"
msgstr "Sols imprimir la taula de particions"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
#, fuzzy
msgid "Unknown partition table type"
msgstr "no hi ha cap taula de particions.\n"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
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:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr "Heu especificat més cilindres dels que caben al disc"
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "No es pot obrir la unitat de disc"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
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:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "No es pot obtindre la mida del disc"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Partició primària incorrecta"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Partició lògica incorrecta"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Atenció!! Això pot destruir les dades del vostre disc!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
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:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "no"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "No s'ha escrit la taula de particions al disc"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "si"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Si us plau escriviu `si' o `no'"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Escrivint la taula de particions al disc..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Taula de particions del disc, escrita"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
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:1857
+#: fdisk/cfdisk.c:1906
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:1859
+#: fdisk/cfdisk.c:1908
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:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
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:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "No es pot obrir el fitxer '%s'"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Unitat de disc: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Sector 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Sector %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Cap "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/Lòg"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primària"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Lògica"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Desconegut"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Arrencada"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
msgid "None"
msgstr "Cap"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Taula de particions per a %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
msgid " First Last\n"
msgstr " Primer Últim\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1647,7 +1674,7 @@ msgstr ""
" # Tipus Sector Sector Despl. Long. (ID) Sist. Fitxers "
"Etiqueta\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1656,467 +1683,467 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Inici--- ----Final---- Inici Nombre de\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
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:2144
+#: fdisk/cfdisk.c:2193
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "En cru"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Imprimeix la taula utilitzant el format de dades en cru"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Sectors"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Imprimeix la taula ordenada per sectors"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Taula"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Sols imprimir la taula de particions"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "No imprimir la taula"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Pantalla d'ajuda per a cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
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:2211
+#: fdisk/cfdisk.c:2260
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:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "el vostre disc dur."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Comandament Significat"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "----------- ----------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b Fixa l'etiqueta d'arrencada en la partició actual"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Suprimeix l'actual partició"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
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:2221
+#: fdisk/cfdisk.c:2270
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:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " que conegui el funcionament de la mateixa."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Imprimeix aquesta pantalla"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximitza l'utilització de disc de la partició actual"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " Nota: Aquesta opció pot fer la partició incompatible"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " amb DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Crea una nova partició des de l'espai lliure"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
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:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Hi han diversos formats diferents per a la partició"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " entre els que podeu escollir:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
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:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Taula ordenada per sectors"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - Taula en format en cru"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q Surt del programa sense escriure la taula de particions"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Canvia el tipus del sistema de fitxers"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u Canvia les unitats de la mida visualitzava de la partició"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Alterna entre MB, sectors i cilindres"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
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:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " Donat que això destruirà les dades del disc, haureu"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr " de confirmar o denegar escrivint `si' o"
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " `no'"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Fletxa amunt Desplaça el cursor a l'anterior partició"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "Fletxa avall Desplaça el cursor a la següent partició"
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "Ctrl-L Redibuixa la pantalla"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Imprimeix aquesta pantalla"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
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:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "minúscules (excepte W per a escriure)."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cilindres"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Canviar la geometria dels cilindres"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Capçals"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Canviar la geometria dels capçals"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Canviar la geometria dels sectors"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Fet"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "S'ha finalitzat el canvi de geometria"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Escriviu el nombre de cilindres: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Valor dels cilindres no permes"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Escriviu el nombre de capçals: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Valor dels capçals no permes"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Escriviu el nombre de sectors per pista: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Valor dels sectors no permes"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Escriviu el tipus del sistema de fitxers: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "No es pot canviar el tipus del sistema de fitxers a buit"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "No es pot canviar el tipus del sistema de fitxers a estes"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Desc.(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Pri/Lòg"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Desconegut (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Unitat de disc: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Mida: %lld octets, %lld MB"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Mida: %lld octets, %lld.%lld GB"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Capçals: %d Sectors per pista: %d Cilindres: %lld"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Nom"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Etiquetes"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Tipus part."
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Tipus Sis.Fitx."
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Etiqueta]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
msgid " Sectors"
msgstr " Sectors"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
msgid " Cylinders"
msgstr " Cilindres"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
msgid " Size (MB)"
msgstr " Mida (MB)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
msgid " Size (GB)"
msgstr " Mida (GB)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Arrencada"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Establir l'etiqueta de la partició actual com d'arrencada"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Suprimir"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Suprimir l'actual partició"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometria"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Canviar la geometria del disc (sols usuaris experts)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Ajuda"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Imprimir pantalla d'ajuda"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Maximitza"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
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:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Nova"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Crear una nova partició des de l'espai lliure"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Imprimir"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
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:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Sortir"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Sortir del programa sense escriure la taula de particions"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Tipus"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
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:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Unitats"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
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:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Escriure"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
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:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "No es pot fer aquesta partició arrencable"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "No es pot suprimir una partició buida"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "No es pot maximitzar aquesta partició"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Aquesta partició és inutilitzable"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Aquesta partició ja està en ús"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "No es pot canviar el tipus d'una partició buida"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "No hi ha més particions"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Comandament no permès"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2391,20 +2418,20 @@ msgstr " f fixar un ordre de particions"
msgid "You must set"
msgstr "Heu de definir els"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "capçals"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "sectors"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "cilindres"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2413,11 +2440,11 @@ msgstr ""
"%s%s.\n"
"Podeu fer això des del menú de funcions addicionals.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " y "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2437,29 +2464,29 @@ msgstr ""
"2) Arrencar i particionar des d'un altre SO\n"
" (p.e., DOS FDISK, OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Desplaçament incorrecte en particions primàries esteses\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Atenció: Enllaç d'apuntador addicional en la taula de particions %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr ""
"Atenció: S'ignoren les dades addicionals en la taula de particions %d\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2471,16 +2498,16 @@ msgstr ""
"d'aquesta operació, l'anterior contingut no podrà ser recuperat.\n"
"\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Nota: La mida del sector és %d (no %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "No podreu escriure la taula de particions.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
@@ -2488,7 +2515,7 @@ msgstr ""
"Aquest disc té tanta màgia DOS com BSD.\n"
"Empreu el comandament 'b' per anar al mode BSD.\n"
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
@@ -2496,16 +2523,16 @@ msgstr ""
"El dispositiu no conté una taula de particions DOS vàlida, així com tampoc "
"una etiqueta de disc Sun, SGI o OSF\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Error intern\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "S'ignorarà la partició estesa addicional %d\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2514,7 +2541,7 @@ msgstr ""
"Atenció: Etiqueta 0x%04x no vàlida de la taula de particions %d serà "
"corregida amb w(rite)\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2522,78 +2549,78 @@ msgstr ""
"\n"
"s'ha aconseguit un EOF tres vegades - sortint...\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Codi hex. (escriviu L per a veure la llista de codis): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%u-%u, valor per defecte %u): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, c-format
msgid "Using default value %u\n"
msgstr "Usant el valor per defecte %u\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "El valor està fora del rang.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Nombre de partició"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Atenció: La partició %d és del tipus buit\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, c-format
msgid "Selected partition %d\n"
msgstr "S'ha seleccionat la partició %d\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
msgid "No partition is defined yet!\n"
msgstr "No hi ha cap partició definida!\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr "Ja s'han definit totes les particions primàries!\n"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "cilindre"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "sector"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Canviant les unitats de visualització/entrada a %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "ATENCIÓ: La partició %d és una partició estesa\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "L'etiqueta de compatibilitat amb DOS està establerta\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "L'etiqueta de compatibilitat amb DOS no està establerta\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "La partició %d encara no existeix!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2605,7 +2632,7 @@ msgstr ""
"tindre particions del tipus 0. Podeu suprimir-les\n"
"amb el comandament `d'.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2613,7 +2640,7 @@ msgstr ""
"No podeu convertir una partició en estesa ni viceversa primer\n"
"haureu d'esborrar-la.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2624,7 +2651,7 @@ msgstr ""
"Linux.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2635,52 +2662,52 @@ msgstr ""
"espera.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "S'ha canviat el tipus del sistema de la partició %d per %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr "La partició %d té diferents començaments físics/lògics (no Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " físic=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "lògic=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "La partició %d té diferents finals físics/lògics:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "La partició %i no comença en el límit del cilindre:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "ha de ser (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "La partició %i no acaba en un límit de cilindre.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "ha de ser (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
@@ -2689,7 +2716,7 @@ msgstr ""
"\n"
"Disc %s: %ld MiB, %lld octets\n"
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, c-format
msgid ""
"\n"
@@ -2698,17 +2725,17 @@ msgstr ""
"\n"
"Disc %s: %ld.%ld GiB, %lld octets\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr "%d capçals, %d sectors/pista, %d cilindres"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ", total %llu sectors"
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
@@ -2717,7 +2744,7 @@ msgstr ""
"Unitats = %s de %d * %d = %d octets\n"
"\n"
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2725,23 +2752,23 @@ msgstr ""
"Res a fer. L'ordre és correcte.\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Arrenc. Comença Acaba Blocs Id Sistema\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Dispositiu"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2749,7 +2776,7 @@ msgstr ""
"\n"
"Les entrades en la taula de particions no estan en ordre al disc\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2760,92 +2787,92 @@ msgstr ""
"Disc %s: %d capçals, %d sectors, %d cilindres\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "Núm IA Cab Sect Cil Cap Sect Cil Comença Mida ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Atenció: La partició %d conté el sector 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Partició %d: El capçal %d supera el màxim %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Partició %d: El sector %d supera el màxim %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Partició %d: El cilindre %d supera el màxim %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr "Partició %d: Sectors anteriors %d difereixen del total %d\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Atenció: Inici de dades incorrecte en la partició %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Atenció: La partició %d es solapa amb la partició %d.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Atenció: La partició %d està buida\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "La partició lògica %d no està integrada en la partició %d\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, fuzzy, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "El total de sectors assignats %d supera el màxim de %d\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, fuzzy, c-format
msgid "%lld unallocated sectors\n"
msgstr "%d sectors no assignats\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr ""
"La partició %d ja està definida. Esborreu-la abans de tornar-la a afegir.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Primer %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "El sector %d ja està assignat\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "No hi ha cap sector lliure disponible\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Últim %s o +mida o +midaM o +midaK"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2857,25 +2884,25 @@ msgstr ""
"\t particions DOS (Useu o).\n"
"\tATENCIÓ: Això destruirà l'actual contingut del disc.\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "S'ha creat el màxim nombre de particions\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr "Primer heu de suprimir alguna partició i afegir-ne una d'estesa\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
#, fuzzy
msgid "All logical partitions are in use\n"
msgstr "les particions lògiques no estan en un ordre de disc"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
#, fuzzy
msgid "Adding a primary partition\n"
msgstr "Partició primària incorrecta"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2886,20 +2913,20 @@ msgstr ""
"%s\n"
" p Partició primària (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l lògica (5 o superior)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e estesa"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Nombre de partició no vàlid per al tipus `%c'\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2907,11 +2934,11 @@ msgstr ""
"Ja s'ha modificat la taula de particions!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Cridant a ioctl() per a rellegir la taula de particions.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2924,7 +2951,7 @@ msgstr ""
"El nucli encara usa l'antiga taula.\n"
"La taula nova s'usarà després de reiniciar.\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2936,67 +2963,74 @@ msgstr ""
"particions DOS 6.x, mireu la pàgina del manual del fdisk\n"
"per a informació addicional.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Error tancant %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Sincronitzant els discs.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "La partició %d no té cap àrea amb dades\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Nou començament de dades"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Comandament expert (m per a l'ajuda): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Nombre de cilindres"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Nombre de capçals"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Nombre de sectors"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr ""
"Atenció: Establint desplaçament del sector per a la compatibilitat amb DOS\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "El disc %s no conté una taula de particions vàlida\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "No es pot obrir %s\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "no es pot obrir %s\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: Comandament desconegut\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr ""
"Aquest nucli cerca la mida del sector por si mateix; l'opció -b serà "
"ignorada\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -3005,18 +3039,18 @@ msgstr ""
"dispositiu específic\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr ""
"A l'entrar el mode d'etiqueta, s'ha detectat una etiqueta de disc OSF/1 en %"
"s.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Comandament (m per a l'ajuda): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -3025,15 +3059,15 @@ msgstr ""
"\n"
"L'actual fitxer d'arrencada és: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Si us plau entreu el nom del nou fitxer d'arrencada: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "No s'ha modificat el fitxer d'arrencada\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3411,7 +3445,7 @@ msgstr "Intercanvi Linux"
msgid "Linux native"
msgstr "Linux nativa"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3747,7 +3781,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Autodetecció Linux raid"
@@ -4116,8 +4150,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4169,150 +4203,155 @@ msgstr "Linux estes"
msgid "NTFS volume set"
msgstr "Joc de volúmens NTFS"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "Hivernació de IBM Thinkpad"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr "UFS de Darwin"
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr "Arrencada de Darwin"
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "S.f. BSDI"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI d'intercanvi"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "Boot Wizard ocult"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr "Arrencada Solaris"
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
#, fuzzy
msgid "Solaris"
msgstr "Arrencada Solaris"
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "Dades sense S.F."
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Utilitat Dell"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "Accés DOS"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "Sis. Fitx. BeOS"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "Arrencada Linux/PA-RISC"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "Secundària DOS"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5340,126 +5379,126 @@ msgstr "getopt (millorat) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "error intern; contacteu amb l'autor."
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "arrencant des de MILO\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Rellotge BCD Ruffian\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "port del rellotge ajustat a 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, 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:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "No es pot obrir /dev/port: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
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:601
+#: hwclock/cmos.c:602
#, 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:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Probablement necessitareu privilegis de root.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Assumint que el rellotge del maquinari té l'hora %s.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "local"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Atenció: Tercera línia desconeguda al fitxer adjtime\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(S'esperava: `UTC', `LOCAL' o res).\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Fet l'últim ajust de desfasament, %ld segons després de 1969\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Feta la última calibració, %ld segons després de 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "El rellotge de maquinari té l'hora %s\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "desconegut"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "Esperant la senyal del rellotge...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...rebuda la senyal del rellotge\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr ""
"Valors incorrectes en el rellotge del maquinari: %4d/%.2d/%.2d %.2d:%.2d:"
"%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Hora del maquinari : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld segons després de "
"1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Hora llegida des del maquinari : %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Establint l'hora del maquinari en %.2d:%.2d:%.2d = %ld segons des de 1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "El rellotge no s'ha modificat - sols s'ha provat.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5468,7 +5507,7 @@ msgstr ""
"El temps transcorregut des de l'hora de referència és de %.6f segons.\n"
"Augmentant el retard fins al següent segon complet.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5476,20 +5515,20 @@ msgstr ""
"Els registres del rellotge del maquinari conté valors no vàlids (p.e. dia 50 "
"del mes) o excedeixen el rang que poden usar (p.e. l'any 2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f segons\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "No s'ha especificat l'opció --date.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "argument --date massa llarg\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5497,23 +5536,23 @@ msgstr ""
"El valor de l'opció --date no és una data vàlida.\n"
"En concret, aquesta conté cometes.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Emetent les dades del comandament: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr ""
"No es pot executar el programa 'date' en l'interpret de comandaments /bin/"
"sh. popen() ha fallat"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "resposta del comandament date = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5528,7 +5567,7 @@ msgstr ""
"La resposta fou:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5545,12 +5584,12 @@ msgstr ""
"La resposta fou:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "la cadena de la data %s equival a %ld segons des de 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5558,35 +5597,35 @@ msgstr ""
"El rellotge de maquinari no conté una hora vàlida, pel que no es pot "
"establir l'hora del sistema a partir d'aquest valor.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "Cridant a settimeofday:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr ""
"No configuro el rellotge del sistema donat que l'execució és en mode de "
"prova.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Heu de ser superusuari per a configurar rellotge del sistema.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "settimeofday() ha fallat"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5594,7 +5633,7 @@ msgstr ""
"No s'ajusta el factor de desfase donat que el rellotge del maquinari "
"contenia prèviament desperdicis.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
@@ -5603,7 +5642,7 @@ msgstr ""
"calibració és cero, així que l'historial és dolent i es necessària\n"
"una calibració des del començament.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5611,7 +5650,7 @@ msgstr ""
"No s'ajusta el factor de desfase donat que fa menys d'un dia de la la última "
"calibració.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5622,23 +5661,23 @@ msgstr ""
"un factor de desfase de %f segons diaris.\n"
"Ajustan el factor de desfase en %f segons diaris\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "El temps des de l'últim ajust és de %d segons\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr ""
"Necessiteu inserir %d segons i refer la referència de l'hora tants %.6f "
"segons enradera\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "No s'actualitza el fitxer adjtime degut al mode de prova.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5647,37 +5686,37 @@ msgstr ""
"S'hauria d'escriure el següent en %s:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Paràmetres d'ajustament del desfase no actualitzats.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
"El rellotje de maquinari no conté una hora vàlida, pel que no es pot "
"ajustar.\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr ""
"L' ajustament necessari és inferior a un segon, pel que no s'estableix al "
"rellotge.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Usant %s.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "No s'ha trobat cap interfície de rellotge usable.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "No es pot establir el rellotge del sistema.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5689,16 +5728,16 @@ msgstr ""
"Aquesta còpia de hwclock es va compilar per a una màquina no Alpha (pel que\n"
"possiblement ara no s'executa en una màquina Alpha). No es pren cap acció.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "No es pot obtindre el valor de època des del nucli.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "El nucli assumeix un valor de època de %lu\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5706,16 +5745,16 @@ msgstr ""
"Per a establir el valor de època, haureu d'usar l'opció 'epoch' per a "
"indicar a quin valor s'ha d'establir.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "No s'estableix el valor de època en %d - sols es prova.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "No es pot establir el valor de època en el nucli.\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5774,7 +5813,7 @@ msgstr ""
" --noadjfile No accedir a /etc/adjtime. Requereix l'ús de --utc o --"
"localtime\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5782,12 +5821,12 @@ msgstr ""
" --jensen, --arc, --srm, --funky-toy\n"
" Indica al RTC el tipus de Alpha (veure hwclock(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s no admet arguments que no siguin opcions. Heu especificat %d.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
@@ -5795,7 +5834,7 @@ msgstr ""
"Heu especificat múltiples funcions.\n"
"Sols podeu fer-ne una cada vegada.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5804,7 +5843,7 @@ msgstr ""
"%s: Les opcions --utc i --localtime s'exclouen mutuament. Les heu "
"especificat totes dues.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5813,24 +5852,24 @@ msgstr ""
"%s: Les opcions --adjust i --noadjfile s'exclouen mutuament. Les heu "
"especificat totes dues.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr "%s: Amb --noadjfile, haureu d'especificar --utc o --localtime\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "Hora establerta no usable. No es pot establir el rellotge.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Ho sento, sols el superusuari pot canviar el rellotge de maquinari.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Ho sento, sols el superusuari port canviar el rellotge del sistema.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
@@ -5838,13 +5877,13 @@ msgstr ""
"Ho sento, sols el superusuari pot canviar el valor de època del rellotge de "
"maquinari en el nucli.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr ""
"No es pot accedir al rellotge de maquinari mitjançant un dels mètodes "
"coneguts.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
@@ -5852,108 +5891,108 @@ msgstr ""
"Useu l'opció --debug per a veure els detalls de la recerca d'un mètode "
"d'accés.\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
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:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "Falla de ioctl KDGHWCLK al llegir l'hora"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Temps excedit durant l'espera del canvi d'hora.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "Falla de ioctl KDGHWCLK al llegir l'hora en el bucle"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, 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:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "Falla de ioctl KDGHWCLK"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "No es pot obrir /dev/tty1 o /dev/vc/1"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "Falla de ioctl KDGHWCLK"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "Falla de open() de %s"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "La comprovació de ioctl() en %s ha fallat al llegir l'hora.\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Esperant en bucle per a canviar l'hora des de %s\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s no té funcions d'interrupció. "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr ""
"La comprovació de read() en %s ha fallat a l'esperar la senyal del rellotge"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr ""
"La comprovació de read() en %s ha fallat a l'esperar la senyal del rellotge"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr ""
"La comprovació de read() en %s ha fallat a l'esperar la senyal del rellotge"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr ""
"La comprovació de ioctl() en %s ha fallat al desactivar les interrupcions "
"d'actualització"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr ""
"La comprovació de ioctl() en %s ha fallat inesperadament a l'activar les "
"interrupcions d'actualització"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "La comprovació de ioctl() en %s ha fallat a l'establir l'hora.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "La comprovació de ioctl(%s) ha finalitzat correctament.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "Error obrint %s"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5964,17 +6003,17 @@ msgstr ""
"del dispositiu 'rtc' de Linux mitjançant el fitxer especial de dispositiu %"
"s. Aquest fitxer no existeix en aquest sistema.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "No es pot obrir %s"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "La comprovació de ioctl(RTC_EPOCH_READ) en %s ha fallat"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr ""
@@ -5983,17 +6022,17 @@ msgstr ""
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr "El valor de època no pot ser inferior a 1900. Heu requerit %ld\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "establint la època a %ld amb ioctl RTC_EPOCH_SET en %s.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
@@ -6001,7 +6040,7 @@ msgstr ""
"El controlador de dispositiu del nucli per a %s no té el ioctl "
"RTC_EPOCH_SET.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "La comprovació de ioctl(RTC_EPOCH_SET) de %s ha fallat"
@@ -6220,7 +6259,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Contrasenya: "
@@ -7029,39 +7068,39 @@ msgstr "Desmuntant els sistemes de fitxers restants..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: No es pot desmuntar %s: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Arrencant en mode d'un sol usuari.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr ""
"l'execució de l'intèrpret de comandaments en mode d'usuari únic ha fallat\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr ""
"l'establiment del canvi a un sol usuari a l'intèrpret de comandaments ha "
"fallat\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "error obrint fifo\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr "error d'inicialització close-on-exec sobre /dev/initctl"
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "error executant finalprog\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "error establint un canvi per a finalprog\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -7069,35 +7108,35 @@ msgstr ""
"\n"
"Contrasenya incorrecta.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "El `lstat' de la ruta ha fallat\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "el 'stat' de la ruta ha fallat\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "l'obertura del directori ha fallat.\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "l'establiment del canvi ha fallat\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "l'execució (exec) ha fallat\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "no es pot obrir inittab\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "sense TERM o no es pot fer stat a la tty\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "error aturant el servei: \"%s\""
@@ -7670,17 +7709,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:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "advertència: Error al llegir %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "advertència: No es pot obrir %s: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, 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"
@@ -7689,42 +7728,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:472
+#: mount/fstab.c:484
#, 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:487
+#: mount/fstab.c:499
#, 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:499
+#: mount/fstab.c:511
#, 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:514
+#: mount/fstab.c:526
#, 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:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "no es pot blocar al fitxer de blocat %s: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "temps d'espera excedit"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7733,22 +7772,22 @@ msgstr ""
"No es pot crear l'enllaç %s\n"
"Potser hi hagi un fitxer de blocat obsolet?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "no es pot obrir %s (%s) - mtab no actualitzat"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "error escrivint %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "error al canviar el mode de %s: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "no es pot reanomenar %s per %s: %s\n"
@@ -7816,27 +7855,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:341
+#: mount/lomount.c:340
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): Correcte\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, 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:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): Correcte\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
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:407
+#: mount/lomount.c:406
#, fuzzy, c-format
msgid ""
"usage:\n"
@@ -7850,12 +7889,11 @@ msgstr ""
" %s -d dispositiu_loop # elimina\n"
" %s [ -e xifrat ] [ -o desplaça. ] disp_loop fitxer # configura\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "no hi ha prou memòria"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
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, "
@@ -7875,166 +7913,166 @@ msgstr "[mntent]: La línia %d de %s és incorrecta%s\n"
msgid "; rest of file ignored"
msgstr "; la resta del fitxer s'ignorarà"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, 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:380
+#: mount/mount.c:387
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: Segons mtab, %s està muntat en %s"
-#: mount/mount.c:400
+#: mount/mount.c:407
#, 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:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: Error escrivint %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: Error al canviar el mode de %s: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s sembla espai d'intercanvi - no muntat"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "el muntatge ha fallat"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, 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:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: El dispositiu loop està especificat dues vegades"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: El tipus està especificat dues vegades"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: Saltant-se la configuració d'un dispositiu loop\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: S'usarà el dispositiu loop %s\n"
-#: mount/mount.c:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: Falla al configurar el dispositiu loop\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: Configuració correcta del dispositiu loop\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: No es pot obrir %s: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
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:699
+#: mount/mount.c:706
#, 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:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: No es pot establir la velocitat de: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: No es pot establir el canvi: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
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:884
+#: mount/mount.c:891
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:895
+#: mount/mount.c:902
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:898
+#: mount/mount.c:905
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:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: El muntatge ha fallat"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, 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:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: Permís denegat"
-#: mount/mount.c:911
+#: mount/mount.c:918
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:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s està ocupat"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc ja està muntat"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s ja està muntat o %s està ocupat"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: El punt de muntatge %s no existeix"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, 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:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: El dispositiu especial %s no existeix"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8043,55 +8081,73 @@ msgstr ""
"mount: El dispositiu especial %s no existeix\n"
" (una ruta prefixada no és un directori)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, 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:959
+#: mount/mount.c:966
#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: Tipus del sistema de fitxers incorrecte, opció incorrecta,\n"
" superbloc incorrecte en %s o masses sistemes de fitxers muntats"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "taula de dispositius muntats completa"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: No es pot llegir el superbloc"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "umount: %s: Dispositiu desconegut"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, fuzzy, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr " l Llistar els tipus de sistemes de fitxers coneguts"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: Probablement volíeu referir-vos a %s"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
#, fuzzy
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: Potser volíeu referir-vos a iso9660 ?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
#, fuzzy
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: Potser volíeu referir-vos a iso9660 ?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8099,12 +8155,12 @@ msgstr ""
"fitxers %s no està suportat"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, 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:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8113,51 +8169,51 @@ msgstr ""
"mount: El nucli no reconeix %s com a un dispositiu de blocs\n"
" (potser fent `insmod controlador'?)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, 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:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s no és un dispositiu de blocs"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "dispositiu de blocs "
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, 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:1049
+#: mount/mount.c:1061
#, 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:1066
+#: mount/mount.c:1078
#, 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:1165
+#: mount/mount.c:1177
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:1171
+#: mount/mount.c:1183
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"
@@ -8165,22 +8221,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: Executant en segon plà \"%s\"\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: Abandonant \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s ja està muntat en %s\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8226,48 +8282,48 @@ msgstr ""
"usant -U uuid. D'altres opcions: [-nfFrsvw] [-o opcions].\n"
"Per a més detalls, escriviu man 8 mount.\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: Sols l'usuari root pot fer això"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: No s'ha trobat %s; s'està creant...\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: No troba aquesta partició"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: Muntant %s\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "no s'ha muntat res"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: No es pot trobar %s en %s"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: No es pot trobar %s en %s o %s"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount : No es pot obrir %s, donat que la conversió UUID i LABEL no s'ha "
"fet.\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: UUID incorrecte"
#: mount/mount_guess_fstype.c:489
@@ -8383,16 +8439,16 @@ msgstr "connexió nfs"
msgid "unknown nfs status return value: %d"
msgstr "valor de retorn de nfs status desconegut: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "error en la crida xstrndup"
-#: mount/swapon.c:54
-#, c-format
+#: mount/swapon.c:57
+#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"ús: %s [-hV]\n"
@@ -8400,7 +8456,7 @@ msgstr ""
" %s [-v] [-p prioritat] especial ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8411,33 +8467,38 @@ msgstr ""
" %s -a [-v]\n"
" %s [-v] especial ...\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s en %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: No es pot trobar \"_stext\" en %s\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: No es pot executar stat per a %s: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
"swapon: Atenció: %s teniu els permisos %04o que no son segurs, es "
"suggereixen %04o\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: Saltant-se el fitxer %s - sembla que està a troços.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr "No és el superusuari.\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: No es pot obrir %s: %s\n"
@@ -8547,42 +8608,48 @@ msgstr ""
"opcions]\n"
" umount [-f] [-r] [-n] [-v] especial | node...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "No es pot obrir"
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "S'intenta desmuntar %s\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "No es pot trobar a %s en mtab\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s no està muntat (segons mtab)"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: Sembla que %s ha estat muntat diverses vegades"
-#: mount/umount.c:587
+#: mount/umount.c:592
#, 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:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: El muntatge de %s no concorda amb el fstab"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, 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:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: Sols el root pot fer això"
@@ -10044,8 +10111,5 @@ msgstr "Memòria esgotada a l'augmentar la mida de la memòria temporal.\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "etiqueta"
-
#~ msgid "mount: the label %s occurs on both %s and %s - not mounted\n"
#~ msgstr "mount: L'etiqueta %s apareix en %s i %s; no s'ha muntat\n"
diff --git a/po/cs.po b/po/cs.po
index 76ecb76b8..6ee87fd2e 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux-2.11d\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+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"
@@ -153,7 +153,7 @@ msgstr "Pouit: %s [ -n ] zazen\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -751,7 +751,7 @@ msgstr "pli mnoho iuzl - maximum je 512"
msgid "not enough space, need at least %lu blocks"
msgstr "nedostatek msta, minimln potebn poet blok: %lu"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Zazen: %s\n"
@@ -824,7 +824,7 @@ msgstr "Chyba pi zavrn %s"
msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr "Pouit: mkfs [-V] [-t sstyp] [ss-volby] zazen [velikost]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1034,7 +1034,7 @@ msgstr "chyba pi posunu ukazovtka v prbhu kontroly blok"
msgid "Weird values in do_check: probably bugs\n"
msgstr "Nesprvn hodnoty v do_check: pravdpodobn chyby\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "chyba pi posunu ukazovtka v check_blocks"
@@ -1090,64 +1090,86 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Pedpokldm velikost strnek %d (nikoliv %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "popis"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Pouit: %s [-c] [-v0|-v1] [-pVELIKOST STRNKY] /dev/nzev [bloky]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "pli mnoho chybnch strnek"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Nedostatek pamti"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "chybnch strnek: 1\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, fuzzy, c-format
msgid "%lu bad pages\n"
msgstr "chybnch strnek: %d\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: chyba: Kde mm vytvoit odkldac prostor?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, fuzzy, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: chyba: zadan velikost (%ld) je vt ne velikost zazen (%d)\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: chyba: neznm verze %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: chyba: minimln velikost odkldacho prostoru je %ldkB\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: varovn: odkldac prostor useknut na %ldkB\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: chyba: Kde mm vytvoit odkldac prostor?\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "nebudu se pokouet vytvoit odkldac zazen '%s'"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "osudov chyba: prvn strnka je neiteln"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1161,24 +1183,24 @@ msgstr ""
"opravdu\n"
"chcete vytvoit odkldac prostor v0, pouijte pepna -f pro vynucen.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "Odkldac prostor nelze nastavit: neiteln"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, fuzzy, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Vytvm odkldac prostor verze %d, velikost (v bajtech) = %ld\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "odkldac prostor nelze pevinout"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "strnku signatur nelze zapsat"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "voln fsync selhalo"
@@ -1220,60 +1242,65 @@ msgstr " %s [ -c | -y | -n | -d ] zazen\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] zazen\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Nepouiteln"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Voln prostor"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
#, fuzzy
msgid "Linux ext3"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
#, fuzzy
msgid "Linux XFS"
msgstr "Linux"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux"
+
+#: fdisk/cfdisk.c:385
#, fuzzy
msgid "Linux ReiserFS"
msgstr "Linux"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Na disku byly provedeny zmny.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Restartujte systm, aby byla jistota, e tabulka rozdlen disku byla\n"
"korektn zmnna.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1285,315 +1312,315 @@ msgstr ""
"DOS 6.x diskov oddly, pette si prosm manul\n"
"programu cfdisk, abyste zskal dodaten informace.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "OSUDOV CHYBA"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Stisknte jakoukoliv klvesu pro ukonen programu cfdisk"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Nelze posunout ukazovtko na disku"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "Z disku nelze st"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "Nelze zapisovat na disk"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "pli mnoho diskovch oddl"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "Diskov oddl zan ped sektorem 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "Diskov oddl kon ped sektorem 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "Diskov oddl zan za koncem disku"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "Diskov oddl kon za koncem disku"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr ""
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "logick diskov oddl jsou chybn seazeny"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "logick diskov oddly se vzjemn pekrvaj"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "zvten logick diskov oddly se vzjemn pekrvaj"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!!! Vnitn chyba pi vytven logickho disku bez rozench diskovch "
"oddl !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"Zde nelze vytvoit logick disk -- vznikly by dva rozen diskov oddly"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Poloka nabdky je pli dlouh. Nabdka me vypadat podivn."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Nabdka nem zadan smr. Pouvm horizontln."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Chybn klvesa"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Stisknte klvesu pro pokraovn"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primrn"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Vytvoit nov primrn diskov oddl"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Logick"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Vytvoit nov logick diskov oddl"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Zruit"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "Nevytvet diskov oddl"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Vnitn chyba !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Velikost (v MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Zatek"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Vytvoit diskov oddl na zatku volnho prostoru"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Konec"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Vytvoit diskov oddl na konci volnho prostoru"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Pro rozen diskov oddl nen dostatek msta"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
#, fuzzy
msgid "No partition table.\n"
msgstr "Nebyla nalezena dn tabulka rozdlen disku.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
#, fuzzy
msgid "No partition table. Starting with zero table."
msgstr "Chybn podpis na tabulce rozdlen disku"
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
#, fuzzy
msgid "Bad signature on partition table"
msgstr "Vytisknout pouze tabulku rozdlen disku"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
#, fuzzy
msgid "Unknown partition table type"
msgstr "Nebyla nalezena dn tabulka rozdlen disku.\n"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr ""
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr "Zadal jste vt poet cylindr, ne se vejde na disk."
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "Disk nelze otevt"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
msgid "Opened disk read-only - you have no permission to write"
msgstr "Disk byl oteven pouze pro ten - nemte prva pro zpis"
-#: fdisk/cfdisk.c:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "Velikost disku nelze zjistit"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Chybn primrn diskov oddl"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Chybn logick diskov oddl"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Varovn!! Toto me vst ke znien dat na Vaem disku!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Jste si jist, e chcete uloit tabulku rozdlen disku na disk? (ano i ne):"
-#: fdisk/cfdisk.c:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "ne"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "Tabulka rozdlen disku nebyla uloena"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "ano"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Zadejte `ano' i `ne'"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Ukldm tabulku rozdlen disku na disk"
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Tabulka rozdlen disku byla uloena na disk"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Tabulka byla uloena, ale nepodailo se ji znovu nast. Restartujte systm."
-#: fdisk/cfdisk.c:1857
+#: fdisk/cfdisk.c:1906
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"dn primrn diskov oddl nen startovac. DOS MBR takto nenastartuje."
-#: fdisk/cfdisk.c:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Vce ne 1 primrn diskov oddl je startovac. DOS MBR takto nenastartuje."
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Zadejte nzev souboru i stisknte RETURN pro zobrazen: "
-#: fdisk/cfdisk.c:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "Soubor '%s' nelze otevt"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Disk: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " dn "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primrn"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Logick"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Neznm"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Startovac"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, fuzzy, c-format
msgid "(%02X)"
msgstr "Nez(%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
#, fuzzy
msgid "None"
msgstr "Hotovo"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Tabulka rozdlen disku pro %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
#, fuzzy
msgid " First Last\n"
msgstr " Prvn Posledn\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
#, fuzzy
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
@@ -1602,7 +1629,7 @@ msgstr ""
" # Typ Sektor Sektor Posun Dlka ID systmu soubor "
"Pznaky\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1612,472 +1639,472 @@ msgstr ""
"---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Potek--- ----Konec---- Poten\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
#, fuzzy
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Pz Hlav Sekt Cyl ID Hlav Sekt Cyl sektor Sektor\n"
-#: fdisk/cfdisk.c:2144
+#: fdisk/cfdisk.c:2193
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "Pm"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Vytisknout tabulku v pmm datovm formtu"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Sektory"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Vytisknout tabulku seazenou dle sektor"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Tabulka"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Vytisknout pouze tabulku rozdlen disku"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "Netisknout tabulku"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Npovda pro cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Toto je cfdisk, program pro vytven diskovch oddl zaloen"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2260
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "na knihovn curses. Umouje vytven, mazn a modifikaci"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "diskovch oddl na Vaem pevnm disku."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Pkaz Vznam"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b Pepne aktulnmu oddlu pznak startovatelnosti"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Smae aktuln oddl"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Zmn geometrii"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " VAROVN: Tato volba by mla bt pouvna pouze lidmi,"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " kte vd, co in."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Vype tuto npovdu"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximln zvt aktuln diskov oddl "
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " Poznmka: Toto me uinit oddl nekompatibiln s"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2 ..."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Vytvoit na volnm mst nov oddl"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
msgid " p Print partition table to the screen or to a file"
msgstr " p Vype tabulku rozdlen disku na obrazovku i do souboru"
-#: fdisk/cfdisk.c:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Pi vpisu tabulky rozdlen disku si mete zvolit"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " z nkolika formt:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - Pm (pesn to, co by bylo zapsno na disk)"
-#: fdisk/cfdisk.c:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Tabulka seazen dle sektor"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - Tabulka v pmm formtu"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q Ukon program bez uloen tabulky rozdlen disku"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Zmn typ systmu soubor"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u Zmn jednotky pro zobrazen velikosti oddlu"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Cykluje mezi MB, sektory a cylindry"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
msgid " W Write partition table to disk (must enter upper case W)"
msgstr " W Ulo tabulku rozdlen disku (pouze velk W)"
-#: fdisk/cfdisk.c:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " Jeliko to me zniit na disku, muste to potvrdit"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr " nebo odmtnout napsnm `yes' nebo"
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " `no'"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Nahoru Pesune kurzor na pedchzejc oddl."
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "Dol Pesune kurzor na dal oddl."
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Pekresl obrazovku"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Vype tuto npovdu"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Poznmka: Vechny pkazy mohou bt zadny malmi i velkmi psmeny"
-#: fdisk/cfdisk.c:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "(s vyjmkou zpisu - W)."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cylindry"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Zmn geometrii cylindr"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Hlavy"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Zmn geometrii hlav"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Zmn geometrii sektor"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Hotovo"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Geometrie zmnna"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Zadejte poet cylindr: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Chybn poet cylindr"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Zadejte poet hlav: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Chybn poet hlav"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Zadejte poet sektor na stopu: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Chybn poet sektor"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Zadejte typ systmu soubor: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "Nelze nastavit typ SS na przdn"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "Nelze nastavit typ SS na rozen"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Nez(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Neznm (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Disk: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Velikost v bajtech: %lld"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Velikost v bajtech: %lld"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Hlav: %d Sektor na stopu: %d Cylindr: %d"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Nzev"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Pznaky"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Typ oddlu"
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Typ SS"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Popis]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
#, fuzzy
msgid " Sectors"
msgstr " Sektory"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
#, fuzzy
msgid " Cylinders"
msgstr "Cylindry"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
#, fuzzy
msgid " Size (MB)"
msgstr "Velikost (MB)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
#, fuzzy
msgid " Size (GB)"
msgstr "Velikost (GB)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Start"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Pepne pznak startovatelnosti aktulnmu diskovmu oddlu"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Smazat"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Smae aktuln diskov oddl"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometrie"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Zmn geometrii disku (pouze pro odbornky)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Npovda"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Vype npovdu"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Zvten"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr ""
"Zvt velikost aktulnho diskovho oddlu na maximum (pouze pro odbornky)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Nov"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Vytvo nov diskov oddl ve volnm prostoru"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Tisk"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print partition table to the screen or to a file"
msgstr "Vype tabulku rozdlen disku (na obrazovku i do souboru)"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Konec"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Ukon program bez uloen tabulky rozdlen disku"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Druh"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Zmn typ systmu soubor (DOS, Linux, OS/2 atd.)"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Jednotky"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Zmn jednotky, ve kterch je udvna velikost diskovho oddlu"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Uloit"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr "Ulo tabulku rozdlen disku na disk (me zniit data)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "Tento oddl nelze nastavit jako startovac."
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "Przdn diskov oddl nelze smazat."
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "Tento diskov oddl nelze zvtit."
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Tento diskov oddl je nepouiteln."
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Tento diskov oddl je ji pouvn."
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "Typ przdnho diskovho oddlu nelze zmnit."
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "dn dal diskov oddly"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Chybn pkaz"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
#, 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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2353,20 +2380,20 @@ msgstr " f oprav azen diskovch oddl"
msgid "You must set"
msgstr "Muste nastavit"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "hlavy"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "sektory"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "cylindry"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2375,11 +2402,11 @@ msgstr ""
"%s%s.\n"
"Mete tak uinit z nabdky roziujcch funkc.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " a "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2398,28 +2425,28 @@ msgstr ""
"2) s programy pro sprvu diskovch oddl z jinch OS\n"
" (nap. DOS FDISK, OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Chybn posun v primrnm diskovm oddlu\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Varovn: nadbyten ukazatel na link v tabulce rozdlen disku %d.\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr "Varovn: nadbyten data v tabulce rozdlen disku %d ignorovna.\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2432,22 +2459,22 @@ msgstr ""
"data\n"
"pochopiteln dostupn.\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Pozor: velikost sektoru je %d (nikoliv %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "Nebudete moci uloit tabulku rozdlen disku.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
msgstr ""
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
@@ -2456,16 +2483,16 @@ msgstr ""
"popis\n"
"disku\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Vnitn chyba\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "Nadbyten rozen diskov oddl %d ignorovn.\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2474,7 +2501,7 @@ msgstr ""
"Varovn: chybn pznak 0x%04x tabulky rozdlen disku %d bude opraven "
"zpisem(w)\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2482,79 +2509,79 @@ msgstr ""
"\n"
"tikrt jsem nalezl EOF - konm..\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "estnctkov (L vype kdy):"
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, fuzzy, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%d-%d, implicitn %d): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, fuzzy, c-format
msgid "Using default value %u\n"
msgstr "Pouvm implicitn hodnotu %d\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Hodnota je mimo meze.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "slo diskovho oddlu"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Varovn: diskov oddl %d nem uren typ\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, fuzzy, c-format
msgid "Selected partition %d\n"
msgstr "Nadbyten rozen diskov oddl %d ignorovn.\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
#, fuzzy
msgid "No partition is defined yet!\n"
msgstr "Nejsou definovny dn diskov oddly\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr ""
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "cylindr"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "sektor"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Mnm jednotky v nich jsou vypisovny informace na %sy\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "VAROVN: diskov oddl %d je rozenm diskovm oddlem\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "Pznak DOSOV kompatibility je nastaven.\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "Pznak DOSOV kompatibility nen nastaven.\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "Diskov oddl %d zatm neexistuje!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2565,7 +2592,7 @@ msgstr ""
"voln prostor. Vytvet diskov oddly typu 0 nen moudr.\n"
"Diskov oddl mete smazat pomoc pkazu `d'.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2573,7 +2600,7 @@ msgstr ""
"Nemete mnit bn diskov oddly na rozen a zpt. Nejdve jej "
"smate.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2583,7 +2610,7 @@ msgstr ""
"nebo SunOS/Solaris to oekv a i Linux tomu dv pednost.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2594,60 +2621,60 @@ msgstr ""
"a diskov oddl 11 jako cel svazek (6), nebo IRIX to oekv.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "Typ diskovho oddlu %d byl zmnn na %x (%s).\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr ""
"Diskov oddl %d m rozdln fyzick a logick zatek (nelinuxov?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " fyz=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "logick=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "Diskov oddl %d m rozdln fyzick a logick konec:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "Diskov oddl %i nezan na hranici cylindru:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "mlo by bt (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, fuzzy, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "Diskov oddl %d nekon na hranici cylindru.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "mlo by bt (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
"Disk %s: %ld MB, %lld bytes\n"
msgstr ""
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, fuzzy, c-format
msgid ""
"\n"
@@ -2657,7 +2684,7 @@ msgstr ""
"Disk %s: hlav: %d, sektor: %d, cylindr: %d\n"
"\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, fuzzy, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr ""
@@ -2665,19 +2692,19 @@ msgstr ""
"Disk %s: hlav: %d, sektor: %d, cylindr: %d\n"
"\n"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ""
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2685,23 +2712,23 @@ msgstr ""
"Diskov oddly jsou ji seazeny.\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, fuzzy, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Boot Zatek Konec Bloky Id Systm\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Zazen"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2709,7 +2736,7 @@ msgstr ""
"\n"
"Diskov oddly jsou chybn seazeny\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2720,94 +2747,94 @@ msgstr ""
"Disk %s: hlav: %d, sektor: %d, cylindr: %d\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
#, fuzzy
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr " AF Hd Sek Cyl Hd Sek Cyl Zatek Vel Id\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Varovn: diskov oddl %d obsahuje sektor 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Diskov oddl %d: hlava %d m vt slo ne je maximum %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Diskov oddl %d: sektor %d m vt slo ne je maximum %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Diskov oddl %d: cylindr %d m vt slo ne je maximum %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr "Diskov oddl %d: pedchoz sektory %d nesouhlas s hrnem %d\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Varovn: chybn potek dat v diskovm oddlu %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Varovn: diskov oddl %d pesahuje do diskovho oddlu %d.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Varovn: diskov oddl %d je przdn.\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "Logick diskov oddl %d pesahuje mimo diskov oddl %d.\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, fuzzy, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "Celkov poet alokovanch sektor (%d) je vt ne maximum (%d).\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, fuzzy, c-format
msgid "%lld unallocated sectors\n"
msgstr "nealokovanch sektor: %d\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr ""
"Diskov oddl %d je ji definovn. Ped optovnm vytvoenm jej muste\n"
"nejprve smazat.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Prvn %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "Sektor %d je ji alokovn\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Nejsou dn voln sektory.\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Posledn %s i +velikost i +velikostM i velikostK"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2815,25 +2842,25 @@ msgid ""
"\tWARNING: This will destroy the present disk contents.\n"
msgstr ""
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "Ji bylo vytvoeno maximln mnostv diskovch oddl.\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr "Muste nejprve nkter smazat a pidat rozen diskov oddl.\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
#, fuzzy
msgid "All logical partitions are in use\n"
msgstr "logick diskov oddl jsou chybn seazeny"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
#, fuzzy
msgid "Adding a primary partition\n"
msgstr "Chybn primrn diskov oddl"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2844,30 +2871,30 @@ msgstr ""
" %s\n"
" p primrn diskov oddl (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l logick diskov oddl (5 nebo vce)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e rozen diskov oddl"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Chybn slo diskovho oddlu pro typ `%c'.\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
msgstr "Tabulka rozdlen disku byla zmnna!\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Volm ioctl() pro znovunaten tabulky rozdlen disku.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2876,7 +2903,7 @@ msgid ""
"The new table will be used at the next reboot.\n"
msgstr ""
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2888,65 +2915,72 @@ msgstr ""
"DOS 6.x diskov oddly, pette si prosm manulovou\n"
"strnku programu fdisk, abyste zskal dodaten informace.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Chyba pi zavrn %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Synchronizuj se disky.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "Diskov oddl %d neobsahuje datovou oblast.\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Nov zatek dat"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Pkaz pro odbornky (m pro npovdu): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Poet cylindr"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Poet hlav"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Poet sektor"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr "Varovn: nastaven posun sektoru kvli kompatibilit s DOSEM\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "Na disku %s nen korektn tabulka rozdlen disku.\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "%s nelze otevt.\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "%s nelze otevt.\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "pkaz %c nen znm\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr ""
"Toto jdro detekuje velikost sektoru automaticky - pepna -b ignorovn\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -2956,18 +2990,18 @@ msgstr ""
" zadanm zazenm.\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, fuzzy, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr ""
"Na %s nalezen OSF/1 popis disku. Spoutm reim popisu disku.\n"
"Pro nvrat do reimu DOS tabulky rozdlen disku pouijte pkaz 'r'.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Pkaz (m pro npovdu): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -2976,15 +3010,15 @@ msgstr ""
"\n"
"Aktuln startovac soubor: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Zadejte nzev novho startovacho souboru: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "Startovac soubor nebyl zmnn.\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3364,7 +3398,7 @@ msgstr "Linux swap"
msgid "Linux native"
msgstr "Linux nativn"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3691,7 +3725,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linux raid autodetect"
@@ -4065,8 +4099,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4118,150 +4152,155 @@ msgstr "Linux extended"
msgid "NTFS volume set"
msgstr "NTFS svazek"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext2"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "IBM Thinkpad hibernation"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr ""
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr ""
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
#, fuzzy
msgid "NetBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr ""
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI ss"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI swap"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "skryt Boot Wizard"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr ""
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
msgid "Solaris"
msgstr ""
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "data mimo SS"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Dell utilita"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS access"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS ss"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr ""
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS sekundrn"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5272,124 +5311,124 @@ msgstr "getopt (rozen) 1.1.2\n"
msgid "internal error, contact the author."
msgstr "Vnitn chyba, oznamte ji autorovi."
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "sputn pomoc MILO\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "hodnoty uloeny v BCD tvaru\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "vstupn/vstupn port pro pstup k hodinm nastaven na 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "pouit pepna --funky-toy!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: 1000 nespnch pokus o atomick proveden %s!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "/dev/port nelze otevt: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
msgid "I failed to get permission because I didn't try.\n"
msgstr "Jeliko jsem se nesnail, nepodailo se mi zskat prva pro pstup.\n"
-#: hwclock/cmos.c:601
+#: hwclock/cmos.c:602
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s: pstup k portu nelze zskat: voln iopl(3) selhalo.\n"
-#: hwclock/cmos.c:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Pravdpodobn je teba mt prva superuivatele.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Pedpokldm, e hodiny relnho asu jsou nastaveny na %s as.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "greenwichsk"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "mstn"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Varovn: neznm formt tetho dku v souboru adjtime\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Oekvno `UTC', `LOCAL' i nic.)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Posledn oprava posunu probhla %ld sekund od roku 1969.\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Posledn kalibrace probhla %ld sekund od roku 1969.\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "Hodiny relnho asu jsou nastaveny na %s as.\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "neznm"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "ekm na tiknut hodin...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...hodiny tikly\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr ""
"Hodiny relnho asu obsahuj chybn hodnoty: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Hodiny relnho asu: %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld sekund od roku "
"1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Hodiny relnho asu ukazuj %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Nastavuji hodiny relnho asu na %.2d:%.2d:%.2d = %ld sekund od roku 1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Testovac reim - as nezmnn.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5398,7 +5437,7 @@ msgstr ""
"Poet sekund uplynulch od referennho asu: %.6f.\n"
"ekm, dokud neuplyne dal cel sekunda.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5406,42 +5445,42 @@ msgstr ""
"Registry hodin relnho asu obsahuj hodnoty, kter jsou bu chybn (nap.\n"
"50t den v msci), i mimo ppustn rozsah (nap. rok 2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f sekundy\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "Pepna --date vyaduje argument.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
#, fuzzy
msgid "--date argument too long\n"
msgstr "nzev ss je pli dlouh"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
msgstr ""
"Argument pepnae --date nen platnm datem. Konkrtn obsahuje uvozovky.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Spoutm pkaz 'date': %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr "Pkaz 'date' nelze v shellu /bin/sh spustit. Voln popen() selhalo."
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "odpov pkazu 'date' = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5456,7 +5495,7 @@ msgstr ""
"Odpov:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5473,12 +5512,12 @@ msgstr ""
"Odpov:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "Datum %s odpovd %ld sekundm od roku 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5486,33 +5525,33 @@ msgstr ""
"Systmov as nelze podle hodin relnho asu nastavit, protoe neukazuj\n"
"platn as.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "Volm settimeofday:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr "Testovac reim - systmov as nezmnn.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Nastavit systmov as me pouze superuivatel.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "voln settimeofday() selhalo"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5520,7 +5559,7 @@ msgstr ""
"Neopravuji mru posunu, protoe hodiny relnho asu posledn obsahovaly\n"
"neplatn hodnoty.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
#, fuzzy
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
@@ -5529,7 +5568,7 @@ msgstr ""
"Neopravuji mru posunu, protoe posledn kalibrace jet neuplynul cel "
"den.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5537,7 +5576,7 @@ msgstr ""
"Neopravuji mru posunu, protoe posledn kalibrace jet neuplynul cel "
"den.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, fuzzy, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5549,21 +5588,21 @@ msgstr ""
"je nastavena na %3$f sekund/den.\n"
"Opravuji mru posunu o %4$f sekund.\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "Poet sekund od posledn opravy: %d\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr "Potebn zmna asu: sekund vped: %d ; sekund zpt: %.6f\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "Testovac reim - soubor adjtime nezmnn.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5572,33 +5611,33 @@ msgstr ""
"Do %s by bylo uloeno nsledujc:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Parametry opravy posunu nezmnny.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr "Hodiny relnho asu obsahuj neplatn as, tud jej nelze opravit.\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr "Potebn oprava je men ne 1 sekunda, proto hodiny nenastavuji.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Pouvm %s.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Nebylo nalezeno dn pouiteln rozhran k hodinm.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "Systmov as nelze nastavit.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5611,31 +5650,31 @@ msgstr ""
"Tento program nebyl peloen pro Alpha systm ( a tud pravdpodobn nyn\n"
"neb na Alph). Ignorovno.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "Potek epochy nelze z jdra zjistit.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "Jdro pokld za potek epochy %lu.\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
msgstr "Potek epochy nastavte pomoc pepna epoch a setepoch.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "Testovac reim - potek epochy na %d nemnm.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "Hodnotu potku epochy v jde nelze nastavit.\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, fuzzy, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5691,7 +5730,7 @@ msgstr ""
" --date as, na kter budou nastaveny hodiny relnho asu\n"
" --epoch=ROK nastav potek epochy pro hodiny relnho asu na ROK\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5699,13 +5738,13 @@ msgstr ""
" --jensen, --arc, --srm, --funky-toy\n"
" nastav typ alpha systmu (viz hwclock(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr ""
"%s akceptuje pouze pepnae. Zadno argument, kter nejsou pepnai: %d\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
#, fuzzy
msgid ""
"You have specified multiple functions.\n"
@@ -5714,149 +5753,149 @@ msgstr ""
"Zadal jste vcero funknch pepna. Program me provst maximln jednu\n"
"funkci najednou.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
"both.\n"
msgstr "%s: Pepnae --utc a --localtime nelze pout zrove.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, fuzzy, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
"specified both.\n"
msgstr "%s: Pepnae --utc a --localtime nelze pout zrove.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr ""
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "Nebyl zadn platn as, kter mm nastavit. Hodiny nelze nastavit.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Hodiny relnho asu me nastavit pouze superuivatel.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Hodiny relnho asu me nastavit pouze superuivatel.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
msgstr "Hodnotu potku epochy v jde me nastavit pouze superuivatel.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr ""
"dnm ze znmch zpsob nelze zskat pstup k hodinm relnho asu.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
msgstr "Pro zjitn podrobnost pouijte pepna --debug.\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Ve smyce se pokoum zjistit as pomoc KDGHWCLK.\n"
-#: hwclock/kd.c:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "voln KDGHWCLK ioctl selhalo."
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "V asovm limitu se nepodailo zjistit as.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "voln KDGHWCLK ioctl ve smyce selhalo."
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "as se pomoc voln ioctl() pro %s nepodailo zjistit"
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "voln ioctl KDSHWCLK selhalo"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "/dev/tty1 ani /dev/vc/1 nelze otevt"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "voln ioctl KDGHWCLK selhalo"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "%s nelze otevt - voln open() selhalo"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "as se pomoc voln ioctl() pro %s nepodailo zjistit\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "ekm ve smyce na zmnu asu z %s\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s nem peruovac funkce. "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "tikn hodin nelze z %s st - voln read() selhalo"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "tikn hodin nelze z %s st - voln read() selhalo"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "tikn hodin nelze z %s st - voln read() selhalo"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "obnovovac peruen nelze vypnout - voln ioctl() pro %s selhalo"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr "obnovovac peruen nelze zapnout - voln ioctl() pro %s selhalo"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "as nelze nastavit - voln ioctl() pro %s selhalo.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "Voln ioctl(%s) bylo spn.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "%s nelze otevt."
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5867,17 +5906,17 @@ msgstr ""
"pomoc\n"
"zvltnho souboru %s. Tento soubor na tomto systmu soubor neexistuje.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "%s nelze otevt"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "voln(RTC_EPOCH_READ) pro %s selhalo"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr ""
@@ -5886,24 +5925,24 @@ msgstr ""
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr "Hodnota potku epochy nesm bt men ne 1900 (poadovno %ld).\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr ""
"Nastavuji pomoc RTC_EPOCH_SET ioctl pro %2$s potek epochy na %1$ld.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr "Ovlada jdra pro %s nepodporuje RTC_EPOCH_SET ioctl.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "voln ioctl(RTC_EPOCH_SET) pro %s selhalo"
@@ -6118,7 +6157,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Heslo: "
@@ -6919,38 +6958,38 @@ msgstr "Odpojuji vechny zbvajc systmy soubor..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: %s nelze odpojit: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Startuji do reimu pro jednoho uivatele.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr ""
"Sputn shellu pro jednoho uivatele se nezdailo - voln exec selhalo.\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr ""
"Sputn shellu pro jednoho uivatele se nezdailo - voln fork selhalo.\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "Chyba pi otevrn pojmenovan roury\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr ""
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "chyba pi bhu zvrenho programu\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "voln fork pro zvren program selhalo\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -6958,35 +6997,35 @@ msgstr ""
"\n"
"Chybn heslo.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "voln lstat pro cestu selhalo\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "voln stat pro cestu selhalo\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "adres nelze otevt\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "voln fork selhalo\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "voln exec selhalo\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "inittab nelze otevt\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "dn TERM nebo selhalo voln stat pro tty\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "chyba pi ukonovn sluby: \"%s\""
@@ -7562,17 +7601,17 @@ msgstr "Zprva od %s@%s (jako %s) na %s v %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Zprva od %s@%s na %s v %s ..."
-#: mount/fstab.c:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "varovn: chyba pi ten %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "varovn: %s nelze otevt: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: %s nelze otevt - pouvm %s\n"
@@ -7581,42 +7620,42 @@ msgstr "mount: %s nelze otevt - pouvm %s\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:472
+#: mount/fstab.c:484
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"zamykac soubor %s nelze vytvoit: %s\n"
"(pouijte pepna -n pro vynechn zpisu do mtab)"
-#: mount/fstab.c:487
+#: mount/fstab.c:499
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"voln link pro zamykac soubor %s selhalo: %s\n"
"(pouijte pepna -n pro vynechn zpisu do mtab)"
-#: mount/fstab.c:499
+#: mount/fstab.c:511
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
"zamykac soubor %s nelze otevt: %s\n"
"(pouijte pepna -n pro vynechn zpisu do mtab)"
-#: mount/fstab.c:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Zamykac soubor %s nelze zamknout: %s\n"
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "Zamykac soubor %s nelze zamknout: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "vyprel as"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7625,22 +7664,22 @@ msgstr ""
"Odkaz %s nelze vytvoit.\n"
"Nen nkde zastaral zamykac soubor?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "nelze otevt %s (%s) - mtab nebyl aktualizovn"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "chyba pi zpisu %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "chyba pi zmn mdu %s: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "%s nelze pejmenovat na %s: %s\n"
@@ -7709,26 +7748,26 @@ msgstr "mount: dn voln loop zazen nelze najt"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Nelze zamknout v pamti. Konm.\n"
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): spch\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: zazen %s nelze smazat: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): spch\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Tento program byl peloen bez podpory pro loop. Pelote jej znovu.\n"
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, fuzzy, c-format
msgid ""
"usage:\n"
@@ -7742,12 +7781,11 @@ msgstr ""
" %s -d loop zazen # smae\n"
" %s [ -e ifra ] [ -o posun ] loop zazen soubor # nastav\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "Nedostatek pamti"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr "Podpora pro loop nebyla pi pekladu zadna. Pelote program znovu.\n"
@@ -7765,163 +7803,163 @@ msgstr "[mntent]: dek %d v %s je chybn%s\n"
msgid "; rest of file ignored"
msgstr "; ignoruji zbytek souboru"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: podle mtab je %s ji pipojeno na %s"
-#: mount/mount.c:380
+#: mount/mount.c:387
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: podle mtab je %s pipojeno na %s"
-#: mount/mount.c:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: %s nelze otevt pro zpis: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: chyba pi zpisu %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: chyba pi zmn mdu %s: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s vypad jako odkldac prostor - nepipojeno"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "pipojen se nezdailo"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: pouze superuivatel me pipojit %s na %s"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: zazen loop bylo zadno dvakrt"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: typ byl zadn dvakrt"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: peskakuji nastaven loop zazen\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: chystm se pout zazen loop %s\n"
-#: mount/mount.c:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: nepodailo se nastavit zazen loop\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: zazen loop bylo korektn nastaveno\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: %s nelze otevt: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:699
+#: mount/mount.c:706
#, fuzzy, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: %s nelze pro nastaven rychlosti otevt"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: rychlost nelze nastavit: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: voln fork selhalo: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: tato verze byla peloena bez podpory pro typ `nfs'"
-#: mount/mount.c:884
+#: mount/mount.c:891
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: chyba s nfs mount verze 4, zkoum verzi 3..\n"
-#: mount/mount.c:895
+#: mount/mount.c:902
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr "mount: typ systmu soubor nebyl zadn a ani jej nelze zjistit"
-#: mount/mount.c:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: muste zadat typ systmu soubor"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: pipojen se nezdailo"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: ppojn bod %s nen adresem"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: pstup odmtnut"
-#: mount/mount.c:911
+#: mount/mount.c:918
msgid "mount: must be superuser to use mount"
msgstr "mount: mount me pouvat pouze superuivatel"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s je ji pipojeno"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc je ji pipojeno"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s je ji pipojeno, i je %s ji pouvno"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: ppojn bod %s neexistuje"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: ppojn bod %s je symbolickm odkazem, jen nikam neukazuje"
-#: mount/mount.c:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: speciln zazen %s neexistuje"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7930,66 +7968,84 @@ msgstr ""
"mount: speciln zazen %s neexistuje\n"
" (nzev cesty nezan adresem)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s jet nen pipojeno i chybn pepna"
-#: mount/mount.c:959
+#: mount/mount.c:966
#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: chybn typ ss, chybn pepna, chybn superblok na %s\n"
" nebo pli mnoho pipojench systm soubor"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "tabulka pipojen je pln"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: superblok nelze pest"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "umount: blokov zazen %s je neznm"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, fuzzy, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr " l vypsat znm typy systm soubor"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: pravdpodobn jste myslel %s"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
#, fuzzy
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: mon jste myslel iso9660 ?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
#, fuzzy
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: mon jste myslel iso9660 ?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr "mount: %s m chybn slo zazen, i ss typ %s nen podporovn"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s nen blokovm zazenm a voln stat selhalo?"
-#: mount/mount.c:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -7997,47 +8053,47 @@ msgid ""
msgstr ""
"mount: jdro nerozpoznalo %s jako blokov zazen (mon `insmod ovlada'?)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s nen blokovm zazenm (mon pome `-o loop'?)"
-#: mount/mount.c:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s nen blokovm zazenm"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s nen platnm blokovm zazenm"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "blokov zazen"
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "umount: %s%s nelze pipojit v reimu pouze pro ten"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s je chrnno proti zpisu, pipojuji pouze pro ten"
-#: mount/mount.c:1066
+#: mount/mount.c:1078
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s je chrnno proti zpisu, pipojuji pouze pro ten"
-#: mount/mount.c:1165
+#: mount/mount.c:1177
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr "mount: nebyl zadn typ - budu pouvat nfs kvli dvojtece\n"
-#: mount/mount.c:1171
+#: mount/mount.c:1183
#, fuzzy
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr "mount: nebyl zadn typ - budu pouvat smbfs kvli dvojtece\n"
@@ -8045,22 +8101,22 @@ msgstr "mount: nebyl zadn typ - budu pouvat smbfs kvli dvojtece\n"
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: pracuji na pozad \"%s\"\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: konm \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s je ji pipojeno na %s\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
#, fuzzy
msgid ""
"Usage: mount -V : print version\n"
@@ -8109,47 +8165,47 @@ msgstr ""
"Dal pepnae: [-nfFrsvw] [-o volby].\n"
"Dal informace viz man(8).\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: toto me provst pouze superuivatel"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: %s nebylo nalezeno - vytvm jej..\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: dn odpovdajc diskov oddl nebyl nalezen"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: pipojuji %s\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "nebyl pipojen dn diskov oddl"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: %s nelze v %s nalzt"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: %s nelze nalzt v %s ani %s"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount: %s nelze otevt,take konverze UUID a LABEL nebude provedena.\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: chybn UUID"
#: mount/mount_guess_fstype.c:489
@@ -8266,16 +8322,16 @@ msgstr "nfs connect"
msgid "unknown nfs status return value: %d"
msgstr "nvratov hodnota nfs status %d je neznm"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "chyba ve voln xstrndup"
-#: mount/swapon.c:54
+#: mount/swapon.c:57
#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"Pouit: %s [-hV]\n"
@@ -8283,7 +8339,7 @@ msgstr ""
" %s [-v] [-p priorita] zvltn soubor ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8295,33 +8351,38 @@ msgstr ""
" %s [-v] [-p priorita] zvltn soubor ...\n"
" %s [-s]\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s na %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: \"_stext\" nelze v %s nalzt\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: voln stat pro %s selhalo: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
"swapon: varovn: pstupov prva pro %s (%04o) nejsou bezpen, pouijte %"
"04o\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: soubor %s vynechvm - zd se, e v nm jsou dry.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr ""
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: %s nelze otevt: %s\n"
@@ -8431,42 +8492,48 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t typy vfs]\n"
" umount [-f] [-r] [-n] [-v] speciln soubor | uzel...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "%s nelze otevt.\n"
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "Zkoum odpojit %s\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "%s nelze v mtab najt\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: podle mtab nen %s pipojeno"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: zd se, e %s je pipojeno vce ne jednou"
-#: mount/umount.c:587
+#: mount/umount.c:592
#, 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:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: pipojen %s neodpovd fstab"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "unmount: pouze uivatel %s me odpojit %s ze %s"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: toto me provst pouze uivatel root"
@@ -9985,9 +10052,6 @@ msgstr "Nedostatek pamti pro rostouc buffer.\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "popis"
-
#, fuzzy
#~ msgid "swapon: invalid loop device name\n"
#~ msgstr "umount: blokov zazen %s je chybn"
diff --git a/po/da.po b/po/da.po
index 96c51eb80..0418ad545 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.11y\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+0100\n"
"PO-Revision-Date: 2004-12-04 01:16+0100\n"
"Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
@@ -158,7 +158,7 @@ msgstr "brug: %s [ -n ] enhed\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -764,7 +764,7 @@ msgstr "for mange inodes - vre grnse er 512"
msgid "not enough space, need at least %lu blocks"
msgstr "ikke plads nok, krver mindst %lu blokke"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Enhed: %s\n"
@@ -837,7 +837,7 @@ msgstr "Fejl under lukning af %s"
msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr "Brug: mkfs [-V] [-t fstype] [fs-tilvalg] enhed [strrelse]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1071,7 +1071,7 @@ msgstr "sgning fejlede under test af blokke"
msgid "Weird values in do_check: probably bugs\n"
msgstr "Mystiske vrdier i do_check: sandsynligvis programfejl\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "sgning mislykkedes i check_blocks"
@@ -1127,64 +1127,86 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Antager sider med strrelsen %d (ikke %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "mrke"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Brug: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/navn [blokke]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "for mange ugyldige sider"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Hukommelse opbrugt"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "en ugyldig side\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, c-format
msgid "%lu bad pages\n"
msgstr "%lu ugyldige sider\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: fejl: Ingen steder at opstte swap?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: fejl: strrelsen %lu er strre end enhedsstrrelsen %lu\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: fejl: ukendt version %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: fejl: swap-omrde skal mindst vre p %ldkB\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: fejl: afkorter swap-omrdet til %ldkB\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: fejl: Ingen steder at opstte swap?\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "Vil ikke forsge at oprette swap-enhed p '%s'"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "fatalt: frste side kan ikke lses"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1197,24 +1219,24 @@ msgstr ""
"opretter en v0 swap. Ingen swap oprettet. Hvis du virkelig vil oprette en\n"
"v0 swap p denne enhed, kan du gennemtvinge det med tilvalget -f.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "Kunne ikke klargre swap-omrde: ulseligt"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Klargrer swap-omrde version %d, strrelse = %llu kB\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "kunne ikke spole tilbage p swap-enheden"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "kunne ikke skrive signatur-side"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync mislykkedes"
@@ -1254,56 +1276,61 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Ubrugelig"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Frit omrde"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Disken er blevet udskiftet.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Genstart systemet for at sikre, at partitionstabellen er opdateret korrekt.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1315,311 +1342,311 @@ msgstr ""
"yderligere information, hvis du har oprettet eller\n"
"ndret DOS 6.x partitioner.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "FATAL FEJL"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Tryk en tast for at afslutte cfdisk"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Kan ikke sge p drev"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "Kan ikke lse drev"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "Kan ikke skrive p drev"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "For mange partitioner"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "Partition starter fr sektor 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "Partition slutter fr sektor 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "Partition starter efter slut-p-disk"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "Partition slutter efter slut-p-disk"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr "Partitionen slutter i den sidste partialcylinder"
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "logiske partitioner ikke i disk-rkkeflge"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "logisk partitions-overlap"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "forstrret logisk partitions-overlap"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!!! Intern fejl under oprettelse af logisk drev uden udvidet partition !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"Kan ikke oprette logisk drev her -- ville resultere i to udvidede partitioner"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Menupunkt for langt. Menu ser muligvis mrkeligt ud."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Menu uden retning. Vlger standarden horisontal."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Ugyldig tast"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Tryk en tast for at fortstte"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primr"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Opret en ny primr partition"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Logisk"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Opret en ny logisk partition"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Fortryd"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "Opret ikke partition"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Intern fejl !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Strrelse (i MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Begyndelse"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Tilfj partition i starten af det frie omrde"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Slut"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Tilfj partition i slutningen af det frie omrde"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Ikke plads til at oprette udvidet partition"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
msgid "No partition table.\n"
msgstr "Ingen partitionstabel.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
msgid "No partition table. Starting with zero table."
msgstr "Ingen partitionstabel. Starter med nulstillet tabel."
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
msgid "Bad signature on partition table"
msgstr "Ugyldig signatur i partitionstabel"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
msgid "Unknown partition table type"
msgstr "Ukendt partitionstabel-type"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Vil du starte med nulstillet tabel [j/N] ?"
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr "Du angav flere cylindre end der kan vre p disken"
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "Kan ikke bne drev"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
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:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "Kan ikke f diskstrrelsen"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Ugyldig primrpartition"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Ugyldig logisk partition"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Advarsel!! Dette delgger muligvis data p din disk!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
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:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "nej"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "Skrev ikke partitionstabellen til disken"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "ja"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Skriv venligst 'ja' eller 'nej'"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Skriver partitionstabel til disken..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Skrev partitionstabel til disken"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Skrev partitionstabel, men genindlsning mislykkedes. Genstart for at "
"opdatere tabellen."
-#: fdisk/cfdisk.c:1857
+#: fdisk/cfdisk.c:1906
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Ingen primrpartitioner er markeret opstartbar. DOS MBR vil ikke kunne "
"starte op."
-#: fdisk/cfdisk.c:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Da flere primrpartitioner er opstartbare, vil DOS MBR ikke kunne starte op."
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Angiv filnavn eller tryk RETUR for at vise p skrmen: "
-#: fdisk/cfdisk.c:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "Kan ikke bne filen '%s'"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Drev: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Ingen "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primr"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Logisk "
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Ukendt"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Opstart"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
msgid "None"
msgstr "Ingen"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Partitionstabel for %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
msgid " First Last\n"
msgstr " Frste Sidst\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1627,7 +1654,7 @@ msgstr ""
" # Type Sektor Sektor forskydn. Lngde Filsystem Type (ID) "
"Flag\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1636,463 +1663,463 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Starter--- ----Ender---- Start Antal\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
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:2144
+#: fdisk/cfdisk.c:2193
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "R"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Vis tabellen i rtdata format"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Sektorer"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Vis tabellen ordnet efter sektorer"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Tabel"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Vis kun partitionstabellen"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "Vis ikke tabellen"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Hjlpeskrm for cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Dette er cfdisk, et curses-baseret diskpartitionerings-program, som"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2260
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:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "harddisk."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Kommando Betydning"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b Skift opstartbar-flaget for partitionen ('bootable')"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Slet partitionen"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Ret cylinder, hoved, sektorer-per-spor parametre"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " ADVARSEL: Denne kommando br kun bruges af folk, der"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " er klar over, hvad de gr."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Vis denne skrm"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m Maksimr partitionens diskforbrug"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " Bemrk: Dette kan gre partitionen inkompatibel med"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Opret ny partition i frit omrde"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
msgid " p Print partition table to the screen or to a file"
msgstr " p Udls partitionstabellen til skrmen eller en fil"
-#: fdisk/cfdisk.c:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Der er flere forskellige formater p partitionen,"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " som du kan vlge mellem:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - Rdata (njagtig de, som ville skrives p disken)"
-#: fdisk/cfdisk.c:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Tabel ordnet efter sektorer"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - Tabel i rdata format"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q Afslut program uden at skrive partitionstabellen"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Skift filsystem type"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u Skift enhed for visning af partitionsstrrelser"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Skifter mellem MB, sektorer og cylindre"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
msgid " W Write partition table to disk (must enter upper case W)"
msgstr " W Skriv partitionstabellen til disk (skal vre stort W)"
-#: fdisk/cfdisk.c:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " Siden dette kan delgge data p disken, skal du enten"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr " bekrfte eller afvise ved at skrive henholdsvis 'ja'"
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " eller 'nej'"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Pil op Flyt markren til forrige partition"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "Pil ned Flyt markren til nste partition"
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Gentegner skrmen"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Vis denne skrm"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Bemrk: Alle kommandoerne kan angives med enten store eller sm"
-#: fdisk/cfdisk.c:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "bogstaver (undtagen W)."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cylindre"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Skift cylindergeometri"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Hoveder"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Skift hovedgeometri"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Skift sektorgeometri"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Frdig"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Frdig med geometrindring"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Angiv antallet af cylindre: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Ugyldigt cylinderantal"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Angiv antallet af hoveder: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Ugyldig hovedantal"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Angiv antallet af sektorer per spor: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Ugyldig sektorantal"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Angiv filsystemtype: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "Kan ikke ndre filsystemtype til tom"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "Kan ikke ndre filsystemtype til udvidet"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Ukt(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Ukendt (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Drev: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Strrelse: %lld byte, %lld Mb"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Strrelse: %lld byte, %lld.%lld Gb"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Hoveder: %d Sektorer per spor: %d Cylindre: %lld"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Navn"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Flag"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Part-type"
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Fs-type"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Mrkat]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
msgid " Sectors"
msgstr " Sektorer"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
msgid " Cylinders"
msgstr " Cylindre"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
msgid " Size (MB)"
msgstr " Strrelse (MB)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
msgid " Size (GB)"
msgstr " Strrelse (GB)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Opstartbar"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Skift opstartbar-flaget for partitionen ('bootable')"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Slet"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Slet partitionen"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometri"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Skift diskgeometri (kun for eksperter)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Hjlp"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Vis hjlpeskrm"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Maksimr"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Maksimr diskforbruget for partitionen (kun for eksperter)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Ny"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Opret ny partition i frit omrde"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Udls"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print partition table to the screen or to a file"
msgstr "Udls partitionstabellen til skrmen eller til en fil"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Afslut"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Afslut program uden at ndre partitionstabellen"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Type"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Skift filsystemtype (DOS, Linux, OS/2 osv.)"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Enheder"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Skift enheder for visning af partitionstabellen (MB, sekt, cyl)"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Skriv"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr "Skriv partitionstabellen til disk (dette kan delgge data)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "Kan ikke gre denne partition opstartbar"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "Kan ikke slette en tom partition"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "Kan ikke maksimere denne partition"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Denne partition er ubrugelig"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Denne partition er allerede i brug"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "Kan ikke ndre en tom partitions type"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "Ikke flere partitioner"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Ugyldig kommando"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2365,20 +2392,20 @@ msgstr " f ordn partitionsrkkeflgen"
msgid "You must set"
msgstr "Du skal angive"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "hoveder"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "sektorer"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "cylindre"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2387,11 +2414,11 @@ msgstr ""
"%s%s.\n"
"Dette kan du gre fra menuen 'Ekstra funktioner'.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " og "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2410,28 +2437,28 @@ msgstr ""
"2) opstarts- og partitioneringsprogrammer fra andre OS'er\n"
" (Bl.a. DOS FDISK og OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Ugyldig forskydning i primr udvidet partition\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Advarsel: ekstra lnkepeger (link pointer) i partitionstabel %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr "Advarsel: ignorerer ekstra data i partitionstabel %d\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2443,16 +2470,16 @@ msgstr ""
"indhold naturligvis ikke genskabes\n"
"\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Bemrk: sektorstrrelsen er %d (ikke %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "Du vil ikke kunne gemme partitionstabellen.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
@@ -2460,7 +2487,7 @@ msgstr ""
"Denne disk har bde magiske numre for DOS \n"
"BSD. Brug 'b'-kommandoen for at g i BSD-tilstand.\n"
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
@@ -2468,16 +2495,16 @@ msgstr ""
"Enheden indeholder hverken en gyldig DOS-partitionstabel eller et Sun-, SGI- "
"eller OSF-diskmrkat.\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Intern fejl\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "Ignorerer ekstra udvidet partition %d\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2486,7 +2513,7 @@ msgstr ""
"Advarsel: ugyldigt flag 0x%04x for partitionstabel %d vil blive rettet med "
"'w' (skriv)\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2494,78 +2521,78 @@ msgstr ""
"\n"
"fik filslut (EOF) tre gange - afslutter..\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Hex-kode (tryk L for en liste over koderne): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%u-%u, standard %u): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, c-format
msgid "Using default value %u\n"
msgstr "Bruger standardvrdi %u\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Vrdi udenfor omrdet.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Partitionsnummer"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Advarsel: partition %d er af typen 'tom'\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, c-format
msgid "Selected partition %d\n"
msgstr "Partition %d er valgt\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
msgid "No partition is defined yet!\n"
msgstr "Ingen partitioner defineret!\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr "Alle primre partitioner er allerede definerede!\n"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "cylinder"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "sektor"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Skifter enheder for visning/indtastning til %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "ADVARSEL: Partition %d er en udvidet partition\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "DOS-kompatilitetsflag er sat\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "DOS-kompatilitetsflag er ikke sat\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "Partition %d eksisterer ikke endnu!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2577,7 +2604,7 @@ msgstr ""
"er nok uklogt. Du kan slette en partition med\n"
"'d'-kommandoen.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2585,7 +2612,7 @@ msgstr ""
"Du kan ikke ndre en partition mellem at vre udvidet eller ikke-udvidet\n"
"Slet den frst.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2595,7 +2622,7 @@ msgstr ""
"SunOS/Solaris forventer det og selv Linux foretrkker det.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2605,52 +2632,52 @@ msgstr ""
"og partition 11 som 'entire volume' (6), da IRIX forventer det.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "ndrede systemtypen for partition %d til %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr "Partition %d har forskellig fysisk/logisk begyndelse (ikke-Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " fys=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "logisk=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "Partition %d har forskellig fysisk/logisk endelse:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "Partition %i starter ikke p en cylinder-grnse:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "burde vre (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "Partition %i slutter ikke p en cylindergrnse.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "burde vre (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
@@ -2659,7 +2686,7 @@ msgstr ""
"\n"
"Disk %s: %ld Mb, %lld byte\n"
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, c-format
msgid ""
"\n"
@@ -2668,17 +2695,17 @@ msgstr ""
"\n"
"Disk %s: %ld.%ld Gb, %lld byte\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr "%d hoveder, %d sektorer/spor, %d cylindre"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ", i alt %llu sektorer"
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
@@ -2687,7 +2714,7 @@ msgstr ""
"Enheder = %s af %d * %d = %d byte\n"
"\n"
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2695,23 +2722,23 @@ msgstr ""
"Intet at gre. Rkkeflgen er allerede korrekt.\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Opstart Start Slut Blokke Id System\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Enhed"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2719,7 +2746,7 @@ msgstr ""
"\n"
"Partitionstabellens indgange er ikke i disk-rkkeflge\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2730,93 +2757,93 @@ msgstr ""
"Disk %s: %d hoveder, %d sektorer, %d cylindre\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "Nr AF Hvd Sek Cyl Hvd Sek Cyl Start Str. ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Advarsel: partition %d indeholder sektor 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Partition %d: hovedet %d er strre end de maksimale %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Partition %d: sektor %d er strre end de maksimale %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Partitionerne %d: cylinder %d strre end de maksimale %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr "Partition %d: forrige sektorer %d stemmer ikke med totalen %d\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Advarsel: ugyldig start-p-data i partition %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Advarsel: partition %d overlapper med partition %d.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Advarsel: partition %d er tom\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "Logisk partition %d ikke fuldstndigt indenfor partition %d\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr ""
"Det totale antal allokerede sektorer %d er strre end de maksimale %lld\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, c-format
msgid "%lld unallocated sectors\n"
msgstr "%lld ikke-allokerede sektorer\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr ""
"Partition %d er allerede defineret. Slet den fr du tilfjer den igen.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Frste %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "Sektor %d er allerede allokeret\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Ingen tilgngelige frie sektorer\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Sidste %s eller +strrelse eller +strrelseM eller +strrelseK"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2828,23 +2855,23 @@ msgstr ""
"\ttilfje DOS-partitioner. (Brug o.)\n"
"\tADVARSEL: Dette vil delgge diskens nuvrende indhold.\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "Det maksimale antal partitioner er blevet oprettet\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr "Du m frst slette en partition og tilfje en udvidet partition\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
msgid "All logical partitions are in use\n"
msgstr "Samtlige logiske partitioner er i brug\n"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
msgid "Adding a primary partition\n"
msgstr "Tilfjer en primrpartition\n"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2855,20 +2882,20 @@ msgstr ""
" %s\n"
" p primr partition (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l logisk (5 eller derover)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e udvidet"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Ugyldigt partitionsnummer for type '%c'\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2876,11 +2903,11 @@ msgstr ""
"Partitionstabellen er ndret!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Kalder ioctl() for at genindlse partitionstabellen.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2893,7 +2920,7 @@ msgstr ""
"Denne kerne bruger stadig den gamle tabel.\n"
"Den nye tabel vil blive brugt fra nste genstart.\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2905,64 +2932,71 @@ msgstr ""
"yderligere information, hvis du har oprettet eller\n"
"ndret DOS 6.x partitioner.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Fejl ved lukning af %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Synkroniserer diske.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "Partition %d har intet dataomrde\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Ny begyndelse p data"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Ekspert kommando (m for hjlp): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Antal cylindre"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Antal hoveder"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Antal sektorer"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr "Advarsel: stter sektorforskydning for DOS-kompatilitet\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "Disk %s indeholder ikke en gyldig partitionstabel\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "Kunne ikke bne %s\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "kunne ikke bne %s\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: ukendt kommando\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr "Denne kerne finder selv sektorstrrelser - tilvalget -b ignoreres\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -2971,16 +3005,16 @@ msgstr ""
"enhed\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr "Detekterede et OSF/1 diskmrkat p %s. Gr i diskmrkat-tilstand.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Kommando (m for hjlp): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -2989,15 +3023,15 @@ msgstr ""
"\n"
"Den nuvrende opstartfil er: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Angiv venligt navnet p den ny opstartsfil: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "Opstartsfil undret\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3374,7 +3408,7 @@ msgstr "Linux swap"
msgid "Linux native"
msgstr "Linux' egen"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3703,7 +3737,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linux raid autodetekt"
@@ -4072,8 +4106,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4124,150 +4158,155 @@ msgstr "Linux udvidet"
msgid "NTFS volume set"
msgstr "NTFS bind-st"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "IBM Thinkpad dvale"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr "Darwin UFS"
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr "Darwin opstart"
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI fs"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI swap"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "Boot Wizard skjult"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr "Solaris opstart"
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
#, fuzzy
msgid "Solaris"
msgstr "Solaris opstart"
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "Ikke-filsystemdata"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Dell Vrktj"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS access"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS fs"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "Linux/PA-RISC opstart"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS sekundr"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5263,120 +5302,120 @@ msgstr "getopt (udvidet) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "intern fejl, kontakt programmren."
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "startede op med MILO\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "'Ruffian' BCD-ur\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "urport justeret til 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "'funky TOY' (tid-p-ret)!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: momentan %s mislykkedes i 1000 iterationer!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Kan ikke bne /dev/port: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
msgid "I failed to get permission because I didn't try.\n"
msgstr "Jeg kunne ikke f adgang fordi jeg ikke forsgte.\n"
-#: hwclock/cmos.c:601
+#: hwclock/cmos.c:602
#, 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:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Du behver nok root-rettigheder.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Antager at maskinuret holdes i %s tid.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "GMT"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "lokal"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Advarsel: ukendt tredie linje i adjtime-fil\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Forventet: 'UTC' (GMT), 'LOCAL' eller ingenting.)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Sidste hastighedsjustering blev gjort %ld sekunder efter 1969\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Sidste kalibrering blev foretaget %ld sekunder efter 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "Maskinuret er i %s-tid\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "ukendt"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "Venter p et ur-tik...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...fangede ur-tik\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr "Ugyldige vrdier i maskinur: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr "Maskinur-tid: %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld sekunder siden 1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Tid lst fra maskinuret: %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr "Stter maskinuret til %.2d:%.2d:%.2d = %ld sekunder siden 1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Uret undret - testede kun.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5385,7 +5424,7 @@ msgstr ""
"Der er get %.6f sekunder siden referencetiden.\n"
"Udskyder yderligere for at n til nste hele sekund.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5393,20 +5432,20 @@ msgstr ""
"Maskinurets registre indeholder vrdier, der enten er ugyldige (f.eks. 50. "
"dag i mneden) eller udenfor det omrde, vi kan hndtere (f.eks. r 2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f sekunder\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "Intet --date tilvalg angivet.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "parametret til --date er for langt\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5414,22 +5453,22 @@ msgstr ""
"Vrdien af --date tilvalget er ikke en gyldig dato.\n"
"Mere specifikt, indeholder den anfrselstegn.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Udfrer 'date'-kommandoen: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr ""
"Kunne ikke kre 'date'-programmet i /bin/sh skallen. popen() mislykkedes"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "svar fra 'date'-kommandoen = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5444,7 +5483,7 @@ msgstr ""
"Svaret var:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5461,12 +5500,12 @@ msgstr ""
"Svaret var:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "Datoteksten %s svarer til %ld sekunder siden 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5474,33 +5513,33 @@ msgstr ""
"Maskinuret indeholder ikke en gyldig tid, s vi kan ikke stte systemuret "
"med det.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "Kalder 'settimeofday':\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr "Stter ikke systemuret, da der kres i testtilstand.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Skal vre superbruger for at stte systemuret.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "settimeofday() mislykkedes"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5508,7 +5547,7 @@ msgstr ""
"Justerede ikke hastighedsfaktoren, da maskinuret tidligere havde en ugyldig "
"vrdi.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
@@ -5517,7 +5556,7 @@ msgstr ""
"og kan derfor ikke bruges. Det er ndvendigt at starte \n"
"kalibreringen forfra.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5525,7 +5564,7 @@ msgstr ""
"Justerede ikke hastighedsfaktoren, da det er mindre en et dgn siden sidste "
"kalibrering.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5536,21 +5575,21 @@ msgstr ""
"hastighedsfaktor p %f sekunder/dgn.\n"
"Justerer hastighedsfaktoren med %f sekunder/dgn\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "%d sekunder siden sidste justering\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr "Skal indstte %d sekunder og stille uret %.6f sekunder tilbage\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "Opdaterer ikke adjtime-filen, da der kres i testtilstand.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5559,35 +5598,35 @@ msgstr ""
"Ville have skrevet flgende til %s:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Hastighedsjusteringen blev ikke opdateret.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
"Maskinuret indeholder ikke en gyldig tid, s vi kan ikke justere det.\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr ""
"Den krvede justering er mindre end t sekund, s vi stter ikke uret.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Bruger %s.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Fandt ingen brugbare ur-grnseflader.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "Kunne ikke stte systemuret.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5598,16 +5637,16 @@ msgstr ""
"Denne kopi af hwclock blev kompileret til en anden maskine end Alpha\n"
"(og krer derfor sandsynligvis ikke p en Alpha nu). Intet blev gjort.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "Kunne ikke hente en epokevrdi fra kernen.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "Kernen gr ud fra en epokevrdi p %lu\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5615,16 +5654,16 @@ msgstr ""
"For at stte epokevrdien, skal du bruge tilvalget 'epoch' for at angive "
"hvilken vrdi, den skal sttes til\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "Stter IKKE epokevrdien til %d - tester bare.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "Kunne ikke stte epokevrdien i kernen.\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5683,7 +5722,7 @@ msgstr ""
" --noadjfile tilg ikke /etc/adjtime. Det krver, at der bruges\n"
" enten --utc eller --localtime\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5691,12 +5730,12 @@ msgstr ""
" --jensen, --arc, --srm, --funky-toy\n"
" angiv hvilken slags alpha du har (se hwclock(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s accepterer ingen parametre. Du angav parameteren %d.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
@@ -5704,7 +5743,7 @@ msgstr ""
"Du har angivet flere funktionstilvalg.\n"
"Du kan kun udfre n funktion ad gangen.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5712,7 +5751,7 @@ msgid ""
msgstr ""
"%s: Tilvalgene --utc og --localtime udelukker hinanden. Du angav begge.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5720,35 +5759,35 @@ msgid ""
msgstr ""
"%s: Tilvalgene --adjust og --noadjfile udelukker hinanden. Du angav begge.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr "%s: --noadjfile krver enten --utc or --localtime\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "Ingen brugbar set-til-tid. Kan ikke stte uret.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Beklager, kun superbrugeren kan ndre maskinuret.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Beklager, kun superbrugeren kan ndre systemuret.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
msgstr ""
"Beklager, kun superbrugeren kan ndre maskinurets epokevrdi i kernen.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr "Kan ikke tilg maskinuret med nogen kendt metode.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
@@ -5756,102 +5795,102 @@ msgstr ""
"Benyt tilvalget --debug for at se detaljerne fra vores sgning efter en "
"tilgangsmetode.\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Venter i en lkke for at tiden fra KDGHWCLK ndres\n"
-#: hwclock/kd.c:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK ioctl for at aflse tiden mislykkedes"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Tidsudlb mens der ventedes p tidsndring.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK ioctl for at aflse tiden mislykkedes i lkke"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() kunne ikke aflse tiden fra %s"
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "KDGHWCLK-ioctl mislykkedes"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Kunne ikke bne /dev/tty1 eller /dev/vc/1"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK ioctl mislykkedes"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "open() af %s mislykkedes"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "ioctl() til %s for at aflse tiden mislykkedes.\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Venter i lkke p at tiden fra %s ndres\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s har ingen interrupt-funktioner. "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "read() af %s for at afvente et ur-tik mislykkedes"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "select() til %s for at afvente et ur-tik mislykkedes"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "select() af %s for at afvente p en ur-tik udlb\n"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "ioctl() til %s for at afbryde opdaterings-interrupts mislykkedes"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr ""
"ioctl() til %s for at afbryde opdaterings-interrupts mislykkedes uventet"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "ioctl() til %s for at stte tiden mislykkedes.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "ioctl(%s) lykkedes.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "bning af %s mislykkedes"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5862,17 +5901,17 @@ msgstr ""
"maskinursenhed via enhedsspecialfilen '%s'. Denne fil eksisterer ikke p "
"dette system.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "Kunne ikke bne %s"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "ioctl(RTC_EPOCH_READ) til %s mislykkedes"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr "vi har aflst epokevrdi %ld fra %s med RTC_EPOCH_READ ioctl.\n"
@@ -5880,23 +5919,23 @@ msgstr "vi har aflst epokevrdi %ld fra %s med RTC_EPOCH_READ ioctl.\n"
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr "Epokevrdien m ikke vre mindre end 1900. Du bad om %ld\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "stter epokevrdien til %ld med en RTC_EPOCH_SET ioctl til %s.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr "Kernens enheds-driver for %s har ikke en RTC_EPOCH_SET ioctl.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "ioctl(RTC_EPOCH_SET) til %s mislykkedes"
@@ -6111,7 +6150,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Adgangskode: "
@@ -6913,36 +6952,36 @@ msgstr "Afmonterer resterende filsystemer..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: Kunne ikke afmontere %s: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Starter op i enkeltbrugertilstand.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr "udfrelse af enkeltbruger-skal mislykkedes\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "forgrening af enkeltbruger-skal mislykkedes\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "fejl ved bning af fifo\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr "fejl under stning af close-on-exec p /dev/initctl"
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "fejl ved krsel af finalprog\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "fejl ved forsg p at spalte processen finalprog\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -6950,35 +6989,35 @@ msgstr ""
"\n"
"Forkert password.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "kunne ikke finde sti med lstat\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "kunne ikke finde sti\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "kunne ikke bne mappe\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "forgrening mislykkedes\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "programkrsel mislykkedes\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "kunne ikke bne inittab\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "ingen TERM eller kunne ikke finde tty\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "fejl ved forsg p at stoppe tjenesten: \"%s\""
@@ -7550,17 +7589,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:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "advarsel: fejl ved lsning af %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "advarsel: kunne ikke bne %s: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: kunne ikke bne %s - bruger %s i stedet\n"
@@ -7569,36 +7608,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:472
+#: mount/fstab.c:484
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr "kunne ikke oprette lsefil %s: %s (gennemtving med flaget -n)"
-#: mount/fstab.c:487
+#: mount/fstab.c:499
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr "kunne ikke lnke lsefilen %s: %s (gennemtving med flaget -n)"
-#: mount/fstab.c:499
+#: mount/fstab.c:511
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr "kunne ikke bne lsefilen %s: %s (gennemtving med flaget -n)"
-#: mount/fstab.c:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Kunne ikke lse lsefilen %s: %s\n"
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "kunne ikke lse lsefilen %s: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "tidsoverlb"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7607,22 +7646,22 @@ msgstr ""
"Kunne ikke oprette lnken %s\n"
"Mske er der en efterladt lsefil?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "kunne ikke bne %s (%s) - mtab ikke opdateret"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "fejl ved skrivning af %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "fejl ved ndring af filmodus for %s: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "kunne ikke omdbe %s til %s: %s\n"
@@ -7690,27 +7729,27 @@ msgstr "mount: kunne ikke finde nogen ledig loop-enhed"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Kunne ikke lse ind i hukommelsen, afslutter.\n"
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%llu): lykkedes\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: kunne ikke slette enheden %s: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): lykkedes\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
"Denne 'mount' er oversat uden loop-understttelse. Genoverst venligst.\n"
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, fuzzy, c-format
msgid ""
"usage:\n"
@@ -7724,12 +7763,11 @@ msgstr ""
" %s -d loop_enhed # slet\n"
" %s [ -e kryptering ] [ -o forskydning ] loop_enhed fil # klargr\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "ikke nok hukommelse"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Der var ingen loop-understttelse tilgngelig ved oversttelsen. Genoverst "
@@ -7750,163 +7788,163 @@ msgstr "[mntent]: linje %d i %s er ugyldig%s\n"
msgid "; rest of file ignored"
msgstr "; resten af filen blev ignoreret"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: iflge mtab er %s allerede monteret som %s"
-#: mount/mount.c:380
+#: mount/mount.c:387
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: iflge mtab er %s monteret som %s"
-#: mount/mount.c:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: kunne ikke bne %s for skrivning: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: fejl ved skrivning til %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: fejl ved ndring af filmodus for %s: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s ligner et swap-omrde - ikke monteret"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "montering mislykkedes"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: kun root kan montere %s som %s"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: loop-enheden angivet to gange"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: type angivet to gange"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: dropper opstning af loop-enhed\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, 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:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: klargring af loop-enhed mislykkedes\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: klargringen af loop-enhed lykkedes\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: kunne ikke bne %s: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: argumentet til -p eller --pass-fd skal vre et tal"
-#: mount/mount.c:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: kunne ikke bne %s for at stte hastigheden"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: kunne ikke stte hastigheden: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: kunne ikke forgrene: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: denne version blev oversat uden understttelse for 'nfs'-typen"
-#: mount/mount.c:884
+#: mount/mount.c:891
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: montering af nfs version 4 mislykkedes, prver version 3..\n"
-#: mount/mount.c:895
+#: mount/mount.c:902
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:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: du skal angive filsystemtypen"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: montering mislykkedes"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: monteringspunkt %s er ikke en mappe"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: adgang ngtet"
-#: mount/mount.c:911
+#: mount/mount.c:918
msgid "mount: must be superuser to use mount"
msgstr "mount: skal vre superbruger for at bruge 'mount'"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s er optaget"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc er allerede monteret"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: enten er %s allerede monteret eller %s optaget"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: monteringspunkt %s eksisterer ikke"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: monteringspunkt %s er en symbolsk lnke ud i ingenting"
-#: mount/mount.c:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: specialenhed %s eksisterer ikke"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7915,65 +7953,83 @@ msgstr ""
"mount: specialenhed %s eksisterer ikke\n"
" (en sti er ikke en mappe)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s ikke allerede monteret, eller forkert tilvalg"
-#: mount/mount.c:959
+#: mount/mount.c:966
#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: forkert filsystemtype, forkert tilvalg, ugyldig superblok p %s,\n"
" eller for mange monterede filsystemer"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "monteringstabellen er fuld"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: kunne ikke lse superblokken"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: ukendt enhed"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr "mount: ukendt filsystemtype'%s'"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: du mente sikkert %s"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: mske mente du 'iso9660'?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: mske mente du 'vfat'?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
"mount: %s har forkert enhedsnummer eller filsystemtypen %s understttes ikke"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, 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:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -7982,47 +8038,47 @@ msgstr ""
"mount: kernen genkender ikke %s som en blokenhed\n"
" (mske hjlper 'insmod enheds-driver'?)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, 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:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s er ikke en blokenhed"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "blokenhed "
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: kunne ikke montere %s%s skrivebeskyttet"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, 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:1066
+#: mount/mount.c:1078
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s er skrivebeskyttet, monterer skrivebeskyttet"
-#: mount/mount.c:1165
+#: mount/mount.c:1177
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:1171
+#: mount/mount.c:1183
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 "
@@ -8031,22 +8087,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: krer \"%s\" i baggrunden\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: opgiver \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s er allerede monteret som %s\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8092,48 +8148,48 @@ msgstr ""
"Andre tilvalg: [-nfFrsvw] [-o tilvalg] [-p adgangskodefd].\n"
"se mange flere detaljer med 'man 8 mount'.\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: dette kan kun root gre"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: ingen %s fundet - opretter den..\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: fandt ingen sdan partition"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: monterer %s\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "intet blev monteret"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: kunne ikke finde %s i %s"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: kunne ikke finde %s i %s eller %s"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount: kunne ikke bne %s, s UUID- og MRKEkonvertering kan ikke "
"gennemfres.\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: ugyldig UUID"
#: mount/mount_guess_fstype.c:489
@@ -8249,16 +8305,16 @@ msgstr "NFS-forbindelse"
msgid "unknown nfs status return value: %d"
msgstr "ukendt NFS-statusvrdi: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "programfejl i xstrndup-kald"
-#: mount/swapon.c:54
-#, c-format
+#: mount/swapon.c:57
+#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"brug: %s [-hV]\n"
@@ -8266,7 +8322,7 @@ msgstr ""
" %s [-v] [-p prioritet] speciel ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8277,31 +8333,36 @@ msgstr ""
" %s -a [-v]\n"
" %s [-v] speciel ...\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s p %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: kunne ikke finde \"_stext\" i %s\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: kan ikke finde %s: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr "swapon: advarsel: %s har usikre filrettigheder %04o, %04o anbefales\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: Dropper filen %s - den lader til at vre fragmenteret.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr "Ikke superbruger.\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: kunne ikke bne %s: %s\n"
@@ -8410,42 +8471,48 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t vfstyper] [-O tilvalg]\n"
" umount [-f] [-r] [-n] [-v] speciel | knude...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "Kunne ikke bne "
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "Forsger at afmontere %s\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Kunne ikke finde %s i mtab\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s er ikke monteret (iflge mtab)"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, 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:587
+#: mount/umount.c:592
#, 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:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s montering stemmer ikke med fstab"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: kun %s kan afmontere %s fra %s"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: dette kan kun root gre"
@@ -9954,9 +10021,6 @@ msgstr "Lb tr for hukommelse under forstrring af buffer.\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "mrke"
-
#~ msgid "mount: the label %s occurs on both %s and %s - not mounted\n"
#~ msgstr "mount: mrket %s optrde bde p %s og %s - ikke monteret\n"
diff --git a/po/de.po b/po/de.po
index 210d916b3..2c4b4ac3a 100644
--- a/po/de.po
+++ b/po/de.po
@@ -44,7 +44,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12j\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+0100\n"
"PO-Revision-Date: 2004-12-13 14:51 +0100\n"
"Last-Translator: Michael Piefel <piefel@informatik.hu-berlin.de>\n"
"Language-Team: German <de@li.org>\n"
@@ -195,7 +195,7 @@ msgstr "Aufruf: %s [ -n ] Gerät\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -805,7 +805,7 @@ msgstr "zu viele Inodes – Maximum ist 512"
msgid "not enough space, need at least %lu blocks"
msgstr "nicht genügend Platz; es werden wenigstens %lu Blöcke benötigt"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Gerät: %s\n"
@@ -878,7 +878,7 @@ msgstr "Fehler beim Schließen von %s"
msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr "Aufruf: mkfs [-V] [-t FS-Typ] [FS-Optionen] Gerät [Größe]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1116,7 +1116,7 @@ msgstr "Seek fehlgeschlagen während Blocküberprüfung"
msgid "Weird values in do_check: probably bugs\n"
msgstr "Merkwürdige Werte in do_check: wahrscheinlich Fehler\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "Seek fehlgeschlagen in check_blocks"
@@ -1173,66 +1173,90 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Es wird eine Seitengröße von %d (nicht %d) angenommen.\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+# dito
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "Label"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Aufruf: %s [-c] [-v0|-v1] [-pSEITENGRÖSSE] /dev/Name [Größe in kB]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "Zu viele beschädigte „Seiten“"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Speicher ist aufgebraucht"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "Eine beschädigte „Seite“\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, c-format
msgid "%lu bad pages\n"
msgstr "%lu beschädigte Seiten\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr ""
"%s: Es wurde nicht angegeben, wo der Swapbereich angelegt werden soll.\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr ""
"%s: Fehler: Die angegebene Größe %lu ist größer als die des Gerätes: %lu\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: Fehler: unbekannte Version %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: Fehler: Der Swapbereich muss mindestens %ldkB groß sein\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: Warnung: Der Swapbereich wird nur mit der Größe %ldkB angelegt\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr ""
+"%s: Es wurde nicht angegeben, wo der Swapbereich angelegt werden soll.\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "Es wird nicht versucht, Swap auf ‚%s‘ anzulegen"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "fatal: erste Seite nicht lesbar"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1246,24 +1270,24 @@ msgstr ""
"Es wird kein Swapbereich angelegt. Wenn Sie wirklich einen Swapbereich\n"
"anlegen wollen, so benutzen Sie die Option -f.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "Es ist nicht möglich, einen Swapbereich einzurichten: nicht lesbar"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Swapbereich Version %d wird angelegt, Größe %llu KBytes\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "kann Swap-Gerät nicht zurückspulen"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "kann Signaturseite nicht schreiben"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "Aufruf von „fsync“ fehlgeschlagen"
@@ -1306,57 +1330,62 @@ msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] Gerät\n"
# "Unbrauchbar"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Unbenutzbar"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Freier Bereich"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Festplatte wurde verändert.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Rebooten Sie das System, um sicherzustellen, dass die Partitionstabelle neu "
"gelesen wird.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1368,246 +1397,246 @@ msgstr ""
"oder verändert haben, dann schauen Sie bitte in die\n"
"cfdisk-manual-Seite nach weiteren Informationen\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "FATALER FEHLER"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Eine Taste drücken, um cfdisk zu beenden"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Konnte „seek()“ nicht auf der Festplatte benutzen"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "Konnte nicht von der Festplatte lesen"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "Konnte nicht auf die Festplatte schreiben"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Zu viele Partitionen"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "Partition fängt vor Sektor 0 an"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "Partition endet vor Sektor 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "Partition fängt hinter dem Ende der Festplatte an"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "Partition endet hinter dem Ende der Festplatte"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr "Partition endet im letzten teilweisen Zylinder"
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "logische Partitionen nicht in Platten-Reihenfolge"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "logische Partitionen überlappen"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "vergrößerte logische Partitionen überlappen"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!! Interner Fehler beim Erzeugen einer log. Part. ohne eine erw. Part. !!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"Kann hier keine log. Part. anlegen -- eine zweite erw. müsste erzeugt werden."
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Menüeintrag ist zu lang. Das Menü könnte ungewöhnlich aussehen"
# "Ausrichtung" "Nehme horizontale Voreinstellung."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Menü ohne Richtung, verwende horizontal."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Diese Taste ist hier nicht verwendbar"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Eine Taste drücken, um fortzufahren"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primäre"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Erzeuge eine neue primäre Partition"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Logische"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Erzeuge eine neue logische Partition"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Abbruch"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "Erzeuge keine neue Partition"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Interner Fehler !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Größe (in MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Anfang"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Erzeuge Partition am Anfang des freien Bereiches"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Ende"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Erzeuge Partition am Ende des freien Bereiches"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Kein Platz, um die erweiterte Partition anzulegen"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
msgid "No partition table.\n"
msgstr "Keine Partitionstabelle.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
msgid "No partition table. Starting with zero table."
msgstr "Keine Partitionstabelle. Fange mit Null-Tabelle an."
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
msgid "Bad signature on partition table"
msgstr "Ungültige Signatur an Partitionstabelle"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
msgid "Unknown partition table type"
msgstr "Unbekannter Partitionstabellentyp"
# If rpmatch is available, ‘j’ for “ja” will do. If not, my translation
# is wrong. Anyway, I opt for a full-featured C library.
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Möchten Sie mit einer Null-Tabelle beginnen [j/N]"
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
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:1606
+#: fdisk/cfdisk.c:1655
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:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
#, fuzzy
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:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "Konnte die Größe der Festplatte nicht feststellen"
# "Ungültige primäre Partition"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Beschädigte primäre Partition"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Beschädigte logische Partition"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Warnung!! Dies kann Daten auf der Festplatte zerstören!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
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:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "nein"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "Die Partitionstabelle wurde nicht auf die Festplatte geschrieben"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "ja"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Bitte „ja“ oder „nein“ eingeben"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Die Partitionstabelle wird auf die Festplatte geschrieben..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
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:1847
+#: fdisk/cfdisk.c:1896
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:1857
+#: fdisk/cfdisk.c:1906
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:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
@@ -1616,76 +1645,76 @@ msgstr ""
# "Geben sie einen Dateinamen ein oder drücken Sie Return, um es auf dem Bildschirm anzuzeigen: "
# is too long
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Dateiname oder Return um es auf dem Bildschirm anzuzeigen: "
-#: fdisk/cfdisk.c:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "Konnte „%s“ nicht öffnen"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Festplatte: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Keine "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primäre"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Logische"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Unbekannt"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Boot"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
msgid "None"
msgstr "Kein"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Partitionstabelle von %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
msgid " First Last\n"
msgstr " Erster Letzter\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1693,7 +1722,7 @@ msgstr ""
" # Typ Sektor Sektor Offset Länge Dateisystemtyp (ID) "
"Flags\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1702,491 +1731,491 @@ msgstr ""
"-----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Anfangs---- -----End------ Anfangs- Anzahl der\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
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:2144
+#: fdisk/cfdisk.c:2193
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "„Roh“"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Die „rohen“ Daten der Tabelle ausgeben"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Sektoren"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Die Tabelle nach Sektoren sortiert ausgeben"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Tabelle"
# "Nur die Partitionstabelle ausgeben" (joey)
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Einfach die Tabelle ausgeben"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "Zeige die Tabelle nicht an"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Hilfe für cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
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:2211
+#: fdisk/cfdisk.c:2260
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:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "und zu verändern."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
# "Befehl"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Befehl Bedeutung"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "-------- ---------"
# " b Wechselt zwischen bootfähig und nicht bootfähig."
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr ""
" b (De)Aktivieren des bootfähig-flags der aktuellen Partition"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Die aktuelle Partition löschen"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
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:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " WARNUNG: Diese Funktion sollte nur von Leuten benutzt"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " werden, die wissen, was sie tun."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Diese Hilfe anzeigen"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximieren der Nutzung der aktuellen Partition"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr ""
" Beachten Sie, dass dies die Partition nicht mehr kompatibel"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " zu DOS, OS/2, ... machen kann"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Aus dem freien Bereich eine neue Partition erzeugen"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
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:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Es gibt mehrere Formate für die Partitionstabelle, aus"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " denen man wählen kann"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
#, fuzzy
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:2232
+#: fdisk/cfdisk.c:2281
#, fuzzy
msgid " s - Table ordered by sectors"
msgstr " s – Tabelle nach Sektoren sortiert"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
#, fuzzy
msgid " t - Table in raw format"
msgstr " t – Tabelle mit den reinen Daten"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr ""
" q Das Programm beenden ohne die Partitionstabelle zu schreiben"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Den Dateisystemtyp ändern"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u Einheit für die Größenanzeige ändern"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Wechselt zwischen MB, Sektoren und Zylindern"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
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:2239
+#: fdisk/cfdisk.c:2288
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:2240
+#: fdisk/cfdisk.c:2289
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:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " ablehnen"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Pfeil-hoch Den Cursor zur vorherigen Partition bewegen"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
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:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "Strg-L Zeichnet den Bildschirm erneut"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Diese Hilfe anzeigen"
# "Hinweis"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
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:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "eingegeben werden (außer W zum Schreiben)."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr " Zylinder"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Die Anzahl der Zylinder ändern"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Köpfe"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Die Anzahl der Köpfe ändern"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Die Anzahl der Sektoren pro Spur ändern"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Fertig"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Ändern der Geometrie beenden"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Geben Sie die Anzahl der Zylinder ein: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Ungültiger Wert für die Anzahl der Zylinder"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Geben Sie die Anzahl der Köpfe ein: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Ungültiger Wert für die Anzahl der Köpfe"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Geben Sie die Anzahl der Sektoren pro Spur ein: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Ungültiger Wert für die Anzahl der Sektoren"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Geben Sie den Dateisystemtyp ein: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "Der Dateisystemtyp kann nicht auf „leer“ gesetzt werden"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "Der Dateisystemtyp kann nicht auf „erweitert“ gesetzt werden"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Unb(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Unbekannt (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Festplatte: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Größe: %lld Bytes, %lld MB"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Größe: %lld Bytes, %lld,%lld GB"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Köpfe: %d Sektoren pro Spur: %d Zylinder: %lld"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Name"
# I currently don't know a better translation
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Flags"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Part. Typ"
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Dateisystemtyp"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Bezeichner]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
msgid " Sectors"
msgstr " Sektoren"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
msgid " Cylinders"
msgstr " Zylinder"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
msgid " Size (MB)"
msgstr " Größe (MB)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
msgid " Size (GB)"
msgstr " Größe (GB)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr " Bootbar"
# "Bootfähigkeit der aktuellen Partition ändern" (joey)
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "(De)Aktivieren des bootfähig-flags der aktuellen Partition"
# "Löschen"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Löschen"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Die aktuelle Partition löschen"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometrie"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Die Festplattengeometrieparameter ändern (nur für Experten)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Hilfe"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Die Hilfe anzeigen"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Maxim."
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Maximieren der Nutzung der aktuellen Partition (nur für Experten)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Neue"
# "Erzeuge aus dem freien Bereich eine neue Partition"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Neue Partition im freiem Bereich anlegen"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Ausgabe"
# "Gib die Partitionstabelle auf dem Bildschirm oder in eine Datei aus"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print partition table to the screen or to a file"
msgstr "Partitionstabelle auf dem Bildschirm oder in Datei ausgeben"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Ende"
# "Beende das Programm ohne die Partitionstabelle zu schreiben"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Das Programm beenden, ohne die Partitionstabelle zu speichern"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Typ"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
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:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Einheit."
# "Ändert die Einheiten der Größenanzeige ("
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
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:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Schreib."
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr "Die Partitionstabelle schreiben (dies kann Daten zerstören)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "Diese Partition kann nicht als bootfähig markiert werden"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "Eine leere Partition kann nicht gelöscht werden"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "Die Nutzung dieser Partition kann nicht maximiert werden"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Diese Partition ist unbenutzbar"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Diese Partition ist bereits in Benutzung"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "Der Dateisystemtyp einer leeren Partition kann nicht geändert werden"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "Keine weiteren Partitionen"
# "Ungültige Taste"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Unzulässiger Befehl"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2466,20 +2495,20 @@ msgstr " f Partitionsreihenfolge korrigieren"
msgid "You must set"
msgstr "Sie müssen angeben"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "Köpfe"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "Sektoren"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "Zylinder"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2488,11 +2517,11 @@ msgstr ""
"%s%s.\n"
"Sie können dies im Zusatzfunktionsmenü tun.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " und "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2511,28 +2540,28 @@ msgstr ""
"2) Boot- und Partitionierungssoftware anderer Betriebssysteme\n"
" (z. B. DOS FDISK, OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Ungültiges Offset in primärer erweiterter Partition\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Warnung: zusätzlicher Link-Pointer in Partitionstabelle %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr "Warnung: ignoriere weitere Daten in Partitionstabelle %d\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2546,17 +2575,17 @@ msgstr ""
"vorherige Inhalt unrettbar verloren.\n"
"\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Hinweis: Die Sektorgröße ist %d (nicht %d)\n"
# XXX
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "Sie werden die Partitionstabelle nicht schreiben können.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
@@ -2564,7 +2593,7 @@ msgstr ""
"Diese Platte hat sowohl DOS- als auch BSD-Magic.\n"
"Nutzen Sie den „b“-Befehl, um in den BSD-Modus zu gehen.\n"
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
@@ -2572,16 +2601,16 @@ msgstr ""
"Das Gerät enthält weder eine gültige DOS-Partitionstabelle,\n"
"noch einen „Sun“, „SGI“ oder „OSF disklabel“\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Interner Fehler\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "Die zusätzliche erweiterte Partition %d ignorieren\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2590,7 +2619,7 @@ msgstr ""
"Warnung: Schreiben wird ungültiges Flag 0x%04x in Part.-tabelle %d "
"korrigieren\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
#, fuzzy
msgid ""
"\n"
@@ -2599,78 +2628,78 @@ msgstr ""
"\n"
"dreimalig EOF bekommen – beende...\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Hex code (L um eine Liste anzuzeigen): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%u-%u, Vorgabe: %u): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, c-format
msgid "Using default value %u\n"
msgstr "Benutze den Standardwert %u\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Wert außerhalb des Bereichs.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Partitionsnummer"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Warnung: Partition %d hat leeren Typ\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, c-format
msgid "Selected partition %d\n"
msgstr "Partition %d ausgewählt\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
msgid "No partition is defined yet!\n"
msgstr "Noch keine Partition definiert!\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr "Alle primären Partitionen sind schon definiert worden!\n"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "Zylinder"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "Sektor"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Die Einheit für die Anzeige/Eingabe ist nun %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "WARNUNG: Partition %d ist eine erweiterte Partition\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "DOS-Kompatibilitätsflag ist gesetzt\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "DOS-Kompatibilitätsflag ist nicht gesetzt\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "Partition %d existiert noch nicht!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2682,7 +2711,7 @@ msgstr ""
"ist wahrscheinlich unklug. Sie können eine Partition\n"
"mit dem „d“-Kommando löschen.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2690,7 +2719,7 @@ msgstr ""
"Es ist nicht möglich, eine Partition in eine Erweiterte zu ändern oder\n"
"umgekehrt. Bitte löschen Sie die Partition zuerst.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2700,7 +2729,7 @@ msgstr ""
"zu lassen, wie es SunOS/Solaris erwartet und sogar Linux es mag.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2711,52 +2740,52 @@ msgstr ""
"als gesamte Platte zu lassen, wie es IRIX erwartet.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "Der Dateisystemtyp der Partition %d ist nun %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr "Partition %d hat unterschiedliche phys./log. Anfänge (nicht-Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " phys=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "logisch=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "Partition %d hat unterschiedliche phys./log. Enden:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "Partition %i beginnt nicht an einer Zylindergrenze:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "sollte sein (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "Partition %i endet nicht an einer Zylindergrenze.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "sollte sein (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
@@ -2765,7 +2794,7 @@ msgstr ""
"\n"
"Platte %s: %ld MByte, %lld Byte\n"
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, c-format
msgid ""
"\n"
@@ -2774,17 +2803,17 @@ msgstr ""
"\n"
"Platte %s: %ld.%ld GByte, %lld Byte\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr "%d Köpfe, %d Sektoren/Spuren, %d Zylinder"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ", zusammen %llu Sektoren"
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
@@ -2793,7 +2822,7 @@ msgstr ""
"Einheiten = %s von %d × %d = %d Bytes\n"
"\n"
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2801,7 +2830,7 @@ msgstr ""
"Keine Änderungen notwendig. Die Anordnung ist schon korrekt.\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
@@ -2815,16 +2844,16 @@ msgstr ""
# " Device"
# " Gerät"
# 2002-05-10 12:15:13 CEST -ke-
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s boot. Anfang Ende Blöcke Id System\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Gerät"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2832,7 +2861,7 @@ msgstr ""
"\n"
"Partitionstabelleneinträge sind nicht in Platten-Reihenfolge\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2845,93 +2874,93 @@ msgstr ""
# Ist "Kp" eine gute Abkürzung für "Kopf" ?
# Kf ist besser (2001-11-24 21:30:51 CET -ke-)
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "Nr AF Kp Sek Zyl Kp Sek Zyl Anfang Größe ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Warnung: Partition %d enthält Sektor 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Partition %d: Kopf %d größer als Maximum %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Partition %d: Sektor %d größer als Maximum %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Partition %d: Zylinder %d größer als Maximum %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr "Partition %d: verheriger Sektor %d widerspricht sich mit gesamt %d\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Warnung: ungültiger Anfang-der-Daten in Partition %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Warnung: Partition %d überlappt mit Partition %d.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Warnung: Partition %d ist leer\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr ""
"Logische Partition %d ist nicht vollständig in Partition %d enthalten\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "Gesamtanzahl belegter Sektoren %d größer als Maximum %lld\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, c-format
msgid "%lld unallocated sectors\n"
msgstr "%lld unbenutzte Sektoren\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr "Partition %d ist schon festgelegt. Vor Wiederanlegen bitte löschen.\n"
# %s can be "Sektor" or "Zylinder".
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Erster %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "Sektor %d wird bereits benutzt\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Es sind keine freien Sektoren verfügbar\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Letzter %s oder +Größe, +GrößeK oder +GrößeM"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2943,24 +2972,24 @@ msgstr ""
"\tzuerst eine neue, leere DOS-Partitionstabelle (mit o).\n"
"\tWARNUNG: Das zerstört den momentanen Inhalt Ihrer Platte.\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "Die maximale Anzahl von Partitionen wurde erzeugt\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr "Sie müssen erst eine Partion löschen und eine erweiterte anlegen.\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
msgid "All logical partitions are in use\n"
msgstr "Alle logischen Partitionen sind in Benutzung\n"
# "Ungültige primäre Partition"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
msgid "Adding a primary partition\n"
msgstr "Füge primäre Partition hinzu\n"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2971,20 +3000,20 @@ msgstr ""
" %s\n"
" p Primäre Partition (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l Logische Partition (5 oder größer)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e Erweiterte"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Ungültige Partitionsnummer für den Typ „%c“\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2992,11 +3021,11 @@ msgstr ""
"Die Partitionstabelle wurde verändert!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Rufe ioctl() um Partitionstabelle neu einzulesen.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -3009,7 +3038,7 @@ msgstr ""
"Der Kernel benutzt noch die alte Tabelle.\n"
"Die neue Tabelle wird beim nächsten Neustart verwendet.\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -3021,65 +3050,72 @@ msgstr ""
"oder verändert haben, dann schauen Sie bitte in die\n"
"fdisk-manual-Seite nach weiteren Informationen\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Fehler beim Schließen von %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Synchronisiere Platten.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "Partition %d hat keinen Datenbereich\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Neuer Datenanfang"
# That sounds pretty ummm...
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Expertenkommando (m für Hilfe): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Anzahl der Zylinder"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Anzahl der Köpfe"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Anzahl der Sektoren"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr "Warnung: setze Sektoren-Offset für DOS-Kompatibilität\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "Festplatte %s enthält keine gültige Partitionstabelle\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "Konnte %s nicht öffnen\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "Konnte %s nicht öffnen\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: Unbekannter Befehl\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr "Dieser Kernel stellt Sektorengröße selbst fest – Option -b ignoriert\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -3088,16 +3124,16 @@ msgstr ""
"angegebenen Gerät benutzt werden\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr "Ein ODF/1-Disklabel auf %s entdeckt, gehe in Disklabel-Modus.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Befehl (m für Hilfe): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -3106,15 +3142,15 @@ msgstr ""
"\n"
"Momentane Bootdatei ist: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Bitte geben Sie den Namen der neuen Boot-Datei an: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "Boot-Datei unverändert\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3493,7 +3529,7 @@ msgstr "Linux Swap"
msgid "Linux native"
msgstr "Linux native"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3831,7 +3867,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linux raid autodetect"
@@ -4183,8 +4219,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4235,149 +4271,154 @@ msgstr "Linux erweitert"
msgid "NTFS volume set"
msgstr "NTFS volume set"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "IBM Thinkpad hibernation"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr "Darwin UFS"
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr "Darwin boot"
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI fs"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI swap"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "Boot Wizard versteckt"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr "Solaris boot"
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
msgid "Solaris"
msgstr "Solaris"
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "Nicht-DS-Daten"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Dell Utility"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS access"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS fs"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "Linux/PA-RISC boot"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS sekundär"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5339,45 +5380,45 @@ msgstr "getopt (enhanced) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "Interner Fehler, kontaktieren Sie den Autor."
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "von MILO gebootet\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Bösartige BCD-Uhr\n"
# Egger
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "Uhrport auf 0x%x gestellt\n"
# debug
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "„funky TOY“!\n"
# The second %s can be:
# "clock read"
# "set time"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomares „%s“ schlug bei 1000 Iterationen fehl!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Konnte /dev/port nicht öffnen: %s"
# Egger, not really nice
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
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:601
+#: hwclock/cmos.c:602
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr ""
@@ -5385,52 +5426,52 @@ msgstr ""
# This is not the correct translation, but it
# explains the situation better.
-#: hwclock/cmos.c:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Sie benötigen root-Rechte.\n"
# debug
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Die Hardwareuhr läuft vermutlich in %s.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "lokaler Zeit"
# merge with next
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Warnung: Unbekannte dritte Zeile in der adjtime-Datei\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Erwartet: „UTC“ oder „LOCAL“ oder nichts.)\n"
# XXX
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Letzte Abweichungskorrektur vorgenommen bei %ld Sekunden nach 1969\n"
# XXX
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Letzte Kalibrierung vorgenommen bei %ld Sekunden nach 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "Hardwareuhr geht nach %s Zeit\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "unbekannter"
@@ -5439,42 +5480,42 @@ msgstr "unbekannter"
# kein sendeausfall... ich wart nur auf das anbrechen der nächsten für mich
# relevanten zeiteinheit.
# Egger
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "Warte auf Uhrtick...\n"
# Egger
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "... erhielt Uhrtick\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr "Ungültige Werte in Hardwareuhr: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Zeit der Hardwareuhr: %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld Sekunden seit 1969\n"
# Egger
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Zeit gelesen aus Hardwareuhr: %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr "Stelle die Hardwareuhr auf %.2d:%.2d:%.2d = %ld Sekunden seit 1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Die Uhrzeit der Hardwareuhr wurde nicht verstellt – Testmodus.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5486,7 +5527,7 @@ msgstr ""
# Die Registereinträge der Hardwareuhr enthalten Werte, die ungültig
# sind (z.B. der 50. Tag des Monats) oder ausserhalb des unterstützen
# Bereiches (z.B. das Jahr 2095) liegen.
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5495,21 +5536,21 @@ msgstr ""
"Monats), oder die Werte liegen außerhalb des Bereiches, der unterstützt\n"
"wird (z.B. das Jahr 2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f Sekunden\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "Es wurde keine „--date“-Option angegeben.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "--date-Argument zu lang\n"
# The english version is already a little misleading.
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5517,21 +5558,21 @@ msgstr ""
"Der Wert der „--date“-Option ist kein gültiges Datum.\n"
"Es darf kein Anführungszeichen enthalten.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Der „date“-Befehl wird aufgerufen: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr "Konnte „date“ nicht in der /bin/sh-Shell starten. popen() schlug fehl"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "Ausgabe des „date“-Befehls: %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5547,7 +5588,7 @@ msgstr ""
"Die Ausgabe war:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5565,12 +5606,12 @@ msgstr ""
" %s\n"
# Egger, fixed %s->%d
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "Die Zeichenkette %s entspricht %ld Sekunden seit 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5579,37 +5620,37 @@ msgstr ""
"es nicht möglich, die Systemzeit zu setzen.\n"
# debug
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "settimeofday() wird aufgerufen:\n"
# not much to translate
# debug
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
# not much to translate
# debug
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr "Keine Änderung an der Systemuhr vorgenommen – Testmodus.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Sie müssen root sein, um die Systemuhr zu verändern.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "settimeofday() schlug fehl"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5617,7 +5658,7 @@ msgstr ""
"Der Driftfaktor wird nicht verändert, da die Hardwareuhr vorher keinen "
"sinnvollen Wert enthielt.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
@@ -5627,7 +5668,7 @@ msgstr ""
"ist, also die Aufzeichnungen beschädigt sind und die Kalibrierung von neuem\n"
"starten muss.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5636,7 +5677,7 @@ msgstr ""
"letzten Kalibrierung vergangen ist.\n"
# Egger
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5648,13 +5689,13 @@ msgstr ""
"Der Faktor wird um %4$f Sekunden/Tag geändert.\n"
# Egger
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "Es vergingen %d Sekunden seit der letzten Anpassung.\n"
# Egger
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr ""
@@ -5662,13 +5703,13 @@ msgstr ""
"Sekunden zugegriffen werden\n"
# merge with next
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "Die adjtime Datei wird nicht aktualisiert – Testmodus \n"
# "Hätte das folgende in die Datei %s geschrieben:\n"
# passiv, Konjunktiv in der Umschreibungsform
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5678,12 +5719,12 @@ msgstr ""
"%s"
# "Abweichungsparameter"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Die Abweichungsparameter wurden nicht verändert.\n"
# "anpassen"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
@@ -5691,28 +5732,28 @@ msgstr ""
"werden.\n"
# "Justierung"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr ""
"Da die Anpassung weniger als eine Sekunde betragen hätte, wird sie nicht "
"durchgeführt.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Benutze %s.\n"
# "Schnittstelle"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Keine brauchbare Uhrschnittstelle gefunden.\n"
# "stellen"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "Konnte die Systemuhr nicht stellen.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5726,18 +5767,18 @@ msgstr ""
"gemacht.\n"
# Egger
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "Kann den Epochenwert nicht vom Kernel bekommen.\n"
# Egger
# "Epochenwert"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "Kernel geht von einem Epochenwert von %lu aus.\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5745,18 +5786,18 @@ msgstr ""
"Um den Epochenwert zu ändern, müssen sie die „epoch“-Option benutzen, um "
"anzugeben auf welchen Wert er gesetzt werden soll.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "Der Epochenwert wird nicht auf %d gesetzt – Testmodus.\n"
# Egger
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "Kann den Epochenwert im Kernel nicht ändern.\n"
# "Universalzeit"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5817,7 +5858,7 @@ msgstr ""
" --noadjfile nicht auf /etc/adjtime zugreifen; erfordert Benutzung von\n"
" entweder --utc oder --localtime\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5826,12 +5867,12 @@ msgstr ""
" hwclock mitteilen, um welchen Alpha-Typ es sich handelt\n"
" (siehe hwclock(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s nimmt keine Nicht-Options-Argumente. Sie gaben %d.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
@@ -5839,7 +5880,7 @@ msgstr ""
"Sie haben mehrere Funktionen angefordert.\n"
"Sie können immer nur eine Funktion gleichzeitig ausführen.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5848,7 +5889,7 @@ msgstr ""
"%s: Die Optionen --utc und --localtime schließen sich aus. Sie gaben beide "
"an.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5857,37 +5898,37 @@ msgstr ""
"%s: Die Optionen --adjust und --noadjfile schließen sich aus. Sie gaben "
"beide an.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr ""
"%s: Ohne --noadjfile müssen Sie entweder --utc oder --localtime angeben.\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "Keine brauchbare Zeitangabe. Kann Uhr nicht stellen.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Sie müssen root sein, um die Hardwareuhr zu ändern.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Sie müssen root sein, um die Systemuhr zu ändern.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
msgstr "Sie müssen root sein, um den „epoch“-Wert zu ändern.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr ""
"Es wurde keine Zugriffsart gefunden, mit der auf die Hardwareuhr zugegriffen "
"werden konnte.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
@@ -5896,102 +5937,102 @@ msgstr ""
"anzuzeigen.\n"
# debug
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
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:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK-Ioctl scheiterte beim Auslesen der Zeit."
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Zeitüberschreitung beim Warten auf Zeitänderung.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK-Ioctl scheiterte in Schleife beim Auslesen der Zeit."
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() konnte Zeit nicht von %s lesen."
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "Ioctl KDSHWCLK fehlgeschlagen"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Konnte /dev/tty1 oder /dev/vc/1 nicht öffnen"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK-Ioctl fehlgeschlagen"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "Konnte %s nicht öffnen"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "ioctl() auf %s, um die Zeit zu lesen, fehlgeschlagen.\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Warte in Schleife auf Änderung der Zeit aus %s\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s hat keine Interrupt-Funktionen. "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "read() auf %s, um auf Zeittick zu warten, fehlgeschlagen."
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "select() auf %s, um auf Zeittick zu warten, fehlgeschlagen."
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "select() auf %s, um auf Zeittick zu warten, Zeit abgelaufen.\n"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "ioctl() auf %s, um Update-Interrupts abzuschalten, fehlgeschlagen."
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr "ioctl() auf %s, um Update-Interrupts einzuschalten, fehlgeschlagen."
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "ioctl() auf %s, um die Zeit zu setzen, fehlgeschlagen.\n"
# debug
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "„ioctl(%s)“ war erfolgreich.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "Konnte %s nicht öffnen"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -6002,17 +6043,17 @@ msgstr ""
"Gerätetreiber ‚rtc‘ mittels der Gerätedatei %s ansprechen. Diese Datei "
"existiert auf diesem System nicht.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "Konnte %s nicht öffnen"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "ioctl(RTC_EPOCH_READ) auf %s fehlgeschlagen"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr "Wir haben Epoche %ld aus %s mit dem RTC_EPOCH_READ-Ioctl gelesen.\n"
@@ -6020,24 +6061,24 @@ msgstr "Wir haben Epoche %ld aus %s mit dem RTC_EPOCH_READ-Ioctl gelesen.\n"
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr ""
"Der Epochenwert darf nicht kleiner als 1900 sein. Sie forderten %ld an.\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "Setze Epoche auf %ld mit RTC_EPOCH_SET-Ioctl auf %s.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr "Der Kernel-Gerätetreiber für %s hat keinen RTC_EPOCH_SET-Ioctl.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "ioctl(RTC_EPOCH_SET) auf %s fehlt"
@@ -6256,7 +6297,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Passwort: "
@@ -7074,36 +7115,36 @@ msgstr "Aushängen aller restlichen Dateisysteme..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: konnte %s nicht aushängen: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Boote zum Single-User-Modus.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr "„exec“ der Single-User-Shell fehlgeschlagen\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "„fork“ der Single-User-Shell fehlgeschlagen\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "Fehler beim Öffnen der „fifo“\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr "Fehler beim Setzen von „close-on-exec“ auf /dev/initctl"
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "Fehler beim „exec“ von finalprog\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "Fehler beim „fork“ von finalprog\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -7111,35 +7152,35 @@ msgstr ""
"\n"
"Falsches Passwort.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "„lstat“ des Pfades fehlgeschlagen\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "„stat“ des Pfades fehlgeschlagen\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "Öffnen des Verzeichnisses fehlgeschlagen\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "„fork“ fehlgeschlagen\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "„exec“ fehlgeschlagen\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "Konnte inittab nicht öffnen\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "kein TERM oder kann nicht auf TTY zugreifen\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "Fehler beim Stoppen des Service „%s“"
@@ -7724,17 +7765,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:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "Warnung: Fehler beim Lesen von %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "Warnung: Konnte %s nicht öffnen: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: Konnte %s nicht öffnen – benutze %s stattdessen\n"
@@ -7743,21 +7784,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:472
+#: mount/fstab.c:484
#, 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:487
+#: mount/fstab.c:499
#, 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:499
+#: mount/fstab.c:511
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
@@ -7766,22 +7807,22 @@ msgstr ""
# This one should be merged with the next one by using
# error() instead of printf()
-#: mount/fstab.c:514
+#: mount/fstab.c:526
#, 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:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "Konnte die Lock-Datei %s nicht sperren: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "Zeitüberschreitung"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7790,22 +7831,22 @@ msgstr ""
"Konnte Verknüpfung %s nicht anlegen\n"
"Vielleicht gibt es noch eine abgelaufene Lock-Datei?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "Konnte %s nicht öffnen (%s) – mtab nicht aktualisiert"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "Fehler beim Schreiben von %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "Fehler beim Ändern der Zugriffsrechte von %s: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "Konnte %s nicht in %s umbenennen: %s\n"
@@ -7876,29 +7917,29 @@ msgstr "%s: Konnte kein freies „loop“-Gerät finden"
msgid "Couldn't lock into memory, exiting.\n"
msgstr ""
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%llu): Erfolg\n"
# this is actually an open()...
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, 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:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): Erfolg\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
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:407
+#: mount/lomount.c:406
#, c-format
msgid ""
"usage:\n"
@@ -7917,12 +7958,11 @@ msgstr ""
" Setup:\n"
" %s [ -e Verschlüsselung ] [ -o Offset ] {-f|loop-Gerät} Datei\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "Nicht genügend Speicher"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Zur Übersetzungszeit war keine Loop-Unterstützung verfügbar. Bitte neu "
@@ -7944,166 +7984,166 @@ msgstr "[mntent]: Zeile %d in %s ist fehlerhaft%s\n"
msgid "; rest of file ignored"
msgstr "; der Rest der Datei wurde ignoriert"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, 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:380
+#: mount/mount.c:387
#, 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:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: Konnte %s nicht zum Schreiben öffnen: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: Fehler beim Schreiben von %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: Fehler beim Ändern der Zugriffsrechte von %s: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s sieht wie ein Swap-Bereich aus – nicht eingehängt"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "mount ist fehlgeschlagen"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: nur „root“ kann %s auf %s einhängen"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: das „loop“-Gerät wurde zweimal angegeben"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: der Typ wurde doppelt angegeben"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: überspringe Aufsetzen des „loop“-Geräts\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, 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:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: Aufsetzen des „loop“-Geräts fehlgeschlagen\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: „loop“-Gerät erfolgreich aufgesetzt\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: Konnte %s nicht öffnen: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
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:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: Kann %s nicht zum Setzen der Geschwindigkeit öffnen"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: Kann die Geschwindigkeit nicht setzen: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: Kann keinen neuen Prozess erzeugen: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
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:884
+#: mount/mount.c:891
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:895
+#: mount/mount.c:902
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:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: Sie müssen den Dateisystemtyp angeben"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: Einhängen ist fehlgeschlagen"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, 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:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: keine Berechtigung"
-#: mount/mount.c:911
+#: mount/mount.c:918
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:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s wird gerade benutzt"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc ist bereits eingehängt"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, 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:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: Einhängepunkt %s existiert nicht"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, 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:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: Gerätedatei %s existiert nicht"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8112,56 +8152,74 @@ msgstr ""
"mount: Spezialgerät %s existiert nicht\n"
" (ein Pfadpräfix ist kein Verzeichnis)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, 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:959
-#, c-format
+#: mount/mount.c:966
+#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: Falscher Dateisystemtyp, ungültige Optionen, der\n"
" „Superblock“ von %s ist beschädigt, fehlende Kodierungsseite\n"
" oder es sind zu viele Dateisysteme eingehängt"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "Einhängetabelle ist voll"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: Konnte den Superblock nicht lesen"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "umount: %s: unbekanntes Gerät"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr "mount: unbekannter Dateisystemtyp „%s“"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: Wahrscheinlich meinten sie „%s“"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: Vielleicht meinten Sie „iso9660“?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: Vielleicht meinten Sie „vfat“?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8169,12 +8227,12 @@ msgstr ""
" Dateisystemtyp %s wird nicht unterstützt"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, 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:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8184,51 +8242,51 @@ msgstr ""
" Gerät (Vielleicht hilft „insmod Treiber“?)"
# "versuchen"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, 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:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s ist kein blockorientiertes Gerät"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "blockorientiertes Gerät "
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, 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:1049
+#: mount/mount.c:1061
#, 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:1066
+#: mount/mount.c:1078
#, 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:1165
+#: mount/mount.c:1177
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:1171
+#: mount/mount.c:1183
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"
@@ -8236,23 +8294,23 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: „%s“ wird im Hintergrund fortgesetzt\n"
# Not really nice
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: „%s“ schlug fehl\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s ist bereits auf %s eingehängt\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8299,48 +8357,48 @@ msgstr ""
"Weitere Optionen: [-nfFrsvw] [-o optionen] [-p passwdfd].\n"
"Für viele weitere Details: man 8 mount.\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: Nur „root“ kann dies tun"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: %s nicht gefunden – Erzeuge sie...\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: keine passende Partition gefunden"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: Hänge %s ein\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "nichts wurde eingehängt"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: Konnte %s nicht in %s finden"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: Konnte %s nicht in %s oder %s finden"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount: konnte %s nicht öffnen, also können UUID- und LABEL-Konvertierung\n"
" nicht durchgeführt werden.\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: ungültige UUID"
#: mount/mount_guess_fstype.c:489
@@ -8464,16 +8522,16 @@ msgstr "NFS-Verbindung"
msgid "unknown nfs status return value: %d"
msgstr "unbekannter NFS-Status-Rückgabewert: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "Fehler im Aufruf von xstrndup"
-#: mount/swapon.c:54
-#, c-format
+#: mount/swapon.c:57
+#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"Aufruf: %s [-hV]\n"
@@ -8481,7 +8539,7 @@ msgstr ""
" %s [-v] [-p Priorität] Spezialdatei ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8493,34 +8551,39 @@ msgstr ""
" %s [-v] Spezialdatei ...\n"
# The first %s is swapon/swapoff
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s für %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: Konnte „_stext“ nicht in %s finden\n"
+
# stat
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: Konnte „stat“ nicht auf %s anwenden: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
"swapon: Warnung: %s hat unsichere Zugriffsrechte %04o, %04o wird empfohlen\n"
# holes
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: Überspringe die Datei %s – sie scheint Löcher zu enthalten.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr "Nicht Superuser.\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: Konnte %s nicht öffnen: %s\n"
@@ -8633,42 +8696,48 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t VFS-Typen] [-O optionen]\n"
" umount [-f] [-r] [-n] [-v] Spezialdatei | Verzeichnis ...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "Kann nicht öffnen "
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "Versuche, %s auszuhängen\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Konnte %s nicht in „mtab“ finden\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s ist laut „mtab“ nicht eingehängt"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: %s scheint mehrfach eingehängt zu sein"
-#: mount/umount.c:587
+#: mount/umount.c:592
#, 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:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s mount und fstab stimmen nicht überein"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: Nur %s kann %s von %s unmounten"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: Nur „root“ kann dies tun"
@@ -10115,10 +10184,6 @@ msgstr "Speicher ist alle beim Vergrößern eines Puffers.\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-# dito
-#~ msgid "label"
-#~ msgstr "Label"
-
#~ msgid "mount: the label %s occurs on both %s and %s - not mounted\n"
#~ msgstr ""
#~ "mount: das Label %s gibt es sowohl auf %s als auch\n"
diff --git a/po/es.po b/po/es.po
index 30b60f98f..83e787359 100644
--- a/po/es.po
+++ b/po/es.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12j\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+0100\n"
"PO-Revision-Date: 2004-12-13 16:40+0100\n"
"Last-Translator: Santiago Vila Doncel <sanvila@unex.es>\n"
"Language-Team: Spanish <es@li.org>\n"
@@ -159,7 +159,7 @@ msgstr "uso: %s [ -n ] dispositivo\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -778,7 +778,7 @@ msgstr "demasiados nodos-i; el mximo es 512"
msgid "not enough space, need at least %lu blocks"
msgstr "no hay suficiente espacio, se necesitan al menos %lu bloques"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Dispositivo: %s\n"
@@ -852,7 +852,7 @@ msgstr "error al cerrar %s"
msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr "Uso: mkfs [-V] [-t tipo_sf] [opciones_sf] dispositivo [tamao]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1093,7 +1093,7 @@ msgstr "Error de bsqueda durante comprobacin de bloques"
msgid "Weird values in do_check: probably bugs\n"
msgstr "Valores extraos en do_check: probablemente existan errores\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "Error de bsqueda en check_blocks"
@@ -1152,65 +1152,88 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Presuponiendo pginas de tamao %d (no %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "etiqueta"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Uso: %s [-c] [-v0|-v1] [-pTAMPG] /dev/nombre [bloques]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "Hay demasiadas pginas incorrectas"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "No queda memoria"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "Una pgina incorrecta\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, c-format
msgid "%lu bad pages\n"
msgstr "%lu pginas incorrectas\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr ""
"%s: error: no se ha especificado dnde configurar el espacio de intercambio\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: error: el tamao %lu es superior al tamao del dispositivo %lu\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: error: versin desconocida %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: error: el rea de intercambio debe tener como mnimo %ldkB\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: atencin: el rea de intercambio se trunca a %ldkB\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr ""
+"%s: error: no se ha especificado dnde configurar el espacio de intercambio\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "No se intentar crear el dispositivo de intercambio en '%s'"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "muy grave: no se puede leer la primera pgina"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1225,24 +1248,24 @@ msgstr ""
"Si realmente desea crear el espacio de intercambio swap v0 en dicho\n"
"dispositivo, utilice la opcin -f para forzar la operacin.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "No se puede configurar el espacio de intercambio: no se puede leer"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Configurando espacio de intercambio versin %d, tamao = %llu kB\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "No se puede rebobinar el dispositivo de intercambio"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "No se puede escribir la pgina de firma"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync ha fallado"
@@ -1284,58 +1307,63 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Inutilizable"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Espacio libre"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Se ha modificado el disco.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Reinicie el sistema para asegurarse de que la tabla de particiones est "
"bien\n"
"actualizada.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1347,320 +1375,320 @@ msgstr ""
"particiones DOS 6.x, consulte la pgina de manual de cfdisk\n"
"para obtener ms informacin.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "ERROR MUY GRAVE"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Pulse una tecla para salir de cfdisk"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "No se puede buscar en la unidad de disco"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "No se puede leer la unidad de disco"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "No se puede escribir en la unidad de disco"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Hay demasiadas particiones"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "La particin empieza antes del sector 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "La particin termina antes del sector 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "La particin empieza despus del fin de disco"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "La particin termina despus del fin de disco"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr "La particin termina en el ltimo cilindro parcial"
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "Las particiones lgicas no estn en orden de disco"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "Solapamiento de particiones lgicas"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "Solapamiento de particiones lgicas ampliadas"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr " Error interno al crear unidad lgica sin particin extendida !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"No se puede crear una unidad lgica aqu; se crearan dos particiones "
"extendidas"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr ""
"Elemento de men demasiado largo; la apariencia del men puede ser extraa."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Men sin direccin; la opcin predeterminada es horizontal."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Tecla no permitida"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Pulse una tecla para continuar"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primaria"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Crea una nueva particin primaria"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Lgica"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Crea una nueva particin lgica"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Cancelar"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "No crea ninguna particin"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr " Error interno !!!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Tamao (en MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Principio"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Aade la particin al principio del espacio libre"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Final"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Aade la particin al final del espacio libre"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "No hay espacio para crear la particin extendida"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
msgid "No partition table.\n"
msgstr "No hay tabla de particiones.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
msgid "No partition table. Starting with zero table."
msgstr "No hay tabla de particiones. Se comienza con una tabla vaca."
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
msgid "Bad signature on partition table"
msgstr "Firma errnea en la tabla de particiones"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
msgid "Unknown partition table type"
msgstr "Tipo de tabla de particiones desconocido"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Quiere comenzar con una tabla vaca? [y/N]"
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr "Ha especificado ms cilindros de los que caben en el disco"
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "No se puede abrir la unidad de disco"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
msgid "Opened disk read-only - you have no permission to write"
msgstr ""
"El disco abierto es de slo lectura; no tiene permiso para escribir en l"
-#: fdisk/cfdisk.c:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "No se puede obtener el tamao del disco"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Particin primaria incorrecta"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Particin lgica incorrecta"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Atencin!: esta operacin puede destruir datos del disco"
# Vase http://bugs.debian.org/210363
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
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"
" (si o no): "
-#: fdisk/cfdisk.c:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "no"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "No se ha escrito la tabla de particiones en el disco"
# Vase http://bugs.debian.org/210363
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "si"
# Vase http://bugs.debian.org/210363
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Por favor escriba `si' o `no'"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Se est escribiendo la tabla de particiones en el disco..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Se ha escrito la tabla de particiones en el disco"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
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:1857
+#: fdisk/cfdisk.c:1906
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Ninguna particin primaria est marcada como iniciable.\n"
"El MBR de DOS no podr iniciar esto."
-#: fdisk/cfdisk.c:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Hay marcada como iniciable ms de una particin primaria.\n"
"El MBR de DOS no puede iniciar esto."
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
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:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "No se puede abrir el fichero '%s'"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Unidad de disco: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Sector 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Sector %d:\n"
# Masculino, porque se refiere a un tipo de particin.
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Ninguno"
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/Lg"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primaria"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Lgica"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Desconocido"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Inicio"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
# Masculino, porque se refiere a "Indicadores"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
msgid "None"
msgstr "Ninguno"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Tabla de particiones para %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
msgid " First Last\n"
msgstr " Primer ltimo\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1668,7 +1696,7 @@ msgstr ""
"N Tipo Sector Sector Despl. Longitud Tipo sist. fich. (ID) "
"Indicad.\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1677,474 +1705,474 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ----Inicio---- -----Final---- Comienzo Nmero de\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
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:2144
+#: fdisk/cfdisk.c:2193
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "En bruto (raw)"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Imprime la tabla utilizando el formato de datos en bruto"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Sectores"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Imprime la tabla ordenada por sectores"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Tabla"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Slo imprime la tabla de particiones"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "No imprime la tabla"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Pantalla de ayuda para cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
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:2211
+#: fdisk/cfdisk.c:2260
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:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "de disco duro."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Orden Significado"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "----- -----------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b Conmuta el indicador de iniciable de la particin actual"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Suprime la particin actual"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g Cambia los parmetros de cilindros, cabezas y sectores por pista"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " ATENCIN: Se recomienda utilizar esta opcin nicamente"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " si se conoce el funcionamiento de la misma."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Imprime esta pantalla"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximiza la utilizacin del disco de la particin actual"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " Nota: Esta opcin puede hacer que la particin sea"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " incompatible con DOS, OS/2,..."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Crea una nueva particin a partir del espacio libre"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
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:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Hay varios formatos distintos para la particin"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " entre los que puede elegir:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - Datos en bruto (exactamente lo que escribira en el "
"disco)"
-#: fdisk/cfdisk.c:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Tabla ordenada por sectores"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - Tabla con formato en bruto"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q Sale del programa sin escribir la tabla de particiones"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Cambia el tipo de sistema de ficheros"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr ""
" u Cambia las unidades de visualizacin del tamao de la particin"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Alterna entre MB, sectores y cilindros"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Escribe la tabla de particiones en el disco (W en maysculas)"
-#: fdisk/cfdisk.c:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " Esta operacin de escritura puede causar la destruccin"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
" de datos del disco, por lo que debe confirmarla o rechazarla"
# Vase http://bugs.debian.org/210363
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " escribiendo `si' o `no'"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Flecha arriba Desplaza el cursor a la particin anterior"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "Flecha abajo Desplaza el cursor a la particin siguiente"
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "Ctrl-L Vuelve a dibujar la pantalla"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Imprime esta pantalla"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Nota: todas las rdenes pueden escribirse en maysculas o minsculas"
-#: fdisk/cfdisk.c:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "(salvo W para operaciones de escritura)."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cilindros"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Cambia la geometra de cilindros"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Cabezas"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Cambiar geometra de cabezas"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Cambiar geometra de sectores"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Fin"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Ha finalizado la operacin de cambio de geometra"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Escriba el nmero de cilindros: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Valor de cilindros no permitido"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Escriba el nmero de cabezas: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Valor de cabezas no permitido"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Escriba el nmero de sectores por pista: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Valor de sectores no permitido"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Escriba el tipo de sistema de ficheros: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "No se puede cambiar el tipo de sistema de ficheros a vaco"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "No se puede cambiar el tipo de sistema de ficheros a extendido"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Desc.(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Pri/Lg"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Desconocido (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Unidad de disco: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Tamao: %lld bytes, %lld MB"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Tamao: %lld bytes, %lld.%lld GB"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Cabezas: %d Sectores por pista: %d Cilindros: %lld"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Nombre"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Indicadores"
# Este espacio inicial es para que no se pegue con la s de Indicadores
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr " Tipo"
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Tipo de S.F."
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Etiqueta]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
msgid " Sectors"
msgstr " Sectores"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
msgid " Cylinders"
msgstr " Cilindros"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
msgid " Size (MB)"
msgstr " Tamao(MB)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
msgid " Size (GB)"
msgstr "Tamao (GB)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Iniciable"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Conmuta el indicador de iniciable de la particin actual"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Suprimir"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Suprime la particin actual"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometra"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Cambia la geometra del disco (slo para usuarios avanzados)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Ayuda"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Imprime esta pantalla"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Maximizar"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr ""
"Maximiza el uso de disco de la particin actual (slo usuarios avanzados)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Nueva"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Crea una nueva particin a partir del espacio libre"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Imprimir"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
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:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Salir"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Sale del programa sin escribir la tabla de particiones"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Tipo"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
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:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Unidades"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Cambia las unidades para el tamao de la particin (MB, sect., cil.)"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Escribir"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr ""
"Escribe la tabla de particiones en el disco (puede destruirse informacin)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "No se puede convertir esta particin en una particin iniciable"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "No se puede suprimir una particin vaca"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "No se puede maximizar esta particin"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Esta particin se encuentra en estado inutilizable"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Esta particin ya est en uso"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "No se puede cambiar el tipo de una particin vaca"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "No hay ms particiones"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Orden ilegal"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2418,20 +2446,20 @@ msgstr " f Corrige el orden de las particiones"
msgid "You must set"
msgstr "Debe establecer"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "cabezas"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "sectores"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "cilindros"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2440,11 +2468,11 @@ msgstr ""
"%s%s.\n"
"Puede efectuar esta operacin desde el men de funciones adicionales.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " y "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2463,30 +2491,30 @@ msgstr ""
"2) software de arranque o particionamiento de otros sistemas operativos\n"
" (p.ej. FDISK de DOS, FDISK de OS/2)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Desplazamiento incorrecto en particiones extendidas primarias\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Atencin: puntero de enlace adicional en tabla de particiones %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr ""
"Atencin: no se tienen en cuenta los datos adicionales de la tabla de "
"particiones %d\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2498,16 +2526,16 @@ msgstr ""
"operacin, el contenido anterior no se podr recuperar.\n"
"\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Nota: el tamao del sector es %d (no %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "No podr escribir la tabla de particiones.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
@@ -2515,7 +2543,7 @@ msgstr ""
"Este disco tiene tanto magia DOS como BSD.\n"
"Utilice la orden 'b' para ir al modo BSD.\n"
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
@@ -2523,16 +2551,16 @@ msgstr ""
"El dispositivo no contiene una tabla de particiones DOS vlida ni una "
"etiqueta de disco Sun o SGI o OSF\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Error interno\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "No se tiene en cuenta la particin extendida adicional %d\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2541,7 +2569,7 @@ msgstr ""
"Atencin: el indicador 0x%04x invlido de la tabla de particiones %d se "
"corregir mediante w(rite)\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2549,78 +2577,78 @@ msgstr ""
"\n"
"se ha detectado EOF tres veces - saliendo...\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Cdigo hexadecimal (escriba L para ver los cdigos): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%u-%u, valor predeterminado %u): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, c-format
msgid "Using default value %u\n"
msgstr "Se est utilizando el valor predeterminado %u\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "El valor est fuera del rango.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Nmero de particin"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Atencin: la particin %d es de tipo vaco\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, c-format
msgid "Selected partition %d\n"
msgstr "Se ha seleccionado la particin %d\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
msgid "No partition is defined yet!\n"
msgstr "No hay ninguna particin definida!\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr "Ya se han definido todas las particiones primarias!\n"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "cilindro"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "sector"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Se cambian las unidades de visualizacin/entrada a %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "ATENCIN: la particin %d es una particin extendida\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "El indicador de compatibilidad con DOS est establecido\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "El indicador de compatibilidad con DOS no est establecido\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "La particin %d todava no existe\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2632,7 +2660,7 @@ msgstr ""
"tener particiones de tipo 0. Puede suprimir una\n"
"particin con la orden `d'.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2640,7 +2668,7 @@ msgstr ""
"No puede convertir una particin en extendida ni viceversa.\n"
"Primero debe suprimirla.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2650,7 +2678,7 @@ msgstr ""
"ya que as lo prev SunOS/Solaris e incluso es adecuado para Linux.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2660,53 +2688,53 @@ msgstr ""
"y la particin 11 como volumen completo (6) ya que IRIX as lo espera.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "Se ha cambiado el tipo de sistema de la particin %d por %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr ""
"La particin %d tiene distintos principios fsicos/lgicos (no Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " fsicos=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "lgicos=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "La particin %d tiene distintos finales fsicos/lgicos:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "La particin %i no empieza en el lmite del cilindro:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "debe ser (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "La particin %i no termina en un lmite de cilindro.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "debe ser (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
@@ -2715,7 +2743,7 @@ msgstr ""
"\n"
"Disco %s: %ld MB, %lld bytes\n"
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, c-format
msgid ""
"\n"
@@ -2724,17 +2752,17 @@ msgstr ""
"\n"
"Disco %s: %ld.%ld GB, %lld bytes\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr "%d cabezas, %d sectores/pista, %d cilindros"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ", %llu sectores en total"
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
@@ -2743,7 +2771,7 @@ msgstr ""
"Unidades = %s de %d * %d = %d bytes\n"
"\n"
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2751,7 +2779,7 @@ msgstr ""
"No hay nada que hacer. El orden ya es correcto.\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
@@ -2760,17 +2788,17 @@ msgstr ""
"Esto no parece una tabla de particiones\n"
"Probablemente ha seleccionado el dispositivo que no era.\n"
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Inicio Comienzo Fin Bloques Id Sistema\n"
# Nota: si se pone Dispositivo no queda bien el resto de la lnea.
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Disposit."
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2778,7 +2806,7 @@ msgstr ""
"\n"
"Las entradas de la tabla de particiones no estn en el orden del disco\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2789,92 +2817,92 @@ msgstr ""
"Disco %s: %d cabezas, %d sectores, %d cilindros\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "N IA Cab Sect Cil Cab Sect Cil Inicio Tamao ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Atencin: la particin %d contiene el sector 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Particin %d: el cabeza %d supera el mximo %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Particin %d: el sector %d supera el mximo %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Particin %d: el cilindro %d supera el mximo %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr "Particin %d: sectores anteriores %d no concuerdan con total %d\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Atencin: inicio de datos incorrecto en particin %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Atencin: la particin %d se solapa con la particin %d.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Atencin: la particin %d est vaca\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "La particin lgica %d no est por completo en la particin %d\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "El total de sectores asignados %d supera el mximo %lld\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, c-format
msgid "%lld unallocated sectors\n"
msgstr "%lld sectores no asignados\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr ""
"La particin %d ya est definida. Suprmala antes de volver a aadirla.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Primer %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "El sector %d ya est asignado\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "No hay disponible ningn sector libre\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "ltimo %s o +tamao o +tamaoM o +tamaoK"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2886,24 +2914,24 @@ msgstr ""
" tabla de particiones DOS vaca primero. (Use o.)\n"
" ATENCIN: Esto destruir el contenido de este disco.\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "Se ha creado el nmero mximo de particiones\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr ""
"Primero debe suprimir alguna particin y aadir una particin extendida\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
msgid "All logical partitions are in use\n"
msgstr "Se estn usando todas las particiones lgicas\n"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
msgid "Adding a primary partition\n"
msgstr "Se aade una particin primaria\n"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2914,20 +2942,20 @@ msgstr ""
"%s\n"
" p Particin primaria (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l Particin lgica (5 o superior)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e Particin extendida"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Nmero de particin invlido para el tipo `%c'\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2935,11 +2963,11 @@ msgstr ""
"Se ha modificado la tabla de particiones!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Llamando a ioctl() para volver a leer la tabla de particiones.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2953,7 +2981,7 @@ msgstr ""
"El ncleo todava usa la tabla antigua.\n"
"La nueva tabla se usar en el prximo reinicio.\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2965,68 +2993,75 @@ msgstr ""
"particiones DOS 6.x, consulte la pgina man de fdisk\n"
"para ver informacin adicional.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Error al cerrar %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Se estn sincronizando los discos.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "La particin %d no tiene ninguna rea de datos\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Nuevo principio de datos"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Orden avanzada (m para obtener ayuda): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Nmero de cilindros"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Nmero de cabezas"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Nmero de sectores"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr ""
"Atencin: estableciendo desplazamiento de sector para compatibilidad con "
"DOS\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "El disco %s no contiene una tabla de particiones vlida\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "No se puede abrir %s\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "No se puede abrir %s\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: orden desconocida\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr ""
"Este ncleo encuentra el tamao del sector por s mismo; no se tiene en "
"cuenta la opcin -b\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -3035,18 +3070,18 @@ msgstr ""
"dispositivo especificado\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr ""
"Se ha detectado una etiqueta de disco OSF/1 en %s, entrando en el modo de\n"
"etiqueta de disco.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Orden (m para obtener ayuda): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -3055,15 +3090,15 @@ msgstr ""
"\n"
"El fichero de inicio actual es: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Escriba el nombre del nuevo fichero de inicio: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "No se ha modificado el fichero de inicio\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3442,7 +3477,7 @@ msgstr "Linux swap"
msgid "Linux native"
msgstr "Linux native"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3783,7 +3818,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linux raid autodetect"
@@ -4152,8 +4187,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4204,149 +4239,154 @@ msgstr "Linux extendida"
msgid "NTFS volume set"
msgstr "Conjunto de volmenes NTFS"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "Hibernacin de IBM Thinkpad"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr "UFS de Darwin"
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr "arranque de Darwin"
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI fs"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI swap"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "Boot Wizard hidden"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr "arranque de Solaris"
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
msgid "Solaris"
msgstr "Solaris"
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "Datos sin SF"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Utilidad Dell"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS access"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS fs"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "inicio Linux/PA-RISC"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS secondary"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5390,124 +5430,124 @@ msgstr "getopt (mejorado) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "Error interno; contacte con el desarrollador."
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "iniciado desde MILO\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Reloj BCD Ruffian\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "puerto de reloj ajustado a 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: %s atmico ha fallado para 1000 iteraciones."
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "No se puede abrir /dev/port: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
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:601
+#: hwclock/cmos.c:602
#, 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:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Probablemente son necesarios los privilegios de usuario root.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Se presupone que el reloj de hardware tiene la hora %s.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "local"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: atencin: tercera lnea no reconocida en el fichero adjtime\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Se esperaba: `UTC', `LOCAL' o nada.)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "ltimo ajuste de desfase realizado %ld segundos despus de 1969\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "ltima calibracin realizada %ld segundos despus de 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "El reloj de hardware tiene la hora %s\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "desconocido"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "Esperando seal de reloj...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...recibida seal de reloj\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr "Valores invlidos en reloj de hardware: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Hora del reloj de hardware: %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld segundos "
"desde 1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Hora leda del reloj de hardware: %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Estableciendo reloj de hardware en %.2d:%.2d:%.2d = %ld segundos desde 1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "El reloj no se ha modificado; slo se est probando.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5516,7 +5556,7 @@ msgstr ""
"El tiempo transcurrido desde la hora de referencia es de %.6f segundos.\n"
"Aumentando el retardo hasta el siguiente segundo completo.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5525,20 +5565,20 @@ msgstr ""
"(por ejemplo, da 50 del mes) o exceden el rango que puede utilizarse\n"
"(por ejemplo, el ao 2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f segundos\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "No se ha especificado la opcin --date.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "argumento --date demasiado largo\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5546,23 +5586,23 @@ msgstr ""
"El valor de la opcin --date no es una fecha vlida.\n"
"En concreto, contiene comillas.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Ejecutando orden date: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr ""
"No se puede ejecutar el programa 'date' en intrprete de rdenes /bin/sh. "
"popen() ha fallado"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "respuesta de la orden date = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5577,7 +5617,7 @@ msgstr ""
"La respuesta fue:\n"
"%s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5594,12 +5634,12 @@ msgstr ""
"La respuesta fue:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "La cadena de fecha %s equivale a %ld segundos desde 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5607,35 +5647,35 @@ msgstr ""
"El reloj de hardware no contiene una hora vlida, por lo que no se puede "
"establecer la hora del sistema a partir de ese valor.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "Se est llamando settimeofday:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr ""
"No se establece el reloj del sistema ya que la ejecucin es en modo de "
"prueba.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Debe ser superusuario para establecer el reloj del sistema.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "settimeofday() ha fallado"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5643,7 +5683,7 @@ msgstr ""
"No se ajusta el factor de desfase debido a que el reloj de hardware\n"
"contena anteriormente datos extraos.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
@@ -5652,7 +5692,7 @@ msgstr ""
"calibracin es cero, as que el historial es errneo y es necesaria una\n"
"calibracin desde el principio.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5660,7 +5700,7 @@ msgstr ""
"No se ajusta el factor de desfase debido a que hace menos de un da que se\n"
"realiz la ltima calibracin.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5673,23 +5713,23 @@ msgstr ""
"de\n"
"desfase en %f segundos por da\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "El tiempo transcurrido desde el ltimo ajuste es de %d segundos\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr ""
"Es preciso insertar %d segundos y establecer como referencia la hora %.6f "
"segundos hacia atrs\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "No se est actualizando el fichero adjtime debido al modo de prueba.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5698,37 +5738,37 @@ msgstr ""
"Se habra escrito lo siguiente en %s:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Parmetros de ajuste del desfase no actualizados.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
"El reloj de hardware no contiene una hora vlida, por lo que no se puede "
"ajustar.\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr ""
"El ajuste necesario es inferior a un segundo, por lo que no se establece el "
"reloj.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Utilizando %s.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "No se ha encontrado ninguna interfaz de reloj utilizable.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "No se puede establecer el reloj del sistema.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5740,16 +5780,16 @@ msgstr ""
"Alpha (por lo que posiblemente no se est ejecutando en una mquina Alpha).\n"
"No se efecta ninguna accin.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "No se puede obtener el valor de poca del ncleo.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "El ncleo presupone el valor de poca %lu\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5757,17 +5797,17 @@ msgstr ""
"Para establecer el valor de poca, debe utilizar la opcin 'epoch' para "
"indicar en qu valor debe definirse.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr ""
"No se est estableciendo el valor de poca en %d; slo se est probando.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "No se puede establecer el valor de poca en el ncleo.\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5832,7 +5872,7 @@ msgstr ""
" --noadjfile No accede a /etc/adjtime. Necesita del uso de --utc\n"
" o de --localtime\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5841,12 +5881,12 @@ msgstr ""
" Indica al reloj de hardware el tipo de Alpha (ver hwclock"
"(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s no admite argumentos que no sean opciones. Ha especificado %d.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
@@ -5854,7 +5894,7 @@ msgstr ""
"Ha especificado varias funciones.\n"
"Slo puede llevar a cabo una funcin a la vez.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5863,7 +5903,7 @@ msgstr ""
"%s: las opciones --utc y --localtime se excluyen mutuamente. Ha especificado "
"ambas.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5872,25 +5912,25 @@ msgstr ""
"%s: las opciones --adjust y --noadjfile se excluyen mutuamente. Ha "
"especificado ambas.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr ""
"%s: Con --noadjfile, debe especificarse o bien --utc o bien --localtime\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "Hora no utilizable. No se puede establecer el reloj.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "nicamente el superusuario puede cambiar el reloj de hardware.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "nicamente el superusuario puede cambiar el reloj del sistema.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
@@ -5898,11 +5938,11 @@ msgstr ""
"Slo el superusuario puede cambiar el valor de poca del reloj de hardware "
"del ncleo.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr "No se puede acceder al reloj de hardware por ningn mtodo conocido.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
@@ -5910,102 +5950,102 @@ msgstr ""
"Utilice la opcin --debug para ver los detalles de la bsqueda para un "
"mtodo de acceso.\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
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:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "Error de ioctl KDGHWCLK al leer la hora"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Se ha excedido el tiempo de espera del cambio de hora.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "Error en bucle de ioctl KDGHWCLK al leer la hora"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() no ha podido leer la hora de %s"
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "Error de ioctl KDGHWCLK"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "No se puede abrir /dev/tty1 o /dev/vc/1"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "Error de ioctl KDGHWCLK"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "Error de open() de %s"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "Error de ioctl() con %s al leer la hora.\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Esperando en bucle que cambie la hora de %s\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s no tiene funciones de interrupcin. "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "Error de read() de %s al esperar seal de reloj"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "La ejecucin de select() a %s para esperar una seal de reloj fall"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "La ejecucin de select() a %s para esperar una seal de reloj expir\n"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "Error de ioctl() con %s al desactivar interrupciones de actualizacin"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr ""
"Error inesperado de ioctl() con %s al activar interrupciones de actualizacin"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "Error de ioctl() con %s al establecer la hora.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "ioctl(%s) ha finalizado correctamente.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "Error al abrir %s"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -6017,17 +6057,17 @@ msgstr ""
"dispositivo 'rtc' de Linux mediante el fichero especial de dispositivo %s.\n"
"Este fichero no existe en este sistema.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "No se puede abrir %s"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "Error de ioctl(RTC_EPOCH_READ) con %s"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr "Se ha ledo el valor de poca %ld de %s con ioctl RTC_EPOCH_READ.\n"
@@ -6035,17 +6075,17 @@ msgstr "Se ha ledo el valor de poca %ld de %s con ioctl RTC_EPOCH_READ.\n"
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr "El valor de poca no puede ser inferior a 1900. Ha solicitado %ld\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "Estableciendo poca en %ld con ioctl RTC_EPOCH_SET en %s.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
@@ -6053,7 +6093,7 @@ msgstr ""
"El controlador de dispositivo del ncleo para %s no tiene la ioctl "
"RTC_EPOCH_SET.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "Error de ioctl(RTC_EPOCH_SET) de %s"
@@ -6271,7 +6311,7 @@ msgid "Password error."
msgstr "Error de contrasea."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
-#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Contrasea: "
@@ -7088,39 +7128,39 @@ msgstr "Desmontando los sistemas de ficheros restantes..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: No se puede ejecutar umount %s: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Iniciando en modo de un solo usuario.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr ""
"La ejecucin (exec) de intrprete de rdenes de un solo usuario ha fallado\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr ""
"La bifurcacin (fork) de intrprete de rdenes de un solo usuario ha "
"fallado\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "error al abrir `fifo'\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr "error al establecer close-on-exec sobre /dev/initctl"
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "error al ejecutar finalprog\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "error al efectuar `fork' con finalprog\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -7128,35 +7168,35 @@ msgstr ""
"\n"
"Contrasea incorrecta.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "fall la llamada a `lstat' sobre la ruta\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "fall la llamada a `stat' sobre la ruta\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "La apertura del directorio ha fallado\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "La bifurcacin (fork) ha fallado\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "La ejecucin (exec) ha fallado\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "No se puede abrir inittab\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "Sin TERM o no se puede ejecutar stat para tty\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "error al detener el servicio: \"%s\""
@@ -7732,17 +7772,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:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "atencin: error al leer %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "atencin: no se puede abrir %s: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, 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"
@@ -7751,42 +7791,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:472
+#: mount/fstab.c:484
#, 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:487
+#: mount/fstab.c:499
#, 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:499
+#: mount/fstab.c:511
#, 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:514
+#: mount/fstab.c:526
#, 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:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "No se puede bloquear el fichero de bloqueo %s: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "Tiempo de espera excedido"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7795,22 +7835,22 @@ msgstr ""
"No se puede crear enlace %s\n"
"Puede que haya un fichero de bloqueo obsoleto.\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "No se puede abrir %s (%s) - mtab no actualizado"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "Error al escribir %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "Error al cambiar el modo de %s: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "No se puede cambiar el nombre %s por %s: %s\n"
@@ -7880,28 +7920,28 @@ msgstr "%s: no se ha encontrado ningn dispositivo de bucle libre"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "No se pudo bloquear en memoria, saliendo.\n"
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%llu): ejecucin correcta\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, 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:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): ejecucin correcta\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
"Este montaje se ha compilado sin soporte de bucle. Vuelva a realizar la "
"compilacin.\n"
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, c-format
msgid ""
"usage:\n"
@@ -7917,12 +7957,11 @@ msgstr ""
"usados\n"
" %s [ -e cifrado ] [ -o despl ] {-f|disp_bucle} fichero # configurar\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "No hay suficiente memoria"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Al compilar no haba soporte de bucle disponible. Vuelva a realizar la "
@@ -7942,166 +7981,166 @@ msgstr "[mntent]: la lnea %d de %s es incorrecta%s\n"
msgid "; rest of file ignored"
msgstr "; el resto del fichero no se tiene en cuenta"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: segn mtab, %s ya est montado en %s"
-#: mount/mount.c:380
+#: mount/mount.c:387
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: segn mtab, %s est montado en %s"
-#: mount/mount.c:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: no se puede abrir %s para escritura: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: error al escribir %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: error al cambiar el modo de %s: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s parece espacio de intercambio - no montado"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "montaje errneo"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: slo el usuario root puede montar %s en %s"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: dispositivo de bucle especificado dos veces"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: tipo especificado dos veces"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: omitiendo la configuracin de un dispositivo de bucle\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, 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:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: error al configurar dispositivo de bucle\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: configuracin correcta de dispositivo de bucle\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: no se puede abrir %s: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: el argumento para -p o --pass-fd debe ser un nmero"
-#: mount/mount.c:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: no se puede abrir %s para establecer la velocidad"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: no se puede establecer la velocidad: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: no se puede bifurcar (fork): %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: esta versin se ha compilado sin soporte para el tipo `nfs'"
# FIXME: Falta un . en el original.
-#: mount/mount.c:884
+#: mount/mount.c:891
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: fall con la versin 4 de nfs mount, probando con la 3...\n"
-#: mount/mount.c:895
+#: mount/mount.c:902
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:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: debe especificar el tipo de sistema de ficheros"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: montaje errneo"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, 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:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: permiso denegado"
-#: mount/mount.c:911
+#: mount/mount.c:918
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:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s est ocupado"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc ya est montado"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s ya est montado o %s est ocupado"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: el punto de montaje %s no existe"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: el punto de montaje %s es un enlace simblico sin destino"
-#: mount/mount.c:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: el dispositivo especial %s no existe"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8110,54 +8149,72 @@ msgstr ""
"mount: el dispositivo especial %s no existe\n"
" (un prefijo de ruta no es un directorio)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s no est montado todava o una opcin es incorrecta"
-#: mount/mount.c:959
-#, c-format
+#: mount/mount.c:966
+#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: tipo de sistema de ficheros incorrecto, opcin incorrecta,\n"
" superbloque incorrecto en %s, falta la pgina de cdigos,\n"
" o demasiados sistemas de ficheros montados"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "tabla de dispositivos montados completa"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: no se puede leer el superbloque"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "umount: %s: dispositivo desconocido"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr "mount: tipo de sistema de ficheros '%s' desconocido"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: probablemente quera referirse a %s"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: quiere decir 'iso9660?'"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: quiere decir 'vfat'?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8165,12 +8222,12 @@ msgstr ""
"%s no soportado"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, 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:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8179,51 +8236,51 @@ msgstr ""
"mount: el ncleo no reconoce %s como dispositivo de bloques\n"
" (tal vez `insmod driver'?)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, 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:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s no es un dispositivo de bloques"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s no es un dispositivo de bloques vlido"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "dispositivo de bloques "
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "umount: no se puede montar %s%s de slo lectura"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr ""
"mount: %s%s est protegido contra escritura pero se ha dado la opcin `-w'"
-#: mount/mount.c:1066
+#: mount/mount.c:1078
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr ""
"mount: %s%s est protegido contra escritura; se monta como slo lectura"
-#: mount/mount.c:1165
+#: mount/mount.c:1177
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
"mount: no se ha especificado ningn tipo; se presupone nfs por los dos "
"puntos\n"
-#: mount/mount.c:1171
+#: mount/mount.c:1183
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: no se ha especificado ningn tipo; se presupone smbfs por el "
@@ -8232,22 +8289,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: ejecutando en segundo plano \"%s\"\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: se abandona \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s ya est montado en %s\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8295,48 +8352,48 @@ msgstr ""
"Otras opciones: [-nfFrsvw] [-o opciones] [-p passwdfd].\n"
"Escriba man 8 mount para saber mucho ms.\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: slo el usuario root puede efectuar esta accin"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: no se ha encontrado %s; se est creando...\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: no se ha encontrado esta particin"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: montando %s\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "no se ha montado nada"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: no se puede encontrar %s en %s"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: no se puede encontrar %s en %s o %s"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount: no se ha podido abrir %s; as que no se puede efectuar la conversin\n"
"de UUID y ETIQUETA\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: UUID incorrecto"
#: mount/mount_guess_fstype.c:489
@@ -8452,16 +8509,16 @@ msgstr "nfs connect"
msgid "unknown nfs status return value: %d"
msgstr "Valor de retorno de nfs status desconocido: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "Error en la llamada xstrndup"
-#: mount/swapon.c:54
-#, c-format
+#: mount/swapon.c:57
+#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"uso: %s [-hV]\n"
@@ -8469,7 +8526,7 @@ msgstr ""
" %s [-v] [-p prioridad] especial ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8480,33 +8537,38 @@ msgstr ""
" %s -a [-v]\n"
" %s [-v] especial ...\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s en %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: no se puede encontrar \"_stext\" en %s\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: no se puede ejecutar stat para %s: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
"swapon: atencin: %s tiene permisos %04o que no son seguros, se sugiere %"
"04o\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: omitiendo el fichero %s; parece que tiene huecos.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr "No es el superusuario.\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: no se puede abrir %s: %s\n"
@@ -8616,42 +8678,48 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opciones]\n"
" umount [-f] [-r] [-n] [-v] special | node...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "No se puede abrir "
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "Se est intentando ejecutar umount en %s\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "No se puede encontrar %s en mtab\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s no est montado (segn mtab)"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: parece que %s se ha montado varias veces"
-#: mount/umount.c:587
+#: mount/umount.c:592
#, 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:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: montaje de %s no concuerda con fstab"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: slo %s puede desmontar %s desde %s"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: slo el usuario root puede efectuar esta accin"
@@ -10122,9 +10190,6 @@ msgstr "No queda memoria al aumentar el tamao del bfer.\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "etiqueta"
-
#~ msgid "mount: the label %s occurs on both %s and %s - not mounted\n"
#~ msgstr ""
#~ "mount: la etiqueta %s aparece tanto en %s como en %s - no se monta\n"
diff --git a/po/et.po b/po/et.po
index 3bf6d8dce..1704851cc 100644
--- a/po/et.po
+++ b/po/et.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.11r\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+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"
@@ -156,7 +156,7 @@ msgstr "Kasutamine: %s [ -n ] seade\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -756,7 +756,7 @@ msgstr "liiga palju i-kirjeid - maksimum on 512"
msgid "not enough space, need at least %lu blocks"
msgstr "pole piisavalt vaba ruumi, vaja oleks vhemalt %lu plokki"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Seade: %s\n"
@@ -829,7 +829,7 @@ msgstr "viga %s sulgemisel"
msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr "Kasutamine: mkfs [-V] [-t fstp] [fs-vtmed] seade [suurus]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1039,7 +1039,7 @@ msgstr "seek ei nnestunud plokkide testimisel"
msgid "Weird values in do_check: probably bugs\n"
msgstr "Imelikud vrtused funktsioonis do_check - ilmselt bugid\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "seek ei nnestunud plokkide kontrollimisel"
@@ -1095,64 +1095,85 @@ msgstr "Kasutan etteantud leheklje suurust %d, mitte ssteemseid %d/%d\n"
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Eeldan leheklje suuruseks %d (mitte %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+msgid "no label, "
+msgstr ""
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Kasutamine: %s [-c] [-v0|-v1] [-pLKSUURUS] /dev/nimi [plokke]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "liiga palju vigaseid leheklgi"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Mlu sai otsa"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "ks vigane leheklg\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, fuzzy, c-format
msgid "%lu bad pages\n"
msgstr "%d vigast leheklge\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: Viga - ei ole eldud, kuhu saalimisala tekitada\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, fuzzy, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: Viga - suurus %ld on suurem kui seadme maht %d\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: Viga - tundmatu versioon %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: Viga - saalimisala peab olema vhemalt %ldkB\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: Hoiatus - piiran saalimisala %ld kB-ga\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: Viga - ei ole eldud, kuhu saalimisala tekitada\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "ei rita luua saalimisala seadmele `%s'"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "fataalne viga: esimene lehklg pole kttesaadav"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1166,24 +1187,24 @@ msgstr ""
"Saalimisala ei tekitataud. Kui Te testi soovite sellele seadmele\n"
"v0 saalimisala tekitada, kasutage -f vtit selle sundimiseks.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "Ei suuda saalimisala tekitada: seade pole loetav"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, fuzzy, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Tekitan saalimisala versiooniga %d, suurus = %lu KiB\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "ei suuda tagasi kerida saalimisseadet"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "ei suuda kirjutada signatuuriga leheklge"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync ei nnestunud"
@@ -1223,55 +1244,60 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Kasutamatu"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Vaba ruum"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Ketast sai muudetud\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr "Tehke algkivitus, et uuendused mjuma hakkaksid\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1283,315 +1309,315 @@ msgstr ""
"partitsioone, lugege palun cfdisk'i manuali\n"
"lisainformatsiooni hankimiseks.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "FATAALNE VIGA"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Vajuta mnda klahvi cfdiskist vljumiseks"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Ei suuda kettal seekida"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "Ei suuda kettalt lugeda"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "Ei suuda kettale kirjutada"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Liiga palju partitsioone"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "Partitsioon algab enne sektorit 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "Partitsioon lppeb enne sektorit 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "Partitsioon algab prast ketta lppu"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "Partitsioon lppeb prast ketta lppu"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr ""
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "Loogilised partitsioonid on fsilisest erinevas jrjestuses"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "Loogilised partitsioonid kattuvad"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "Suurendatud loogilised partitsioonid kattuvad"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"Sisemine viga: loogilise partitsiooni loomisel puudub extended-partitsioon"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"Siia ei saa loogilist partitsiooni luua - see tekitakse teise extended'i"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Menkirje on liiga pikk. Men vib naljakas vlja nha."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Men ilma suunata, eeldan horisontaalset"
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Vale klahv"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Vajuta mnda klahvi jtkamiseks"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primaarne"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Loo uus primaarne partitsioon"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Loogiline"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Loo uus loogiline partitsioon"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Thista"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "ra loo partitsiooni"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Sisemine viga !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Suurus (MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Beginning"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Lisada partitsioon vaba ruumi algusse"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "End"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Lisada partitsioon vaba ruumi lppu"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Pole ruumi extended-partitsiooni tegemiseks"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
#, fuzzy
msgid "No partition table.\n"
msgstr "Partitsioonitabelit ei ole\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
#, fuzzy
msgid "No partition table. Starting with zero table."
msgstr "Puuduv partitsioonitabel vi vale signatuur partitsioonitabelis"
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
#, fuzzy
msgid "Bad signature on partition table"
msgstr "Trkkida lihtsalt tabel"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
#, fuzzy
msgid "Unknown partition table type"
msgstr "Partitsioonitabelit ei ole\n"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Kas soovite alustada thja tabeliga [y/N] ?"
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr "Te andiste suurema silindrite arvu kui kettale mahub"
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "Ei suuda avada kettaseadet"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
msgid "Opened disk read-only - you have no permission to write"
msgstr "Avasin ketta ainult lugemiseks - kirjutamiseks pole igust"
-#: fdisk/cfdisk.c:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "Ei suuda kindlaks teha ketta mahtu"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Vigane primaarne partitsioon"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Vigane loogiline partitsioon"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Hoiatus!! See vib Teie kettal andmeid hvitada!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr "Olete kindel, et soovite salvestada partitsioonitabelit? (jah vi ei):"
-#: fdisk/cfdisk.c:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "ei"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "Ei kirjutanud partitsioonitabelit kettale"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "jah"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Palun sisestage `jah' vi `ei'"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Kirjutan partitsioonitabelit kettale..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Kirjutasin partitsioonitabeli kettale"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Kirjutasin partitsioonitabeli, aga tagasi lugemine ebannestus. Reboot abiks."
-#: fdisk/cfdisk.c:1857
+#: fdisk/cfdisk.c:1906
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"kski primaarne partitsioon pole mrgitud buutivaks. DOSi MBR ei suuda siit "
"buutida."
-#: fdisk/cfdisk.c:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Rohkem kui ks primaarne partitsioon on mrgitud buutivaks. DOSi MBR ei "
"suuda siit buutida."
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Siseta failinimi vi vajuta RETURN ekraanil nitamiseks: "
-#: fdisk/cfdisk.c:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "Ei suuda avada faili `%s'"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Kettaseade: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Vaba "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primaarne"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Loogiline"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Tundmatu"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Buutiv"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, fuzzy, c-format
msgid "(%02X)"
msgstr "Tundmatu (%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
#, fuzzy
msgid "None"
msgstr "valmis (D)"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Partitsioonitabel kettal %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
#, fuzzy
msgid " First Last\n"
msgstr " Esimene Viimane\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
#, fuzzy
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
@@ -1599,7 +1625,7 @@ msgid ""
msgstr ""
" # Tp Sektor Sektor Offset Pikkus Failisst. tp (ID) Lipud\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1609,472 +1635,472 @@ msgstr ""
"---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ----Algus----- -----Lpp----- Esimene Sektorite\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
#, 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:2144
+#: fdisk/cfdisk.c:2193
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "tooRes"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Trkkida tabel toores formaadis (baithaaval)"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Sektorid"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Trkkida tabel jrjestatuna sektorite jrgi"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Tabel"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Trkkida lihtsalt tabel"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "Ei trki midagi"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "cfdiski abiinfo ekraan"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "See on cfdisk, curses'il baseeruv ketta partitsioneerimise"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2260
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:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "arvuti kvakettal."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Ksk Thendus"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b Vahetada buuditavuse lippu jooksval partitsioonil"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Kustutada jooksev partitsioon"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Muuta silindrite, peade ja rajal olevate sektorite arvu"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " HOIATUS: See ksk on ainult neile, kes teavad, mida "
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " nad teevad."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Nidata sedasama ekraani"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m Maksimiseerida jooksva partitsiooni kettakasutus"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " Mrkus: see vib teha ketta mittehilduvaks DOSi,"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " OS/2 ja muude operatsioonisteemidega."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Luua uus partitsioon vaba ruumi sisse"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
msgid " p Print partition table to the screen or to a file"
msgstr " p Vljastada partitsioonitabel ekraanile vi faili"
-#: fdisk/cfdisk.c:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Vljastamisel vite valida mitme formaadi vahel:"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " "
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - tooRes - see baidijada, mis kettale kirjutataks"
-#: fdisk/cfdisk.c:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Sektorite jrgi jrjestatud tabel"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - Tabel teksti kujul (umbes nagu peaekraanil)"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q Vljuda programmist ilam muutusi salvestamata"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Muuta jooksva partitsiooni failissteemi tpi"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u Muuta partitsioonide suuruse ja asukoha hikuid"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Variandid on MB, sektorid ja silindrid"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
msgid " W Write partition table to disk (must enter upper case W)"
msgstr " W Kirjutada partitsioonitabel kettale (jah, suurtht)"
-#: fdisk/cfdisk.c:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " Kuna see vib kettalt andmeid hvitada, ksitakse"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr " enne kirjutamist kinnitust. Vastata tuleb eestikeelse"
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " tissnaga (`jah' vi `ei')."
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Nool les Viia kursor eelmisele reale"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "Nool alla Viia kursor jrgmisele reale"
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Joonistada ekraan le"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Nidata sedasama ekraani"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Mrkus: kiki neid kske saab sisestada nii suur- kui vikethtedena,"
-#: fdisk/cfdisk.c:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "vlja arvatud suur W."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "silindrid (C)"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Muuta silindrite arvu geomeetrias"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "pead (H)"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Muuta peade arvu geomeetrias"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Muuta sektorite arvu geomeetrias"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "valmis (D)"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Muutused geomeetrias on tehtud"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Sisestage silindrite arv: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Vigane silindrite arv"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Sisetage peade arv: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Vigane peade arv"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Sisestage sektorite arv rajal: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Vigane sektorite arv"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Sisestage failissteemi tbi number: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "Failissteemi tpi ei saa muuta thjaks"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "Failissteemi tpi ei saa muuta extended'iks"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Tundmatu (%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Tundmatu (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Kettaseade: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Maht: %lld baiti, %ld MB"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Maht: %lld baiti, %ld.%ld GB"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Pid: %d Sektoreid rajal: %d Silindreid: %d"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Nimi"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Lipud"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Tp"
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "FS tp"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Label]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
#, fuzzy
msgid " Sectors"
msgstr "Sektoreid"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
#, fuzzy
msgid " Cylinders"
msgstr "silindrid (C)"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
#, fuzzy
msgid " Size (MB)"
msgstr "Maht (MB)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
#, fuzzy
msgid " Size (GB)"
msgstr "Maht (GB)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Buutiv"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Vahetada buuditavuse lippu jooksval partitsioonil"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "kustutaDa"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Kustutada jooksev partitsioon"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geomeetria"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Muuta ketta geomeetriat (ainult ekspertidele)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Help"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Nidata abiinfot"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Maksimiseerida"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Maksimiseerida jooksva partitsiooni kettakasutus (ainult ekspertidele)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "uus (N)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Luua uus partitsioon vaba ruumi sisse"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Prindi"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print partition table to the screen or to a file"
msgstr "Vljastada partitsioonitabel ekraanile vi faili"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Vlja"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Vljuda programmist ilam muutusi salvestamata"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Tp"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Muuta failissteemi tpi (DOS, Linux, OS/2 jne)"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Uhikud"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
"Muuta partitsioonide suuruse nitamise hikuid (MB, sektorid, silindrid)"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "salvesta (W)"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr "Kirjutada partitsioonitabel kettale (vib hvitada andmed)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "Seda partitsiooni ei saa buutivaks teha"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "Thja partitsiooni ei saa kustutada"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "Seda partitsiooni ei saa maksimiseerida"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "See partitsioon pole kasutatav"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "See partitsioon on juba olemas"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "Thja partitsiooni tpi ei saa muuta"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "Rohkem partitsioone ei ole"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Vigane ksk"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
#, 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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2350,20 +2376,20 @@ msgstr " f parandada partitsioonide jrjekord"
msgid "You must set"
msgstr "Te peate mrama, et eksisteerib nii-ja-nii-mitu"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "pead"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "sektorit"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "silindrit"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2372,11 +2398,11 @@ msgstr ""
"%s%s.\n"
"Te saate seda teha lisafunktsionaalsuse menst.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " ja "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2395,28 +2421,28 @@ msgstr ""
"2) muude operatsioonissteemide buutimise ja partitsioneerimise\n"
"tarkvaraga (niteks DOSi FDISK, OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Vigane offset primaarses extended-partitsioonis\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Hoiatus: leliigne 'link pointer' partitsioonitabelis %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr "Hoiatus: ignoreerin leliigseid andmeid partitsioonitabelis %d\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2427,37 +2453,37 @@ msgstr ""
"kuni Te ise otsustate need kettale kirjutada. Prast seda pole vana sisu\n"
"loomulikult enam taastatav.\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Mrkus: sektori suurus on %d (mitte %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "Partitsioonitabelit ei saa salvestada\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
msgstr ""
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
msgstr "Seade ei sisalda ei DOSi, Suni, SGI ega ODF partitsioonitabelit\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Sisemine viga\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "Ignoreerin lisa-extended partistsiooni %d\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2466,7 +2492,7 @@ msgstr ""
"Hoiatus: vigane lipp 0x%04x (partitsioonitabelis %d) parandatakse\n"
"kirjutamisel (w) ra\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2474,79 +2500,79 @@ msgstr ""
"\n"
"Sain EOF-i kolm korda jrjest - aitab\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Kuueteistkmnendssteemis kood (L nitab koodide nimekirja): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, fuzzy, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%d-%d, vaikimisi %d): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, fuzzy, c-format
msgid "Using default value %u\n"
msgstr "Kasutan vaikimisi vrtust %d\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Vrtus on piiridest vljas\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Partitsiooni number"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Hoiatus: partitsioonil %d on thi tp\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, fuzzy, c-format
msgid "Selected partition %d\n"
msgstr "Ignoreerin lisa-extended partistsiooni %d\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
#, fuzzy
msgid "No partition is defined yet!\n"
msgstr "htegi partitsiooni pole defineeritud\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr ""
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "silinder"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "sektor"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Sisestamisel ja nitamisel on nd hikuteks %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "Hoiatus: partitsioon %d on extended-partitsioon\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "DOSiga hilduvuse lipp on psti\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "DOSiga hilduvuse lipp pole psti\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "Partitsiooni %d pole veel olemas!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2558,7 +2584,7 @@ msgstr ""
"tekitada tpi 0 partitsioone. Te saate partitsiooni\n"
"kustutada ksuga 'd'.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2566,7 +2592,7 @@ msgstr ""
"Partitsiooni ei saa muuta extended'iks ega extendedist harilikuks.\n"
"Selle asemel tuleb partitsioon kustutada ja uus luua.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2575,7 +2601,7 @@ msgstr ""
"Soovitav on jtta partitsioon 3 terveks kettaks (5),\n"
"sest SunOs/Solaris eeldab seda ja see meeldib isegi Linuxile.\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2584,61 +2610,61 @@ msgstr ""
"Kaaluge partitsiooni 9 jtmist kite piseks (0) ja\n"
"partitsiooni 11 jtmist terveks kettaks (6) nagu IRIX seda eeldab\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "Partitsiooni %d tp on nd %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr ""
"Partitsiooni %d fsiline ja loogiline algus ei lange kokku:\n"
"(Pole Linuxi oma?)\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " fs=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "loogiline=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "Partitsiooni %d fsiline ja loogiline lpp ei lange kokku:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "Partitsioon %i ei alga silindri piirilt:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "peaks olema (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, fuzzy, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "Partitsioon %d ei lppe silindri piiril\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "peaks olema (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
"Disk %s: %ld MB, %lld bytes\n"
msgstr ""
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, fuzzy, c-format
msgid ""
"\n"
@@ -2648,7 +2674,7 @@ msgstr ""
"Ketas %s: %d pead, %d sektorit rajal, %d silindrit\n"
"\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, fuzzy, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr ""
@@ -2656,19 +2682,19 @@ msgstr ""
"Ketas %s: %d pead, %d sektorit rajal, %d silindrit\n"
"\n"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ""
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2676,23 +2702,23 @@ msgstr ""
"Midagi pole vaja teha, jrjestus on juba ige\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, fuzzy, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Boot Algus Lpp Plokke Id Ssteem\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Seade"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2700,7 +2726,7 @@ msgstr ""
"\n"
"Partitsioonitabeli kirjed on fsilisest erinevas jrjekorras\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2711,92 +2737,92 @@ msgstr ""
"Ketas %s: %d pead, %d sektorit rajal, %d silindrit\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
#, fuzzy
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "Nr AF P Sek Sil P Sek Sil Algus Maht ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Hoiatus: partitsioon %d sisaldab sektorit 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Partitsioon %d: pea %d on suurem kui peade arv %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Partitsioon %d: sektor %d on suurem kui sektroite arv rajal %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Partitsioon %d: silinder %d on suurem kui silindrite arv %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr "Partitsioon %d: eelnevate sektorite arv %d ei klapi summarsega (%d)\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Hoiatus: partitsioonis %d on andmete algus vigane\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Hoiatus: partitsioon %d kattub partitsiooniga %d\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Hoiatus: partitsioon %d on thi\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "Loogiline partitsioon %d pole leni partitsioonis %d\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, fuzzy, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "Kogu kasutataud sektorite arv %d on suurem kui sektorite koguarv %d\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, fuzzy, c-format
msgid "%lld unallocated sectors\n"
msgstr "%d vaba sektorit\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr "Partitsioon %d on juba olemas. Kustutage see enne uuesti lisamist\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Esimene %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "Sektor%d on juba kasutusel\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Vabad sektorid on otsas\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Viimane %s vi +suurus vi +suurusM vi +suurusK"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2809,27 +2835,27 @@ msgstr ""
"\t(ksuga o).\n"
"\tHOIATUS: see hvitab ketta praeguse sisu!\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "Maksimaalne arv partitsioone on juba loodud\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr ""
"Te peate kigepealt mne partitsiooni kustutama ja asemele\n"
"extended partitsiooni tegema\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
#, fuzzy
msgid "All logical partitions are in use\n"
msgstr "Loogilised partitsioonid on fsilisest erinevas jrjestuses"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
#, fuzzy
msgid "Adding a primary partition\n"
msgstr "Vigane primaarne partitsioon"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2840,20 +2866,20 @@ msgstr ""
" %s\n"
" p primaarse partitsiooni (1-4) loomine\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l loogilise partitsiooni (5-...) loomine"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e extended partitsiooni loomine"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Vigane partitsiooni number tbile `%c'\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2861,11 +2887,11 @@ msgstr ""
"Partitsioonitabelit on muudetud!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Kasutan ioctl() partitsioonitabeli uuesti lugemiseks\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2879,7 +2905,7 @@ msgstr ""
"Tuum kasutab endiselt vana tabelit,\n"
"uus tabel hakkab kehtima jrgmisest buudist alates.\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2891,64 +2917,71 @@ msgstr ""
"partitsioone, lugege palun fdisk'i manuali\n"
"lisainformatsiooni jaoks.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Viga %s sulgemisel\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Kirjutan puhvreid kettale\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "Partitsioonil %d pole andmetele ruumi eraldatud\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Andmete uus algus"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Eksperdi ksk (m annab abiinfot): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Sisestage silindrite arv"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Sisetage peade arv"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Sisetage sektorite arv"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr "Hoiatus: sean sektorite offseti DOSiga hilduvuse jaoks\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "Seade %s ei sisalda ratuntavat partitsioonitabelit\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "Ei suuda avada seadmefaili %s\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "Ei suuda avada faili %s\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: tundmatu ksk\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr "Kasutatav tuum leiab sektori suuruse ise - ignoreerin -b vtit\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -2957,18 +2990,18 @@ msgstr ""
"tpselt mratud seadmega\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, fuzzy, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr ""
"Leidisn seadmelt %s OSF/1 partitsioonitabeli, lhen OSF/1 rezhiimi.\n"
"DOSi partitsioonitabeli rezhiimi naasmiseks kasutage ksku `r'.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Ksk (m annab abiinfot): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -2977,15 +3010,15 @@ msgstr ""
"\n"
"Aktiivne buutfail on %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Palun sisestage uue buutfaili nimi: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "Buutfail ji samaks\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3365,7 +3398,7 @@ msgstr "Linuxi swap"
msgid "Linux native"
msgstr "Linuxi andmed"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3690,7 +3723,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linuxi iseavastuv raid"
@@ -4063,8 +4096,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4116,150 +4149,155 @@ msgstr "Linux extended"
msgid "NTFS volume set"
msgstr "NTFS volume set"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "IBM Thinkpad hibernatsioon"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr "Darwin UFS"
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr "Darwin boot"
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI fs"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI swap"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "Boot Wizard peidetud"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr "Solaris boot"
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
#, fuzzy
msgid "Solaris"
msgstr "Solaris boot"
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS sekund. (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS sekund. (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS sekund. (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "Mitte-FS andmed"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Dell Utility"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS access"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS fs"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/FAT-16)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "Linux/PA-RISC boot"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS sekundaarne"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5225,124 +5263,124 @@ msgstr ""
msgid "internal error, contact the author."
msgstr ""
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "buuditud MILO'st\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Ruffiani BCD kell\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "kella port parandatud aadressiks 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "Vinge masin!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomaarne '%s' ei nnestunud 1000 katse jooksul!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Ei suuda avada seadet /dev/port: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
msgid "I failed to get permission because I didn't try.\n"
msgstr "Ei saanud luba, sest ei ksinudki\n"
-#: hwclock/cmos.c:601
+#: hwclock/cmos.c:602
#, 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:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Ilmselt on vaja roodu igusi\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Eeldan, et riistavalises kellas on kasutusel %s aeg\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "kohalik"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Hoiatus: arusaamatu kolmas rida adjtime failis\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Ootasin: `UTC' vi `LOCAL' vi mitte midagi)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Viimane ujumise vastane parandus tehti %ld sekundit prast 1969\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Viimane kalibreerimine tehti %ld sekundit prast 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "Riistvaralises kellas on kasutusel %s aeg\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "tundmatu"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "Ootan kella tiksu...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...sain tiksu\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr ""
"Vigased vrtused riistvaralises kellas: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Riistvaralise kella aeg: %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld sekundit prast "
"1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Riistvaralisest kellast loetud aeg: %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Sean riistavaralise kella niduks %.2d:%.2d:%.2d = %ld sekundit prast 1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Ei muutnud kella - testime ainult\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5351,7 +5389,7 @@ msgstr ""
"Seatavast kellaajast on mdas %.6f sekundit.\n"
"Ootan edasi tissekundini.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5360,20 +5398,20 @@ msgstr ""
"kuupev) vi on nad vljaspool meie poolt kasutatavat ajavahemikku (niteks "
"aasta 2005)\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f sekundit\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "--date parameeter on puudu\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "--date argument on liiga pikk\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5381,21 +5419,21 @@ msgstr ""
"--date suvandiga antud kellaaeg on vigane.\n"
"Tpsemalt eldes sisaldab ta jutumrke.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Annan `date' ksu: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr "Ei suuda kivatada 'date' programmi /bin/sh shelliga - popen() sai vea"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "date-ksu tulemus = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5410,7 +5448,7 @@ msgstr ""
"Vastus oli:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5427,12 +5465,12 @@ msgstr ""
"Vastus oli:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "kuupevastring %s vrdub %ld sekundiga prast 1969\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5440,40 +5478,40 @@ msgstr ""
"Riistavaline kell ei sisalda korrektset aega, seega me ei saa seada "
"ssteemikella selle jrgi\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "kutsun vlja settimeofday:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr "Ei sea ssteemikella, sest tegu on testimisega\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Kella seadmiseks peab olema root\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "settimeofday() ei nnestunud"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
msgstr ""
"Ei paranda korrigeerimistegurit, kuna riistvaraline kell sisaldas sodi\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
#, fuzzy
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
@@ -5482,7 +5520,7 @@ msgstr ""
"Ei paranda korrigeerimistegurit, kuna viimane kalibreerimine toimus vhem "
"kui pev tagasi\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5490,7 +5528,7 @@ msgstr ""
"Ei paranda korrigeerimistegurit, kuna viimane kalibreerimine toimus vhem "
"kui pev tagasi\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, fuzzy, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5501,22 +5539,22 @@ msgstr ""
"korrigeerimistegurile %f sekundit pevas.\n"
"Paranen korrigeerimisfaktoriks %f sekundit pevas.\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "Viimasest kellaaja korrigeermisest on mdunud %d sekundit\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr ""
"Vaja ob vahele lisada %d sekundit ning viidata ajale %.6f sekundit tagasi\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "Ei uuenda adjtime faili, sest tegu on testimisega\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5525,35 +5563,35 @@ msgstr ""
"Oleks kirjutanud faili %s jrgmist:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Ujumise kompenseerimise parameetreid ei uuendatud\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
"Riistvaraline kell ei sisalda korrektset aega, seega me ei saa sinna "
"parandust lisada\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr "Vajalik parandus on alla sekundi, seega kella ei sea\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Kasutan %s\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Ei leidnud kasutatavat kellaliidest\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "Ssteemikella seadmine ei nnestunud\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5564,16 +5602,16 @@ msgstr ""
"See koopia hwclock'ist on kompileeritud ttama muul masinal (ja seega\n"
"ilmselt ei tta hetkel Alpha peal). Ei vta midagi ette.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "Ei saanud tuumalt epohhi vrtust ktte\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "Tuum kasutab epohhi vrtust %lu\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5581,16 +5619,16 @@ msgstr ""
"Epohhi vrtuse seadmiseks peate kasutama `epoch' vtit uue vrtuse "
"andmiseks\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "Ei pannud epohhiks %d - testime ainult\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "Epohhi vrtuse seadmine ei nnestunud\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5649,7 +5687,7 @@ msgstr ""
" --noadjfile mitte kasutada faili /etc/adjtime. Vajab kas --utc vi\n"
" --localtime vtit\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5658,19 +5696,19 @@ msgstr ""
" tleb hwclock'ile, mis tpi Alphaga on tegemist\n"
" Vt. hwclock(8) lhema info jaoks\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s ei taha mitte-vtmelisi argumente. %d on leliigne\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
#, fuzzy
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
msgstr "Korraga saab kasutada ainult hte funktsiooni\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5679,143 +5717,143 @@ msgstr ""
"%s: --utc ja --localtime vtmed on teineteist vlistavad. Teie kasutasite "
"mlemat korraga\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
"specified both.\n"
msgstr "%s: Vtmed --adjust ja --noadjfile on vastastikku vlistavad\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr ""
"%s: Koos vtmega --noadjfile tuleb anda ka kas --utc vi --localtime vti\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "Ei saanud kasutatavat aega, ei keera kella\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Kahjuks saab ainult root riistvaralist kella keerata\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Kahjuks saba ainult root ssteemikelal keerata\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
msgstr "Kahjuks saab ainult root riistvaralise kella epohhi seada\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr "Ei suuda hegi tuntud meetodiga riistvaralist kella ktte saada\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
msgstr ""
"Kasutage --debug vtit, et nha otsingu detaile juurdepsu otsimisel\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Ootan tskils, kuni KDGHWCLK abil saadud aeg edasi lheb\n"
-#: hwclock/kd.c:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK ioctl kella lugemiseks ei nnestunud"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Taimaut oodates kellaaja muutumist\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK ioctl kella lugemiseks ei nnestunud tskils"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() abil kella lugemine %s kaudu ei nnestunud"
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "KDSHWCLK ioctl ei nnestunud"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Ei suuda avada seadet /dev/tty1 vi /dev/vc/1"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK ioctl ei nnestunud"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "%s avamine ei nnestunud"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "ioctl() abil kella lugemine %s kaudu ei nnestnud\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Ootan tskils, kuni %s kaudu saadud aeg edasi lheb\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s ei paku katkestusfunktsioone. "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "%s lugemine kella tiksu ootamisel ei nnestunud"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "%s lugemine kella tiksu ootamisel ei nnestunud"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "%s lugemine kella tiksu ootamisel ei nnestunud"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "%s ioctl() abil ei nnestunud vlja llitada kella katkestusi"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr "%s ioctl() abil ei nnestunud sisse llitada kella katkestusi"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "ioctl() %s kaudu kella seadmiseks ei nnestunud\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "ioctl(%s) nnestus\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "%s avamine ei nnestunud"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5825,17 +5863,17 @@ msgstr ""
"Epohhi vrtuse manipuleerimiseks tuleb kasutada 'rtc' draiverit seadmefaili "
"%s kaudu. Antud ssteemis seda faili ei leidu\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "Ei suuda avada seadet %s"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "%s ioctl(RTC_EPOCH_READ) ei nnestunud"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr "lugesime epohhi %ld %s kaudu RTC_EPOCH_READ ioctl abil\n"
@@ -5843,23 +5881,23 @@ msgstr "lugesime epohhi %ld %s kaudu RTC_EPOCH_READ ioctl abil\n"
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr "Epohhi vrtus ei tohi olla alla 1900. Teie andsite %ld\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "sean epohhiks %ld %s RTC_EPOCH_SET ioctl abil\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr "Tuuma draiver %s jaoks ei toeta RTC_EPOCH_SET ioctl'i\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "%s ioctl(RTC_EPOCH_SET) ei nnestunud"
@@ -6076,7 +6114,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Parool: "
@@ -6874,36 +6912,36 @@ msgstr "Monteerin lahti kik allesjnud failissteemid"
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: Ei suuda lahti monteerida kataloogi %s: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Buudin hekasutajarezhiimi\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr "hekasutajarezhiimi shelli ei nnestunud kivitada\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "hekasutajarezhiimi shelli jaoks ei nnestunud fork'ida\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "viga FIFO avamisel\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr ""
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "viga finalprog'i kivitamisel\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "viga finalprog'i kivitamisel\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -6911,35 +6949,35 @@ msgstr ""
"\n"
"Vale parool\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "kataloogi lstat() ei nnestunud\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "kataloogi stat() ei nnestunud\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "kataloogi avamine ei nnestunud\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "fork ei nnestunud\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "exec ei nnestunud\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "Ei suuda avada inittab'i\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "TERM pole seatud vi stat (tty) ei nnestnud\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "viga teenuse peatamisel: %s"
@@ -7510,17 +7548,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:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr ""
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr ""
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr ""
@@ -7529,58 +7567,58 @@ msgstr ""
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:472
+#: mount/fstab.c:484
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:487
+#: mount/fstab.c:499
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:499
+#: mount/fstab.c:511
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr ""
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr ""
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr ""
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
"Perhaps there is a stale lock file?\n"
msgstr ""
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr ""
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr ""
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr ""
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
@@ -7646,26 +7684,26 @@ msgstr "%s pole flopiseade\n"
msgid "Couldn't lock into memory, exiting.\n"
msgstr ""
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr ""
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, fuzzy, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "%s: ei suuda kivitada programmi %s: %m"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr ""
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, c-format
msgid ""
"usage:\n"
@@ -7675,12 +7713,11 @@ msgid ""
" %s [-e encryption] [-o offset] {-f|loop_device} file # setup\n"
msgstr ""
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr ""
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
@@ -7698,294 +7735,312 @@ msgstr ""
msgid "; rest of file ignored"
msgstr ""
-#: mount/mount.c:375
+#: mount/mount.c:382
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr ""
-#: mount/mount.c:380
+#: mount/mount.c:387
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr ""
-#: mount/mount.c:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr ""
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr ""
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr ""
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr ""
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr ""
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr ""
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr ""
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr ""
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr ""
-#: mount/mount.c:619
+#: mount/mount.c:626
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr ""
-#: mount/mount.c:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr ""
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr ""
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr ""
-#: mount/mount.c:686
+#: mount/mount.c:693
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: ei suuda avada seadet %s kiiruse seadmiseks"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr ""
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr ""
-#: mount/mount.c:844
+#: mount/mount.c:851
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr ""
-#: mount/mount.c:884
+#: mount/mount.c:891
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr ""
-#: mount/mount.c:895
+#: mount/mount.c:902
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
-#: mount/mount.c:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr ""
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr ""
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr ""
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr ""
-#: mount/mount.c:911
+#: mount/mount.c:918
msgid "mount: must be superuser to use mount"
msgstr ""
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr ""
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr ""
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr ""
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr ""
-#: mount/mount.c:931
+#: mount/mount.c:938
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr ""
-#: mount/mount.c:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr ""
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
" (a path prefix is not a directory)\n"
msgstr ""
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr ""
-#: mount/mount.c:959
+#: mount/mount.c:966
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
+msgstr ""
+
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
msgstr ""
-#: mount/mount.c:993
+#: mount/mount.c:1005
msgid "mount table full"
msgstr ""
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr ""
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr ""
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, fuzzy, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr " l anda nimekiri tuntud failissteemide tpidest"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr ""
-#: mount/mount.c:1018
+#: mount/mount.c:1030
msgid "mount: maybe you meant 'iso9660'?"
msgstr ""
-#: mount/mount.c:1020
+#: mount/mount.c:1032
msgid "mount: maybe you meant 'vfat'?"
msgstr ""
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr ""
-#: mount/mount.c:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
" (maybe `insmod driver'?)"
msgstr ""
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr ""
-#: mount/mount.c:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr ""
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr ""
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr ""
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr ""
-#: mount/mount.c:1066
+#: mount/mount.c:1078
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr ""
-#: mount/mount.c:1165
+#: mount/mount.c:1177
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
-#: mount/mount.c:1171
+#: mount/mount.c:1183
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr ""
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr ""
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr ""
-#: mount/mount.c:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8010,46 +8065,46 @@ msgid ""
"For many more details, say man 8 mount .\n"
msgstr ""
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr ""
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr ""
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr ""
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr ""
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr ""
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr ""
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr ""
-#: mount/mount_by_label.c:190
+#: mount/mount_by_label.c:192
#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, c-format
+msgid "%s: bad UUID"
msgstr ""
#: mount/mount_guess_fstype.c:489
@@ -8165,20 +8220,20 @@ msgstr ""
msgid "unknown nfs status return value: %d"
msgstr ""
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr ""
-#: mount/swapon.c:54
+#: mount/swapon.c:57
#, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8186,31 +8241,36 @@ msgid ""
" %s [-v] special ...\n"
msgstr ""
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr ""
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
-msgstr ""
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: ei suuda kivitada programmi %s: %m"
-#: mount/swapon.c:183
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
+msgstr "%s: Ei suuda avada faili %s\n"
+
+#: mount/swapon.c:196
#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
-#: mount/swapon.c:195
+#: mount/swapon.c:208
#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr ""
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr ""
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr ""
@@ -8315,42 +8375,48 @@ msgid ""
" umount [-f] [-r] [-n] [-v] special | node...\n"
msgstr ""
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "Ei suuda avada seadmefaili %s\n"
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr ""
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr ""
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr ""
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr ""
-#: mount/umount.c:587
+#: mount/umount.c:592
#, c-format
msgid "umount: %s is not in the fstab (and you are not root)"
msgstr ""
-#: mount/umount.c:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr ""
-#: mount/umount.c:632
+#: mount/umount.c:637
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr ""
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 8fa9573b8..9b22d9051 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -14,7 +14,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+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"
@@ -160,7 +160,7 @@ msgstr "kytt: %s [ -n ] laite\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -768,7 +768,7 @@ msgstr "liian monta i-solmua - maksimi on 512"
msgid "not enough space, need at least %lu blocks"
msgstr "tila ei riit, vaaditaan vhintn %lu lohkoa"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Laite: %s\n"
@@ -843,7 +843,7 @@ msgstr ""
"Kytt: mkfs [-V] [-t tied.jrj. tyyppi] [tied.jrj.valitsimet] laite "
"[koko]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1078,7 +1078,7 @@ msgid "Weird values in do_check: probably bugs\n"
msgstr ""
"Outoja arvoja funktiossa do_check: todennkisesti ohjelmistovirheit\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "siirtyminen eponnistui funktiossa check_blocks"
@@ -1135,64 +1135,86 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Oletetaan sivujen kooksi %d (ei %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "nimi"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Kytt: %s [-c] [-v0|-v1] [-pSIVUKOKO] /dev/nimi [lohkot]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "liian monta viallista sivua"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Muisti lopussa"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "yksi viallinen sivu\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, fuzzy, c-format
msgid "%lu bad pages\n"
msgstr "%d viallista sivua\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: virhe: Sivutustilan kohde?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, fuzzy, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: virhe: koko %ld on suurempi kuin laitteen koko %d\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: virhe: tuntematon versio %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: virhe: sivutusalueen on oltava vhintn %ld kt:n kokoinen\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: varoitus: typistetn sivutusalue kokoon %ld kt\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: virhe: Sivutustilan kohde?\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "Ei yritet luoda sivutuslaitetta kohteeseen \"%s\""
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "vakavaa: ensimminen sivu on lukukelvoton"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1205,24 +1227,24 @@ msgstr ""
"osiotaulun. Sivutusta ei luotu. Jos todella haluat luoda v0-sivutuksen\n"
"kyseiselle laitteelle, kyt valitsinta -f sen pakottamiseen.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "Sivutustilaa ei voi luoda: ei luettavissa"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Asetetaan sivutustila, versio %d, koko = %llu kt\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "sivutuslaitteella ei voi siirty taaksepin"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "allekirjoitussivua ei voi kirjoittaa"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync eponnistui"
@@ -1263,57 +1285,62 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Ei kytettviss"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Vapaa tila"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Levy on vaihdettu.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Jrjestelm on syyt kynnist uudelleen osiotaulun pivittymisen "
"varmistamiseksi.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1324,315 +1351,315 @@ msgstr ""
"VAROITUS: Jos DOS 6.x -osioita luotiin tai muutettiin,\n"
"katso listietoja cfdiskin manuaalista.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "VAKAVA VIRHE"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Paina mit tahansa nppint poistuaksesi cfdiskist"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Levyasemalla ei voi siirty"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "Levyasemaa ei voi lukea"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "Levyasemalle ei voi kirjoittaa"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Liian monta osiota"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "Osion alku on ennen sektoria 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "Osion loppu on ennen sektoria 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "Osion alku on levyn lopun jlkeen"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "Osion loppu on levyn lopun jlkeen"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr "Osion loppu on viimeisell osittaisella sylinterill"
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "loogiset osiot eivt ole levyjrjestyksess"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "loogiset osiot ovat pllekkiset"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "suurennetut loogiset osiot ovat pllekkiset"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!!! Sisinen virhe luotaessa loogista asemaa ilman laajennettua osiota !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"Thn ei voi luoda loogista asemaa -- luotaisiin kaksi laajennettua osiota"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Liian pitk valikon kohta. Valikko voi nytt oudolta."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Valikko ilman suuntaa. Kytetn oletuksena vaakasuuntaa."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Vr nppin"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Paina nppint jatkaaksesi"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Ensi"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Luo uusi ensiosio"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Looginen"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Luo uusi looginen osio"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Peruuta"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "l luo osiota"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Sisinen virhe !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Koko (Mt): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Alku"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Lis osio tyhjn tilan alkuun"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Loppu"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Lis osio tyhjn tilan loppuun"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Laajennetun osion luomiseen ei ole tilaa"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
#, fuzzy
msgid "No partition table.\n"
msgstr "osiotaulua ei ole.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
#, fuzzy
msgid "No partition table. Starting with zero table."
msgstr "Ei osiotaulua tai tuntematon allekirjoitus osiotaulussa"
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
#, fuzzy
msgid "Bad signature on partition table"
msgstr "Nyt osiotaulu"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
#, fuzzy
msgid "Unknown partition table type"
msgstr "osiotaulua ei ole.\n"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Haluatko aloittaa tyhjll osiotaululla [y/N]?"
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr "Annoit suuremman sylinterimrn kuin levylle mahtuu"
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "Levyasemaa ei voi avata"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
msgid "Opened disk read-only - you have no permission to write"
msgstr "Levy avattiin vain luku -tilassa - sinulla ei ole kirjoitusoikeutta"
-#: fdisk/cfdisk.c:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "Levyn kokoa ei voi hakea"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Viallinen ensiosio"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Viallinen looginen osio"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Varoitus!! Tm voi tuhota dataa levylt!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
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:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "ei"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "Osiotaulua ei kirjoitettu levylle"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "kyll"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Kirjoita \"kyll\" tai \"ei\""
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Kirjoitetaan osiotaulua levylle..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Osiotaulu kirjoitettiin levylle"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Osiotaulu kirjoitettiin, mutta uudelleenluku eponnistui. Tietokone on "
"kynnistettv uudelleen, jotta taulu pivittyy."
-#: fdisk/cfdisk.c:1857
+#: fdisk/cfdisk.c:1906
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Yhtn ensiosiota ei ole merkitty kynnistettvksi. DOS MBR ei kynnist "
"tt."
-#: fdisk/cfdisk.c:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Useampi kuin yksi ensiosio on merkitty kynnistettvksi. DOS MBR ei "
"kynnist tt."
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Syt tiedostonimi tai paina RETURN saadaksesi nytlle: "
-#: fdisk/cfdisk.c:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "Tiedostoa \"%s\" ei voi avata"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Levyasema: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Sektori 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Sektori %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Ei mitn"
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Ens/Loog"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Ensi"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Looginen"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Tuntematon"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Kynnistettv"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
msgid "None"
msgstr "Ei mitn"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Laitteen %s osiotaulu\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
msgid " First Last\n"
msgstr " Alku- Loppu-\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1640,7 +1667,7 @@ msgstr ""
" # Tyyppi sektori sektori Siirt. Pituus Tied.jrj. tyyppi (ID) "
"Liput\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1649,465 +1676,465 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ----Alku---- ----Loppu---- Alku- Sektorien\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Liput Pt Sekt Syl ID Pt Sekt Syl sektori mr\n"
-#: fdisk/cfdisk.c:2144
+#: fdisk/cfdisk.c:2193
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- ------------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "Raaka"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Nyt taulu raa'assa datamuodossa"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Sektorit"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Nyt taulu jrjestettyn sektoreiden mukaan"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Taulu"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Nyt osiotaulu"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "l nyt taulua"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Cfdiskin ohjeruutu"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Tm on cfdisk, curses-pohjainen levynosiointiohjelma, "
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2260
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "jolla voi luoda, poistaa ja muuttaa kiintolevyll "
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "olevia osioita."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Komento Merkitys"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "------- --------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b Aseta nykyisen osion kynnistettvyyslippu plle/pois"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Poista nykyinen osio"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Muuta sylinteri-, p- ja sektoriparametreja"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " VAROITUS: Tt valitsinta tulee kytt vain niiden,"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " jotka tietvt mit ovat tekemss."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Nyt tm ohjeruutu"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m Maksimoi nykyisen osion levynkytt"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " Huom: Tm saattaa tehd osiosta epyhteensopivan"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " mm. DOSin ja OS/2:n kanssa."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Luo uusi osio tyhjst tilasta"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
msgid " p Print partition table to the screen or to a file"
msgstr " p Tulosta osiotaulu ruudulle tai tiedostoon"
-#: fdisk/cfdisk.c:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Osioille on useita erilaisia muotoja,"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " joista voit valita:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - Raaka data (tasan se, mit levylle kirjoitettaisiin)"
-#: fdisk/cfdisk.c:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Sektoreittain jrjestetty taulu"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - Taulu raa'assa muodossa"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q Lopeta ohjelma kirjoittamatta osiotaulua"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Muuta tiedostojrjestelmn tyyppi"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u Muuta osiokokonkymn yksikit"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Vaihtaa megatavujen, sektoreiden ja sylinterien vlill"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
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:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " Koska tm saattaa tuhota levyll olevaa dataa, kirjoitus"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
" on joko varmistettava tai peruttava kirjoittamalla \"kyll\" tai"
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " \"ei\""
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Nuoli yls Siirr osoitin edelliseen osioon"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "Nuoli alas Siirr osoitin seuraavaan osioon"
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Piirt ruudun uudelleen"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Nyt tm ohjeruutu"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
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:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "kirjaimilla (paitsi taulun kirjoitus (W) )."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Sylinterit"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Muuta sylinterigeometriaa"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Pt"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Vaihda pgeometriaa"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Vaihda sektorigeometriaa"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Valmis"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Geometrian muutos valmis"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Anna sylinterien mr: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Virheellinen sylinteriarvo"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Anna piden mr: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Virheellinen parvo"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Anna sektorien mr uraa kohden: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Virheellinen sektorimr"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Anna tiedostojrjestelmn tyyppi: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "Tiedostojrjestelmn tyyppi ei voi muuttaa tyhjksi"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "Tiedostojrjestelmn tyyppi ei voi muuttaa laajennetuksi"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Tunt(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Ens/Loog"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Tuntematon (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Levyasema: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Koko: %lld tavua, %lld Mt"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Koko: %lld tavua, %lld.%lld Gt"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Pt: %d Sektorit/ura: %d Sylinterit: %lld"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Nimi"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Liput"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Osiotyyppi"
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Tied.jrj.tyyppi"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Nimi]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
msgid " Sectors"
msgstr " Sektorit"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
msgid " Cylinders"
msgstr " Sylinterit"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
msgid " Size (MB)"
msgstr " Koko (Mt)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
msgid " Size (GB)"
msgstr " Koko (Gt)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Kynnistettv"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Aseta nykyisen osion kynnistettvyyslippu plle/pois"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Poista"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Poista nykyinen osio"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometria"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Muuta levyn geometriaa (vain asiantuntijoille)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Ohje"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Nyt ohjeruutu"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Maksimoi"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Maksimoi nykyisen osion tilankytt (vain asiantuntijoille)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Uusi"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Luo uusi osio tyhjst tilasta"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Nyt"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print partition table to the screen or to a file"
msgstr "Tulosta osiotaulu ruudulle tai tiedostoon"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Lopeta"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Lopeta ohjelma kirjoittamatta osiotaulua"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Tyyppi"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Vaihda tiedostojrjestelmn tyyppi (DOS, Linux, OS/2, jne)"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Yksikt"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Vaihda osiokokonytn yksikt (Mt, sekt, syl)"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Kirjoita"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr "Kirjoita osiotaulu levylle (tm saattaa tuhota dataa)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "Tst osiosta ei voi tehd kynnistettv"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "Tyhj osiota ei voi poistaa"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "Tt osiota ei voi maksimoida"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Tm osio on ei ole kytettviss"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Tm osio on jo kytss"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "Tyhjn osion tyyppi ei voi vaihtaa"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "Ei enemp osioita"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Virheellinen komento"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2380,20 +2407,20 @@ msgstr " f korjaa osiojrjestys"
msgid "You must set"
msgstr "On asetettava"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "pt"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "sektorit"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "sylinterit"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2402,11 +2429,11 @@ msgstr ""
"%s%s.\n"
"Tmn voi tehd listoimintovalikosta.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " ja "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2425,28 +2452,28 @@ msgstr ""
"2) muiden kyttjrjestelmien kynnistys- ja osiointiohjelmat\n"
" (esim. DOS FDISK, OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Virheellinen siirtym laajennetussa ensiosiossa\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Varoitus: ylimrinen linkkiosoitin osiotaulussa %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr "Varoitus: jtetn huomiotta ylimrinen data osiotaulussa %d\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2457,16 +2484,16 @@ msgstr ""
"kunnes ptt kirjoittaa ne levylle. Sen jlkeen edellist sislt ei\n"
"tietenkn voida en palauttaa.\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Huom: sektorikoko on %d (ei %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "Et pysty kirjoittamaan osiotaulua.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
@@ -2474,22 +2501,22 @@ msgstr ""
"Tll levyll on sek DOS-, ett BSD-taikatavut.\n"
"Siirry BSD-tilaan \"b\"-komennolla.\n"
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
msgstr "Laitteella ei ole kelvollista DOS-, Sun-, SGI- eik OSF-levynimit\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Sisinen virhe\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "Ylimrist laajennettua osiota %d ei huomioida\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2498,7 +2525,7 @@ msgstr ""
"Varoitus: osiotaulun %2$d virheellinen lippu 0x%1$04x korjataan "
"kirjoitettaessa (w)\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2506,79 +2533,79 @@ msgstr ""
"\n"
"saatiin EOF kolmesti - poistutaan..\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Heksakoodi (L listaa koodit): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%u-%u, oletus %u): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, c-format
msgid "Using default value %u\n"
msgstr "Kytetn oletusarvoa %u\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Arvo sallitun vlin ulkopuolella.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Osionumero"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Varoitus: osiolla %d on tyhj tyyppi\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, c-format
msgid "Selected partition %d\n"
msgstr "Valittiin osio %d\n"
#
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
msgid "No partition is defined yet!\n"
msgstr "Osioita ei ole viel mritelty!\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr "Kaikki ensiosiot on jo mritelty!\n"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "sylinteri"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "sektori"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Vaihdetaan nkym/syteyksikiksi %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "VAROITUS: Osio %d on laajennettu osio\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "DOS-yhteensopivuuslippu on asetettu\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "DOS-yhteensopivuuslippua ei ole asetettu\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "Osiota %d ei ole viel olemassa!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2590,7 +2617,7 @@ msgstr ""
"pitminen ei todennkisesti ole viisasta. Osion voi\n"
"poistaa kyttmll \"d\"-komentoa.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2598,7 +2625,7 @@ msgstr ""
"Osiota ei voi muuttaa laajennetuksi osioksi, eik pinvastoin.\n"
"Se on poistettava ensin.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2607,7 +2634,7 @@ msgstr ""
"Osion 3 tyypiksi on syyt jtt Koko levy (5),\n"
"koska SunOS/Solaris odottaa sit, ja jopa Linux pit siit.\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2616,52 +2643,52 @@ msgstr ""
"Osion 9 tyypiksi on syyt jtt osio-otsikko (0),\n"
"ja osion 11 tyypiksi Koko osio (6), koska IRIX odottaa sit.\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "Osion %d jrjestelmtyypiksi vaihdettiin %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr "Osiolla %d on eri fyysiset/loogiset alkukohdat (ei-Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " fyysinen=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "looginen=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "Osiolla %d on eri fyysiset/loogiset loppukohdat:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "Osion %i alku ei ole sylinterin rajalla:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "pit olla (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "Osion %i loppu ei ole sylinterin rajalla.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "pit olla (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
@@ -2670,7 +2697,7 @@ msgstr ""
"\n"
"Levy %s: %ld Mt, %lld tavua\n"
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, c-format
msgid ""
"\n"
@@ -2679,24 +2706,24 @@ msgstr ""
"\n"
"Levy %s: %ld.%ld Gt, %lld tavua\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr "%d pt, %d sektoria/ura, %d sylinteri"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ", yhteens %llu sektoria"
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
"\n"
msgstr "Yksikt = %2$d * %3$d = %4$d -tavuiset %1$s\n"
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2704,23 +2731,23 @@ msgstr ""
"Ei mitn tehtv. Jrjestys on jo oikea.\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Kynn Alku Loppu Lohkot Id Jrjestelm\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Laite"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2728,7 +2755,7 @@ msgstr ""
"\n"
"Osiotaulumerkinnt eivt ole levyjrjestyksess\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2739,92 +2766,92 @@ msgstr ""
"Levy %s: %d pt, %d sektoria, %d sylinteri\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "No AF P Sekt Syl P Sekt Syl Alku Koko ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Varoitus: osio %d sislt sektorin 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Osio %d: p %d on suurempi kuin maksimi %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Osio %d: sektori %d on suurempi kuin maksimi %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Osio %d: sylinteri %d on suurempi kuin maksimi %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr ""
"Osio %d: edellinen sektorimr %d on ristiriidassa yhteismrn %d kanssa\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Varoitus: virheellinen datan alkukohta osiossa %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Varoitus: osio %d ja osio %d ovat (osittain) pllekkiset.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Varoitus: osio %d on tyhj\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "Looginen osio %d ei ole kokonaan osiossa %d\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, fuzzy, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "Varattujen sektoreiden kokonaismr %d on suurempi kuin maksimi %d\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, fuzzy, c-format
msgid "%lld unallocated sectors\n"
msgstr "%d varaamatonta sektoria\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr "Osio %d on jo mritelty. Poista se ennen uudelleen lismist.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Ensimminen %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "Sektori %d on jo varattu\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Ei vapaita sektoreita kytettviss\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Viimeinen %s tai +koko tai +kokoM tai +kokoK"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2836,25 +2863,25 @@ msgstr ""
"\tuusi DOS-osiotaulu. (Komento o.)\n"
"\tVAROITUS: Uuden osiotaulun luominen tuhoaa levyn nykyisen sislln.\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "Maksimimr osioita on luotu\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr "Jokin osio on poistettava ja listtv laajennettu osio ensin\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
#, fuzzy
msgid "All logical partitions are in use\n"
msgstr "loogiset osiot eivt ole levyjrjestyksess"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
#, fuzzy
msgid "Adding a primary partition\n"
msgstr "Viallinen ensiosio"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2865,20 +2892,20 @@ msgstr ""
" %s\n"
" p ensiosio (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l looginen (5 tai yli)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e laajennettu"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Virheellinen osionumero tyypille \"%c\"\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2886,11 +2913,11 @@ msgstr ""
"Osiotaulua on muutettu!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Kutsutaan osiotaulun uudelleen lukeva ioctl().\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2903,7 +2930,7 @@ msgstr ""
"Ydin kytt edelleen vanhaa taulua.\n"
"Uutta taulua kytetn seuraavasta kynnistyksest alkaen.\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2914,64 +2941,71 @@ msgstr ""
"VAROITUS: Jos DOS 6.x -osioita luotiin tai muutettiin,\n"
"katso listietoja fdiskin manuaalisivulta.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Virhe suljettaessa %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Synkronoidaan levyt.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "Osiolla %d ei ole data-aluetta\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Uusi datan alku"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Asiantuntijakomento (m antaa ohjeen): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Sylinterien mr"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Piden mr"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Sektorien mr"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr "Varoitus: asetetaan sektorisiirtym DOS-yhteensopivuutta varten\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "Levy %s ei sisll kelvollista osiotaulua\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "Laitetta %s ei voi avata\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "laitetta %s ei voi avata\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: tuntematon komento\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr "Tm ydin lyt sektorin koon itse -- -b-valitsinta ei huomioida\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -2980,17 +3014,17 @@ msgstr ""
"laitteen kanssa\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr ""
"Havaittiin OSF/1-levynimi laitteella %s, siirrytn levynimitilaan.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Komento (m antaa ohjeen): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -2999,15 +3033,15 @@ msgstr ""
"\n"
"Nykyinen kynnistystiedosto on: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Anna uuden kynnistystiedoston nimi: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "Kynnistystiedosto muuttumaton\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3385,7 +3419,7 @@ msgstr "Linux-sivutus"
msgid "Linux native"
msgstr "Linuxmainen"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3716,7 +3750,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linux raid autodetect"
@@ -4085,8 +4119,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4138,150 +4172,155 @@ msgstr "Linux laajennettu"
msgid "NTFS volume set"
msgstr "NTFS-osioryhm"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "IBM Thinkpad -valmiustila"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr "Darwin UFS"
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr "Darwin boot"
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI fs"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI sivutus"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "Ktketty Boot Wizard"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr "Solaris boot"
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
#, fuzzy
msgid "Solaris"
msgstr "Solaris boot"
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "ei-tied.jrj. data"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Dell Utility"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS access"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS vain luku"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS-tied.jrj."
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "Linux/PA-RISC boot"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS-toisio"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5281,127 +5320,127 @@ msgstr "getopt (parannettu) 1.1.3)\n"
msgid "internal error, contact the author."
msgstr "sisinen virhe, ota yhteytt tekijn."
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "kynnistetty MILOsta\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Ruffian BCD -kello\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "kelloportiksi asetettu 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atominen \"%s\" eponnistui 1000 iteraatiolle!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Ei voi avata laitetta /dev/port: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
msgid "I failed to get permission because I didn't try.\n"
msgstr "En saanut kyttoikeutta, koska en yrittnyt.\n"
-#: hwclock/cmos.c:601
+#: hwclock/cmos.c:602
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s ei saa kyttoikeutta I/O-porttiin: iopl(3)-kutsu eponnistui.\n"
-#: hwclock/cmos.c:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Tarvitset todennkisesti pkyttjn oikeudet.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Oletetaan laitteistokellon olevan %sajassa.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC-"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "paikallisessa "
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Varoitus: tunnistamaton kolmas rivi adjtime-tiedostossa\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Odotetaan: \"UTC\", \"LOCAL\" tai ei mitn.)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Viimeinen siirtymst tehty %ld sekuntia vuoden 1969 jlkeen\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Viimeinen kalibrointi tehty %ld sekuntia vuoden 1969 jlkeen\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "Laitteistokello on %sajassa\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "tuntemattomassa "
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "Odotetaan kellon tikityst...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...saatiin tikitys\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr ""
"Virheellisi arvoja laitteistokellossa: %3$.2d.%2$.2d.%1$4d %4$.2d:%5$.2d:%6"
"$.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Laitteistokellon aika: %3$.2d.%2$.2d.%1$4d %4$.2d:%5$.2d:%6$.2d = %7$ld "
"sekuntia vuodesta 1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr ""
"Laitteistokellosta luettu aika: %3$.2d.%2$.2d.%1$4d %4$02d:%5$02d:%6$02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Asetetaan laitteistokello aikaan %.2d:%.2d:%.2d = %ld sekuntia vuodesta "
"1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Kellonaikaa ei muutettu - pelkk testi.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5410,7 +5449,7 @@ msgstr ""
"Viiteajankohdasta on kulunut %.6f sekuntia.\n"
"Odotetaan seuraavaa tytt sekuntia.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5419,20 +5458,20 @@ msgstr ""
"kuukauden 50:s piv) tai suurempia kuin pystymme ksittelemn (esim. vuosi "
"2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f sekuntia\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "Valitsinta --date ei ole annettu.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "liian pitk --date -argumentti\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5440,21 +5479,21 @@ msgstr ""
"Valitsimelle --date annettu arvo ei ole kelvollinen pivys.\n"
"Se sislt lainausmerkkej.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Kynnistetn \"date\"-komento: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr "Komentoa \"date\" ei voitu ajaa /bin/sh-kuoressa. popen() eponnistui"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "date-komennon vastaus = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5469,7 +5508,7 @@ msgstr ""
"Vastaus oli:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5486,12 +5525,12 @@ msgstr ""
"Vastaus oli:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "pivysmerkkijono %s vastaa %ld sekuntia vuodesta 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5499,33 +5538,33 @@ msgstr ""
"Laitteistokellon aika ei ole kelvollinen, joten jrjestelmn aikaa ei voida "
"asettaa sen perusteella.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "Kutsutaan settimeofday:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr "Jrjestelmkelloa ei aseteta, koska kytetn testitilaa.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Vain pkyttj voi asettaa jrjestelmn kellon.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "settimeofday() eponnistui"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5533,7 +5572,7 @@ msgstr ""
"Ei sdet siirtymkerrointa, koska laitteistokellossa oli edellisell "
"kerralla roskaa.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
@@ -5542,7 +5581,7 @@ msgstr ""
"joten historia on virheellinen ja kalibroinnin uudelleen aloitus on\n"
"tarpeellista.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5550,7 +5589,7 @@ msgstr ""
"Ei sdet siirtymkerrointa, koska edellisest kalibroinnista on alle "
"vuorokausi.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5561,21 +5600,21 @@ msgstr ""
"vrk -siirtymkertoimesta\n"
"huolimatta. Sdetn siirtymkerrointa %f sekunnilla/vrk\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "Aikaa edellisest sdst on kulunut %d sekuntia\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr "On listtv %d sekuntia ja viitattava aikaan %.6f sekuntia sitten\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "Ei pivitet adjtime-tiedostoa, koska kytetn testaustilaa.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5584,33 +5623,33 @@ msgstr ""
"Tiedostoon %s olisi kirjoitettu seuraavaa:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Siirtymnstparametreja ei pivitetty.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr "Laitteistokellon aika ei ole kelvollinen, joten sit ei voi st.\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr "Tarvittava muutos on alle sekunti, joten ei aseteta kelloa.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Kytetn rajapintaa %s.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Kyttkelpoista kellorajapintaa ei lytynyt.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "Jrjestelmkellon asetus ei onnistu.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5621,31 +5660,31 @@ msgstr ""
"Tm hwclock on knnetty muulle koneelle kuin Alphalle\n"
"(ja todennkisesti sit ei ajeta Alphassa nyt). Toimintoa ei suoritettu.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "Ytimelt ei saada epoch-arvoa.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "Ydin olettaa epoch-arvoksi %lu\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
msgstr "Epoch arvon asettamiseksi on kytettv \"epoch\"-valitsinta.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "Ei aseteta epoch-arvoksi %d - vain kokeilu.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "Ytimen epoch-arvoa ei voi asettaa.\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5705,7 +5744,7 @@ msgstr ""
" --noadjfile ei kytet tiedostoa /etc/adjtime. Vaatii joko valitsimen\n"
" --utc tai --localtime kyttmist\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5713,12 +5752,12 @@ msgstr ""
" --jensen, --arc, --srm, --funky-toy\n"
" kertoo hwclockille Alphan tyypin (katso hwclock(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s ottaa vain valitsimia argumentteina. Annoit %d muuta.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
@@ -5726,7 +5765,7 @@ msgstr ""
"Monta toimintoa mritelty.\n"
"Vain yksi toiminto voidaan suorittaa kerrallaan.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5735,7 +5774,7 @@ msgstr ""
"%s: Valitsimet --utc ja --localtime ovat toisensa poissulkevia. Kytit "
"molempia.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5744,140 +5783,140 @@ msgstr ""
"%s: Valitsimet --adjust ja --noadjfile ovat toisensa poissulkevia. Kytit "
"molempia.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr ""
"%s: Valitsimen --noadjfile kanssa on kytettv joko valitsinta --utc tai --"
"localtime\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "Ei kyttkelpoista aikaa asetettavaksi. Kelloa ei voida asettaa.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Valitan, vain pkyttj voi st laitteistokelloa.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Valitan, vain pkyttj voi st jrjestelmkelloa.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
msgstr ""
"Valitan, vain pkyttj voi st laitteistokellon epoch-arvoa ytimess.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr "Laitteistokelloa ei pystyt kyttmn milln tunnetulla tavalla.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
msgstr ""
"Kyt --debug -valitsinta nhdksesi yksityiskohdat kytttavan etsinnst.\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Odotetaan silmukassa KDGHWCLK-ajan muuttumista\n"
-#: hwclock/kd.c:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "ajan lukeva KDGHWCLK-ioctl eponnistui"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Aikakatkaisu odotettaessa ajan muutosta.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "ajan lukeva KDGHWCLK-ioctl eponnistui silmukassa"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() ei onnistunut lukemaan aikaa kohteesta %s"
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "ioctl KDSHWCLK eponnistui"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Laitetta /dev/tty1 tai /dev/vc/1 ei voi avata"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK-ioctl eponnistui"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "tiedoston %s avaaminen eponnistui"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "aikaa lukeva ioctl() laitteelle %s eponnistui.\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Odotetaan silmukassa laitteen %s ajan muuttumista\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "laitteella %s ei ole keskeytysfunktioita. "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "kellon tikityst odottava luku laitteelle %s eponnistui"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "kellon tikityst odottava luku laitteelle %s eponnistui"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "kellon tikityst odottava luku laitteelle %s eponnistui"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "pivityskeskeytykset lopettava ioctl() laitteelle %s eponnistui"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr ""
"pivityskeskeytykset aloittava ioctl() laitteelle %s eponnistui "
"odottamattomasti"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "ajan asettava ioctl() laitteelle %s eponnistui.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "ioctl(%s) onnistui.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "Tiedoston %s avaaminen eponnistui"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5887,17 +5926,17 @@ msgstr ""
"Ytimen epoch-arvon muuttamiseksi on kytettv Linuxin \"rtc\"-laiteajuria "
"laitetiedoston %s kautta. Tss jrjestelmss ei ole kyseist tiedostoa.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "Laitetta %s ei voi avata"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "ioctl(RTC_EPOCH_READ) laitteelle %s eponnistui"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr "luimme epoch-arvon %ld laitteelta %s ioctl:ll RTC_EPOCH_READ.\n"
@@ -5905,23 +5944,23 @@ msgstr "luimme epoch-arvon %ld laitteelta %s ioctl:ll RTC_EPOCH_READ.\n"
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr "Epoch-arvo ei voi olla pienempi kuin 1900. Pyynt oli %ld\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "asetetaan epoch-arvoksi %ld, ioctl RTC_EPOCH_SET laitteelle %s.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr "Ytimen laiteajurissa laitteelle %s ei ole ioctl: RTC_EPOCH_SET.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "ioctl(RTC_EPOCH_SET) laitteelle %s eponnistui"
@@ -6139,7 +6178,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Salasana: "
@@ -6943,36 +6982,36 @@ msgstr "Irrotetaan jljell olevat tiedostojrjestelmt..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: Laitetta %s ei voitu irrottaa: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Kynnistetn yhden kyttjn tilaan.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr "yhden kyttjn tilan kuoren kynnistys eponnistui\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "yhden kyttjn tilan kuoren haarauttaminen eponnistui\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "virhe avattaessa fifoa\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr "virhe asetettaessa \"close-on-exec\" laitteelle /dev/initctl"
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "virhe ajettaessa finalprogia\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "virhe haarautettaessa finalprogia\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -6980,35 +7019,35 @@ msgstr ""
"\n"
"Vr salasana.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "polun tilan lukeminen eponnistui\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "polun tilan lukeminen eponnistui\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "hakemiston avaaminen eponnistui\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "haarauttaminen eponnistui\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "kynnistys eponnistui\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "tiedostoa inittab ei voi avata\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "TERM-muuttujaa ei ole tai ptteen tilaa ei voi lukea\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "virhe pysytettess palvelua: \"%s\""
@@ -7584,17 +7623,17 @@ msgstr ""
msgid "Message from %s@%s on %s at %s ..."
msgstr "Viesti %3$s:lle kirjautuneelta kyttjlt %1$s@%2$s, kello %4$s..."
-#: mount/fstab.c:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "varoitus: virhe luettaessa %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "virhe: tiedostoa %s ei voi avata: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr ""
@@ -7604,36 +7643,36 @@ msgstr ""
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:472
+#: mount/fstab.c:484
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr "lukkotiedostoa %s ei voi luoda: %s (kyt lippua -n ohittaaksesi)"
-#: mount/fstab.c:487
+#: mount/fstab.c:499
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr "lukkotiedostoa %s ei voi linkitt: %s (kyt lippua -n ohittaaksesi)"
-#: mount/fstab.c:499
+#: mount/fstab.c:511
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr "lukkotiedostoa %s ei voi avata: %s (kyt lippua -n ohittaaksesi)"
-#: mount/fstab.c:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Lukkotiedostoa %s ei voi lukita: %s\n"
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "lukkotiedostoa %s ei voi lukita: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "aikakatkaistu"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7642,22 +7681,22 @@ msgstr ""
"Linkki %s ei voi luoda\n"
"Ehk jossakin on vanhentunut lukkotiedosto?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "hakemistoa %s ei voi avata (%s) - mtabia ei pivitetty"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "virhe kirjoitettaessa %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "virhe muutettaessa tiedoston %s tilaa: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "nimeminen %s -> %s ei onnistu: %s\n"
@@ -7726,26 +7765,26 @@ msgstr "mount: ei lytynyt yhtn vapaata loop-laitetta"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Muistia ei voitu lukita, poistutaan.\n"
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): onnistui\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: laitetta %s ei voi poistaa: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): onnistui\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Tm mount on knnetty ilman loop-tukea. Knn uudelleen.\n"
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, fuzzy, c-format
msgid ""
"usage:\n"
@@ -7759,12 +7798,11 @@ msgstr ""
" %s -d loop-laite # poista\n"
" %s [ -e salaus ] [ -o siirtym ] loop-laite tiedosto # aseta\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "muisti ei riit"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr "Loop-tukea ei ollut knnksen aikana. Knn uudelleen.\n"
@@ -7782,165 +7820,165 @@ msgstr "[mntent]: rivi %d tiedostossa %s on virheellinen%s\n"
msgid "; rest of file ignored"
msgstr "; loput tiedostosta jtetn huomioimatta"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, 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:380
+#: mount/mount.c:387
#, 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:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: tiedostoa %s ei voi avata kirjoittamista varten: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: virhe kirjoitettaessa %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: virhe muutettaessa tiedoston %s tilaa: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s vaikuttaa olevan sivutustilaa - ei liitet"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "liittminen eponnistui"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: vain root voi liitt %s pisteeseen %s"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: loop-laite annettu kahdesti"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: tyyppi annettu kahdesti"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: ohitetaan loop-laitteen asettaminen\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: aiotaan kytt loop-laitetta %s\n"
-#: mount/mount.c:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: loop-laitteen asettaminen eponnistui\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: loop-laite asetettiin onnistuneesti\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: tiedostoa %s ei voi avata: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
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:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: tiedostoa %s ei voi avata nopeuden asetusta varten"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: nopeutta ei voi asettaa: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: haarauttaminen ei onnistu: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: tm versio on knnetty ilman tukea tyypille \"nfs\""
-#: mount/mount.c:884
+#: mount/mount.c:891
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: eponnistui nfs mount -versiolla 4, yritetn versiolla 3..\n"
-#: mount/mount.c:895
+#: mount/mount.c:902
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: Tiedostojrjestelmn tyyppi ei voitu mritt, eik tyyppi ole "
"annettu"
-#: mount/mount.c:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: tiedostojrjestelmn tyyppi on annettava"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: liitos eponnistui"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: liitospiste %s ei ole hakemisto"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: lupa evtty"
-#: mount/mount.c:911
+#: mount/mount.c:918
msgid "mount: must be superuser to use mount"
msgstr "mount: mountin kyttn vaaditaan pkyttjn oikeudet"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s on varattu"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc on jo liitetty"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s on jo liitetty tai %s on varattu"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: liitospiste %s ei ole olemassa"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: liitospiste %s on symlinkki olemattomaan"
-#: mount/mount.c:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: erikoislaite %s ei ole olemassa"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7949,56 +7987,74 @@ msgstr ""
"mount: erikoislaite %s ei ole olemassa\n"
" (polun etuliite ei ole hakemisto)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s ei ole viel liitetty, tai virheellinen valitsin"
-#: mount/mount.c:959
+#: mount/mount.c:966
#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: vr tiedostojrjestelmtyyppi, virheellinen valitsin, viallinen \n"
" superlohko laitteella %s, tai liian monta liitetty \n"
" tiedostojrjestelm"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "liitostaulukko tynn"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: superlohkoa ei voi lukea"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: tuntematon laite"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, fuzzy, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr " l listaa tunnetut tiedostojrjestelmtyypit"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: tarkoitat todennkisesti %s"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
#, fuzzy
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: ehk tarkoitit iso9660?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
#, fuzzy
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: ehk tarkoitit iso9660?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8006,12 +8062,12 @@ msgstr ""
"ole tuettu"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s ei ole lohkolaite, ja tilan luku eponnistuu?"
-#: mount/mount.c:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8020,49 +8076,49 @@ msgstr ""
"mount: ydin ei tunnista tiedostoa %s lohkolaitteeksi\n"
" (ehk \"insmod ajuri\" auttaa?)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, 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:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s ei ole lohkolaite"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "lohkolaite "
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: ei voi liitt %s%s vain luku -tilassa"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, 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:1066
+#: mount/mount.c:1078
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s on kirjoitussuojattu, liitetn vain luku -tilassa"
-#: mount/mount.c:1165
+#: mount/mount.c:1177
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:1171
+#: mount/mount.c:1183
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 "
@@ -8071,23 +8127,23 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: siirretn taustalle \"%s\"\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: luovutetaan \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, 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:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8133,48 +8189,48 @@ msgstr ""
"Muut valitsimet: [-nfFrsvw] [-o valitsimet] [-p passwdfd].\n"
"Paljon listietoja komennolla: man 8 mount .\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: vain root voi tehd tuon"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: ei lytynyt %s - luodaan se..\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: osiota ei lydy"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: liitetn %s\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "mitn ei liitetty"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: %s ei lydy tiedostosta %s"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: %s ei lydy tiedostosta %s, eik %s"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount: laitetta %s ei voitu avata, joten UUID- ja LABEL-muunnosta ei voi "
"tehd.\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: virheellinen UUID"
#: mount/mount_guess_fstype.c:489
@@ -8290,16 +8346,16 @@ msgstr "nfs connect"
msgid "unknown nfs status return value: %d"
msgstr "tuntematon nfs status -paluuarvo: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "ohjelmistovirhe xstrndup-kutsussa"
-#: mount/swapon.c:54
-#, c-format
+#: mount/swapon.c:57
+#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"kytt: %s [-hV]\n"
@@ -8307,7 +8363,7 @@ msgstr ""
" %s [-v] [-p prioriteetti] erikoistiedosto ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8318,33 +8374,38 @@ msgstr ""
" %s -a [-v]\n"
" %s [-v] erikoistiedosto ...\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s laitteella %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: merkkijonoa \"_stext\" ei lydy tiedostosta %s\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: tiedoston %s tilaa ei voi lukea: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
"swapon: varoitus: tiedostolla %s on turvattomat oikeudet %04o, %04o "
"suositellaan\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: Ohitetaan tiedosto %s - siin vaikuttaa olevan reiki.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr "Et ole pkyttj.\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: tiedostoa %s ei voi avata: %s\n"
@@ -8455,42 +8516,48 @@ msgstr ""
"valitsimet]\n"
" umount [-f] [-r] [-n] [-v] erikoistied | solmu...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "Ei voi avata "
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "Yritetn irrottaa %s\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "%s ei lytynyt tiedostosta mtab\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s ei ole liitetty (tiedoston mtab mukaan)"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: %s vaikuttaa olevan liitettyn useita kertoja"
-#: mount/umount.c:587
+#: mount/umount.c:592
#, 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:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s on ristiriidassa tiedoston fstab kanssa"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, 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:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: vain root voi tehd tmn"
@@ -9941,9 +10008,6 @@ msgstr "Muisti loppui kasvatettaessa puskuria.\n"
#~ msgid "UUID"
#~ msgstr "UUID:"
-#~ msgid "label"
-#~ msgstr "nimi"
-
#~ msgid "mount: the label %s occurs on both %s and %s - not mounted\n"
#~ msgstr "mount: nimi %s esiintyy sek paikassa %s, ett %s - ei liitet\n"
diff --git a/po/fr.po b/po/fr.po
index 11bfd6178..847aa0620 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12j\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+0100\n"
"PO-Revision-Date: 2004-12-08 08:00-0500\n"
"Last-Translator: Michel Robitaille <robitail@IRO.UMontreal.CA>\n"
"Language-Team: French <traduc@traduc.org>\n"
@@ -156,7 +156,7 @@ msgstr "usage: %s [ -n ] priphrique\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -773,7 +773,7 @@ msgstr "trop d'inodes - maximum est 512"
msgid "not enough space, need at least %lu blocks"
msgstr "pas suffisamment d'espace, a besoin au moinds de %lu blocs"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Priphrique: %s\n"
@@ -848,7 +848,7 @@ msgstr ""
"Usage: mkfs [-V] [-t type-systme-de-fichiers] [options] pridphrique "
"[taille]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1089,7 +1089,7 @@ msgstr "ched de reprage durant l'examen des blocs"
msgid "Weird values in do_check: probably bugs\n"
msgstr "Valeur tranges dans do_check: probablement un bug\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "chec de reprage dans check_blocks"
@@ -1146,67 +1146,89 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "On assume des pages de taille %d (pas %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "tiquette"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Usage: %s [-c] [-v0|-v1] [-pTAILLE-PAGES] /dev/name [blocs]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "trop de pages corrompus"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Mmoire puise"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "une page corrompue\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, c-format
msgid "%lu bad pages\n"
msgstr "%lu pages corrompues\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: erreur: aucun endroit pour dfinir un espace d'change (swap)?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr ""
"%s: erreur: taille %lu est plus grande que la taille du priphrique %lu\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: erreur: version inconnue %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr ""
"%s: erreur: zone d'change (swap) a besoin d'une taille d'au moins %ldkB\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: AVERTISSEMENT: truncation de la zone d'change (swap) %ldkB\n"
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: erreur: aucun endroit pour dfinir un espace d'change (swap)?\n"
+
# disk-utils/mkswap.c:566
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "Ne tentera pas de crer un priphrique de type swap sur %s "
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "ERREUR FATALE: la premire page est illisible"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1222,28 +1244,28 @@ msgstr ""
"pour forcer sa cration.\n"
# disk-utils/mkswap.c:605
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "Incapable de fixer l'espace de swap: illisible"
# disk-utils/mkswap.c:606
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr ""
"Initialisation de la version de l'espace de swap %d, taille = %llu kB\n"
# disk-utils/mkswap.c:612
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "incapable de rembobiner le priphrique de swap"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "incapable d'crire la page de signature"
# disk-utils/mkswap.c:623
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "chec de la synchronisation du systme de fichiers par fsync"
@@ -1286,57 +1308,62 @@ msgstr " %s [ -c | -y | -n | -d ] priphrique\n"
msgid " %s [ -c | -y | -n ] dev\n"
msgstr " %s [ -c | -y | -n ] priphrique\n"
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Inutilisable"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Espace libre"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Disque a t chang.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Ramorcer le systme pour s'assurer que la table de partition a t "
"correctement mise jour.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1348,311 +1375,311 @@ msgstr ""
"partition DOS 6.x, svp consulter les pages du manuel\n"
"de cfdisk pour de plus amples informations.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "ERREUR FATALE"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Appuyer n'importe quelle cl pour quitter cfdisk"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Ne peut effectuer de reprage sur l'unit de disque"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "Ne peut lire partir de l'unit de disque"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "Ne peut lire de l'unit de disque"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Trop de partitions"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "La partition dbute avant le secteur 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "La partition se termine avant le secteur 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "La partition dbute aprs la fin du disque"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "La partition se termine aprs la fin du disque"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr "Partition se termine dans le cylindre final"
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "partitions logiques ne sont pas en ordre sur le disque"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "chevauchement des partitions logiques"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "chevauchement des partitions logiques qui ont t grossies"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!!! Erreur interne crant un disque logique sans partition tendue !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"Ne peut crer un disque logique ici -- cela crerait 2 partitions tendues"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Item de menu trop long. Le menu pourrait paratre erron."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Menu sans direction. Mis en horizontal par dfaut."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Cl illgale"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Appuyer sur une touche pour continuer"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primaire"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Crer une nouvelle partition primaire"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Logique"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Crer une nouvelle partition logique"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Annuler"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "Ne pas crer une partition"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Erreur interne !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Taille (en MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Dbut"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Ajouter une partition au dbut de l'espace libre"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Fin"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Ajouter une partition la fin de l'espace libre"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Pas d'espace pour crer une partition tendue"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
msgid "No partition table.\n"
msgstr "Aucune table de partitions.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
msgid "No partition table. Starting with zero table."
msgstr "Aucune table de partitions. On commence avec une table zro."
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
msgid "Bad signature on partition table"
msgstr "Signature errone dans la table de partitions"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
msgid "Unknown partition table type"
msgstr "Type inconnu de table de partitions"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Voulez-vous dbuter avec une table zro [y (pour oui)/N (pour non)]"
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr "Vous avez spcifi plus de cylindres que le disque ne peut contenir"
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "Ne peut ouvrir l'unit de disque"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
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:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "Ne peut obtenir la taille du disque"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Partition primaire errone"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Partition logique erronne"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "AVERTISSEMENT!! Cela pourrait dtruire les donnes sur votre disque!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
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:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "non"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "N'a pas crit la table de partitions sur le disque"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "oui"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "SVP rpondre yes ou no "
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "criture de la table de partitions sur le disque..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Table de partitions crite sur le disque"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Table de partitions crite, chec de la relecture. Ramorcer pour mettre "
"jour la table."
-#: fdisk/cfdisk.c:1857
+#: fdisk/cfdisk.c:1906
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr "Aucune partition primaire marqu amorable. DOS MBR ne peut amorcer."
-#: fdisk/cfdisk.c:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Plus d'une partition primaire marqu amorable. DOS MBR ne peut amorcer."
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
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:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "Ne peut ouvrir le fichier %s "
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Unit de disque: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Secteur 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Secteur %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Aucun "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primaire"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Logique"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Inconnu"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Amorce"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, c-format
msgid "(%02X)"
msgstr "%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
msgid "None"
msgstr "Aucun"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Table de partitions de %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
msgid " First Last\n"
msgstr " Premier Dernier\n"
# fdisk/cfdisk.c:1969
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1660,7 +1687,7 @@ msgstr ""
" # Type Secteur Secteur Offset Longueur Sys.FichierType (ID) "
"Fanions\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1669,478 +1696,478 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " --- Dbut --- ---- Fin ---- Dbut Numro de\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Fan. Tte Sect Cyl ID Tte Sect Cyl Secteur Secteurs\n"
-#: fdisk/cfdisk.c:2144
+#: fdisk/cfdisk.c:2193
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "Brut"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Afficher le contenu de la table en format brut"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Secteurs"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Afficher le contenu de la table ordonn par secteurs"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Table"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Afficher juste le contenue de la table de partitions"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "Ne pas afficher le contenu de la table"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "cran d'aide pour cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
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:2211
+#: fdisk/cfdisk.c:2260
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "permet de crer, dtruire et modifier les partitions de votre unit de"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "disque dur."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Commande Signification"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b basculer le fanion d'amorce sur la partition courante"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d dtruire la partition courante"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g modifier les paramtres: cylindres, ttes, secteurs par piste"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " AVERTISSEMENT: cette option ne doit pas tre utilis par"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " des gens qui ne savent pas ce qu'ils font."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h afficher cet cran d'aide"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m maximiser l'usage du disque de la partition courante"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " Note: cela peut rendre la partition incompatible avec"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n crer une nouvelle partition partir de l'espace libre"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
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:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Il y a plusieurs formats diffrents pour la partition"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " que vous dsirez:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - donnes brutes (exactement ce que vous crivez sur le "
"disque)"
-#: fdisk/cfdisk.c:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - table ordonne par secteurs"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - table en format brut"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q quitter le programme sans crire la table de partitions"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t modifier le type de systme de fichiers"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr ""
" u modifier les units d'affichage de la taille des partition"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " faire la rotation avec MB, secteurs et cylindres"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
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:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr ""
" tant donn que cela peut dtruire des donnes sur le disque, "
"vous devez"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
" confirmer ou annuler la commande par la rponse yes ou"
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " no "
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Flche-haut dplacer le curseur vers la partition prcdente"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "Flche-bas dplacer le curseur vers la partition suivante"
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L rafficher le contenu l'cran"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? afficher cet cran d'aide"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
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:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "majuscules ou minuscules (sauf pour les critures)."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cylindres"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Modifier la gomtrie des cylindres"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Ttes"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Modifier la gomtrie de tte"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Modifier la gomtrie de secteur"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Complt"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Modification de la gomtrie complt"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Entrer le nombre de cylindres: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Valeur illgale pour les cylindres"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Entrer le nombre de ttes: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Valeur illgale pour les ttes"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Entrer le nombre de secteurs par piste: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Valeur illgale pour les secteurs"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Entrer le type de systme de fichiers:"
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "Ne peut modifier le type de SF pour aucun type"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "Ne peut modifier le type de SF tendu"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Unk(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Inconnu (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Unit de disque: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Taille: %lld octets, %lld Mo"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Taille: %lld octets, %lld.%lld Go"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Ttes: %d Secteurs par piste: %d Cylindres: %lld"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Nom"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Fanions"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Part Type"
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Type SF"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[tiq.]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
msgid " Sectors"
msgstr " Secteurs"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
msgid " Cylinders"
msgstr " Cylindres"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
msgid " Size (MB)"
msgstr " Taille (Mo)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
msgid " Size (GB)"
msgstr " Taille (Go)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Amorable"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Basculer le fanion d'amorce pour la partition courante"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Dtruire"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Dtruire la partition courante"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Gomtrie"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Modifier la gomtrie du disque (pour expert seulement)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Aide"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Afficher l'cran d'aide"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Maximiser"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
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:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Nouveau"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Crer une nouvelle partition partir de l'espace libre"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Afficher"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
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:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Quitter"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Quitter le programme sans crire la table de partitions"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Type"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Modifier le type de systme de fichier (DOS, Linux, OS/2, etc)"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Units"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
"Mofifier les units d'affichage des taille des partitions (MB, sect, cyl)"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "crire"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr ""
"Crire la table de partitions sur le dsique (cela peut dtruire les donnes)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "Ne peut crer cette partition comme tant amorable"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "Ne peut dtruire une partition vide"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "Ne peut maaximiser cette partition"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Cette partition est inutilisable"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Cette partition est dj en usage"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "Ne peut changer le type d'une partition vide"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "Pas de partition disponible"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Commande illgale"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2417,20 +2444,20 @@ msgstr " f fixer l'ordonnancement des partitions"
msgid "You must set"
msgstr "Vous devez initialiser"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "ttes"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "secteurs"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "cylindres"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2439,11 +2466,11 @@ msgstr ""
"%s%s.\n"
"Vous pouvez faire cela partir du menu des fonctions additionnelles.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " et "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2464,29 +2491,29 @@ msgstr ""
"2) logiciels d'amorage et de partitionnement pour d'autres SE\n"
" (i.e., DOS FDISK, OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Dcalage errone dans la partition primaire tendue\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "AVERTISSEMENT: pointeur additionnel dans la table de partitions %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr ""
"AVERTISSEMENT: donnes surperflues ignores dans la table de partition %d\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2500,16 +2527,16 @@ msgstr ""
"ne sera par rcuprable.\n"
"\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Note: taille de secteur est %d (et non pas %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "Vous ne serez pas capable d'crire la table de partitions.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
@@ -2517,7 +2544,7 @@ msgstr ""
"Ce disque a des nombres magiques la fois DOS et BSD.\n"
"Excuter la commande 'b' pour passer en mode BSD.\n"
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
@@ -2525,16 +2552,16 @@ msgstr ""
"Le priphrique ne contient ni une partition ni une tiquette DOS, Sun, SGI "
"ou OSF\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Erreur interne\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "Partition additionnelle tendue ignore %d\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2543,7 +2570,7 @@ msgstr ""
"AVERTISSEMENT: fanion 0x%04x invalide de la table de partitions %d sera "
"corrig par w(criture)\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2551,78 +2578,78 @@ msgstr ""
"\n"
"a obtenu EOF 3 fois - fin du programme...\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Code Hex (taper L pour lister les codes): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%u-%u, par dfaut %u): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, c-format
msgid "Using default value %u\n"
msgstr "Utilisation de la valeur par dfaut %u\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Valeur hors limites.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Numro de partition"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "AVERTISSEMENT: partition %d a un type vide\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, c-format
msgid "Selected partition %d\n"
msgstr "Partition slectionne %d\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
msgid "No partition is defined yet!\n"
msgstr "Aucune partition n'est dfinie encore!\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr "Toutes les partitions primaires ont dj t dfinies!\n"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "cylindre"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "secteur"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Modification des units d'affichage/saisie %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "AVERTISSEMENT: Partition %d est une partition tendue\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "Fanion de compatibilit DOS est initialis\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "Fanion de compatibilit DOS n'est initialis\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "Partition %d n'existe pas encore!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2634,7 +2661,7 @@ msgstr ""
"type 0 n'est pas recommand. Vous pouvez dtruire\n"
"la partition en utilisant la commande d .\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2642,7 +2669,7 @@ msgstr ""
"Vous ne pouvez la modifier en partition tendue et vice versa.\n"
"Vous devez la dtruire d'abord.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2652,7 +2679,7 @@ msgstr ""
"tel que SunOS/Solaris l'exige et tel que qu'il est prfrable pour Linux.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2662,52 +2689,52 @@ msgstr ""
"et la partition 11 comme un volume entier (6) tel que IRIX l'exige.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "Type de partition systme modifi de %d %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr "Partition %d a des dbuts diffrents physique/logique (non Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " phys=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "logique=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "Partition %d a des fins diffrentes physique/logique:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "Partition %i ne dbute pas sur une frontire de cylindre:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "devrait tre (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "La partition %i ne se termine pas sur une frontire de cylindre.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "devrait tre (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
@@ -2716,7 +2743,7 @@ msgstr ""
"\n"
"Disque %s: %ld Mo, %lld octets\n"
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, c-format
msgid ""
"\n"
@@ -2725,17 +2752,17 @@ msgstr ""
"\n"
"Disque %s: %ld.%ld Go, %lld octets\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr "%d ttes, %d secteurs/piste, %d cylindres"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ", total %llu secteurs"
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
@@ -2744,7 +2771,7 @@ msgstr ""
"Units = %s de %d * %d = %d octets\n"
"\n"
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2752,7 +2779,7 @@ msgstr ""
"Rien faire. L'ordonnancement est dj correct.\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
@@ -2762,16 +2789,16 @@ msgstr ""
"Probablement vous avez slectionn le mauvais priphrique.\n"
"\n"
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Amorce Dbut Fin Blocs Id Systme\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Priphrique"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2779,7 +2806,7 @@ msgstr ""
"\n"
"Les entres de la table de partitions ne sont pas dans l'ordre du disque\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2790,93 +2817,93 @@ msgstr ""
"Disq %s: %d ttes, %d secteurs, %d cylindres\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "Nr AF Hd Sec Cyl Hd Sec Cyl Dbut Tail.ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "AVERTISSEMENT: partition %d contient un secteur 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Partition %d: tte %d plus grand que le maximum %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Partition %d: secteur %d plus grand que le maximum %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Partitions %d: cylindre %d plus grand que le maximum %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr ""
"Partition %d: secteurs prcdents %d ne concorde pas avec le total %d\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "AVERTISSEMENT: start-of-data erron dans la partition %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "AVERTISSEMENT: la partition %d chevauche la partition %d.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "AVERTISSEMENT: la partition %d est vide\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "La partition logique %d n'est pas entirement dans la partition %d\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr ""
"Nombre total de secteurs allous %d est plus grand que le maximum %lld\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, c-format
msgid "%lld unallocated sectors\n"
msgstr "%lld secteurs non-allous\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr "Partition %d est dj dfini. La dtruire avant de la rajouter.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Premier %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "Secteur %d est dj allou\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Aucun secteur disponible\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Dernier %s ou +taille or +tailleM ou +tailleK"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2889,25 +2916,25 @@ msgstr ""
"\tune nouvelle table de partition DOS vide. (Utiliser o.)\n"
"\tAVERTISSEMENT: cela va dtruire le contenu du disque prsent.\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "Le nombre maximum de partitions a t cr\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr ""
"Vous devez dtruire quelques partitions et ajouter une partition tendue "
"d'abord\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
msgid "All logical partitions are in use\n"
msgstr "Toutes les partitions logiques sont utilises\n"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
msgid "Adding a primary partition\n"
msgstr "Ajout d'une partition primaire\n"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2918,20 +2945,20 @@ msgstr ""
" %s\n"
" p partition primaire (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l logique (5 ou plus)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e tendue"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Numro invalide de partition pour le type %c \n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2939,11 +2966,11 @@ msgstr ""
"La table de partitions a t altre!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Appel de ioctl() pour relire la table de partitions.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2957,7 +2984,7 @@ msgstr ""
"Le kernel va continuer d'utiliser l'ancienne table.\n"
"La nouvelle table sera utilis lors du prochain ramorage.\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2969,65 +2996,72 @@ msgstr ""
"svp consulter les pages du manuel de fdisk pour des informations\n"
"additionnelles.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Erreur de fermeture %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Synchronisation des disques.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "Partition %d n'a pas de zone de donnes\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Nouveau dbut des donnes"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Commande pour experts (m pour de l'aide): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Numbre de cylindres"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Numbre de ttes"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Numbre de secteurs"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr ""
"AVERTISSEMENT: initialisation du dcalage de secteur pour compatibilit DOS\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "Disque %s ne contient pas une table de partition valide\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "Ne peut ouvrir %s\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "ne peut ouvrir %s\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: commande inconnue\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr "Ce kernel repre lui-mme la taille des secteurs - -b option ignore\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -3036,18 +3070,18 @@ msgstr ""
"utilis avec le priphrique spcifi\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr ""
"Dtection d'une tiquette de disque pour OSF/1 sur %s, passage en mode "
"d'dition d'tiquette.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Commande (m pour l'aide): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -3056,15 +3090,15 @@ msgstr ""
"\n"
"Le fichier courant d'amorage est: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "SVP entrer le nom du nouveau fichier d'amorage: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "Fichier d'amorage n'a pas t modifi\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3444,7 +3478,7 @@ msgstr "Linux swap"
msgid "Linux native"
msgstr "Linux native"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3787,7 +3821,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linux raid autodetect"
@@ -4163,8 +4197,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4215,149 +4249,154 @@ msgstr "Linux extended"
msgid "NTFS volume set"
msgstr "NTFS volume set"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "IBM Thinkpad hibernation"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr "UFS Darwin"
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr "Amorce Darwin"
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI fs"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI swap"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "Boot Wizard hidden"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr "Amorce Solaris"
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
msgid "Solaris"
msgstr "Solaris"
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "Non-FS data"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Dell Utility"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS access"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS fs"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "Linux/PA-RISC boot"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS secondary"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5403,130 +5442,130 @@ msgstr "getopt (amlior) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "erreur interne, contacter l'auteur."
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "amorc partir de MILO\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Horloge Ruffian BCD\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "le port d'horloge a t ajust 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "drle de TOY!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomic %s a chou pour 1000 itrations!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Ne peut ouvrir le port /dev/port: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
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:601
+#: hwclock/cmos.c:602
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr ""
"%s incapable d'obtenir un port d'accs d'E/S : l'appel iopl(3) a chou.\n"
-#: hwclock/cmos.c:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Probablement que vous avez besoin des privilges de root.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr ""
"On assume que l'horloge matrielle est conserve dans le temps de %s.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "locale"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr ""
"%s: AVERTISSEMENT: 3e ligne non reconnue dans le fichier d'ajustement de "
"l'heure\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Attendu: UTC ou LOCAL ou nothing.)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Le dernier ajustement de drive a t fait %ld secondes aprs 1969\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "La dernire calibration a t faite %ld secondes aprs 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "L'horloge matrielle fonctionne selon le temps %s\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "inconnu"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "En attente d'un tic d'horloge...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...a obtenu un tic d'horloge\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr ""
"valeurs invalides dans l'horloge matrielle: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Heure de l'horloge matrielle : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld secondes "
"depuis 1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Heure lu de l'horloge matrielle: %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Initialiser l'horloge matrielle %.2d:%.2d:%.2d = %ld secondes depuis "
"1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Horloge n'est pas modifie - test seulement.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5535,7 +5574,7 @@ msgstr ""
"Le temps coul depuis le temps de rfrence a t de %.6f secondes.\n"
"Delai en cours pour atteindre la prochaine seconde complte.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5544,20 +5583,20 @@ msgstr ""
"soit invalides (i.e. 50e jour du mois) ou en dehors de la plage\n"
"pouvant tre traite (i.e. anne 2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f secondes\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "Aucune option --date spcifi.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "--date argument trop long\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5565,22 +5604,22 @@ msgstr ""
"La valeur de l'option --date n'est pas une date valide.\n"
"En particulier, elle contient des guillemets.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "mission de la commande de date: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr ""
"chec de popen(), incapable d'excuter date partir de /bin/sh shell"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "rponse de la commande date = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5595,7 +5634,7 @@ msgstr ""
"Le rsultat est:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5612,12 +5651,12 @@ msgstr ""
"Le rsultat est:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "la chane de date %s quivaut %ld secondes depuis 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5625,35 +5664,35 @@ msgstr ""
"L'horloge matrielle ne contient de temps valide, aussi on ne peut pas "
"initialis l'heure du systme partir d'elle.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "Appel de settimeofday:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr ""
"Ne peut initialiser l'horloge systme parce que le programme tourne en mode "
"test.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Vous devez tre le super-usager pour initialiser l'horloge systme.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "chec de settimeofday()"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5661,7 +5700,7 @@ msgstr ""
"Pas d'ajustement du facteur de drive parce l'horloge matrielle contient "
"dj des donnez corrompues.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
@@ -5670,7 +5709,7 @@ msgstr ""
"calibration indique zro.\n"
"L'hitorique tant erron une recalibration est ncessaire.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5678,7 +5717,7 @@ msgstr ""
"Pas d'ajustement du facteur de drive parce qu'elle est moins qu'un jour "
"depuis la dernire calibration.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5689,24 +5728,24 @@ msgstr ""
"dpit d'un facteur de drive de %f secondes/jour.\n"
"Ajustement du facteur de drive de %f secondes/jour\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "L'heure depuis le dernier ajustement est de %d secondes\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr ""
"Besoin d'insrer %d secondes et de faire une rfrence arrire dans le temps "
"de %.6f secondes\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr ""
"Pas de mise jour du fichier de temps d'ajustement en raison du mode test.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5715,36 +5754,36 @@ msgstr ""
"Devrait avoir crit ce qui suit dans %s:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Ajustement des paramtres de drive n'ont pas t mis jour.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
"L'horloge matrielle ne contient pas une heure valide, on ne peut l'ajuster\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr ""
"L'ajustement requis est infrieur une seconde, pas d'initialisation de "
"l'horloge.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Utilisant %s.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Aucune interface d'horloge utilisable n'a t repre.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "Incapable d'initialiser l'horloge systme.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5758,16 +5797,16 @@ msgstr ""
"(et prsumment ne tournant pas sur un Alpha maintenant). Aucune action n'a "
"t excute.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "Incapable d'obtenir la valeur d'poque partir du kernel.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "Le kernel assume une valeur d'poque de %lu\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5775,19 +5814,19 @@ msgstr ""
"Pour initialiser la valeur d'poque, vous devez utiliser l'option epoch "
"pour y mettre la valeur voulue.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr ""
"La valeur d'poque %d n'est pas utilise pour initialisation - test "
"seulement.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "Incapable d'initialiser la valeur d'poque dans le kernel.\n"
# hwclock/hwclock.c:1108
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5851,7 +5890,7 @@ msgstr ""
" --noadjfile do not access /etc/adjtime. Requires the use of\n"
" either --utc or --localtime\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5860,14 +5899,14 @@ msgstr ""
" indiquer hwclock le type de alpha en usage (voir hwclock"
"(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr ""
"%s ne peut pas prendre des arguments d'options qui n'en sont pas. Vous avez "
"fourni %d.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
@@ -5875,7 +5914,7 @@ msgstr ""
"Vous avez spcif de multiples options de fonctions.\n"
"Vous ne pouvez qu'en excuter une la fois.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5884,7 +5923,7 @@ msgstr ""
"%s: les options --utc et --localtime sont mutuellement exclusives. Vous avez "
"soumis les deux.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5893,25 +5932,25 @@ msgstr ""
"%s: les options --adjust et --noadjfile sont mutuellement exclusives. Vous "
"avez soumis les deux.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr "%s: avec --noadjfile, vous devez spcifier soit --utc ou --localtime\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr ""
"Pas utilisable pour initialiser l'heure. Ne peut initialiser l'horloge.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Dsol, seul le super usager peut modifier l'horloge matrielle.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Dsol, seul le super usager peut modifier l'horloge systme.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
@@ -5919,12 +5958,12 @@ msgstr ""
"Dsole, seul le super usager peut modifier l'poque de l'horloge matrielle "
"dans le kernel.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr ""
"Ne peut accder l'horloge matrielle par le biais d'une mthode connue.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
@@ -5932,107 +5971,107 @@ msgstr ""
"Utiliser l'option --debug pour voir les dtails de la recherche d'une "
"mthode connue.\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
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:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "chec de KDGHWCLK ioctl pour la lecture de l'heure"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
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:82
+#: hwclock/kd.c:83
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:104
+#: hwclock/kd.c:105
#, 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:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "chec de ioctl KDSHWCLK"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Ne peut ouvrir /dev/tty1 ou /dev/vc/1"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "chec de KDGHWCLK ioctl"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "chec de open() de %s"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "chec ioctl() vers %s lors de la lecture de l'heure\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Attente dans un boucle pour que le temps %s se modifie\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s n'a pas de fonction d'interruption"
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "chec de read() de %s durant l'attente d'un tic d'horloge"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "select() de %s en attente d'un tic d'horloge a chou"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr ""
"select() de %s dont l'attente d'un tic d'horloge a expir le dlai de la "
"minuterie\n"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr ""
"ioctl() de %s a chou durant l'arrt des mises jour par interruption"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr ""
"ioctl() de %s a chou pour permettre les mises jour par interruption de "
"faon inattendue"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "ioctl() de %s a chou lors de l'initialisation de l'heure.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "ioctl(%s) a russi.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "Ouverture de %s a chou"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -6043,17 +6082,17 @@ msgstr ""
"pilote Linux du priphrique 'rtc. par le biais du fichier spcial %s. Ce "
"fichier n'existe pas sur ce systme.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "Incapable d'ouvrir %s"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "ioctl(RTC_EPOCH_READ) de %s a chou"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr ""
@@ -6062,20 +6101,20 @@ msgstr ""
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr ""
"La valeur de l'poque ne peut pas tre plus petite que 1900. Vous avez "
"demand %ld\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr ""
"initilisation de l'poque %ld l'aide de RTC_EPOCH_SET ioctl vers %s.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
@@ -6083,7 +6122,7 @@ msgstr ""
"Le pilote du priphrique dans le kernel pour %s n'a pas de fonction "
"RTC_EPOCH_SET ioctl().\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "chec de ioctl(RTC_EPOCH_SET) vers %s"
@@ -6300,7 +6339,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Mot de passe: "
@@ -7112,36 +7151,36 @@ msgstr "Dmonter tous les systmes de fichiers restants..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "arrt systme: ne peut dmonter %s: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Amorage en mode usager simple.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr "chec d'excution du shell usager simple\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "chec du fork() du shell de l'usager simple\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "erreur d'ouverture d'un fifo\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr "erreur d'initialisaton close-on-exec sur /dev/initctl"
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "erreur d'excution de finalprog\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "erreur de fork() de finalprog\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -7149,35 +7188,35 @@ msgstr ""
"\n"
"Mot de passe erron.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "chec d'valuation par lstat() du chemin\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "chec d'valuation par stat du chemin\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "chec d'ouverture du rpertoire\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "chec de fork()\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "chec de exec()\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "ne peut ouvrir inittab\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "pas de TERM ou ne peut valuer tty par stat()\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "erreur d'arrt de service: %s "
@@ -7750,17 +7789,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:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "AVERTISSEMENT: erreur de lecture %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "AVERTISSEMENT: ne peut ouvrir %s: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: ne peut ouvrir %s - on utilise %s la place\n"
@@ -7769,40 +7808,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:472
+#: mount/fstab.c:484
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"ne peut crer le fichier verrou %s: %s (utiliser l'option -n pour l'craser)"
-#: mount/fstab.c:487
+#: mount/fstab.c:499
#, 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:499
+#: mount/fstab.c:511
#, 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:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Ne peut verrrouiller le fichier verrou %s: %s\n"
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "ne peut verrouiller le fichier verrou %s: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "expiration du dlai"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7811,22 +7850,22 @@ msgstr ""
"Ne peut crer le lien %s\n"
"Peut-tre y-a-t-il un fichier verrouill en panne?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "ne peut ouvrir %s (%s) - mtab n'est pas jour"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "erreur d'criture %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "erreur de changement de mode de %s: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "ne peut renommer %s %s: %s\n"
@@ -7895,28 +7934,28 @@ msgstr "%s: ne peut trouver un priphrique de type loop libre"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Ne peut verrouiller en mmoire, fin d'excution.\n"
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%llu): succs\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: ne peut dtruire le priphrique %s: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): succs\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
"Cette version de mount a t compile sans support de boucle. SVP "
"recompiler.\n"
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, c-format
msgid ""
"usage:\n"
@@ -7933,12 +7972,11 @@ msgstr ""
" %s [ -e encryption ] [ -o dcalage ] {-f|priphrique_de_boucle} fichier # "
"setup\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "pas assez de mmoire"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
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 "
@@ -7958,167 +7996,167 @@ msgstr "[mntent]: ligne %d dans %s est erron%s\n"
msgid "; rest of file ignored"
msgstr "; reste du fichier est ignor"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: selon mtab %s est dj mont sur %s"
-#: mount/mount.c:380
+#: mount/mount.c:387
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: selon mtab %s est mont sur %s"
-#: mount/mount.c:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: ne peut ouvrir %s en criture: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: erreur d'criture %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: erreur lors du changement de mode de %s: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s ressemble un esapce de swap - n'a pas t mont"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "chec de mount"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, 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:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: priphrique de type loop spcifi deux fois"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: type spcifi deux fois"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: escamotage du setup du priphrique de type loop\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: on se prpare utiliser le priphrique de type loop %s\n"
-#: mount/mount.c:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: chec d'initialisation du priphrique de type loop\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: russite d'initialisation du priphrique de type loop\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: ne peut ouvrir %s: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
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:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: ne peut ouvrir %s pour ajuster la vitesse"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: ne peut initialiser la vitesse: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: ne peut tablir un relais fork(): %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
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:884
+#: mount/mount.c:891
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:895
+#: mount/mount.c:902
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: je ne peux dterminer le type de systme de fichiers et aucun n'a t "
"spcifi"
-#: mount/mount.c:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: vous devez spcifier le type de systme de fichiers"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: chec de mount"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: le point de montage %s n'est pas un rpertoire"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: permission refuse"
-#: mount/mount.c:911
+#: mount/mount.c:918
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:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s est occup"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc dj mont"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s est dj mont ou %s est occup"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: le point de montage %s n'existe pas"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, 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:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: priphrique spcial %s n'existe pas"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8127,54 +8165,72 @@ msgstr ""
"mount: le priphrique spcial %s n'existe pas\n"
" (un prfixe de chemin n'est pas un rpertoire)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s n'est pas dj mont ou option errone"
-#: mount/mount.c:959
-#, c-format
+#: mount/mount.c:966
+#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: type erron de systme de fichiers, option errone, super bloc erron "
"sur %s,\n"
" codepage manquante ou trop de systmes de fichiers monts"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "table de priphriques monts est pleine"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: ne peut lire le super bloc"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: priphrique inconnnu"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr "mount: type inconnu de systme de fichiers '%s'"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: probablement vous voulez dire %s"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: peut-tre voulez-vous dire 'iso9660'?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: peut-tre voulez-vous dire 'vfat'?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8182,12 +8238,12 @@ msgstr ""
"%s n'est pas support"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s n'est pas un priphrique de type bloc et stat() a chou?"
-#: mount/mount.c:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8196,49 +8252,49 @@ msgstr ""
"mount: le kernel ne reconnat pas %s comme un priphrique de type bloc\n"
" (peut-tre un pilote insmod ?)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr ""
"mount: %s n'est pas un priphrique de type bloc (essayer -o loop ?)"
-#: mount/mount.c:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s n'est pas un priphrique de type bloc"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s n'est pas un priphrique valide de type bloc"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "priphrique de type bloc"
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: ne peut monter %s%s en lecture seulement"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s est protg en criture mais l'option -w a t fournie"
-#: mount/mount.c:1066
+#: mount/mount.c:1078
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s est protg en criture, on le monte en lecture seulement"
-#: mount/mount.c:1165
+#: mount/mount.c:1177
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:1171
+#: mount/mount.c:1183
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 "
@@ -8247,23 +8303,23 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: mise en arrire plan de \"%s\"\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: abandon \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s est dj mont sur %s\n"
# mount/mount.c:1323
-#: mount/mount.c:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8313,48 +8369,48 @@ msgstr ""
"Autres options: [-nfFrsvw] [-o options] [-p mot_de_passe].\n"
"Pour plus de dtails excuter: man 8 mount .\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: seul l'usager ROOT peut faire cela"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: %s n'a pas t repr - on le cre..\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: pas de telle partition repre"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: on monte %s\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "rien n'a t mont"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: ne peut reprer %s dans %s"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: ne peut reprer %s dans %s ou %s"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount: ne peut ouvrir %s, la conversion de UUID et LABEL ne peut tre "
"faite.\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: UUID erron"
#: mount/mount_guess_fstype.c:489
@@ -8473,16 +8529,16 @@ msgstr "connexion nfs"
msgid "unknown nfs status return value: %d"
msgstr "valeur d'tat retourne nfs inconnue: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "problme dans l'appel de xstrndup"
-#: mount/swapon.c:54
-#, c-format
+#: mount/swapon.c:57
+#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"usage: %s [-hV]\n"
@@ -8490,7 +8546,7 @@ msgstr ""
" %s [-v] [-p priorit] spcial ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8501,33 +8557,38 @@ msgstr ""
" %s -a [-v]\n"
" %s [-v] spcial ...\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s sur %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: ne peut reprer _stext dans %s\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: ne peut valuer pas stat() %s: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
"swapon: AVERTISSEMENT: %s a des permissions non scuritaires %04o, %04o est "
"suggr\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: escamotage du fichier %s - il semble avoir des trous.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr "N'est pas super usager.\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: ne peut ouvrir %s: %s\n"
@@ -8636,42 +8697,48 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t type-vfs] [-O opts]\n"
" umount [-f] [-r] [-n] [-v] spcial | noeud...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "Ne peut ouvrir"
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "Tentative pour dmonter %s\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Ne peut reprer %s dans mtab\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s n'est pas mont (selon mtab)"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, 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:587
+#: mount/umount.c:592
#, 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:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s mount est en dsaccord avec fstab"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: seul %s peut dmonter %s de %s"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: seul l'usager ROOT peut excuter la commande"
@@ -10142,9 +10209,6 @@ msgstr "Mmoire puise lors de l'accroissement du tampon.\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "tiquette"
-
#~ msgid "mount: the label %s occurs on both %s and %s - not mounted\n"
#~ msgstr "mount: l'tiquette %s apparat sur %s et %s - n'a pas t mont\n"
diff --git a/po/it.po b/po/it.po
index 95b3616b9..591f2b8e1 100644
--- a/po/it.po
+++ b/po/it.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.10f\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+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"
@@ -154,7 +154,7 @@ msgstr "utilizzo: dispositivo %s [ -n ]\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -754,7 +754,7 @@ msgstr ""
msgid "not enough space, need at least %lu blocks"
msgstr ""
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Dispositivo: %s\n"
@@ -834,7 +834,7 @@ msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr ""
" Utilizzo: mkfs [-V] [-t tipofs] [opzioni-fs] dispositivo [dimensione]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1045,7 +1045,7 @@ msgstr "ricerca non riuscita durante il controllo dei blocchi"
msgid "Weird values in do_check: probably bugs\n"
msgstr "Valori strani in do_check: probabilmente sono presenti dei bug\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "ricerca in check_blocks non riuscita"
@@ -1102,66 +1102,88 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Si presuppone che le pagine siano di dimensione %d (non %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "etichetta"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr " Utilizzo: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocchi]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "troppe pagine danneggiate"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Memoria esaurita"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "una pagina danneggiata\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, fuzzy, c-format
msgid "%lu bad pages\n"
msgstr "%d pagine danneggiate\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: errore: non possibile impostare swap in nessuna posizione?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, fuzzy, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr ""
"%s: errore: la dimensione %ld maggiore rispetto a quella del dispositivo %"
"d\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: errore: versione sconosciuta %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: errore: l'area di swap deve equivalere almeno a %ldkB\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: attenzione: troncamento area swap a %ldkB\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: errore: non possibile impostare swap in nessuna posizione?\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "Non si cercher di creare uno swapdevice su '%s'"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "errore irreversibile: impossibile leggere la prima pagina"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1175,24 +1197,24 @@ msgstr ""
"Nessuno swap creato. Se si desidera creare uno swap v0 su quel dispositivo,\n"
"utilizzare l'opzione -f per forzare l'operazione.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "Impossibile impostare lo spazio-swap: non leggibile"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, fuzzy, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Impostazione spazio di swap versione %d, dimensione = %ld byte\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "impossibile riavvolgere il dispositivo swap"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "impossibile scrivere sulla pagina di firma"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync non riuscito "
@@ -1233,60 +1255,65 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Inutilizzabile"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Spazio disponibile"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
#, fuzzy
msgid "Linux ext3"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
#, fuzzy
msgid "Linux XFS"
msgstr "Linux"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux"
+
+#: fdisk/cfdisk.c:385
#, fuzzy
msgid "Linux ReiserFS"
msgstr "Linux"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Il disco stato cambiato.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Riavviare il sistema per assicurarsi che la tabella delle partizioni sia "
"aggiornata correttamente.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1298,242 +1325,242 @@ msgstr ""
"partizione DOS 6.x, consultare la pagina del manuale cfdisk\n"
"per ulteriori informazioni.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "ERRORE IRREVERSIBILE"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Premere qualsiasi tasto per uscire da cfdisk"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Ricerca sull'unit disco impossibile"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "Impossibile leggere l'unit disco"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "Impossibile scrivere sull'unit disco"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Troppe partizioni"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "La partizione inizia prima del settore 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "La partizione termina prima del settore 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "La partizione inizia dopo la fine del disco"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "La partizione termina dopo la fine del disco"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr ""
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "le partizioni logiche non sono nell'ordine del disco"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "sovrapposizione delle partizioni logiche"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "sovrapposizione delle partizioni logiche ampliate"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!!! Errore interno durante la creazione di un'unit logica con partizione "
"non estesa !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"Impossibile creare un'unit logica in questo caso - si creerebbero due "
"partizioni estese"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Voce di menu troppo lunga. Il menu pu apparire strano."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Menu senza direzione. predefinita quella orizzontale."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Tasto non valido"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Premere un tasto per continuare"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primaria"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Creare una nuova partizione primaria"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Logica"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Creare una nuova partizione logica"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Annulla"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "Non creare una partizione"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Errore interno !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Dimensione (in MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Inizio"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Aggiungere la partizione all'inizio dello spazio disponibile"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Fine"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Aggiungere la partizione alla fine dello spazio disponibile"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Non c' spazio per creare una partizione estesa"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
#, fuzzy
msgid "No partition table.\n"
msgstr "nessuna tabella delle partizioni presente.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
#, fuzzy
msgid "No partition table. Starting with zero table."
msgstr "Firma danneggiata sulla tabella delle partizioni"
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
#, fuzzy
msgid "Bad signature on partition table"
msgstr "Stampare la tabella delle partizioni"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
#, fuzzy
msgid "Unknown partition table type"
msgstr "nessuna tabella delle partizioni presente.\n"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr ""
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
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:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "Impossibile aprire l'unit disco"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
msgid "Opened disk read-only - you have no permission to write"
msgstr "Disco aperto in sola lettura - scrittura non autorizzata"
-#: fdisk/cfdisk.c:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "Impossibile ottenere la dimensione del disco"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Partizione primaria danneggiata"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Partizione logica danneggiata"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Attenzione!! I dati sul disco potrebbero venire eliminati!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
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:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "no"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "Scrittura tabella delle partizioni su disco non effettuata"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "si"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Inserire `si' (senza accento) o `no'"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Scrittura tabella delle partizioni su disco in corso..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Eseguita l'operazione di scrittura tabella delle partizioni su disco"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
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:1857
+#: fdisk/cfdisk.c:1906
#, 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:1859
+#: fdisk/cfdisk.c:1908
#, fuzzy
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
@@ -1541,80 +1568,80 @@ msgstr ""
"Non possibile avviare in modo preciso una partizione primaria. DOS MBR non "
"pu avviarla."
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
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:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "Impossibile aprire il file '%s'"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Unit disco: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Settore 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Settore %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Nessuno "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primario"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Logico"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Sconosciuto"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Avvio"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, fuzzy, c-format
msgid "(%02X)"
msgstr "Unk(%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
#, fuzzy
msgid "None"
msgstr "Fine"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Tabella delle partizioni per %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
#, fuzzy
msgid " First Last\n"
msgstr " Primo Ultimo\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
#, fuzzy
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
@@ -1623,7 +1650,7 @@ msgstr ""
" # Tipo settore settore offset lunghezza tipo di filesystem "
"(ID) flag\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1633,492 +1660,492 @@ msgstr ""
"---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Avvio--- ----Chiusura---- Numero avvio di\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
#, 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:2144
+#: fdisk/cfdisk.c:2193
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "Grezzo"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Stampare la tabella utilizzando il formato dati grezzi"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Settori"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Stampare la tabella ordinata per settori"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Tabella"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Stampare la tabella delle partizioni"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "Non stampare la tabella"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Schermata Guida per cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
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:2211
+#: fdisk/cfdisk.c:2260
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:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "unit disco."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Comando significato"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b Cambia flag avviabile per la partizione corrente"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Elimina la partizione corrente"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g cambio cilindri, testine, parametri settori-per-traccia"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr ""
" ATTENZIONE: questa opzione dovrebbe essere utilizzata solo da "
"persone"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " esperte."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Stampare questa schermata"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr ""
" m Massimizzare l'utilizzo del disco della partizione corrente"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " Nota: questo pu rendere la partizione incompatibile con"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Creazione di una nuova partizione nello spazio disponibile"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
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:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Vi sono diversi altri formati per la partizione"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " tra i quali scegliere:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
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:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Tabella ordinata per settori"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - Tabella in formato grezzo"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr ""
" q Esce dal programma senza scrivere nella tabella delle partizioni"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Cambia il tipo di filesystem"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr ""
" u Modifica l'unit di visualizzazione della dimensione della "
"partizione"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Ruota attraverso MB, settori e cilindri"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
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:2239
+#: fdisk/cfdisk.c:2288
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:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr " confermare o negare la scrittura inserendo `s' o"
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " `no'"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Freccia Su sposta il cursore alla partizione precedente"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "Freccia Gi sposta il cursore alla partizione successiva"
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Ridisegna lo schermo"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Stampa questa schermata"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
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:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "lettere maiuscole/minuscole (fatta eccezione per Writes)."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cilindri"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Modifica la geometria dei cilindri"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Testine"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Modifica la geometria delle testine"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Modifica la geometria dei settori"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Fine"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Modifica della geometria eseguita"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Immettere il numero di cilindri: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Valore cilindri non valido"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Immettere il numero delle testine: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Valore testine non valido"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Immettere il numero dei settori per traccia: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Valore settori non valido"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Immettere il tipo di filesystem: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "Impossibile cambiare il tipo FS in vuoto"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "Impossibile cambiare il tipo FS in espanso"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Unk(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Sconosciuto (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Unit disco: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Dimensione: %lld byte"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Dimensione: %lld byte"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Testine: %d settori per traccia: %d cilindri: %d"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Nome"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Flag"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Tipo di partiz."
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Tipo FS"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Etichetta]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
#, fuzzy
msgid " Sectors"
msgstr " Settori"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
#, fuzzy
msgid " Cylinders"
msgstr "Cilindri"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
#, fuzzy
msgid " Size (MB)"
msgstr "Dimensione (MB)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
#, fuzzy
msgid " Size (GB)"
msgstr "Dimensione (GB)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Avviabile"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr " Cambia flag avviabile per la partizione corrente "
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Elimina"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Elimina la partizione corrente"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometria"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Modifica della geometria del disco (solo per esperti)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Guida"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Stampa della schermata della guida"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Massimi."
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
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:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Nuova"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Creazione di una nuova partizione nello spazio disponibile"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Stampa"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
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:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Esci"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Esce dal programma senza scrivere nella tabella delle partizioni"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Tipo"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
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:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Unit"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
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:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Scrivi"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
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:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "Impossibile rendere questa partizione avviabile"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "Impossibile cancellare una partizione vuota"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "Impossibile massimizzare questa partizione"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Questa partizione utilizzabile"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Questa partizione gi in uso"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "Impossibile modificare il tipo di una partizione vuota"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "Nessun'altra partizione"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Comando non valido"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
#, 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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2398,20 +2425,20 @@ msgstr " p stampa della tabella delle partizioni"
msgid "You must set"
msgstr "Si devono impostare"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "testine"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "settori"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "cilindri"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2421,11 +2448,11 @@ msgstr ""
" possibile effettuare questa operazione dal menu delle funzioni "
"supplementari.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " e "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2437,32 +2464,32 @@ msgid ""
" (e.g., DOS FDISK, OS/2 FDISK)\n"
msgstr ""
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Offset errato nella partizione estesa primaria\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr ""
"Attenzione: puntatore di collegamento supplementare nella tabella delle "
"partizioni %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr ""
"Attenzione: i dati supplementari nella tabella delle partizioni %d vengono "
"ignorati\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2474,22 +2501,22 @@ msgstr ""
"contenuto precedente non potr essere recuperato.\n"
"\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Nota: la dimensione del settore %d (non %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "Impossibile scrivere la tabella delle partizioni.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
msgstr ""
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
#, fuzzy
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
@@ -2498,16 +2525,16 @@ msgstr ""
"Il dispositivo non contiene n una tabella delle partizioni DOS, n una "
"disklabel Sun o SGI valide\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Errore interno\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "La partizione estesa supplementare viene ignorata %d\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2516,7 +2543,7 @@ msgstr ""
"Attenzione: il flag 0x%04x non valido della tabella delle partizioni %d "
"verr corretto con w(rite)\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2524,79 +2551,79 @@ msgstr ""
"\n"
"ricevuto EOF tre volte - uscita in corso..\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Codice esadecimale (digitare L per elencare i codici): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, fuzzy, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%d-%d, predefinito %d): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, fuzzy, c-format
msgid "Using default value %u\n"
msgstr "Utilizzo del valore predefinito %d\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Valore fuori intervallo.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Numero della partizione"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Attenzione: la partizione %d ha tipo vuoto\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, fuzzy, c-format
msgid "Selected partition %d\n"
msgstr "La partizione estesa supplementare viene ignorata %d\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
#, fuzzy
msgid "No partition is defined yet!\n"
msgstr "Nessuna partizione definita\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr ""
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "cilindro"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "settore"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Modifica delle unit di visualizzazione/immissione su %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "ATTENZIONE: la partizione %d una partizione estesa\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "Impostato il flag compatibile con DOS\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "Il flag compatibile con DOS non impostato\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "La partizione %d non esiste ancora!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2608,7 +2635,7 @@ msgstr ""
"tipo 0 probabilmente non consigliabile. possibile eliminare\n"
"una partizione utilizzando il comando `d'.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2616,7 +2643,7 @@ msgstr ""
"Non possibile trasformare una partizione in una estesa o viceversa\n"
"Prima bisogna eliminarla.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2626,7 +2653,7 @@ msgstr ""
"poich SunOS/Solaris lo prevede e ci gradito anche a Linux.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2636,60 +2663,60 @@ msgstr ""
"e la partizione 11 come volume intero (6) poich IRIX lo prevede.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "Modificato il tipo di sistema della partizione %d in %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr ""
"La partizione %d ha diversi elementi iniziali fisici/logici (non Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " phys=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "logico=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "La partizione %d ha diversi elementi finali fisici/logici:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "La partizione %i non inizia al limite del cilindro:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "dovrebbe essere (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, fuzzy, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "La partizione %d non termina al limite del cilindro.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "dovrebbe essere (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
"Disk %s: %ld MB, %lld bytes\n"
msgstr ""
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, fuzzy, c-format
msgid ""
"\n"
@@ -2699,7 +2726,7 @@ msgstr ""
"Disco %s: %d testine, %d settori, %d cilindri\n"
"\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, fuzzy, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr ""
@@ -2707,48 +2734,48 @@ msgstr ""
"Disco %s: %d testine, %d settori, %d cilindri\n"
"\n"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ""
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, fuzzy, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Avvio Inizio Fine Blocchi Id Sistema\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Dispositivo"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
#, fuzzy
msgid ""
"\n"
"Partition table entries are not in disk order\n"
msgstr "le partizioni logiche non sono nell'ordine del disco"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2759,93 +2786,93 @@ msgstr ""
"Disco %s: %d testine, %d settori, %d cilindri\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
#, fuzzy
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr " Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Attenzione: la partizione %d contiene il settore 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Partizione %d: testina %d pi grande del massimo %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Partizione %d: settore %d pi grande del massimo %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Partizione %d: cilindro %d pi grande del massimo %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr "Partizione %d: dissenso dei settori precedenti %d con il totale %d\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Attenzione: inizio dati danneggiato nella partizione %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Attenzione: la partizione %d si sovrappone alla partizione %d.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Attenzione: la partizione %d vuota\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "La partizione logica %d non interamente nella partizione %d\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, fuzzy, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "Numero %d totale dei settori allocati superiore al massimo %d\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, fuzzy, c-format
msgid "%lld unallocated sectors\n"
msgstr "%d settori non allocati\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr ""
"La partizione %d gi definita. Cancellarla prima di riaggiungerla.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Primo %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "Il settore %d gi allocato\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Non ci sono settori liberi disponibili\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Ultimo %s o +size o +sizeM o +sizeK "
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2853,27 +2880,27 @@ msgid ""
"\tWARNING: This will destroy the present disk contents.\n"
msgstr ""
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr " stato creato il numero massimo di partizioni\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr ""
"Si devono eliminare alcune partizioni e aggiungere anzitutto una partizione "
"estesa\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
#, fuzzy
msgid "All logical partitions are in use\n"
msgstr "le partizioni logiche non sono nell'ordine del disco"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
#, fuzzy
msgid "Adding a primary partition\n"
msgstr "Partizione primaria danneggiata"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2884,20 +2911,20 @@ msgstr ""
" %s\n"
" p partizione primaria (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l logica (5 od oltre)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr " e estesa"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Numero di partizioni non valido per il tipo `%c'\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2905,11 +2932,11 @@ msgstr ""
"La tabella delle partizioni stata alterata!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Chiamata di ioctl() per rileggere la tabella delle partizioni.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2918,7 +2945,7 @@ msgid ""
"The new table will be used at the next reboot.\n"
msgstr ""
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2930,68 +2957,75 @@ msgstr ""
"consultare la pagina del manuale fdisk per ulteriori\n"
"informazioni.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Errore durante la chiusura di %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Sincronizzazione dei dischi in corso.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "La partizione %d non ha area dati\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Nuovo inizio dati"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Comando per esperti (m per richiamare la guida): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Numero di cilindri"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Numero di testine"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Numero di settori"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr ""
"Attenzione: impostare l'offset di settore per assicurare compatibilit con "
"DOS\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "Il disco %s non contiene una tabella delle partizioni valida\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "Impossibile aprire %s\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "impossibile aprire %s\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, fuzzy, c-format
msgid "%c: unknown command\n"
msgstr "%s: comando sconosciuto: %s\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr ""
"Questo kernel trova la dimensione del settore in maniera indipendente - - "
"opzione b ignorata\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -3000,16 +3034,16 @@ msgstr ""
"dovrebbe utilizzare con un dispositivo specificato\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr ""
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Comando (m per richiamare la guida): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -3018,15 +3052,15 @@ msgstr ""
"\n"
"Il file d'avvio corrente : %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Immettere il nome del nuovo file d'avvio:"
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "File d'avvio immutato\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3410,7 +3444,7 @@ msgstr "Linux swap"
msgid "Linux native"
msgstr "Linux nativo"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
#, fuzzy
msgid "Linux LVM"
msgstr "Linux"
@@ -3751,7 +3785,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Autorilevamento raid di Linux"
@@ -4128,8 +4162,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr " SpeedStor"
@@ -4181,152 +4215,157 @@ msgstr "Linux esteso"
msgid "NTFS volume set"
msgstr "set volume NTFS"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext2"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
#, fuzzy
msgid "BSD/OS"
msgstr "BSD/386"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "Ibernazione IBM Thinkpad"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr ""
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr ""
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
#, fuzzy
msgid "NetBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr ""
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI fs"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI swap"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr ""
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr ""
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
msgid "Solaris"
msgstr ""
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr ""
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr ""
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
#, fuzzy
msgid "BootIt"
msgstr "Avvio"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "accesso DOS"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS fs"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr ""
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr ""
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr ""
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS secondario"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5350,125 +5389,125 @@ msgstr "getopt (avanzato) 1.0.3\n"
msgid "internal error, contact the author."
msgstr "errore interno, contattare l'autore."
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "avviato da MILO\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Ruffian BCD clock\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "porta clock regolata su 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: %s atomico non riuscito per 1000 iterazioni!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Impossibile aprire /dev/port: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
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:601
+#: hwclock/cmos.c:602
#, 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:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Probabilmente sono necessari privilegi di root.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Si presuppone che il clock hardware sia mantenuto nell'orario %s.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "locale"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: attenzione: terza linea non riconosciuta nel file adjtime\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Previsto: `UTC' o `LOCAL' o niente.)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, fuzzy, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Ultima regolazione della deriva effettuata %d secondi dopo il 1969\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, fuzzy, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Ultima calibrazione effettuata %d secondi dopo il 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "Il clock hardware sull'orario %s\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "sconosciuto"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "Attesa del segnale dal clock...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...ricevuto segnale dal clock\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, fuzzy, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr " Valori non validi nel clock hardware: %2d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, fuzzy, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
" Orario clock hardware : %2d/%.2d/%.2d %.2d:%.2d:%.2d = %d secondi dal 1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, fuzzy, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr " Orario letto dal clock hardware: %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, fuzzy, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
" Impostazione del clock hardware a %.2d:%.2d:%.2d = %d secondi dal 1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Nessun cambio del clock - si tratta solamente di una verifica.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5477,7 +5516,7 @@ msgstr ""
"Il tempo trascorso dall'orario di riferimento e' stato di %.6f secondi.\n"
"Accumulare ulteriore ritardo per raggiungere il secondo pieno successivo.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5486,20 +5525,20 @@ msgstr ""
"50esimo giorno del mese) oppure oltre l'intervallo che possibile gestire "
"(per es. anno 2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f secondi\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "Opzione --date non specificata.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr ""
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5507,22 +5546,22 @@ msgstr ""
"Il valore dell'opzione --date non una data valida.\n"
"In particolare, contiene virgolette.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Esecuzione comando date: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr ""
"Impossibile eseguire il programma 'date' nella shell /bin/sh. popen() fallito"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "risposta dal comando date = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5537,7 +5576,7 @@ msgstr ""
"La risposta stata:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, fuzzy, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5554,12 +5593,12 @@ msgstr ""
"La risposta stata:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, fuzzy, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "la stringa della data %s equivale a %d secondi dal 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5567,35 +5606,35 @@ msgstr ""
"Il clock hardware non contiene un orario valido, perci non possibile "
"impostare l'ora del sistema a partire da esso.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr " Chiamata settimeofday in corso:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, fuzzy, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %ld\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr ""
"Il clock di sistema non viene impostato perch sta funzionando in modalit "
"test.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Bisogna essere superuser per impostare il clock del sistema\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr " settimeofday() non riuscito"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5603,7 +5642,7 @@ msgstr ""
"Non viene effettuata la regolazione del fattore di deriva poich in "
"precedenza il clock hardwareconteneva elementi insoliti.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
#, fuzzy
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
@@ -5612,7 +5651,7 @@ msgstr ""
"Non viene effettuata la regolazione del fattore di deriva poich trascorso "
"meno di un giornodall'ultima calibrazione.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5620,7 +5659,7 @@ msgstr ""
"Non viene effettuata la regolazione del fattore di deriva poich trascorso "
"meno di un giornodall'ultima calibrazione.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, fuzzy, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5631,22 +5670,22 @@ msgstr ""
"nonostante il fattoredi deriva fosse di %f secondi/giorno.\n"
"Regolazione del fattore di deriva a %f secondi/giorno\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "Il tempo trascorso dall'ultima regolazione di %d secondi\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr ""
" necessario inserire %d secondi e riportare l'ora indietro di %.6f secondi\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "Il file adjtime non viene aggiornato a causa della modalit test.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5655,37 +5694,37 @@ msgstr ""
"Si sarebbe scritto quanto segue in %s:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Parametri di regolazione della deriva non aggiornati.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
"Il clock hardware non contiene un'ora valida, perci non possibile "
"regolarlo.\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr ""
"La regolazione necessaria equivale a meno di un secondo, perci il clock non "
"viene impostato.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Utilizzo di %s in corso.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Impossibile trovare un'interfaccia clock utilizzabile.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "Impossibile impostare il clock di sistema.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5699,16 +5738,16 @@ msgstr ""
"(e quindi, presumibilmente, non pu essere eseguita su un Alpha in questo "
"momento). Nessuna azione intrapresa.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "Impossibile ottenere il valore epoch dal kernel.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "Il kernel pressuppone un valore epoch di %lu\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5716,18 +5755,18 @@ msgstr ""
"Per impostare il valore epoch si deve utilizzare l'opzione 'epoch' per "
"indicare su quale valore impostarlo.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr ""
"Non viene impostato il valore epoch a %d - si tratta solamente di una "
"verifica.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "Impossibile impostare il valore epoch nel kernel.\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, fuzzy, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5786,7 +5825,7 @@ msgstr ""
" --epoch=anno specifica l'anno che l'inizio per il \n"
" valore epoch del clock hardware\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5795,13 +5834,13 @@ msgstr ""
" indicano al hwclock il tipo di alpha utilizzato (consultare "
"hwclock(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr ""
"%s non considera argomenti che non siano opzioni. stato fornito %d.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
#, fuzzy
msgid ""
"You have specified multiple functions.\n"
@@ -5810,7 +5849,7 @@ msgstr ""
"Sono state specificate opzioni di funzione multipla.\n"
" possibile eseguire una sola funzione per volta.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5819,7 +5858,7 @@ msgstr ""
"%s: Le opzioni --utc e -localtime si escludono vicendevolmente. Sono state "
"specificate entrambe.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, fuzzy, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5828,37 +5867,37 @@ msgstr ""
"%s: Le opzioni --utc e -localtime si escludono vicendevolmente. Sono state "
"specificate entrambe.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr ""
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr ""
"Impossibile utilizzare l'ora impostata. Impossibile impostare il clock.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Spiacente, solamente il superuser pu modificare il clock hardware.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
#, fuzzy
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Spiacente, solamente il superuser pu modificare il clock hardware.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
msgstr ""
"Solamente il supeuser pu modificare l'epoch del clock hardware nel kernel.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr ""
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
#, fuzzy
msgid ""
"Use the --debug option to see the details of our search for an access "
@@ -5868,107 +5907,107 @@ msgstr ""
"conosciuto. Utilizzare l'opzione --debug per visionare i dettagli della "
"nostra ricerca di un metodo d'accesso.\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
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:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "Lettura dell'orario con KDGHWCLK ioctl non riuscita"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Tempo d'attesa per il cambio ora esaurito.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr " Lettura dell'orario con KDGHWCLK ioctl non riuscita nel loop"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, 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:140
+#: hwclock/kd.c:141
#, fuzzy
msgid "ioctl KDSHWCLK failed"
msgstr " KDGHWCLK ioctl non riuscito"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
#, fuzzy
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Impossibile aprire /dev/tty1"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr " KDGHWCLK ioctl non riuscito"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "open() di %s fallita"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "Lettura dell'orario attraverso ioctl() su %s non riuscita.\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Attesa in loop per il cambio ora da %s\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s non ha funzioni di interrupt. "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr " read() su %s per l'attesa del segnale dal clock fallita"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr " read() su %s per l'attesa del segnale dal clock fallita"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr " read() su %s per l'attesa del segnale dal clock fallita"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr ""
"Non riuscita la disattivazione degli interrupt d'aggiornamento attraverso "
"ioctl() su %s"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr ""
"Non riuscita inaspettatamente l'attivazione degli interrupt d'aggiornametno "
"attraverso ioctl() su %s "
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "Non riusciuta l'impostazione dell'ora attraverso ioctl() su %s.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr " ioctl(%s) ha funzionato.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "Non riuscita l'apertura di %s"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5979,17 +6018,17 @@ msgstr ""
"periferica 'rtc' di Linux attraverso il file speciale della periferica %s. "
"Questo file non esiste su questo sistema.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "Impossibile aprire %s"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr " Non riuscito ioctl(RTC_EPOCH_READ) su %s"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr "lettura di epoch %ld da %s con RTC_EPOCH_READ ioctl.\n"
@@ -5997,24 +6036,24 @@ msgstr "lettura di epoch %ld da %s con RTC_EPOCH_READ ioctl.\n"
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr "Il valore epoch non pu essere inferiore a 1900. Si richiesto %ld\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "impostazione epoch su %ld con RTC_EPOCH_SET ioctl su %s in corso.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr ""
"Il driver di periferica per il kernel per %s non ha RTC_EPOCH_SET ioctl.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "Non riuscito ioctl(RTC_EPOCH_SET) su %s"
@@ -6230,7 +6269,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Password: "
@@ -7030,39 +7069,39 @@ msgstr "Smontaggio in corso di qualsiasi filesystem rimanente..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "spegnimento: impossibile eseguire umount di %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Avvio in modalit singolo utente.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr " exec di una shell per singolo utente non riuscita\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "fork di una shell per singolo utente non riuscito\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
#, fuzzy
msgid "error opening fifo\n"
msgstr "Errore durante lo spegnimento\t%s\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr ""
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
#, fuzzy
msgid "error running finalprog\n"
msgstr "Errore durante lo spegnimento\t%s\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
#, fuzzy
msgid "error forking finalprog\n"
msgstr "Errore durante lo spegnimento\t%s\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -7070,38 +7109,38 @@ msgstr ""
"\n"
"password errata.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
#, fuzzy
msgid "lstat of path failed\n"
msgstr " settimeofday() non riuscito"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
#, fuzzy
msgid "stat of path failed\n"
msgstr " settimeofday() non riuscito"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
#, fuzzy
msgid "open of directory failed\n"
msgstr "apertura file rc non riuscita\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "fork non riuscito\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "exec fallita\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "impossibile aprire inittab\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "TERM non definito o impossibile eseguire stat sul tty\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, fuzzy, c-format
msgid "error stopping service: \"%s\""
msgstr "errore durante la scrittura di %s: %s"
@@ -7675,17 +7714,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:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "attenzione: errore durante la lettura di %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "attenzione: impossibile aprire %s: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, 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"
@@ -7694,42 +7733,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:472
+#: mount/fstab.c:484
#, 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:487
+#: mount/fstab.c:499
#, 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:499
+#: mount/fstab.c:511
#, 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:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Impossibile bloccare il file di blocco %s: %s\n"
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "Impossibile bloccare il file di blocco %s: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "scaduto"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7738,22 +7777,22 @@ msgstr ""
"Impossibile creare il collegamento %s\n"
"Forse c' un vecchio file di blocco?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "impossibile aprire %s (%s) - mtab non aggiornato"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "errore durante la scrittura di %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "errore durante il cambiamento della modalit di %s: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "impossibile rinominare %s in %s: %s\n"
@@ -7822,26 +7861,26 @@ msgstr "mount: impossibile trovare un qualsiasi loop device libero"
msgid "Couldn't lock into memory, exiting.\n"
msgstr ""
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): riuscito\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: impossibile cancellare il device %s: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): riuscito\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Questo montaggio stato compilato senza supporto loop. Ricompilare.\n"
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, fuzzy, c-format
msgid ""
"usage:\n"
@@ -7855,12 +7894,11 @@ msgstr ""
" %s -d loop_device # elimina\n"
" %s [ -e encryption ] [ -o offset ] loop_device file # imposta\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "memoria insufficiente"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Nessun supporto loop disponibile al momento della compilazione. "
@@ -7882,166 +7920,166 @@ msgstr "[mntent]: la linea %d in %s non valida%s\n"
msgid "; rest of file ignored"
msgstr "; ignorato resto del file"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, 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:380
+#: mount/mount.c:387
#, 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:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: impossibile aprire %s in scrittura: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: errore durante la scrittura di %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: errore durante il cambio di modalit di %s: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s assomigla a swapspace - non montato"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "mount non riuscito"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: solamente root pu montare %s su %s"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: loop device specificato due volte"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: tipo specificato due volte"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: si ignora l'impostazione di un loop device\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, 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:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: mancata impostazione del loop device\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: impostazione del loop device riuscita\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: impossibile aprire %s: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:699
+#: mount/mount.c:706
#, fuzzy, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: impossibile aprire %s in scrittura: %s"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, fuzzy, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: impossibile aprire %s: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: impossibile effettuare il fork: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
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:884
+#: mount/mount.c:891
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr ""
-#: mount/mount.c:895
+#: mount/mount.c:902
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:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: si deve specificare il tipo di filesystem"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: mount non riuscito"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: il mount point di %s non una directory"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: autorizzazione negata"
-#: mount/mount.c:911
+#: mount/mount.c:918
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:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s occupato"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc gi montato"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s gi montato o %s occupato"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: il mount point %s non esiste"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, 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:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: il device speciale %s non esiste"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8050,67 +8088,85 @@ msgstr ""
"mount: il device speciale %s non esiste\n"
" (un prefisso di percorso non una directory)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, 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:959
+#: mount/mount.c:966
#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: tipo fs errato, opzione non valida, superblocco su %s danneggiato,\n"
" o troppi file system montati"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "mount table piena"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: impossibile leggere il superblocco"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, fuzzy, c-format
msgid "mount: %s: unknown device"
msgstr "umount: %s: dispositivo di blocchi non valido"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, fuzzy, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr " l elenco dei tipi di filesystem conosciuti"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: probabilmente si intende %s"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
#, fuzzy
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: forse si intendeva iso9660 ?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
#, fuzzy
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: forse si intendeva iso9660 ?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, 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:1029
+#: mount/mount.c:1041
#, 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:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8119,50 +8175,50 @@ msgstr ""
"mount: il kernel non riconosce %s come un dispositivo di blocchi\n"
" (forse `insmod driver'?)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, 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:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s non un dispositivo di blocchi"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr " dispositivo di blocchi"
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, fuzzy, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "umount: impossibile rimontare %s di sola lettura\n"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, 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:1066
+#: mount/mount.c:1078
#, 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:1165
+#: mount/mount.c:1177
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:1171
+#: mount/mount.c:1183
#, 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"
@@ -8170,22 +8226,22 @@ msgstr "mount: non stato dato il tipo - Si presume smbfs perch xxx\n"
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: esecuzione in background di \"%s\"\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: termina \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s gi montato su %s\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8210,46 +8266,46 @@ msgid ""
"For many more details, say man 8 mount .\n"
msgstr ""
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: possibile solo per root"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: nessun %s trovato - creazione in corso..\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: non si trovata tale partizione"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: mount di %s in corso\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr ""
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: impossibile trovare %s in %s"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: impossibile trovare %s in %s o %s"
-#: mount/mount_by_label.c:190
+#: mount/mount_by_label.c:192
#, fuzzy, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr "mount: impossibile aprire %s - si sta utilizzando al suo posto %s\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: UUID non valido"
#: mount/mount_guess_fstype.c:489
@@ -8366,16 +8422,16 @@ msgstr "nfs connect"
msgid "unknown nfs status return value: %d"
msgstr "valore riportato di stato nfs sconosciuto: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "bug in chiamata xstrndup"
-#: mount/swapon.c:54
+#: mount/swapon.c:57
#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"utilizzo: %s [-hV]\n"
@@ -8383,7 +8439,7 @@ msgstr ""
" %s [-v] [-p priority] special ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8395,34 +8451,39 @@ msgstr ""
" %s [-v] [-p priority] special ...\n"
" %s [-s]\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s su %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: impossibile trovare \"_stext\" in %s\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: impossibile effettuare stat di %s: %s\n"
-#: mount/swapon.c:183
+#: mount/swapon.c:196
#, fuzzy, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
"swapon: attenzione: %s ha le autorizzazioni non sicure %04o, 0600 "
"suggerito\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: sto ignorando il file %s - sembra avere dei buchi.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
#, fuzzy
msgid "Not superuser.\n"
msgstr "Non impostato\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: impossibile aprire %s: %s\n"
@@ -8533,42 +8594,48 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t vfstypes]\n"
" umount [-f] [-r] [-n] [-v] special | node...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "Impossibile aprire %s\n"
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "Tentativo di eseguire umount di %s in corso\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Impossibile trovare %s in mtab\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s non montato (secondo mtab)"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: sembra che %s sia stato montato diverse volte"
-#: mount/umount.c:587
+#: mount/umount.c:592
#, 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:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s mount non coerente con fstab"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: solamente %s pu smontare %s da %s"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr " umount: possibile solo per root"
@@ -10066,9 +10133,6 @@ msgstr "Memoria insufficiente quando si amplia il buffer.\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "etichetta"
-
#, fuzzy
#~ msgid "swapon: invalid loop device name\n"
#~ msgstr "umount: %s: dispositivo di blocchi non valido"
diff --git a/po/ja.po b/po/ja.po
index 2473c3e69..f04d650d9 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.11n\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+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"
@@ -153,7 +153,7 @@ msgstr "Ȥ: %s [ -n ] ǥХ\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -754,7 +754,7 @@ msgstr "i-Ρɤ¿ޤ - 512 Ǥ"
msgid "not enough space, need at least %lu blocks"
msgstr "ΰ褬ԽʬǤǤ %lu ֥åɬפǤ"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "ǥХ: %s\n"
@@ -828,7 +828,7 @@ msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr ""
"Ȥ: mkfs [-V] [-t ե륷ƥ෿] [fs ץ] ǥХ []\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1038,7 +1038,7 @@ msgstr "֥åΥƥ˥Ԥޤ"
msgid "Weird values in do_check: probably bugs\n"
msgstr "do_check Ѥͤޤ: ¿ʬХǤ礦\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "check_blocks ǤΥ˼Ԥޤ"
@@ -1094,64 +1094,86 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr " %d (%d ǤϤʤ) Υڡޤ\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "٥"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Ȥ: %s [-c] [-v0|-v1] [-pڡ] /dev/name [֥å]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "ڡ¿ޤ"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "꤬­ޤ"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "ʥڡ\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, fuzzy, c-format
msgid "%lu bad pages\n"
msgstr "ʥڡ %d\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: 顼: åפͭꤹ뤿ξ꤬ʤ\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, fuzzy, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: 顼: %ld ǥХΥ %d 礭Ǥ\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: 顼: ʥС %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: 顼: åΰϾʤȤ %ldkB ɬפǤ\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: ٹ: åΰ %ldkB ڤͤޤ\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: 顼: åפͭꤹ뤿ξ꤬ʤ\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "'%s' ˤϥåץǥʤ褦ˤޤ"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "̿顼: ǽΥڡɹޤ"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1164,24 +1186,24 @@ msgstr ""
"ޤȤ̣ޤ⤷ʤˤΥǥХ v0 å\n"
"С-f ץǶפƤ\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "å׶֤Ǥޤ: ɹޤ"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, fuzzy, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "å׶֥С %d ꤷޤ = %ld Х\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "åץǥ򴬤᤻ޤ"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "̾ڡ񤭹ޤ"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync ˼"
@@ -1222,55 +1244,60 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Բ"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "ΰ"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "ǥѹޤ\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr "ΰˤϥƥƵưƤ\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1282,314 +1309,314 @@ msgstr ""
"ޤäϡcfdisk ޥ˥奢ˤɲþڡ\n"
"򻲾ȤƤ\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "*̿Ūʥ顼*"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "ǤˤϲϤƤ"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "ǥɥ饤־ seek Ǥޤ"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "ǥɥ饤֤ɤ߹ޤ"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "ǥɥ饤֤˽񤭹ޤ"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "ΰ褬¿ޤ"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "ΰ褬 0 ޤϤޤäƤޤ"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "ΰ褬 0 ǽäƤޤ"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "ΰ褬ǥνϤޤäƤޤ"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "ΰ褬ǥνǽäƤޤ"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr ""
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "ΰ褬ǥνȰפޤ"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "ΰ褬ʣƤޤ"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "礵줿ΰ褬ʣƤޤ"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!!! 顼ĥΰʳɥ饤֤褦ȤƤޤ !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"ˤɥ饤֤Ǥޤ -- 2 ĤγĥΰǤкޤ"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "˥塼̾Ĺޤ˥塼ɽƤǽޤ"
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "˥塼ޤ󡣿ʿͤȤޤ"
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "ʥ"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "³ˤϲϤƤ"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "ΰ"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "˴ΰޤ"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "ΰ"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "ΰޤ"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr ""
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "ΰޤ"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! 顼 !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr " (MB ñ): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "ǽ餫"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "ΰκǽΰɲ"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Ǹ夫"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "ΰκǸΰɲ"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "ĥΰ뤿ξ꤬ޤ"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
#, fuzzy
msgid "No partition table.\n"
msgstr "ߥѡƥϤޤ\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
#, fuzzy
msgid "No partition table. Starting with zero table."
msgstr "ΰơ֥뤬̵ΰơ֥ν̾Ǥ"
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
#, fuzzy
msgid "Bad signature on partition table"
msgstr "ñΰɽ"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
#, fuzzy
msgid "Unknown partition table type"
msgstr "ߥѡƥϤޤ\n"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "ơ֥dzϤޤ礦 [y/N] ?"
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr "ǥˤȤäŬڤʿ¿Υꤵޤ"
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "ǥɥ饤֤򳫤ޤ"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
msgid "Opened disk read-only - you have no permission to write"
msgstr "ǥɹѤdzޤ -- ʤˤϽ߸¤ޤ"
-#: fdisk/cfdisk.c:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "ǥǤޤ"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "ʴΰ"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "ΰ"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "ٹ ϤʤΥǥˤǡ˲뤫⤷ޤ"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr "ΰǥ˽񤭹ǤǤ(yes ޤ no): "
-#: fdisk/cfdisk.c:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "no"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "ΰơ֥ǥ˽񤭹ߤޤǤ"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "yes"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "`yes' `no' Τ줫ϤƤ"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "ΰơ֥񤭹..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "ΰơ֥ǥ˽񤭹ߤޤ"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"ΰơ֥񤭹ߤޤɹߤ˼ԡƵưƹƤ"
-#: fdisk/cfdisk.c:1857
+#: fdisk/cfdisk.c:1906
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"֡Ȳǽޡդΰ褬ޤDOS MBR Ϥ֡ȤǤޤ"
-#: fdisk/cfdisk.c:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"֡Ȳǽޡդΰ褬ʣޤDOS MBR Ϥ֡ȤǤޤ"
""
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
msgid "Enter filename or press RETURN to display on screen: "
msgstr "ե̾ϡ̤ɽϥ꥿󥭡: "
-#: fdisk/cfdisk.c:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "ե '%s' 򳫤ޤ"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "ǥɥ饤: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr " 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr " %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " ̵ "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " /"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " ΰ"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " ΰ"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr ""
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "֡"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, fuzzy, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
#, fuzzy
msgid "None"
msgstr "λ"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "%s ѡƥ\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
#, fuzzy
msgid " First Last\n"
msgstr " ǽ Ǹ\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
#, fuzzy
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
@@ -1598,7 +1625,7 @@ msgstr ""
" # ΰ եå 礭 Filesystem(ID) ե"
"\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1608,471 +1635,471 @@ msgstr ""
"---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---ǽ----- ----Ǹ---- Υ \n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
#, 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:2144
+#: fdisk/cfdisk.c:2193
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "ǡ"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "ǡηǥѡƥ"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr ""
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "˥ѡƥ"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "ơ֥"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "ñΰɽ"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "ΰϤʤ"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "cfdisk Υإײ"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "cfdisk üǥΰץǤ"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2260
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "ϡɥǥɥ饤֤ΰѹ"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "뤳ȤǤޤ"
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "ޥ "
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b ΰΥ֡ȥե饰"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d ΰ"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g , إå, ȥåΥѹ"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " ٹ: Υץ󤬲򤹤Τ򤷤Ƥʤ"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " ϻѤƤϤʤ"
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h β̤ɽ"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m ΰΥǥ̤ˤ롣"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " : ΥץϡDOS, OS/2 ȸߴΤʤ"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " ΰǽޤ"
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n ΰ褫鿷ΰ"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
msgid " p Print partition table to the screen or to a file"
msgstr " p ΰ̤ޤϥǥ˽Ϥ"
-#: fdisk/cfdisk.c:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " ΰνϤˤϼΤ褦ʣη"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " Ǥ:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - ǡ(ǥ˽񤭹ޤ󤽤Τ)"
-#: fdisk/cfdisk.c:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Υѡƥ"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - ηΥѡƥ"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q ΰ񤭹ޤ˥ץλ"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t ե륷ƥॿפѹ"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u ɽΰ襵ñ̤ѹ"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " MB, , ν˽۴Ĥ"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
msgid " W Write partition table to disk (must enter upper case W)"
msgstr " W ΰǥ˽񤭹(ʸ W "
-#: fdisk/cfdisk.c:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " ϤʤФʤʤ)Υץϥǥ"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr " ǡ˲ǽ뤿ᡢ'yes'ޤ'no'"
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " Ϥˤꡢ񤭹ߤԤɤǧ롣"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr " ΰ˥ư"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr " ΰ˥ư"
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L ̤"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? β̤ɽ"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr ": ޥɤϤ٤ʸʸɤǤѤǤޤ"
-#: fdisk/cfdisk.c:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "(񤭹ߤ)"
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr ""
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Υȥѹ"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "إåɿ"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "إåɤΥȥѹ"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Υȥѹ"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "λ"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "ȥѹƽλ"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "ϤƤ: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "ʥ"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "إåϤƤ: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "ʥإåɿ"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "ȥåΥϤƤ: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "ʥ"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "ե륷ƥॿפϤƤ: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "ե륷ƥॿפѹǤޤ"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "ե륷ƥॿפĥѹǤޤ"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "/"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr " (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "ǥɥ饤: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr ": %lld Х"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr ": %lld Х"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "إå: %d ȥåΥ: %d : %d"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "̾"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "ե饰"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "ΰ西"
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "FS"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[٥]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
#, fuzzy
msgid " Sectors"
msgstr " "
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
#, fuzzy
msgid " Cylinders"
msgstr ""
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
#, fuzzy
msgid " Size (MB)"
msgstr " (MB)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
#, fuzzy
msgid " Size (GB)"
msgstr " (GB)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "֡Ȳ"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "ΰΥ֡ȥե饰ڤؤ"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr ""
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "ΰ"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "ȥ"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "ǥȥѹ(ѡ)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "إ"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "إײ̤ɽ"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "粽"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "ΰΥǥ̤粽(ѡ)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr ""
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "ΰ褫鿷ΰ"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "ɽ"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print partition table to the screen or to a file"
msgstr "ΰ̤ޤϥե˽"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "λ"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "ΰ񤭹ޤ˥ץλ"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "FS"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "ե륷ƥΥפѹ(DOS, Linux, OS/2 ʤ)"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "ñ"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "ɽΰ襵ñ(MB, , )ѹ"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "񤭹"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr "ΰǥ˽񤭹(ǡ˲ǽ)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "ΰ֡ȲǽˤϤǤޤ"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "ΰ뤳ȤϤǤޤ"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "ΰ粽뤳ȤϤǤޤ"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "ΰϻѤǤޤ"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Υǥϸ߻Ǥ"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "ΰΥפѹ뤳ȤϤǤޤ"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "ʾΰϤޤ"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "ʥޥ"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
#, 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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2345,20 +2372,20 @@ msgstr " f ΰνŬ"
msgid "You must set"
msgstr "ꤹɬפޤ"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "إåɿ"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr ""
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr ""
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2367,11 +2394,11 @@ msgstr ""
"%s%s.\n"
"ʤ̵ǽ˥塼餳ԤʤȤǤޤ\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " ڤ "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2390,28 +2417,28 @@ msgstr ""
"2) ̤ OS Υ֡Ȥѡƥե\n"
" (. DOS FDISK, OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "ܳĥΰʥեåȤޤ\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "ٹ: ΰơ֥ %d ̤ʥ󥯥ݥ󥿤Ǥ\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr "ٹ: ΰơ֥ %d ̤ʥǡ̵뤷ޤ\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2422,22 +2449,22 @@ msgstr ""
"\n"
"˻ĤޤθϤƤϽԲǽˤʤޤ\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr ": %d Ǥ (%d ǤϤʤ)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "ΰơ֥ν񤭹ߤԤޤ\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
msgstr ""
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
@@ -2445,16 +2472,16 @@ msgstr ""
"ǥХ DOS ΰơ֥⡢Sun, SGI OSF ǥ٥\n"
"ޤǤޤ\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "顼\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "̤ʳĥΰ %d ̵뤷ޤ\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2463,7 +2490,7 @@ msgstr ""
"ٹ: ΰơ֥ %2$d ʥե饰 0x%1$04x w(񤭹)ˤä\n"
"ˤʤޤ\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2471,79 +2498,79 @@ msgstr ""
"\n"
"EOF 3 ɤߤޤ -- λޤ..\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "16ʿ (L ޥɤǥɥꥹɽ): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, fuzzy, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%d-%d, %d): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, fuzzy, c-format
msgid "Using default value %u\n"
msgstr " %d Ȥޤ\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "ϰϳͤǤ\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "ΰֹ"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "ٹ: ΰ %d ϶ΥפǤ\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, fuzzy, c-format
msgid "Selected partition %d\n"
msgstr "̤ʳĥΰ %d ̵뤷ޤ\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
#, fuzzy
msgid "No partition is defined yet!\n"
msgstr "ΰ褬Ƥޤ\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr ""
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr ""
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr ""
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "%s ɽ/ܥ˥åȤѹޤ\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "ٹ: ΰ %d ϳĥΰǤ\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "DOS ߴե饰ꤵޤ\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "DOS ߴե饰ꤵƤޤ\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "ΰ %d Ϥޤ¸ߤޤ\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2555,7 +2582,7 @@ msgstr ""
"¿ʬϤʤȤǤʤ `d' ޥɤȤäƤΥѡƥ\n"
"Ǥޤ\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2563,7 +2590,7 @@ msgstr ""
"ʤΰĥΰѹǤޤ󤷡εդޤ\n"
"Ǥޤ󡣤ޤԤʤäƤ\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2572,7 +2599,7 @@ msgstr ""
"ΰ 3 Whole disk (5) ȤƻĤƤȤθƤ\n"
"SunOS/Solaris ϤԤޤLinux Ǥ줬˾ޤǤ\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2581,59 +2608,59 @@ msgstr ""
"ΰ 9 volume header (0) Ȥơڤΰ 11 entire volume (6)\n"
"ȤƻĤƤȤθƤIRIX Ϥꤷޤ\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "ΰΥƥॿפ %d %x (%s) ѹޤ\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr "ΰ %d ϰۤʤäʪ/ϰ֤ˤʤäƤޤ(Linux Ǥ̵?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " ʪ=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "ΰ %d ϰۤʤäʪ/ˤʤäƤޤ:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "ΰ %i ϥǻϤޤäƤޤ:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "(%d, %d, 1) Ǥ٤Ǥ\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, fuzzy, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "ѡƥ %d ϡǽäƤޤ\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "(%d, %d, %d) Ǥ٤Ǥ\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
"Disk %s: %ld MB, %lld bytes\n"
msgstr ""
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, fuzzy, c-format
msgid ""
"\n"
@@ -2643,7 +2670,7 @@ msgstr ""
"ǥ %s: إå %d, %d, %d\n"
"\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, fuzzy, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr ""
@@ -2651,19 +2678,19 @@ msgstr ""
"ǥ %s: إå %d, %d, %d\n"
"\n"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ""
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2671,23 +2698,23 @@ msgstr ""
"Ԥ٤ȤϤޤ󡣴ʽˤʤäƤޤ\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, fuzzy, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s ֡ ֥å ID ƥ\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "ǥХ"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2695,7 +2722,7 @@ msgstr ""
"\n"
"ΰơ֥ܤǥνȰפޤ\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2706,92 +2733,92 @@ msgstr ""
"ǥ %s: إå %d, %d, %d\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
#, fuzzy
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "Nr AF Hd Sec Cyl Hd Sec Cyl ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "ٹ: ΰ %d ϥ 0 ޤǤޤ\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "ΰ %d: إå %d Ϻ %d 礭Ǥ\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "ΰ %d: %d Ϻ %d 礭Ǥ\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "ΰ %d: %d Ϻ %d 礭Ǥ\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr "ΰ %d: Υ %d Ϲ %d Ȱפޤ\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "ٹ: ΰ %d ʥǡϰ֤ޤ\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "ٹ: ΰ %d ϡΰ %d ȽŤʤäƤޤ\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "ٹ: ΰ %d ϶Ǥ\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "ΰ %d ΰ %d ΤˤʤäƤޤ\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, fuzzy, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "׳ݥ %d Ϻ %d 礭Ǥ\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, fuzzy, c-format
msgid "%lld unallocated sectors\n"
msgstr "ݤƤʤ %d ޤ\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr "ΰ %d ѤǤޤϺԤʤäƤ\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "ǽ %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr " %d ϴ˳ݺѤߤǤ\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Ѳǽե꡼ޤ\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr " %s ޤ + ޤ +M ޤ +K"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2803,25 +2830,25 @@ msgstr ""
"\tѡƥơ֥Ƥ(o Ȥ)\n"
"\tٹ: ϸߤΥǥƤ˲ޤ\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "ΰϺѤǤ\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr "ĥΰɲäˡޤΰɬפޤ\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
#, fuzzy
msgid "All logical partitions are in use\n"
msgstr "ΰ褬ǥνȰפޤ"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
#, fuzzy
msgid "Adding a primary partition\n"
msgstr "ʴΰ"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2832,20 +2859,20 @@ msgstr ""
" %s\n"
" p ΰ (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l (5 ʾ)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e ĥ"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr " `%c' ˤȤäƤΰֹǤ\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2853,11 +2880,11 @@ msgstr ""
"ΰơ֥ϸ򴹤ޤ\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "ioctl() ƤӽФΰơ֥ɹߤޤ\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2870,7 +2897,7 @@ msgstr ""
"ͥϤޤŤơ֥ȤäƤޤ\n"
"ơ֥ϼ֡Ȼ˻Ȥ褦ˤʤǤ礦\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2881,65 +2908,72 @@ msgstr ""
"ٹ: DOS 6.x ΰޤѹƤޤäϡ\n"
"fdisk ޥ˥奢ɲþڡ򻲾ȤƤ\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "%s Υ顼\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "ǥƱޤ\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "ΰ %d ˥ǡΰ褬ޤ\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "ǡϰ"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "ԥޥ (m ǥإ): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr ""
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "إåɿ"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr ""
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr "ٹ: DOS ߴΤΥեåȤꤷޤ\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "ǥ %s ΰơ֥ޤǤޤ\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "%s 򳫤ޤ\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "%s 򳫤ޤ\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: ʥޥ\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr ""
"Υͥϥʬǧޤ -- -b ץ̵뤷ޤ\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -2948,18 +2982,18 @@ msgstr ""
"Ѥ٤Ǥ\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, fuzzy, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr ""
"%s OSF/1 ǥ٥򸡽ФΤǡǥ٥⡼ɤ˰ܹԤޤ\n"
"DOS ΰơ֥⡼ɤˤϡ'r' ޥɤȤޤ礦\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "ޥ (m ǥإ): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -2968,15 +3002,15 @@ msgstr ""
"\n"
"ߤΥ֡ȥե: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "ʥ֡ȥե̾ϤƤ: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "֡ȥեѹޤǤ\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3355,7 +3389,7 @@ msgstr "Linux å"
msgid "Linux native"
msgstr "Linux native"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3681,7 +3715,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linux raid ư"
@@ -4055,8 +4089,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4108,149 +4142,154 @@ msgstr "Linux ĥΰ"
msgid "NTFS volume set"
msgstr "NTFS ܥ塼ॻå"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "IBM Thinkpad ϥХ͡"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr ""
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr ""
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI fs"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI å"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr " Boot Wizard"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr ""
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
msgid "Solaris"
msgstr ""
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr " FS ǡ"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Dell 桼ƥƥ"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS access"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS fs"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "Linux/PA-RISC ֡"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS "
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5261,121 +5300,121 @@ msgstr "getopt (enhanced) 1.1.2\n"
msgid "internal error, contact the author."
msgstr "顼ԤϢ"
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "MILO ֡Ȥޤ\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "ƹ BCD å\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "åݡȤ 0x%x ˽ޤ\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr " TOY!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: Բʬ%s 1000 ȿ!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "/dev/port 򳫤ޤ: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
msgid "I failed to get permission because I didn't try.\n"
msgstr "ĤμʤäΤǡĤμ˼Ԥޤ\n"
-#: hwclock/cmos.c:601
+#: hwclock/cmos.c:602
#, 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:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "餯롼ȸ¤ɬפǤ\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "ϡɥ%sݻƤȤߤʤޤ\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr " UTC "
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr ""
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: ٹ: adjtime եλܤǧǤޤ\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(ԤΤ: `UTC', `LOCAL' 뤤ϲʤǤ)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "ľΤν 1969 ǯʹ %ld ûǹԤʤޤ\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "ľĴ 1969 ǯʹ %ld ûǹԤʤޤ\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "ϡɥפ%sǤ\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr ""
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "ååԤäƤޤ...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "ååޤ\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr "ϡɥפ: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"ϡɥ׻ : %4d/%.2d/%.2d %.2d:%.2d:%.2d = 1969 ǯ %ld \n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "ϡɥפɹ: %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr "ϡɥפ %.2d:%.2d:%.2d = 1969 ǯ %ld \n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "åѹޤǤ -- ƥȤǤ\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5384,7 +5423,7 @@ msgstr ""
"򻲾Ȥ %.6f ÷вᡣ\n"
"δäޤ٤餻ޤ\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5392,20 +5431,20 @@ msgstr ""
"ϡɥץ쥸( 50)ˤʤäƤ뤫\n"
"ªǤʤϰϤ( 2095ǯ)ˤʤäƤޤ\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f \n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "--date ץ󤬻ꤵƤޤ\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "--date Ĺޤ\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5413,23 +5452,23 @@ msgstr ""
"--date ץͤդǤϤޤ\n"
"äˡơޡޤޤƤޤ\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "date ޥɤȯԤޤ: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr ""
"/bin/sh 'date' ץ¹ԤǤޤ\n"
"popen() Ԥޤ"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "date ޥɤ = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5444,7 +5483,7 @@ msgstr ""
":\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5461,12 +5500,12 @@ msgstr ""
"α:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "date ʸ %s 1969 ǯ %ld äȤޤ\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5474,52 +5513,52 @@ msgstr ""
"ϡɥפϡޤǤʤΤǡ줿ͤ\n"
"ƥǤޤ\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "settimeofday ƤӽФޤ:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr "ƥȥ⡼ɤưƤ뤿ᡢƥ९åꤷޤ\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "ƥ९åꤹˤϡѡ桼ǤʤФʤޤ\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "settimeofday() ƤӽФ˼"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
msgstr "ϡɥ˰ΥߤޤޤƤꡢǤޤ\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
#, fuzzy
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
msgstr "Ĵ衢ʤȤвᤷʤȡǤޤ\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
msgstr "Ĵ衢ʤȤвᤷʤȡǤޤ\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, fuzzy, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5530,21 +5569,21 @@ msgstr ""
"äޤ\n"
" %4$f äޤ\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "νλ֤ %d äǤ\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr "%d äȡ%.6f λλȤɬפǤ\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "ƥȥ⡼ɤưƤ뤿 adjtime ե򹹿ޤ\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5553,33 +5592,33 @@ msgstr ""
"ʤ %s ˰ʲΤ褦˽񤭹ޤϤǤ:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "νͤϹޤǤ\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr "ϡɥפʻޤǤʤΤǡǤޤ\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr "ɬפʽ̤ʤΤǡåꤷޤ\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "%s Ȥޤ\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Ѳǽʥå󥿡եĤޤ\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "ƥ९åǤޤ\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5591,16 +5630,16 @@ msgstr ""
" hwclock ʣ Alpha ʳΥޥǥӥɤޤ\n"
"( Alpha Ǽ¹ԤƤޤ)¹ԤǤޤ\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "ͥ뤫饨ݥåͤǤޤ\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "ͥϥݥåͤ %lu ꤷƤޤ\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5608,16 +5647,16 @@ msgstr ""
"ݥåͤꤹ뤿ˤϡͤꤹ뤫Τ餻뤿 'epoch'\n"
"ץȤʤФʤޤ\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "ݥå %d ꤷޤ -- ƥȤǤ\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "ͥ˥ݥåͤꤹ뤳ȤǤޤǤ\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5676,7 +5715,7 @@ msgstr ""
" -noadjfile /etc/adjtime ˥ʤ--utc --localtime\n"
" Τ줫λѤɬפȤ\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5684,12 +5723,12 @@ msgstr ""
" --jensen, --arc, --srm, --funky-toy\n"
" ʤ alpha Υפؼ (hwclock(8) )\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s ϲ餫Υץޤʤ %d Ϳޤ\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
#, fuzzy
msgid ""
"You have specified multiple functions.\n"
@@ -5698,7 +5737,7 @@ msgstr ""
"ʤϵǽץʣĻꤷޤ\n"
"٤˰ĤεǽΤ߹ԤʤȤǤޤ\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5707,7 +5746,7 @@ msgstr ""
"%s: --utc --localtime ץ¾ŪǤξꤵޤ"
"\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5716,27 +5755,27 @@ msgstr ""
"%s: --adjust --noadjfile ץ¾ŪǤξꤵޤ"
"\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr ""
"%s: --noadjfile Ĥ硢--utc --localtime Τ줫ꤷʤ"
"ʤޤ\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "ͭ郎ޤ󡣥åǤޤ\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr ""
"ǰʤ顢ϡɥפѹϥѡ桼ǤԤʤޤ\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "ǰʤ顢ƥפѹϥѡ桼ǤԤʤޤ\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
@@ -5744,112 +5783,112 @@ msgstr ""
"ǰʤ顢ͥΥϡɥפΥݥåͤѹǤΤϡ\n"
"ѡ桼Ǥ\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr "ΤΤɤˡǤ⡢ϡɥפ˥Ǥޤ\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
msgstr "--debug ץǥˡξܺ٤ˤĤƸƤ\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "KDGHWCLK ѹΤλ롼Ǥ\n"
-#: hwclock/kd.c:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK λɤ߼꤬Ԥޤ"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "ѹԤॢȤޤ\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "ɤ߹ߤΤ KDGHWCLK ioctl 롼ǼԤޤ"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "%s ɹि ioctl() ˼Ԥޤ"
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "KDSHWCLK ioctl ˼Ԥޤ"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "/dev/tty1 ޤ /dev/vc/1 򳫤ޤ"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK ioctl ˼Ԥޤ"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "%s ؤ open() Ԥޤ"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "ɤ߹ߤΤ %s ؤ ioctl() ˼Ԥޤ\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "%s ѹ뤿Υ롼Ǥ\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s ϳߵǽäƤޤ "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "ååԤĤ %s ؤ read() Ԥޤ"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "ååԤĤ %s ؤ read() Ԥޤ"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "ååԤĤ %s ؤ read() Ԥޤ"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "߹򥪥դˤ뤿 %s ؤ ioctl() Ԥޤ"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr ""
"߹򥪥ˤ뤿 %s ؤ ioctl() ͽ̼Ԥ˽ޤ"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "Τ %s ؤ ioctl() Ԥޤ\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "ioctl(%s) ޤ\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "%s Υץ˼Ԥޤ"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5860,17 +5899,17 @@ msgstr ""
"Linux 'rtc' ǥХɥ饤Ф˥ɬפޤ\n"
"ե뤬ƥ¸ߤޤ\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "%s 򥪡ץǤޤ"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "%s ؤ ioctl(RTC_EPOCH_READ) Ԥޤ"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr ""
@@ -5879,25 +5918,25 @@ msgstr ""
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr ""
"ݥåͤ 1900 ǯǤϤޤ󡣤ʤ %ld ׵ᤷޤ\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr ""
"%2$s RTC_EPOCH_READ ioctl ˤäƥݥå %1$ld ɤ߼ޤ\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr "%s Υͥɥ饤Ф RTC_EPOCH_SET ioctl äƤޤ\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "%s ؤ ioctl(RTC_EPOCH_SET) Ԥޤ"
@@ -6113,7 +6152,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "ѥ: "
@@ -6916,36 +6955,36 @@ msgstr "ĤΥե륷ƥ򥢥ޥȤޤ..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: %s umount ǤޤǤ: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "󥰥桼⡼ɤǥ֡Ȥޤ\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr "󥰥桼μ¹Ԥ˼Ԥޤ\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "󥰥桼 fork ˼Ԥޤ\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "ѥפΥץǥ顼ȯ\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr ""
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "finalprog ư˥顼ȯ\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "finalprog fork ˥顼ȯ\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -6953,35 +6992,35 @@ msgstr ""
"\n"
"ְäѥɡ\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "ѥ lstat(2) Ԥޤ\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "ѥ stat(2) Ԥޤ\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "ǥ쥯ȥΥץ󤬼Ԥޤ\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "fork \n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "¹Ԥ˼\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "inittab 򳫤ޤ\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "üʤ tty ξ֤Ǥޤ\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "顼ˤꥵӥߤޤ: \"%s\""
@@ -7554,17 +7593,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:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "ٹ: %s ɹߥ顼: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "ٹ: %s ץǤޤ: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: %s 򥪡ץǤޤǤ -- %s Ȥޤ\n"
@@ -7573,36 +7612,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:472
+#: mount/fstab.c:484
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr "åե %s Ǥޤ: %s (-n ե饰ȤäƤ)"
-#: mount/fstab.c:487
+#: mount/fstab.c:499
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr "åե %s 󥯤Ǥޤ: %s (-n ե饰ȤäƤ)"
-#: mount/fstab.c:499
+#: mount/fstab.c:511
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr "åե %s 򳫤ޤ: %s (-n ե饰ȤäƤ)"
-#: mount/fstab.c:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "åե %s åǤޤ: %s\n"
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "åե %s åǤޤ: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "ॢ"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7611,22 +7650,22 @@ msgstr ""
" %s Ǥޤ\n"
"¿ʬߤȲåե뤬ΤǤ ?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "%s 򳫤ޤ (%s) -- mtab Ϲޤ"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "%s ؤν񤭹ߥ顼: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "%s Υ⡼ѹ顼: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "%s ̾ %s ѹǤޤ: %s\n"
@@ -7695,28 +7734,28 @@ msgstr "mount: Ƥ loop ǥХĤޤ"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "˳ǼǤޤǤΤǡλޤ\n"
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): \n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: ǥХ %s Ǥޤ: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): \n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
" mount loop ΥݡȤʤǥѥ뤵ޤ\n"
"ƥѥ뤷Ƥ\n"
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, fuzzy, c-format
msgid ""
"usage:\n"
@@ -7730,12 +7769,11 @@ msgstr ""
" %s -d loopǥХ # \n"
" %s [ -e Ź沽 ] [ -o եå ] loopǥХ ե # \n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "꤬ԽʬǤ"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"ѥ loop ݡȤͭˤʤäƤޤ󡣺ƥѥ뤷Ƥ"
@@ -7755,164 +7793,164 @@ msgstr "[mntent]: %2$s %1$d ܤǤ%3$s\n"
msgid "; rest of file ignored"
msgstr "-- ̵뤷ޤ"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: mtab ˤȡ%s %s ˥ޥȺѤǤ"
-#: mount/mount.c:380
+#: mount/mount.c:387
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: mtab ˤȡ%s %s ˥ޥȤƤޤ"
-#: mount/mount.c:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: %s 񤭹Ѥ˥ץǤޤ: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: %s ν񤭹ߥ顼: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: %s Υ⡼ѹ顼: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s ϥå׶֤Τ褦Ǥ -- ޥȤޤ"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "ޥȤ˼Ԥޤ"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: root %s %s ˥ޥȤǤޤ"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: loop ǥХ 2 ꤵޤ"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: פ 2 ꤵޤ"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: loop ǥХ򥹥åפޤ\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: loop ǥХ %s Ȥޤ\n"
-#: mount/mount.c:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: loop ǥХ˼Ԥޤ\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: loop ǥХޤ\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: %s ץǤޤ: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: %s ®Ѥ˥ץǤޤ"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: ®٤꤬Ǥޤ: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: fork Ǥޤ: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr ""
"mount: ΥС 'nfs' פΥݡȤʤǥѥ뤵Ƥޤ"
-#: mount/mount.c:884
+#: mount/mount.c:891
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: nfs mount version 4 ǤϼԤޤ3 ޤ..\n"
-#: mount/mount.c:895
+#: mount/mount.c:902
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr "mount: none ꤵޤե륷ƥॿפǤޤ"
-#: mount/mount.c:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: ե륷ƥॿפꤹɬפޤ"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: ޥȤ˼Ԥޤ"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: ޥȥݥ %s ϥǥ쥯ȥǤϤޤ"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: Ĥޤ"
-#: mount/mount.c:911
+#: mount/mount.c:918
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:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s ϻǤ"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc ϥޥȺѤǤ"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s ޥȺѤ %s Ǥ"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: ޥȥݥ %s ¸ߤޤ"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: ޥȥݥ %s Ϥɤ⤵Ƥʤܥå󥯤Ǥ"
-#: mount/mount.c:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: ڥǥХ %s ¸ߤޤ"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7921,56 +7959,74 @@ msgstr ""
"mount: ڥǥХ %s ¸ߤޤ\n"
" (ѥΥǥ쥯ȥ꤬ޤ)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s ϤޤޥȤƤʤʥץǤ"
-#: mount/mount.c:959
+#: mount/mount.c:966
#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: ְäե륷ƥॿסʥץ\n"
" %s Υѡ֥åϥե륷ƥΥޥ\n"
" ¿ޤ"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "ޥȥơ֥뤬äѤǤ"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: ѡ֥åɤޤ"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: ʥǥХǤ"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, fuzzy, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr " l ΤΥե륷ƥॿפꥹɽ"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: 餯ʤ %s ꤷäΤǤ礦"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
#, fuzzy
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: ¿ʬʤ iso9660 ꤷäΤǤϡ"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
#, fuzzy
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: ¿ʬʤ iso9660 ꤷäΤǤϡ"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -7978,12 +8034,12 @@ msgstr ""
" %s ݡȤƤޤ"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s ϥ֥åǥХǤϤޤ󡢤 stat ԡ"
-#: mount/mount.c:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -7992,48 +8048,48 @@ msgstr ""
"mount: Υͥ %s ֥åǥХȤǧޤ\n"
" (¿ʬ`insmod ɥ饤' ʤȤʤΤǤϡ)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr ""
"mount: %s ϥ֥åǥХǤϤޤ (¿ʬ `-o loop' ȤäƤߤ顩)"
-#: mount/mount.c:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s ϥ֥åǥХǤϤޤ"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "֥åǥХ "
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: %s%s ɹѤǥޥȤǤޤ"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s Ͻ񤭹߶ػߤǤ`-w' ե饰ŪͿޤ"
-#: mount/mount.c:1066
+#: mount/mount.c:1078
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s Ͻ񤭹߶ػߤǤɹѤǥޥȤޤ"
-#: mount/mount.c:1165
+#: mount/mount.c:1177
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr "mount: פͿƤޤ -- 󤬤Τ nfs ͤǤ\n"
-#: mount/mount.c:1171
+#: mount/mount.c:1183
#, fuzzy
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
@@ -8042,22 +8098,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: Хå饦 \"%s\"\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: ޤ \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s %s ˥ޥȺѤǤ\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
#, fuzzy
msgid ""
"Usage: mount -V : print version\n"
@@ -8102,47 +8158,47 @@ msgstr ""
"¾Υץ: [-nfFrsvw] [-o ץ]\n"
"äȾܤȤΤꤿСman 8 mount ȾƤߤޤ礦\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: root Ԥʤޤ"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: %s Ĥޤ -- ޤ..\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: Τ褦ʥѡƥϸĤޤ"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: %s ޥȤޤ\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "ޥȤޤǤ"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: %2$s %1$s 򸫤Ĥޤ"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: %2$s %3$s %1$s 򸫤Ĥޤ"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount: %s 򥪡ץǤʤäΤǡUUID LABEL ѴԤޤ\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: UUID"
#: mount/mount_guess_fstype.c:489
@@ -8259,16 +8315,16 @@ msgstr "nfs ³"
msgid "unknown nfs status return value: %d"
msgstr " nfs ơ֤ͤޤ: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "xstrndup ƤӽФΥХ"
-#: mount/swapon.c:54
+#: mount/swapon.c:57
#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"Ȥ: %s [-hV]\n"
@@ -8276,7 +8332,7 @@ msgstr ""
" %s [-v] [-p ͥ] ڥե ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8288,33 +8344,38 @@ msgstr ""
" %s [-v] [-p ͥ] ڥե ...\n"
" %s [-s]\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%2$s %1$s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: %s \"_stext\" Ĥޤ\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: %s ξּǤޤ: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
"swapon: ٹ: %s ϰǤʤ %04o ޤ %04o Ǥ\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: ե %s 򥹥å -- ۡ򸡽С\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
#, fuzzy
msgid "Not superuser.\n"
msgstr "åȤƤޤ\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: %s 򳫤ޤ: %s\n"
@@ -8423,43 +8484,49 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t ե륷ƥॿ]\n"
" umount [-f] [-r] [-n] [-v] special | node...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "%s 򳫤ޤ\n"
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "%s 򥢥ޥȤޤ\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "mtab %s Ĥޤ\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s ޥȤƤޤ (mtab ˤ)"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: %s ʣޥȤƤ褦Ǥ"
-#: mount/umount.c:587
+#: mount/umount.c:592
#, c-format
msgid "umount: %s is not in the fstab (and you are not root)"
msgstr ""
"umount: %s fstab ˤޤ (ˡʤ root ǤϤޤ)"
-#: mount/umount.c:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s fstab ȰפʤޥȤǤ"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: %s %s %s 饢ޥȤǤޤ"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: root Ԥʤޤ"
@@ -9976,9 +10043,6 @@ msgstr "Хåե礹Ȥ˥꤬­ʤʤޤ\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "٥"
-
#, fuzzy
#~ msgid "swapon: invalid loop device name\n"
#~ msgstr "umount: %s ʥ֥åǥХǤ"
diff --git a/po/nl.po b/po/nl.po
index b0a2942a4..083cacad1 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -19,7 +19,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+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"
@@ -165,7 +165,7 @@ msgstr "gebruik: %s [ -n ] apparaat\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -772,7 +772,7 @@ msgstr "te veel inodes - maximum: 512"
msgid "not enough space, need at least %lu blocks"
msgstr "niet genoeg ruimte, tenminste %lu blokken nodig"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Apparaat: %s\n"
@@ -847,7 +847,7 @@ msgstr ""
"Gebruik: mkfs [-V] [-t soort bestandssysteem] [opties bestandssysteem] "
"apparaat [grootte]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1086,7 +1086,7 @@ msgstr "zoeken mislukt tijdens testen van blokken"
msgid "Weird values in do_check: probably bugs\n"
msgstr "Vreemde waarden in do_check: waarschijnlijk programmeerfouten\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "zoeken mislukt in check_blocks"
@@ -1143,64 +1143,86 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Pagina groottes van %d worden aangenomen (niet %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "label"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Gebruik: %s [-c] [-v0|-v1] [-pPAGINAGROOTTE] /dev/naam [blokken]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "teveel slechte pagina's"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Geheugentekort"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "één slechte pagina\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, fuzzy, c-format
msgid "%lu bad pages\n"
msgstr "%d slechte pagina's\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: fout: Nergens om wisselgeheugen op in te stellen?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, fuzzy, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: fout: grootte %ld is groter dan apparaatgrootte %d\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: fout: onbekende versie %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: fout: wisselgeheugen moet tenminste %ldkB zijn\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: waarschuwing: afkappen wisselgeheugen tot %ldkB\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: fout: Nergens om wisselgeheugen op in te stellen?\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "Zal niet proberen wisselgeheugen in te stellen op '%s'"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "fataal: eerste pagina onleesbaar"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1214,24 +1236,24 @@ msgstr ""
"wisselgeheugen op dat apparaat wilt maken, kunt u de -f optie gebruiken\n"
"om het te forceren.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "Instellen wisselgeheugen mislukt: onleesbaar"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Instellen wisselgeheugen versie %d, grootte = %llu kB\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "terugwinden wisselapparaat mislukt"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "schrijven ondertekeningspagina mislukt"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync mislukt"
@@ -1273,57 +1295,62 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Onbruikbaar"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Vrije ruimte"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "De schijf is veranderd.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Start het systeem opnieuw op om er zeker van te zijn dat de partitietabel "
"juist wordt bijgewerkt.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1334,318 +1361,318 @@ msgstr ""
"WAARSCHUWING: U heeft DOS 6.x partities gemaakt of gewijzigd.\n"
"Kijk alstublieft in het cfdisk handboek voor meer informatie.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "FATALE FOUT"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Druk op een toets om cfdisk af te sluiten"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Kan niet zoeken op schijf"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "Kan schijf niet lezen"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "Kan niet schrijven naar schijf"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Teveel partities"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "Partitie begint vóór sector 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "Partitie eindigt vóór sector 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "Partitie begint na einde schijf"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "Partitie eindigt na einde schijf"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr "Partitie eindigt in de laatste gedeeltelijke cylinder"
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "logische partities niet in schijfvolgorde"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "logische partities overlappen"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "vergrootte logische partities overlappen"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!!! Interne fout bij maken logische schijf zonder uitgebreide partitie !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"Kan hier geen logische schijf maken -- zou twee uitgebreide partities maken"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Menu item te lang. Menu ziet er misschien raar uit."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Menu zonder richting. Gebruik standaard: horizontaal."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Onjuiste toets"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Druk op een toets om door te gaan"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primair"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Een nieuwe primaire partitie maken"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Logisch"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Een nieuwe logische partitie maken"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Annuleren"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "Geen partitie maken"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Interne fout !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Grootte (in MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Begin"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Partitie toevoegen aan begin vrije ruimte"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Einde"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Partitie toevoegen aan einde vrije ruimte"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Geen ruimte om de uitgebreide partitie te maken"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
#, fuzzy
msgid "No partition table.\n"
msgstr "geen partitietabel aanwezig.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
#, fuzzy
msgid "No partition table. Starting with zero table."
msgstr "Geen partitietabel of onbekende ondertekening op partitietabel"
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
#, fuzzy
msgid "Bad signature on partition table"
msgstr "Gewoon de partitietabel weergeven"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
#, fuzzy
msgid "Unknown partition table type"
msgstr "geen partitietabel aanwezig.\n"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
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:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr "U heeft meer cylinders aangegeven dan er op de schijf passen"
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "Kan schijf niet openen"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
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:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "Kan schijfgrootte niet opvragen"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Slechte primaire partitie"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Slechte logische partitie"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Waarschuwing!! Dit kan gegevens op uw schijf wissen!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
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:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "nee"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "Partitietabel niet naar schijf geschreven"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "ja"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Antwoord alstublieft `ja' of `nee'"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Schrijven partitietabel naar schijf..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "De partitietabel is weggeschreven naar de schijf"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
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:1857
+#: fdisk/cfdisk.c:1906
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:1859
+#: fdisk/cfdisk.c:1908
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:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
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:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "Kan bestand '%s' niet openen"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Schijf: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Sector 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Sector %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Geen "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primair"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Logisch"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Onbekend"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Opstartbaar"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
msgid "None"
msgstr "Geen"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Partitietabel voor %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
msgid " First Last\n"
msgstr " Eerste Laatste\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1653,7 +1680,7 @@ msgstr ""
" # Soort Sector Sector Plaats Lengte Bestandssysteem (ID) "
"Optie\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1662,466 +1689,466 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Begin--- ----Einde---- Start Aantal\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
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:2144
+#: fdisk/cfdisk.c:2193
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "Ruw"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Deze tabel weergeven met ruwe gegevens formaat"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Sectoren"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Deze tabel weergeven, geordend op sectoren"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Tabel"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Gewoon de partitietabel weergeven"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "Tabel niet weergeven"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Hulpscherm voor cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Dit is cfdisk, een schijfpartitioneringsprogramma gebaseerd op"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2260
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:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "op uw harde schijf."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Opdracht Betekenis"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "-------- -------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b `Opstartbaar'-optie voor huidige partitie aan/uitzetten"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Huidige partitie verwijderen"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Cylinders, koppen, sectoren-per-spoor wijzigen"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " WAARSCHUWING: Deze optie dient alleen te worden gebruikt"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " door mensen die weten wat ze doen."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Dit scherm weergeven"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m Schijf gebruik maximaliseren voor huidige partitie"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " Let op: Dit kan een partitie incompatibel maken met"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Nieuwe partitie maken van vrije ruimte"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
msgid " p Print partition table to the screen or to a file"
msgstr " p Partitietabel weergeven op scherm of naar bestand"
-#: fdisk/cfdisk.c:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Er zijn verschillende formaten voor de partitie"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " waaruit u kunt kiezen:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
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:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Tabel geordend op sectoren"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - Tabel in ruw formaat"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q Programma afsluiten zonder partitietabel te schrijven"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Soort bestandssysteem wijzigen"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u Eenheden partitiegrootte weergave wijzigen"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Roteert door MB, sectoren en cylinders"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Partitietabel naar schijf wegschrijven (moet met hoofdletter)"
-#: fdisk/cfdisk.c:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " Omdat dit mogelijk gegevens op de schijf wist, moet"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
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:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " `nee'"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Pijl omhoog Aanwijzer naar vorige partitie verplaatsen"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "Pijl omlaag Aanwijzer naar volgende partitie verplaatsen"
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Het scherm opnieuw tekenen"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Dit scherm weergeven"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
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:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "worden ingevoerd (behalve W)."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cylinders"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Cylinder geometrie wijzigen"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Koppen"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Koppen geometrie wijzigen"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Sector geometrie wijzigen"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Klaar"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Klaar met wijzigen geometrie"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Geef het aantal cylinders: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Onjuiste waarde cylinders"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Geef het aantal koppen: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Onjuiste waarde koppen"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Geef het aantal sectoren per spoor: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Onjuiste waarde sectoren"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Geef het soort bestandssysteem: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "Kan bestandsysteem soort niet veranderen tot leeg"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "Kan bestandssysteem soort niet veranderen tot uitgebreid"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Onbekend(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Onbekend (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Schijf: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Grootte: %lld bytes, %lld MB"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Grootte: %lld bytes, %lld.%lld GB"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Koppen: %d Sectoren per spoor: %d Cylinders: %lld"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Naam"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Opties"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Part soort"
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Bestandssysteem"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Label]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
msgid " Sectors"
msgstr " Sectoren"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
msgid " Cylinders"
msgstr " Cylinders"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
msgid " Size (MB)"
msgstr " Grootte (MB)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
msgid " Size (GB)"
msgstr " Grootte (GB)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Opstartbaar"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Huidige partitie wel/niet op opstartbaar zetten"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Verwijderen"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "De huidige partitie verwijderen"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometrie"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Schijf geometrie wijzigen (alleen experts)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Hulp"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Hulpscherm weergeven"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Maximaliseren"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Schijfgebruik maximaliseren voor huidige partitie (alleen experts)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Nieuw"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Nieuwe partitie maken van vrije ruimte"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Weergeven"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print partition table to the screen or to a file"
msgstr "Partitietabel weergeven op scherm of naar een bestand"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Afsluiten"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Programma afsluiten zonder partitietabel te schrijven"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Soort"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Bestandssysteem soort wijzigen (DOS, Linux, OS/2 enz.)"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Eenheden"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "De gebruikte eenheden in weergave wijzigen (MB, sect, cyl)"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Schrijven"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr "Partitietabel naar schijf schrijven (kan gegevens wissen)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "Kan deze partitie niet opstartbaar maken"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "Kan geen lege partitie verwijderen"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "Kan deze partitie niet maximaliseren"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Deze partitie is onbruikbaar"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Deze partitie is al in gebruik"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "Kan niet de soort van een lege partitie wijzigen"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "Niet meer partities"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Onjuiste opdracht"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2396,20 +2423,20 @@ msgstr " f partitie volgorde repareren"
msgid "You must set"
msgstr "U moet instellen:"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "koppen"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "sectoren"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "cylinders"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2418,11 +2445,11 @@ msgstr ""
"%s%s.\n"
"U kunt dit doen vanuit het menu met extra functies.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " en "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2441,28 +2468,28 @@ msgstr ""
"2) opstart- en partitioneringssoftware van andere besturings-\n"
" systemen, zoals DOS FDISK en OS/2 FDISK\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Slechte plaats in primaire uitgebreide partitie\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Waarschuwing: extra koppelingsverwijzer in partitietabel %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr "Waarschuwing: extra gegevens in partitietabel %d worden genegeerd\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2474,16 +2501,16 @@ msgstr ""
"dat moment is de vorige inhoud uiteraard niet meer herstelbaar.\n"
"\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Let op: sectorgrootte is %d (niet %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "U zult geen partitietabel kunnen wegschrijven.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
@@ -2491,22 +2518,22 @@ msgstr ""
"Deze schijf heeft zowel DOS als BSD identificatienummers.\n"
"Geef de opdracht 'b' om naar BSD modus te gaan.\n"
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
msgstr "Apparaat bevat geen geldige DOS, Sun, SGI of OSF schijflabel\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Interne fout\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "Extra uitgebreide partitie %d wordt genegeerd\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2515,7 +2542,7 @@ msgstr ""
"Waarschuwing: onjuiste optie 0x%04x van partitietabel %d zal worden "
"gecorrigeerd bij schrijven\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2523,78 +2550,78 @@ msgstr ""
"\n"
"driemaal EOF ontvangen - afsluiten..\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Hex code (typ L om codes op te sommen): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%u-%u, standaard %u): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, c-format
msgid "Using default value %u\n"
msgstr "Standaardwaarde %u wordt gebruikt\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Waarde buiten bereik.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Partitienummer"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Waarschuwing: partitie %d heeft lege soortaanduiding\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, c-format
msgid "Selected partition %d\n"
msgstr "Geselecteerde partitie %d\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
msgid "No partition is defined yet!\n"
msgstr "Er zijn nog geen partities gedefinieerd!\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr "Alle primaire partities zijn al gedefinieerd!\n"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "cylinder"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "sector"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Weergave/invoer eenheden worden veranderd naar %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "WAARSCHUWING: Partitie %d is een uitgebreide partitie\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "DOS compatibaliteit is aan gezet\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "DOS compatibaliteit is uit gezet\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "Partitie %d bestaat nog niet!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2606,7 +2633,7 @@ msgstr ""
"om partities te hebben van soort 0. U kunt een par-\n"
"titie verwijderen met de `-d' opdracht.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2614,7 +2641,7 @@ msgstr ""
"U kunt een partitie niet veranderen in een uitgebreide of andersom.\n"
"Verwijder de partitie eerst.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2624,7 +2651,7 @@ msgstr ""
"SunOS/Solaris het verwacht en zelfs Linux het liefst heeft.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2634,53 +2661,53 @@ msgstr ""
"partitie 11 als geheel volume (6) zoals IRIX het verwacht.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "Systeemsoort van partitie %d veranderd naar %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr ""
"Partitie %d heeft verschillende fysieke/logische beginpunten (niet-Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " fys=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "logisch=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "Partitie %d heeft verschillende fysieke/logische eindpunten:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "Partitie %i begint niet op de cylinder grens:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "moet zijn (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "Partitie %i eindigt niet op een cylinder grens.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "moet zijn (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
@@ -2689,7 +2716,7 @@ msgstr ""
"\n"
"Schijf %s: %ld MB, %lld bytes\n"
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, c-format
msgid ""
"\n"
@@ -2698,17 +2725,17 @@ msgstr ""
"\n"
"Schijf %s: %ld.%ld GB, %lld bytes\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr "%d koppen, %d sectoren/spoor, %d cylinders"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ", totaal %llu sectoren"
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
@@ -2717,7 +2744,7 @@ msgstr ""
"Eenheden = %s van %d * %d = %d bytes\n"
"\n"
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2725,23 +2752,23 @@ msgstr ""
"Niets te doen. De ordening is al goed.\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Boot Start Einde Blokken Id Systeem\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Apparaat"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2749,7 +2776,7 @@ msgstr ""
"\n"
"Partitietabel ingangen zijn niet in schijfvolgorde\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2760,93 +2787,93 @@ msgstr ""
"Schijf %s: %d koppen, %d sectoren, %d cylinders\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "Nr AF Hd Sec Cyl Hd Sec Cyl Start Grootte ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Waarschuwing: partitie %d bevat sector 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Partitie %d: kop %d groter dan maximum %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Partitie %d: sector %d groter dan maximum %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Partities %d: cylinder %d groter dan maximum %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr "Partitie %d: vorige sectoren %d stemt niet overeen met totaal %d\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Waarschuwing: slechte start-van-gegevens in partitie %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Waarschuwing: partitie %d overlapt partitie %d.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Waarschuwing: partitie %d is leeg\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "Logische partitie %d niet geheel in partitie %d\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, fuzzy, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "Totaal gereserveerde sectoren %d groter dan maximum %d\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, fuzzy, c-format
msgid "%lld unallocated sectors\n"
msgstr "%d niet-gereserveerde sectoren\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr ""
"Partitie %d is al gedefinieerd. Verwijder haar alvorens haar opnieuw toe te "
"voegen.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Eerste %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "Sector %d is al gereserveerd\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Geen vrije sectoren beschikbaar\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Laatste %s of +size of +sizeM of +sizeK"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2858,26 +2885,26 @@ msgstr ""
"\tnieuwe, lege DOS partitietabel. (Gebruik o.)\n"
"\tWAARSCHUWING: Dit zal de huidige schijfinhoud wissen.\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "Het maximum aantal partities is gemaakt\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr ""
"U moet een partitie verwijderen en eerst een uitgebreide partitie toevoegen\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
#, fuzzy
msgid "All logical partitions are in use\n"
msgstr "logische partities niet in schijfvolgorde"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
#, fuzzy
msgid "Adding a primary partition\n"
msgstr "Slechte primaire partitie"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2888,20 +2915,20 @@ msgstr ""
" %s\n"
" p primaire partitie (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l logische (5 of hoger)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e uitgebreid"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Onjuist partitienummer voor soort `%c'\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2909,11 +2936,11 @@ msgstr ""
"De partitietabel is gewijzigd!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Aanroepen ioctl() om partitietabel opnieuw in te lezen.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2926,7 +2953,7 @@ msgstr ""
"De kernel gebruikt nog de oude tabel.\n"
"De nieuwe tabel wordt na opnieuw opstarten gebruikt.\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2938,64 +2965,71 @@ msgstr ""
"of gewijzigd, kunt u het best meer informatie opzoeken\n"
"in het fdisk handboek.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Fout bij sluiten %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Synchroniseren schijven.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "Partitie %d heeft geen gegevens-plaats\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Nieuw begin van gegevens"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Expert opdracht (m voor hulp): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Aantal cylinders"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Aantal koppen"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Aantal sectoren"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr "Waarschuwing: sector plaats wordt ingesteld voor DOS compatibaliteit\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "Schijf %s bevat geen geldige partitietabel\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "Kan %s niet openen\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "kan %s niet openen\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: onbekende opdracht\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr "Deze kernel vind de sectorgrootte zelf - -b optie genegeerd\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -3004,16 +3038,16 @@ msgstr ""
"apparaat worden gebruikt\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr "OSF/1 schijflabel gevonden op %s, ga in schijflabel modus.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Opdracht (m voor hulp): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -3022,15 +3056,15 @@ msgstr ""
"\n"
"Het huidige opstartbestand is: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Geef alstublieft de naam van het nieuwe opstartbestand: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "Opstartbestand ongewijzigd\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3411,7 +3445,7 @@ msgstr "Linux wisselgeheugen"
msgid "Linux native"
msgstr "Linux eigen systeem"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3742,7 +3776,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linux raid auto-detectie"
@@ -4111,8 +4145,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4164,150 +4198,155 @@ msgstr "Linux uitgebreid"
msgid "NTFS volume set"
msgstr "NTFS volume set"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "IBM Thinkpad hibernation"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr "Darwin UFS"
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr "Darwin opstart"
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI fs"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI wisselgeheugen"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "Boot Wizard verborgen"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr "Solaris opstart"
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
#, fuzzy
msgid "Solaris"
msgstr "Solaris opstart"
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "Niet-bestandssysteem gegevens"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Dell Utility"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS access"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "Linux/PA-RISC opstart"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS secundair"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5329,121 +5368,121 @@ 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:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "opgestart vanuit MILO\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Ruffiaanse BCD klok\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "klokpoort aangepast tot 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "cool SPEELTJE!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomische %s 1000 iteraties mislukt!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Kan /dev/port niet openen: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
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:601
+#: hwclock/cmos.c:602
#, 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:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Waarschijnlijk heeft u root privileges nodig.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Aangenomen wordt dat de hardware klok staat op %s tijd.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "lokale"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Waarschuwing: derde regel in adjtime bestand niet herkend\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Verwacht: `UTC' of `LOCAL' of niets.)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Laatste aanpassing voor verschuiving is %ld seconden na 1969 gedaan\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Laatste calibratie gedaan %ld seconden na 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "Hardware klok is op %s tijd\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "onbekende"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "Wachten op klok tik...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...klok tik ontvangen\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr "Onjuiste waarden in hardware klok: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Hw klok tijd : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconden sinds 1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Tijd gelezen van hardware klok: %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr "Instellen hardware klok op %.2d:%.2d:%.2d = %ld seconden sinds 1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Klok niet gewijzigd - alleen testen.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5452,7 +5491,7 @@ msgstr ""
"Verlopen tijd sinds laatste referentietijd is %.6f seconden.\n"
"Uitstellen tot volgende volle seconde.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5461,20 +5500,20 @@ msgstr ""
"maand) of buiten het bereik vallen dat wij ondersteunen (bijv. het jaar "
"2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f seconden\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "Geen --date optie aangegeven.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "--date argument te lang\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5482,21 +5521,21 @@ msgstr ""
"De waarde van de --date optie is geen geldige datum.\n"
"Het bevat in het bijzonder aanhalingstekens.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Uitvoeren date opdracht: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr "Uitvoeren 'date' programma in /bin/sh shell mislukt. popen() mislukt"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "antwoord van date opdracht = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5511,7 +5550,7 @@ msgstr ""
"Het antwoord was:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5528,12 +5567,12 @@ msgstr ""
"Het antwoord was:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "datumtekst %s is gelijk aan %ld seconden sinds 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5541,33 +5580,33 @@ msgstr ""
"De hardware klok bevat geen geldige tijd, zodat we de systeemtijd er niet "
"mee kunnen instellen.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "Aanroepen settimeofday:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr "De systeemklok wordt niet ingesteld, uitvoeren in testmodus.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Moet superuser zijn om de systeemklok in te stellen.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "settimeofday() mislukt"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5575,7 +5614,7 @@ msgstr ""
"De verchuivingsfactor wordt niet aangepast, omdat de hardware klok eerder "
"rotzooi bevatte.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
@@ -5584,7 +5623,7 @@ msgstr ""
"nul was.\n"
"De geschiedenis is dus slecht, en opnieuw calibreren is nodig.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5592,7 +5631,7 @@ msgstr ""
"De verschuivingsfactor wordt niet aangepast, omdat het minder dan een dag is "
"sinds de laatste calibratie.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5603,23 +5642,23 @@ msgstr ""
"verschuivingsfactor van %f seconden/dag.\n"
"De verschuivingsfactor wordt %f seconden/dag aangepast\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "Tijd sinds laatste aanpassing is %d seconden\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr ""
"Er moeten %d seconden worden ingevoegd, en er moet worden gekeken naar de "
"tijd %.6f seconden geleden\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "Het adjtime bestand wordt niet aangepast - in testmodus.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5628,37 +5667,37 @@ msgstr ""
"Er zou het volgende worden geschreven naar %s:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Verschuivingsaanpassing parameters niet bijgewerkt.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
"De hardware klok bevat geen geldige tijd, zodat we die niet kunnen "
"aanpassen.\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr ""
"Benodigde aanpassing is minder dan een seconden - de klok wordt niet "
"ingesteld.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "%s wordt gebruikt.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Geen bruikbare klok-interface gevonden.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "Instellen systeemklok mislukt.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5670,16 +5709,16 @@ msgstr ""
"Deze versie van hwclock is gemaakt voor een ander systeem dan de Alpha\n"
"(en werkt nu dus waarschijnlijk niet op een Alpha). Geen actie genomen.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "Verkrijgen tijdperk-waarde van de kernel mislukt.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "Kernel neemt een tijdperk-waarde aan van %lu\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5687,16 +5726,16 @@ msgstr ""
"Om de tijdperk-waarde in te stellen, dient u de 'epoch' optie te gebruiken "
"om door te geven welke waarde moet worden gebruikt.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "Tijdperk niet instellen op %d - alleen testen.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "Instellen tijdperk-waarde in kernel mislukt.\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5759,7 +5798,7 @@ msgstr ""
"localtime\n"
" is hiervoor nodig\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5767,12 +5806,12 @@ msgstr ""
" --jensen, --arc, --srm, --funky-toy\n"
" vertel welke soort Alpha u gebruikt (zie hwclock(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s heeft geen argumenten zonder opties. U gaf %d.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
@@ -5780,7 +5819,7 @@ msgstr ""
"U heeft verschillende functies aangegeven.\n"
"Er kan slechts één functie tegelijkertijd worden gebruikt.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5789,7 +5828,7 @@ msgstr ""
"%s: De --utc en --localtime opties sluiten elkaar uit. U heeft beide "
"aangegeven.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5798,24 +5837,24 @@ msgstr ""
"%s: De --adjust en --noadjfile opties sluiten elkaar uit. U heeft beide "
"aangegeven.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr "%s: Met --noadjfile moet u --utc of --localtime aangeven\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "Geen bruikbare insteltijd. Kan klok niet instellen.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Sorry, alleen de supergebruiker kan de hardware klok instellen.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Sorry, alleen de supergebruiker kan de systeem klok instellen.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
@@ -5823,11 +5862,11 @@ msgstr ""
"Sorry, alleen de supergebruiker kan de tijdperk-waarde van de hardware klok "
"in de kernel instellen.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr "Kan geen toegang krijgen tot hardware klok op een bekende manier.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
@@ -5835,103 +5874,103 @@ msgstr ""
"Gebruik de --debug optie om de details te zien over onze zoektocht naar een "
"toegangsmethode.\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
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:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK ioctl om tijd te lezen, mislukt"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Time-out bij wachten totdat tijd verandert.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK ioctl om tijd te lezen, mislukt in lus"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() mislukt om tijd te lezen van %s"
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "ioctl KDSHWCLK mislukt"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Openen /dev/tty1 of /dev/vc/1 mislukt"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK ioctl mislukt"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "open() van %s mislukt"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "ioctl() naar %s om tijd te lezen, mislukt.\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Wachten in lus totdat de tijd van %s verandert\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s heeft geen onderbrekingsfuncties. "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "read() naar %s om te wachten op kloktik, mislukt"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "read() naar %s om te wachten op kloktik, mislukt"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "read() naar %s om te wachten op kloktik, mislukt"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "ioctl() naar %s om bijwerkingsonderbrekingen uit te zetten, mislukt"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr ""
"ioctl() naar %s om bijwerkingsonderbrekingen aan te zetten, onverwacht "
"mislukt"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "ioctl() naar %s om tijd in te stellen, mislukt.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "ioctl(%s) succesvol.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "Openen van %s mislukt"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5942,17 +5981,17 @@ msgstr ""
"stuurprogramma van Linux nodig via het speciale apparaatbestand %s. Dit "
"bestand bestaat niet op dit systeem.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "Openen %s mislukt"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "ioctl(RTC_EPOCH_READ) naar %s mislukt"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr "de tijdperk-waarde %ld is gelezen van %s met RTC_EPOCH_READ ioctl.\n"
@@ -5960,23 +5999,23 @@ msgstr "de tijdperk-waarde %ld is gelezen van %s met RTC_EPOCH_READ ioctl.\n"
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr "De tijdperk-waarde mag niet minder zijn dan 1900. U vroeg om %ld\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "tijdperk instellen op %ld met RTC_EPOCH_SET ioctl naar %s.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr "Het kernel stuurprogramma voor %s heeft geen RTC_EPOCH_SET ioctl.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "ioctl(RTC_EPOCH_SET) naar %s mislukt"
@@ -6192,7 +6231,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Wachtwoord: "
@@ -6997,36 +7036,36 @@ msgstr "Ontkoppelen resterende bestandssystemen..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: Kon %s niet ontkoppelen: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Opstarten in enkele-gebruikersmodus.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr "Uitvoeren van enkele-gebruikersshell mislukt\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "fork() van enkele-gebruikersshell mislukt\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "fout bij openen fifo\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr "fout bij instellen sluiten-bij-uitvoeren op /dev/initctl"
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "fout bij uitvoeren finalprog\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "fout bij fork() finalprog\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -7034,35 +7073,35 @@ msgstr ""
"\n"
"Verkeerd wachtwoord.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "lstat van pad mislukt\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "stat van pad mislukt\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "openen van map mislukt\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "fork() mislukt\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "uitvoeren mislukt\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "kan inittab niet openen\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "geen TERM, of kan tty niet vinden\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "fout bij stoppen apparaat: \"%s\""
@@ -7634,17 +7673,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:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "waarschuwing: fout bij lezen %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "waarschuwing: kan %s niet openen: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: kon %s niet openen - gebruik %s in plaats daarvan\n"
@@ -7653,39 +7692,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:472
+#: mount/fstab.c:484
#, 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:487
+#: mount/fstab.c:499
#, 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:499
+#: mount/fstab.c:511
#, 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:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Kan blokkeerbestand %s niet blokkeren: %s\n"
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "kan blokkeerbestand %s niet blokkeren: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "time-out"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7694,22 +7733,22 @@ msgstr ""
"Kan koppeling %s niet maken\n"
"Mogelijk is er een oud blokkeerbestand?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "kan %s niet openen (%s) - mtab niet bijgewerkt"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "fout bij schrijven %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "fout bij wijzigen modus van %s: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "kan %s niet hernoemen tot %s: %s\n"
@@ -7779,28 +7818,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:341
+#: mount/lomount.c:340
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): succes\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: kan apparaat %s niet verwijderen: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): succes\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
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:407
+#: mount/lomount.c:406
#, fuzzy, c-format
msgid ""
"usage:\n"
@@ -7814,12 +7853,11 @@ msgstr ""
" %s -d loop_apparaat # verwijderen\n"
" %s [ -e codering ] [ -o plaats ] loop_apparaat bestand # instellen\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "niet voldoende geheugen"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Er was geen lus-ondersteuning beschikbaar bij het compileren. Hercompileer "
@@ -7839,166 +7877,166 @@ msgstr "[mntent]: regel %d in %s is slecht%s\n"
msgid "; rest of file ignored"
msgstr "; rest van bestand genegeerd"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, 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:380
+#: mount/mount.c:387
#, 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:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: kan %s niet openen om te schrijven: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: fout bij schrijven %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: fout bij wijzigen modus van %s: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s ziet er uit al wisselgeheugen - niet aangekoppeld"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "aankoppelen mislukt"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: alleen root kan %s aankoppelen op %s"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: lus-apparaat twee keer aangegeven"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: soort twee keer aangegeven"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: instellen van lus-apparaat wordt overgeslagen\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: het lus-apparaat %s wordt gebruikt\n"
-#: mount/mount.c:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: instellen lus-apparaat mislukt\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: instellen lus-apparaat succesvol\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: kan %s niet openen: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
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:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: kan %s niet openen om snelheid in te stellen"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: kan snelheid niet instellen: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: fork() mislukt: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
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:884
+#: mount/mount.c:891
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:895
+#: mount/mount.c:902
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:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: u moet de bestandssysteem soort aangeven"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: aankoppelen mislukt"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: aankoppelingspunt %s is geen map"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: toegang geweigerd"
-#: mount/mount.c:911
+#: mount/mount.c:918
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:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s is bezig"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc al aangekoppeld"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s al aangekoppeld of %s bezig"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: aankoppelingspunt %s bestaat niet"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, 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:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: speciale apparaat %s bestaat niet"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8007,56 +8045,74 @@ msgstr ""
"mount: speciale apparaat %s bestaat niet\n"
" (een pad voorvoegsel is geen map)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s nog niet aangekoppeld, of slechte optie"
-#: mount/mount.c:959
+#: mount/mount.c:966
#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: slechte bestandssysteem soort, slechte optie, slecht superblok op %"
"s,\n"
" of teveel aangekoppelde bestandssystemen"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "aankoppelingstabel vol"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: kan superblok niet lezen"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: onbekend apparaat"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, fuzzy, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr " l bekende bestandssysteem soorten opsommen"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: waarschijnlijk bedoelde u %s"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
#, fuzzy
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: mogelijk bedoelde u iso9660 ?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
#, fuzzy
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: mogelijk bedoelde u iso9660 ?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8064,12 +8120,12 @@ msgstr ""
"ondersteund"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, 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:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8078,47 +8134,47 @@ msgstr ""
"mount: de kernel herkent %s niet als een blok-apparaat\n"
" (misschien `insmod stuurprogramma'?)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, 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:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s is geen blok-apparaat"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "blok-apparaat "
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: kan %s%s niet alleen-lezen aankoppelen"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, 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:1066
+#: mount/mount.c:1078
#, 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:1165
+#: mount/mount.c:1177
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:1171
+#: mount/mount.c:1183
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"
@@ -8126,22 +8182,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: op de achtergrond \"%s\"\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: ik geef het op voor \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s al aangekoppeld op %s\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8188,48 +8244,48 @@ msgstr ""
"Andere opties: [-nfFrsvw] [-o opties] [-p wachtwoordfd].\n"
"Voor meer informatie, zie man 8 mount .\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: alleen root kan dat doen"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: geen %s gevonden - nu aanmaken..\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: die partitie is niet gevonden"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: aankoppelen %s\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "niets aangekoppeld"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: kan %s niet vinden in %s"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: kan %s niet vinden in %s of %s"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount: kon %s niet openen; UUID en LABEL conversie kon dus niet worden "
"gedaan.\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: slechte UUID"
#: mount/mount_guess_fstype.c:489
@@ -8345,16 +8401,16 @@ msgstr "nfs verbinden"
msgid "unknown nfs status return value: %d"
msgstr "onbekende nfs status resultaatwaarde: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "programmeerfout in aanroep xstrndup"
-#: mount/swapon.c:54
-#, c-format
+#: mount/swapon.c:57
+#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"gebruik: %s [-hV]\n"
@@ -8362,7 +8418,7 @@ msgstr ""
" %s [-v] [-p prioriteit] speciaal ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8373,33 +8429,38 @@ msgstr ""
" %s -a [-v]\n"
" %s [-v] speciaal ...\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s op %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: kan \"_stext\" niet vinden in %s\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: kan %s niet vinden: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
"swapon: waarschuwing: %s heeft onveilige toegangsrechten %04o, %04o "
"aangeraden\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: Overslaan bestand %s - het lijkt gaten te hebben.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr "Geen supergebruiker.\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: niet %s niet openen: %s\n"
@@ -8508,42 +8569,48 @@ msgstr ""
"opties]\n"
" umount [-f] [-r] [-n] [-v] speciaal | node...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "Kan niet openen "
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "Proberen te ontkoppelen %s\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Kon %s niet vinden in mtab\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s is niet aangekoppeld (volgens mtab)"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, 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:587
+#: mount/umount.c:592
#, 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:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s aankoppeling komt niet overeen met fstab"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, fuzzy, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: alleen root kan %s ontkoppelen van %s"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: alleen root kan dat doen"
@@ -10001,9 +10068,6 @@ msgstr "Geheugentekort bij groeiende buffer.\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "label"
-
#~ msgid "mount: the label %s occurs on both %s and %s - not mounted\n"
#~ msgstr ""
#~ "mount: het label %s komt voor op zowel %s als %s - niet aangekoppeld\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index a29a2a885..9ef0cc919 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -13,7 +13,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.11b\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+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"
@@ -163,7 +163,7 @@ msgstr "Uso: %s [ -n ] dispositivo\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -765,7 +765,7 @@ msgstr "muitos inodes - mximo 512"
msgid "not enough space, need at least %lu blocks"
msgstr "pouco espao, necessrio pelo menos %lu blocos"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Dispositivo: %s\n"
@@ -839,7 +839,7 @@ msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr ""
"Uso: mkfs [-V] [-t tipoSistArq] [opes-sistArq] dispositivo [tamanho]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1049,7 +1049,7 @@ msgstr "busca falhou durante teste de blocos"
msgid "Weird values in do_check: probably bugs\n"
msgstr "Valores estranhos em do_check: provavelmente erros\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "busca falhou em check_blocks"
@@ -1108,64 +1108,86 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Assumindo pginas de tamanho %d (no %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "rtulo"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Uso: %s [-c] [-v0|-v1] [-pTamPg] dispositivo [blocos]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "nmero excessivo de pginas invlidas"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Memria insuficiente"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "uma pgina invlida\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, fuzzy, c-format
msgid "%lu bad pages\n"
msgstr "%d pginas invlidas\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s - erro: nenhum lugar para ativar permuta (swap)?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, fuzzy, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: erro - tamanho %ld maior do que o tamanho do dispositivo %d\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s - erro: verso %d desconhecida\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s - erro: a rea de permuta (swap) precisa ter pelo menos %ld kB\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s -- aviso: reduzindo rea de permuta (swap) para %ld kB\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s - erro: nenhum lugar para ativar permuta (swap)?\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "No ser tentado criar dispositivo de permuta (swap) em '%s'"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "fatal: primeira pgina ilegvel"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1180,24 +1202,24 @@ msgstr ""
"dispositivo, use\n"
"a opo -f para forar a criao.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "No foi possvel configurar espao de permuta (swap): ilegvel"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, fuzzy, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Configurando espao de permuta (swap) verso %d, tamanho = %ld bytes\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "No foi possvel rebobinar o dispositivo de permuta (swap)"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "No foi possvel gravar a pgina de assinatura"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync falhou"
@@ -1239,60 +1261,65 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Inutilizvel"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Espao livre"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
#, fuzzy
msgid "Linux ext3"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
#, fuzzy
msgid "Linux XFS"
msgstr "Linux"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux"
+
+#: fdisk/cfdisk.c:385
#, fuzzy
msgid "Linux ReiserFS"
msgstr "Linux"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "HPFS do OS/2"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "IFS do OS/2"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "O disco foi alterado.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Reinicialize o sistema para assegurar que a tabela de parties seja "
"atualizada corretamente.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1304,318 +1331,318 @@ msgstr ""
"partio DOS 6.x, consulte a pgina de manual\n"
"do cfdisk para obter informaes adicionais.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "ERRO FATAL"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Pressione qualquer tecla para sair do cfdisk"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "No foi possvel realizar busca na unidade de disco"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "No foi possvel ler a unidade de disco"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "No foi possvel gravar na unidade de disco"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Nmero excessivo de parties"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "A partio comea antes do setor 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "A partio termina antes do setor 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "A partio comea depois do fim do disco"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "A partio se estende at depois do fim do disco"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr ""
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "parties lgicas fora da ordem do disco"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "parties lgicas sobrepostas"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "parties lgicas aumentadas sobrepostas"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr "!!!! Erro interno ao criar unidade lgica sem partio estendida !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"No possvel criar unidade lgica aqui -- criaria duas parties estendidas"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Item de menu longo demais. O menu pode ficar com aspecto estranho."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Menu sem direo. Assumindo horizontal como padro."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Tecla ilegal"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Pressione uma tecla para continuar"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primria"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Cria uma nova partio primria"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Lgica"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Cria uma nova partio lgica"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Cancelar"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "No criar uma partio"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Erro interno !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Tamanho (em MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Incio"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Adicionar partio no incio do espao livre"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Fim"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Adicionar partio no final do espao livre"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Espao insuficiente para criao de partio estendida"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
#, fuzzy
msgid "No partition table.\n"
msgstr "nenhuma tabela de parties presente.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
#, fuzzy
msgid "No partition table. Starting with zero table."
msgstr "Assinatura invlida na tabela de parties"
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
#, fuzzy
msgid "Bad signature on partition table"
msgstr "Mostrar somente a tabela de parties"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
#, fuzzy
msgid "Unknown partition table type"
msgstr "nenhuma tabela de parties presente.\n"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr ""
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
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:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "No foi possvel abrir a unidade de disco"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
msgid "Opened disk read-only - you have no permission to write"
msgstr "Disco aberto somente para leitura - voc no tem permisso para gravar"
-#: fdisk/cfdisk.c:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "No foi possvel obter o tamanho do disco"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Partio primria invlida"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Partio lgica invlida"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Aviso!! Isto pode destruir dados existentes no disco!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Tem certeza de que deseja gravar a tabela de parties no disco? (sim ou "
"nao):"
-#: fdisk/cfdisk.c:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "nao"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "A tabela de parties NO foi gravada no disco"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "sim"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Responda `sim' ou `nao'"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Gravando tabela de parties no disco..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "A tabela de parties foi gravada no disco"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Tabela de parties gravada, mas a releitura da tabela falhou. Reinicialize "
"para atualizar a tabela."
-#: fdisk/cfdisk.c:1857
+#: fdisk/cfdisk.c:1906
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"No existem parties primrias marcadas como inicializveis. MBR DOS no "
"pode inicializar isso."
-#: fdisk/cfdisk.c:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Mais de uma partio primria est marcada como inicializvel. MBR DOS no "
"pode inicializar isso."
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
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:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "No foi possvel abrir o arquivo '%s'"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Unidade de disco: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Setor 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Setor %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Nenhum "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/lg"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primria"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Lgica"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Desconhecido"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Inicializar"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, fuzzy, c-format
msgid "(%02X)"
msgstr "Desc (%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
#, fuzzy
msgid "None"
msgstr "Concludo"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Tabela de parties de %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
#, fuzzy
msgid " First Last\n"
msgstr " Prim. lt.\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
#, fuzzy
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
@@ -1624,7 +1651,7 @@ msgstr ""
" # Tipo Setor Setor Desloc. Compr. Tipo sist. arqs. (ID) "
"Opes\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1634,480 +1661,480 @@ msgstr ""
"---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " --- Incio --- ---- Fim ---- Nm. inicial de\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
#, 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:2144
+#: fdisk/cfdisk.c:2193
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "Brutos"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Mostrar a tabela usando formato de dados brutos"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Setores"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Mostrar a tabela ordenada por setores"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Tabela"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Mostrar somente a tabela de parties"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "No mostrar a tabela"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Tela de ajuda do cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr ""
"Este o cfdisk, um programa de particionamento de disco baseado em funes "
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2260
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "curses, que permite criar, excluir e alterar parties na unidade"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "de disco rgido."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Comando Significado"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b Alterna a opo da partio atual como inicializvel."
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Exclui a partio atual."
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g Altera parmetros de cilindros, cabeas, setores por trilha"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " AVISO: Esta opo s deve ser usada por pessoas que"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " saibam exatamente o que esto fazendo."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Mostra esta tela."
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximiza o uso de disco da partio atual."
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " Nota: Isto pode tornar a partio incompatvel com"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2 ..."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Cria uma nova partio a partir do espao livre."
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
msgid " p Print partition table to the screen or to a file"
msgstr " p Mostra a tabela de parties na tela ou em um arquivo."
-#: fdisk/cfdisk.c:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Pode-se selecionar diversos formatos diferentes para"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " uma partio:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
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:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Tabela ordenada por setores."
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - Tabela em formato bruto."
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q Sai do programa sem gravar a tabela de parties."
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Altera o tipo de sistema de arquivos."
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u Altera unidades de exibio do tamanho das parties."
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Alterna entre MB, setores e cilindros."
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Grava tabela de parties no disco ( necessrio usar W "
"maisculo)."
-#: fdisk/cfdisk.c:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " Como esta opo pode destruir dados no disco, voc deve"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr " confirmar ou cancelar a gravao indicando `sim' ou"
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " `no'"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Seta p/ cima Move o cursor para a partio anterior."
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "Seta p/ baixo Move o cursor para a prxima partio."
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Redesenha a tela."
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Mostra esta tela."
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Nota: Todos os comandos podem ser digitados em letras maisculas ou"
-#: fdisk/cfdisk.c:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "minsculas (exceto W)."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cilindros"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Alterar geometria dos cilindros"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Cabeas"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Alterar geometria das cabeas"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Alterar geometria dos setores"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Concludo"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "A alterao da geometria foi concluda"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Digite o nmero de cilindros: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Valor de cilindros invlido"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Digite o nmero de cabeas: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Valor de cabeas invlido"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Digite o nmero de setores por trilha: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Valor de setores invlido"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Digite o tipo do sistema de arquivos: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "No foi possvel alterar o tipo de sistema de arquivos para vazio"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "No foi possvel alterar o tipo de sistema de arquivos para estendido"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Desc (%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Pri/lg"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Desconhecido (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Disco: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Tamanho: %lld bytes"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, fuzzy, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Tamanho: %lld bytes"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Cabeas: %d Setores por Trilha: %d Cilindros: %d"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Nome"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Opes"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Tipo Part."
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Tipo SA"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Rtulo]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
#, fuzzy
msgid " Sectors"
msgstr " Setores"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
#, fuzzy
msgid " Cylinders"
msgstr "Cilindros"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
#, fuzzy
msgid " Size (MB)"
msgstr "Tam. (Mb)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
#, fuzzy
msgid " Size (GB)"
msgstr "Tam. (Gb)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Iniciali."
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Alterna a opo da partio atual como inicializvel"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Excluir"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Excluir a partio atual"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometria"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Alterar a geometria do disco (somente para usurios avanados)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Ajuda"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Mostrar tela de ajuda"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Maximize"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr ""
"Maximizar o uso de disco para a partio atual (somente para usurios "
"avanados)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Nova"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Criar nova partio a partir do espao livre"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Mostre"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print partition table to the screen or to a file"
msgstr "Mostrar tabela de parties na tela ou imprimir em um arquivo"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Sair"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Sair do programa sem gravar a tabela de parties"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Tipo"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
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:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Unidades"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
"Mudar unidades mostradas para o tamanho das parties (MB, setores, "
"cilindros)"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Gravar"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr "Gravar tabela de parties no disco (isto poder destruir dados)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "No foi possvel tornar esta partio inicializvel."
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "No foi possvel excluir uma partio vazia"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "No foi possvel maximizar esta partio"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Esta partio inutilizvel"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Esta partio j est sendo usada"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "No foi possvel alterar o tipo de uma partio vazia"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "Sem mais parties"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Comando invlido"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
#, 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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2386,20 +2413,20 @@ msgstr " f corrige ordem de partio"
msgid "You must set"
msgstr "Voc precisa configurar"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "cabeas"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "setores"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "cilindros"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2408,11 +2435,11 @@ msgstr ""
"%s%s.\n"
"Voc pode fazer isto a partir do menu de funes extras.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " e "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2432,28 +2459,28 @@ msgstr ""
"2) inicializao e programas de particionamento de outros OSs\n"
" (p.ex., DOS FDISK, OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Deslocamento invlido em uma partio primria estendida\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Aviso: ponteiro de vnculo extra na tabela de parties %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr "Aviso: ignorando dados extras na tabela de parties %d\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2465,22 +2492,22 @@ msgstr ""
"o contedo anterior no poder mais ser recuperado.\n"
"\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Nota: o tamanho do setor %d (no %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "Voc no poder gravar a tabela de parties.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
msgstr ""
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
@@ -2488,16 +2515,16 @@ msgstr ""
"O dispositivo no contm nem uma tabela de parties DOS vlida nem um "
"rtulo de disco Sun, OSF ou SGI\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Erro interno\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "Ignorando partio estendida extra %d\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2506,7 +2533,7 @@ msgstr ""
"Aviso: a opo invlida 0x%04x da tabela de parties %d ser corrigida por "
"gravao (w)\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2514,79 +2541,79 @@ msgstr ""
"\n"
"EOF (fim de arquivo) recebido trs vezes - saindo...\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Cdigo hexadecimal (digite L para listar os cdigos): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, fuzzy, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%d-%d, padro %d):"
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, fuzzy, c-format
msgid "Using default value %u\n"
msgstr "Usando valor padro %d\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Valor fora do intervalo.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Nmero da partio"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Aviso: a partio %d possui tipo vazio\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, fuzzy, c-format
msgid "Selected partition %d\n"
msgstr "Ignorando partio estendida extra %d\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
#, fuzzy
msgid "No partition is defined yet!\n"
msgstr "Nenhuma partio definida\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr ""
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "cilindro"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "setor"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Mudando as unidades das entradas mostradas para %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "AVISO: A partio %d uma partio estendida\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "A opo de compatibilidade DOS est ativada\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "A opo de compatibilidade DOS no est ativada\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "A partio %d ainda no existe!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2598,7 +2625,7 @@ msgstr ""
"tipo 0 no recomendvel. Voc pode excluir\n"
"uma partio usando o comando `d'.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2606,7 +2633,7 @@ msgstr ""
"Voc no pode alterar uma partio normal para estendida ou vice-versa.\n"
"Exclua a partio antes.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2616,7 +2643,7 @@ msgstr ""
"uma vez que o SunOS/Solaris espera isto e at mesmo o Linux gosta disto.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2626,59 +2653,59 @@ msgstr ""
"e a partio 11 como um volume inteiro (6), uma vez que o IRIX espera isto.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "O tipo da partio %d foi alterado para %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr "A partio %d possui incios fsico/lgico diferentes (no Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " fs. = (%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "lgico = (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "A partio %d possui fins fsico/lgico diferentes:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "A partio %i no inicia em um limite de cilindro:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "deveria ser (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, fuzzy, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "A partio %d no termina em um limite de cilindro.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "deveria ser (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
"Disk %s: %ld MB, %lld bytes\n"
msgstr ""
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, fuzzy, c-format
msgid ""
"\n"
@@ -2688,7 +2715,7 @@ msgstr ""
"Disco %s: %d cabeas, %d setores, %d cilindros\n"
"\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, fuzzy, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr ""
@@ -2696,19 +2723,19 @@ msgstr ""
"Disco %s: %d cabeas, %d setores, %d cilindros\n"
"\n"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ""
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2716,23 +2743,23 @@ msgstr ""
"Nada a fazer. Ordem j est correta\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, fuzzy, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Boot Incio Fim Blocos Id Sistema\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Dispositivo"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2740,7 +2767,7 @@ msgstr ""
"\n"
"Parties lgicas fora da ordem do disco\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2751,95 +2778,95 @@ msgstr ""
"Disco %s: %d cabeas, %d setores, %d cilindros\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
#, fuzzy
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "No OA Cb Set Cil Cb Set Cil Incio Tam ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Aviso: a partio %d contm o setor 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Partio %d: a cabea %d maior do que o mximo: %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Partio %d: o setor %d maior do que o mximo: %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Partio %d: o cilindro %d maior do que o mximo: %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr ""
"Partio %d: os setores anteriores %d no esto de acordo com o total: %d\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Aviso: incio de dados invlido na partio %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Aviso: a partio %d sobrepe-se partio %d.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Aviso: a partio %d est vazia\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "A partio lgica %d no est completamente na partio %d\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, fuzzy, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "O total de setores alocados, %d, maior do que o mximo: %d\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, fuzzy, c-format
msgid "%lld unallocated sectors\n"
msgstr "%d setores no alocados\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr ""
"A partio %d j est definida. Exclua essa partio antes de adicion-la "
"novamente.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Primeiro %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "O setor %d j est alocado\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "No h setores livres disponveis\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "ltimo %s ou +tamanho ou +tamanho M ou +tamanho K"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2847,27 +2874,27 @@ msgid ""
"\tWARNING: This will destroy the present disk contents.\n"
msgstr ""
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "O nmero mximo de parties foi criado\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr ""
"Voc precisa excluir alguma partio e adicionar uma partio estendida "
"antes\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
#, fuzzy
msgid "All logical partitions are in use\n"
msgstr "parties lgicas fora da ordem do disco"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
#, fuzzy
msgid "Adding a primary partition\n"
msgstr "Partio primria invlida"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2878,20 +2905,20 @@ msgstr ""
" %s\n"
" p partio primria (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l lgica (5 ou superior)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e estendida"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Nmero de partio invlido para o tipo `%c'\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2899,11 +2926,11 @@ msgstr ""
"A tabela de parties foi alterada!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Chamando ioctl() para reler tabela de parties.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2912,7 +2939,7 @@ msgid ""
"The new table will be used at the next reboot.\n"
msgstr ""
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2924,67 +2951,74 @@ msgstr ""
"partio DOS 6.x, consulte a pgina de manual\n"
"do fdisk para obter informaes adicionais.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Erro no fechamento de %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Sincronizando discos.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "A partio %d no possui rea de dados\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Novo incio dos dados"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Comando avanado (m para ajuda): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Nmero de cilindros"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Nmero de cabeas"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Nmero de setores"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr ""
"Aviso: configurando o deslocamento de setor para compatibilidade com DOS\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "O disco %s no contm uma tabela de parties vlida\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "No foi possvel abrir %s\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "no foi possvel abrir %s\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: comando desconhecido:\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr ""
"Este kernel localiza o tamanho de setor por conta prpria - opo -b "
"ignorada\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -2993,18 +3027,18 @@ msgstr ""
"dispositivo especificado\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, fuzzy, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr ""
"Detectado um rtulo OSF/1 em %s, entrando em modo de rtulo.\n"
"Para retornar ao modo de tabela de parties do DOS, use o comando 'r'.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Comando (m para ajuda): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -3013,15 +3047,15 @@ msgstr ""
"\n"
"O arquivo de boot atual : %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Informe o nome do novo arquivo de boot: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "Arquivo de boot inalterado\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3400,7 +3434,7 @@ msgstr "Linux swap"
msgid "Linux native"
msgstr "Linux nativa"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3731,7 +3765,7 @@ msgid "SunOS home"
msgstr "home SunOS"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Deteco automtica de RAID Linux"
@@ -4107,8 +4141,8 @@ msgid "Priam Edisk"
msgstr "Edisk Priam"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4160,151 +4194,156 @@ msgstr "Estendida Linux"
msgid "NTFS volume set"
msgstr "Conjunto de volumes NTFS"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext2"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "Hibernao IBM Thinkpad"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr ""
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr ""
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
#, fuzzy
msgid "NetBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr ""
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "sist. arq. BSDI"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "permuta BSDI"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr ""
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr ""
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
msgid "Solaris"
msgstr ""
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT16 < 32 M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "Dados No-FS"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Utilitrio Dell"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
#, fuzzy
msgid "BootIt"
msgstr "Inicializar"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "Acesso DOS"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "sist. arq. BeOS"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr ""
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS secundrio"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5330,126 +5369,126 @@ 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:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "boot executado do MILO\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Relgio BCD Ruffian\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "porta do relgio ajustada para 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: %s atmico falhou por 1000 iteraes!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "No possvel abrir /dev/port: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
msgid "I failed to get permission because I didn't try.\n"
msgstr "No consegui obter permisso porque no tentei.\n"
-#: hwclock/cmos.c:601
+#: hwclock/cmos.c:602
#, 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:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Provavelmente so necessrios privilgios de root.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Pressupondo que o relgio de hardware mantido na hora %s.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "local"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Aviso: a terceira linha do arquivo adjtime no foi reconhecida\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Esperado: `UTC', `LOCAL' ou nada.)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, fuzzy, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "ltimo ajuste de variao feito %d segundos aps 1969\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, fuzzy, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "ltima calibrao feita %d segundos aps 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "O relgio de hardware est na hora %s\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "desconhecida"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "Aguardando tique do relgio...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "... tique do relgio obtido\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr ""
"Valores invlidos no relgio de hardware: %4d/%.4d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Hora do relgio de hardware: %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld segundos "
"desde 1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Hora lida do relgio de Hardware: %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, fuzzy, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Configurando o relgio de hardware para %.2d:%.2d:%.2d = %d segundos desde "
"1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Relgio no alterado - apenas testando.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5458,7 +5497,7 @@ msgstr ""
"O tempo decorrido desde o horrio de referncia foi de %.6f segundos.\n"
" Atrasando mais para chegar ao prximo segundo cheio.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5467,21 +5506,21 @@ msgstr ""
"50 dia do ms) ou alm do intervalo que podemos manipular (p.ex., ano "
"2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f segundos\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "No. Opo --date especificada\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
#, fuzzy
msgid "--date argument too long\n"
msgstr "fsname nome muito longo"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5489,22 +5528,22 @@ msgstr ""
"O valor da opo --date no uma data vlida.\n"
"Especificamente, ele contm aspas.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Emitindo comando date: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr ""
"No foi possvel executar o programa 'date' no shell /bin/sh: popen() falhou"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "resposta do comando date = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5519,7 +5558,7 @@ msgstr ""
"A resposta foi:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5536,12 +5575,12 @@ msgstr ""
"A resposta foi:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, fuzzy, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "String de date %s equivale a %d segundos desde 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5549,34 +5588,34 @@ msgstr ""
"O relgio de hardware no contm uma hora vlida. Em funo disso, no "
"possvel configurar a hora do sistema a partir dele.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "Chamando settimeofday:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr ""
"O relgio do sistema no est sendo ajustado: executando em modo de teste.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr " necessrio ser superusurio para ajustar o relgio do sistema.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "settimeofday() falhou"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5584,7 +5623,7 @@ msgstr ""
"O fator de variao no est sendo ajustado porque o relgio de hardware "
"continha lixo anteriormente.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
#, fuzzy
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
@@ -5593,7 +5632,7 @@ msgstr ""
"O fator de variao no est sendo ajustado porque menos de um dia se passou "
"desde a ltima calibrao.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5601,7 +5640,7 @@ msgstr ""
"O fator de variao no est sendo ajustado porque menos de um dia se passou "
"desde a ltima calibrao.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, fuzzy, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5612,23 +5651,23 @@ msgstr ""
"variao de %f segundos/dia.\n"
"Ajustando o fator de variao em %f segundos/dia.\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "O tempo desde o ltimo ajuste de %d segundos\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr ""
" necessrio inserir %d segundos e referenciar a hora de %.6f segundos "
"atrs\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "O arquivo adjtime no est sendo atualizado: modo de teste.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5637,37 +5676,37 @@ msgstr ""
"Teria gravado o seguinte em %s:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Parmetros de ajuste de variao no atualizados.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
"O relgio de hardware no contm uma hora vlida, portanto no possvel "
"ajust-lo.\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr ""
"O ajuste necessrio menor do que um segundo, portanto o relgio no ser "
"ajustado.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Usando %s.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "No foi encontrada uma interface de relgio utilizvel.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "No possvel ajustar o relgio do sistema.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5680,16 +5719,16 @@ msgstr ""
"assim, supe-se que no est sendo executada em uma Alpha no momento). "
"Nenhuma ao foi realizada.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "No foi possvel obter o valor de epoch do kernel.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "O kernel est pressupondo um valor de epoch de %lu\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5697,16 +5736,16 @@ msgstr ""
"Para configurar o valor de epoch, necessrio usar a opo 'epoch' para "
"informar para que valor configur-lo.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "Epoch no configurado para %d; apenas testando.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "No possvel configurar o valor de epoch no kernel.\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, fuzzy, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5769,7 +5808,7 @@ msgstr ""
" --epoch=ano Especifica o ano inicial do valor \n"
" de epoch do relgio de hardware.\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5778,12 +5817,12 @@ msgstr ""
" informa a hwclock o tipo de Alpha que voc tem (consulte "
"hwclock(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s no aceita argumentos que no sejam de opo. Voc forneceu %d.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
#, fuzzy
msgid ""
"You have specified multiple functions.\n"
@@ -5792,7 +5831,7 @@ msgstr ""
"Voc especificou mltiplas opes de funo.\n"
"Voc s pode executar uma funo por vez.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5801,7 +5840,7 @@ msgstr ""
"%s: As opes --utc e --localtime so mutuamente exclusivas. Voc "
"especificou ambas.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, fuzzy, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5810,25 +5849,25 @@ msgstr ""
"%s: As opes --utc e --localtime so mutuamente exclusivas. Voc "
"especificou ambas.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr ""
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr ""
"No h um horrio para ajuste utilizvel. No possvel ajustar o relgio.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Somente o superusurio pode alterar o relgio de hardware.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Somente o superusurio pode alterar o relgio de hardware.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
@@ -5836,12 +5875,12 @@ msgstr ""
"Somente o superusurio pode alterar o epoch do relgio de hardware no "
"kernel.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr ""
"No possvel acessar o Relgio de Hardware por nenhum mtodo conhecido.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
@@ -5849,103 +5888,103 @@ msgstr ""
"Use a opo --debug para consultar os detalhes de nossa busca por um mtodo "
"de acesso.\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Aguardando em lao at que a hora de KDGHWCLK mude.\n"
-#: hwclock/kd.c:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "ioctl KDGHWCLK para ler a hora falhou"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Tempo esgotado enquanto aguardava a hora mudar.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "ioctl KDGHWCLK para ler a hora falhou no lao"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, fuzzy, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() no conseguiu ler a hora de /dev/tty1"
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "ioctl KDSHWCLK falhou"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
#, fuzzy
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "No foi possvel abrir /dev/tty1"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "ioctl KDGHWCLK falhou"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "open() de %s falhou"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "ioctl() para %s para ler a hora falhou.\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Aguardando em lao at que a hora de %s mude.\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s no possui funes de interrupo. "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "read() para %s para aguardar tique do relgio falhou"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "read() para %s para aguardar tique do relgio falhou"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "read() para %s para aguardar tique do relgio falhou"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "ioctl() para %s para desligar interrupes de atualizao falhou"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr ""
"ioctl() para %s para ligar interrupes de atualizao falhou inesperadamente"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "ioctl() para %s para ajustar a hora falhou.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "ioctl(%s) teve xito.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "A abertura de %s falhou"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5956,17 +5995,17 @@ msgstr ""
"dispositivo 'rtc' do Linux, atravs do arquivo de dispositivo especial %s. "
"No entanto, esse arquivo no existe neste sistema.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "No foi possvel abrir %s"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "ioctl(RTC_EPOCH_READ) para %s falhou"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr "lemos epoch %ld de %s com ioctl RTC_EPOCH_READ.\n"
@@ -5974,24 +6013,24 @@ msgstr "lemos epoch %ld de %s com ioctl RTC_EPOCH_READ.\n"
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr "O valor de epoch no pode ser menor que 1900. Voc solicitou %ld.\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "Configurando epoch como %ld com ioctl RTC_EPOCH_SET para %s.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr ""
"O driver de dispositivo do kernel para %s no possui o ioctl RTC_EPOCH_SET.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "ioctl(RTC_EPOCH_SET) para %s falhou"
@@ -6206,7 +6245,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Senha:"
@@ -7010,36 +7049,36 @@ msgstr "Desmontando quaisquer sistemas de arquivos remanescentes..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: no foi possvel desmontar %s: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Inicializando em modo monousurio.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr "exec de interpretador de comandos monousurio falhou\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "fork de interpretador de comandos monousurio falhou\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "erro abrindo fifo\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr ""
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "erro executando fnalprog\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "erro fazendo fork finalprog\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -7047,35 +7086,35 @@ msgstr ""
"\n"
"Senha incorreta.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "lstat da rota falhou\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "estado da rota falhou\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "abertura do diretrio falhou\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "o fork falhou\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "exec falhou\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "no foi possvel abrir inittab\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "sem TERM ou no possvel stat tty\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, fuzzy, c-format
msgid "error stopping service: \"%s\""
msgstr "erro ao gravar %s: %s"
@@ -7651,17 +7690,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:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "Aviso: erro ao ler %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "Aviso: no foi possvel abrir %s: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: no foi possvel abrir %s - usando %s\n"
@@ -7670,42 +7709,42 @@ msgstr "mount: no foi possvel abrir %s - usando %s\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:472
+#: mount/fstab.c:484
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"no foi possvel criar o arquivo de bloqueio %s: %s (use a opo -n para "
"anular)"
-#: mount/fstab.c:487
+#: mount/fstab.c:499
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"no foi possvel vincular o arquivo de bloqueio %s: %s (use a opo -n para "
"anular)"
-#: mount/fstab.c:499
+#: mount/fstab.c:511
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
"no foi possvel abrir o arquivo de bloqueio %s: %s (use a opo -n para "
"anular)"
-#: mount/fstab.c:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "No foi possvel bloquear o arquivo de bloqueio %s: %s\n"
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "no foi possvel bloquear o arquivo de bloqueio %s: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "tempo esgotado"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7714,22 +7753,22 @@ msgstr ""
"No foi possvel criar o vnculo %s\n"
"Talvez haja um arquivo de bloqueio vencido?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "No foi possvel abrir %s (%s) - mtab no atualizado"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "erro ao gravar %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "erro ao alterar o modo de %s: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "no foi possvel renomear %s para %s: %s\n"
@@ -7799,26 +7838,26 @@ msgstr "mount: no foi possvel localizar nenhum dispositivo de lao livre"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "No possvel bloquear (lock) na memria, saindo\n"
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): sucesso\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: no foi possvel excluir o dispositivo %s: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): sucesso\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Este mount foi compilado sem suporte a laos. Recompile-o.\n"
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, fuzzy, c-format
msgid ""
"usage:\n"
@@ -7835,12 +7874,11 @@ msgstr ""
" %s [ -e criptografia ] [ -o deslocamento ] dispositivo_lao arquivo # "
"configurao\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "no h memria suficiente"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr "No havia suporte a lao disponvel quando da compilao. Recompile.\n"
@@ -7858,167 +7896,167 @@ msgstr "[mntent]: linha %d em %s tem %s invlido(a)\n"
msgid "; rest of file ignored"
msgstr "; resto do arquivo ignorado"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, 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:380
+#: mount/mount.c:387
#, 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:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: no foi possvel abrir %s para gravao: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: erro ao gravar %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: erro ao alterar modo de %s: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s parece espao de permuta - no montado"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "mount falhou"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: somente o root pode montar %s em %s"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: dispositivo de lao especificado duas vezes"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: tipo especificado duas vezes"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: ignorando a configurao de um dispositivo de lao\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: ser usado o dispositivo de lao %s\n"
-#: mount/mount.c:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: falha ao configurar dispositivo de lao\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: configurao de dispositivo de lao realizada com sucesso\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: no foi possvel abrir %s: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:699
+#: mount/mount.c:706
#, fuzzy, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: no foi possvel abrir %s para configurao da velocidade"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: no foi possvel configurar velocidade: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: no foi possvel realizar fork: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: esta verso foi compilada sem suporte ao tipo `nfs'"
-#: mount/mount.c:884
+#: mount/mount.c:891
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr ""
"mount: falhou com o mount do nfs verso 4, tentando com o 3..\n"
" \n"
-#: mount/mount.c:895
+#: mount/mount.c:902
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: no foi possvel determinar o tipo do sistema de arquivos e nenhum "
"foi especificado"
-#: mount/mount.c:898
+#: mount/mount.c:905
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:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: a montagem falhou"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: o ponto de montagem %s no um diretrio"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: permisso negada"
-#: mount/mount.c:911
+#: mount/mount.c:918
msgid "mount: must be superuser to use mount"
msgstr "mount: necessrio ser superusurio para montar"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s est ocupado"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc j montado"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s j montado ou %s ocupado"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: o ponto de montagem %s no existe"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: o ponto de montagem %s um vnculo simblico para lugar algum"
-#: mount/mount.c:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: o dispositivo especial %s no existe"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -8027,56 +8065,74 @@ msgstr ""
"mount: o dispositivo especial %s no existe\n"
" (um prefixo de caminho no um diretrio)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s j no est montado ou opo invlida"
-#: mount/mount.c:959
+#: mount/mount.c:966
#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: tipo de sistema de arquivos incorreto, opo invlida, superbloco "
"invlido em %s,\n"
" ou nmero excessivo de sistemas de arquivos montados"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "tabela de montagem cheia"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: no foi possvel ler o superbloco"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: dispositivo de blocos desconhecido"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, fuzzy, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr " l lista os tipos de sistemas de arquivos conhecidos"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: provavelmente voc queria dizer %s"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
#, fuzzy
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: talvez voc quisesse dizer iso9660?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
#, fuzzy
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: talvez voc quisesse dizer iso9660?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8084,12 +8140,12 @@ msgstr ""
"arquivos %s no suportado"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s no um dispositivo de blocos e stat falha?"
-#: mount/mount.c:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8098,48 +8154,48 @@ msgstr ""
"mount: o kernel no reconhece %s como dispositivo de blocos\n"
" (talvez `insmod driver'?)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s no um dispositivo de blocos (talvez tentar `-o loop'?)"
-#: mount/mount.c:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s no um dispositivo de blocos"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, c-format
msgid "mount: %s is not a valid block device"
msgstr "mount: %s no um dispositivo de blocos vlido"
#. pre-linux 1.1.38, 1.1.41 and later
#. linux 1.1.38 and later
-#: mount/mount.c:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "dispositivo de blocos "
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: no foi possvel montar %s%s somente para leitura"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s protegido contra gravao mas a opo -w foi passada"
-#: mount/mount.c:1066
+#: mount/mount.c:1078
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s protegido contra gravao; montando somente para leitura"
-#: mount/mount.c:1165
+#: mount/mount.c:1177
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:1171
+#: mount/mount.c:1183
#, 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"
@@ -8147,22 +8203,22 @@ msgstr "mount: nenhum tipo foi fornecido - supondo smbfs por causa xxx\n"
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: tentando montar em segundo plano \"%s\"\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: desistindo de \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s j montado em %s\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
#, fuzzy
msgid ""
"Usage: mount -V : print version\n"
@@ -8209,48 +8265,48 @@ msgstr ""
"Outras opes: [-nfFrsvw] [-o opes].\n"
"Para mais detalhes, consulte `man 8 mount'.\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: operao exclusiva de root"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: nenhum %s encontrado - criando-o...\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: tal partio no foi encontrada"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: montando %s\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr ""
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: no foi possvel localizar %s em %s"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: no foi possvel localizar %s em %s ou %s"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount: no foi possvel abrir %s - converses de UUID e LABEL no podem ser "
"feitas\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: UUID invlida"
#: mount/mount_guess_fstype.c:489
@@ -8367,16 +8423,16 @@ msgstr "nfs connect"
msgid "unknown nfs status return value: %d"
msgstr "valor de retorno de status de nfs desconhecido: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "erro na chamada a xstrndup"
-#: mount/swapon.c:54
+#: mount/swapon.c:57
#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"Uso: %s [-hV]\n"
@@ -8384,7 +8440,7 @@ msgstr ""
" %s [-v] [-p prioridade] especial ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8396,31 +8452,36 @@ msgstr ""
" %s [-v] [-p prioridade] especial ...\n"
" %s [-s]\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s em %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: no foi possvel localizar \"_stext\" em %s\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: no foi possvel stat %s: %s\n"
-#: mount/swapon.c:183
+#: mount/swapon.c:196
#, fuzzy, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr "swapon: aviso: %s possui permisses inseguras %04o; sugere-se 0600\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: ignorando arquivo %s - ele parece ter buracos.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr ""
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: no foi possvel abrir %s: %s\n"
@@ -8532,42 +8593,48 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t tipos_sist_arq_virt]\n"
" umount [-f] [-r] [-n] [-v] especial | n...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "No foi possvel abrir %s\n"
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "Tentando desmontar %s\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "No foi possvel localizar %s em mtab\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s no est montado (de acordo com mtab)"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: parece que %s est montado mltiplas vezes"
-#: mount/umount.c:587
+#: mount/umount.c:592
#, c-format
msgid "umount: %s is not in the fstab (and you are not root)"
msgstr "umount: %s no est na fstab (e voc no root)"
-#: mount/umount.c:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: a montagem de %s no est de acordo com a fstab"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: somente %s pode desmontar %s de %s"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: operao exclusiva de root"
@@ -10074,9 +10141,6 @@ msgstr "Falta memria quando o buffer cresce.\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "rtulo"
-
#, fuzzy
#~ msgid "swapon: invalid loop device name\n"
#~ msgstr "umount: %s: dispositivo de blocos invlido"
diff --git a/po/sl.po b/po/sl.po
index 246816264..59e0bf5a3 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.11y\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+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"
@@ -156,7 +156,7 @@ msgstr "uporaba: %s [ -n ] naprava\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -737,7 +737,7 @@ msgstr ""
msgid "not enough space, need at least %lu blocks"
msgstr ""
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Naprava %s\n"
@@ -810,7 +810,7 @@ msgstr ""
msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr "Uporaba: mkfs [-V] [-t tip] [izbire] naprava [velikost]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1017,7 +1017,7 @@ msgstr ""
msgid "Weird values in do_check: probably bugs\n"
msgstr ""
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr ""
@@ -1073,64 +1073,86 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Privzemamo strani velikosti %d (ne %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "oznaka"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Uporaba: %s [-c] [-v0|-v1] [-pVEL_STRANI] /dev/name [bloki]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "preve slabih strani"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Zmanjkalo je pomnilnika"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "ena slaba stran\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, fuzzy, c-format
msgid "%lu bad pages\n"
msgstr "%d slabih strani\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: napaka: Ni prostora za izmenjalni prostor?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, fuzzy, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: napaka: velikost %ld je veja od velikosti naprave %d\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: napaka: neznana izdaja %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: napaka: velikost izmenjalnega prostora mora biti vsaj %ld KB\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: opozorilo: meja izmenjalnega prostora postavljena na %ld KB\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: napaka: Ni prostora za izmenjalni prostor?\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "Izmenjalnega prostora ne bomo poskuali napraviti na ,%s`"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "usodna napaka: prva stran neberljiva"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1146,24 +1168,24 @@ msgstr ""
"varnostno\n"
"preverjanje.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "Izmenjalnega prostora ni mogoe pripraviti: branje ni mogoe"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Pripravljamo izmenjalni prostor izdaje %d, velikost = %llu kB\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "izmenjalne naprave ni mogoe previti"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "strani s podpisom ni mogoe zapisati"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync() ni uspel"
@@ -1203,56 +1225,61 @@ msgstr ""
msgid " %s [ -c | -y | -n ] dev\n"
msgstr ""
-#: fdisk/cfdisk.c:370 fdisk/cfdisk.c:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr ""
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Neuporabljen prostor"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Disk je bil zamenjan.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Ponovno zaenite sistem, da bo razdelitvena tabela pravilno aurirana.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1260,322 +1287,322 @@ msgid ""
"page for additional information.\n"
msgstr ""
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "USODNA NAPAKA"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Pritisnike katerokoli tipko za izhod iz cfdisk"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr ""
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "Diskovnega pogona ni mo prebrati"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "Na diskovni pogon ni mo pisati"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Preve razdelkov"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "Razdelek se zane pred stezo 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "Razdelek se kona pred stezo 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "Razdelek se zane onkraj konca diska"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "Razdelek se kona onkraj konca diska"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr ""
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "logini razdelki niso v diskovnem vrstnem redu"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "logini razdelki se prekrivajo"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "razirjeni logini razdelki se prekrivajo"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!! Interna napaka: ustvarjanje loginega pogona brez razirjenega "
"razdelka !!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr ""
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr ""
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr ""
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Pritisnite katerokoli tipko za nadaljevanje"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primaren"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Ustvari nov primaren razdelek"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Logien"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Ustvari nov logien razdelek"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Preklii"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "Ne ustvari razdelka"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Interna napaka !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Velikost (v MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Zaetek"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Dodaj razdelek na zaetek prostega obmoja"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Konec"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Dodaj razdelek na konec prostega obmoja"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Ni prostora za ustvarjanje razirjenega razdelka"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
#, fuzzy
msgid "No partition table.\n"
msgstr "ponovno preberi tabelo razdelkov"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
#, fuzzy
msgid "No partition table. Starting with zero table."
msgstr "Izpii tabelo razdelkov na zaslon ali shrani v datoteko"
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
#, fuzzy
msgid "Bad signature on partition table"
msgstr "Enostaven izpis tabele razdelkov"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
#, fuzzy
msgid "Unknown partition table type"
msgstr "ponovno preberi tabelo razdelkov"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr ""
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr ""
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr ""
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
msgid "Opened disk read-only - you have no permission to write"
msgstr ""
-#: fdisk/cfdisk.c:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "Velikosti diska ni mogoe ugotoviti"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Slab primarni razdelek"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Slab logini razdelek"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Opozorilo! To lahko unii podatke na disku!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Ste prepriani, da elite zapisati tabelo razdelkov na disk? (da ali ne): "
-#: fdisk/cfdisk.c:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "ne"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "Tabela razdelkov ni bila zapisana"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "da"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Prosim, odgovorite ,da` ali ,ne`"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Tabelo razdelkov zapisujemo na disk..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Tabela razdelkov zapisana na disku"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Tabela razdelkov zapisana, auriranje tabele neuspeno. Ponovno zaenite "
"sistem."
-#: fdisk/cfdisk.c:1857
+#: fdisk/cfdisk.c:1906
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Noben primarni razdelek ni oznaen kot zagonski. DOS MBR se ne more zagnati."
-#: fdisk/cfdisk.c:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Ve kot en primarni razdelek je oznaen kot zagonski. DOS MBR se ne more "
"zagnati."
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Vnesite ime datoteke ali pritisnite ENTER za prikaz na zaslonu: "
-#: fdisk/cfdisk.c:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "Ni mo odpreti datoteke ,%s`"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Disk: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Brez "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primaren"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Logien"
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Neznano"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr ""
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, fuzzy, c-format
msgid "(%02X)"
msgstr "Zagonski (%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
#, fuzzy
msgid "None"
msgstr "Opravljeno"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr ""
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
#, fuzzy
msgid " First Last\n"
msgstr "parametri\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
msgstr ""
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
#, fuzzy
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
@@ -1583,470 +1610,470 @@ msgid ""
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
#, fuzzy
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ----Zaetni--- ----Konni---- Zaetni tevilo\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
#, 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:2144
+#: fdisk/cfdisk.c:2193
#, fuzzy
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- -------- ---------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "Direktno"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Izpis tabele v surovi obliki"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Sektorji"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Izpis tabele, urejene po sektorjih"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Tabela"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Enostaven izpis tabele razdelkov"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "Brez izpisa tabele razdelkov"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Osnovna navodila za cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Cfdisk je tekstovni program za urejanje diskovnih razdelkov,"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2260
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "s katerim lahko ustvarjate, briete ali spreminjate razdelke"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "na vaem disku."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr " Ukaz Pomen"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "------- -------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr ""
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr ""
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr ""
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr ""
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr ""
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr ""
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr ""
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr ""
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr ""
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
msgid " p Print partition table to the screen or to a file"
msgstr ""
-#: fdisk/cfdisk.c:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr ""
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr ""
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
-#: fdisk/cfdisk.c:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr ""
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr ""
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr ""
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr ""
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr ""
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr ""
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
-#: fdisk/cfdisk.c:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr ""
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " ,ne`"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr ""
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr ""
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr ""
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr ""
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr ""
-#: fdisk/cfdisk.c:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr ""
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr ""
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr ""
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr ""
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr ""
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr ""
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Opravljeno"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr ""
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr ""
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr ""
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr ""
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr ""
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr ""
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr ""
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr ""
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr ""
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr ""
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr ""
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ""
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr ""
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr ""
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Neznano (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr ""
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr ""
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr ""
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, fuzzy, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "%d glav, %d sektorjev/stezo, %d stez"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Ime"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Oznake"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Tip Razd."
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Dat. sistem"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Oznaka]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
#, fuzzy
msgid " Sectors"
msgstr "Sektorji"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
#, fuzzy
msgid " Cylinders"
msgstr "steza"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
#, fuzzy
msgid " Size (MB)"
msgstr "Vel. (MB)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
#, fuzzy
msgid " Size (GB)"
msgstr "Vel. (GB)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Zagonski"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Oznai, ali je razdelek zagonski"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Izbrii"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Izbrii ta razdelek"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometr."
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Nastavi geometrijo diska (samo poznavalci)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Pomo"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Izpii stran z navodili"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Razpni"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Raziri trenutni razdelek ez celotno prosto obmoje (samo poznavalci)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Nova"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Ustvari nov razdelek na prostem obmoju diska"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Natisni"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print partition table to the screen or to a file"
msgstr "Izpii tabelo razdelkov na zaslon ali shrani v datoteko"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Izhod"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Izhod iz programa brez zapisa tabele razdelkov"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Tip"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr ""
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Enote"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Pii"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr ""
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr ""
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr ""
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr ""
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr ""
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr ""
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr ""
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr ""
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr ""
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2290,31 +2317,31 @@ msgstr ""
msgid "You must set"
msgstr ""
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr ""
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr ""
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr ""
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
"You can do this from the extra functions menu.\n"
msgstr ""
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " in "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2326,28 +2353,28 @@ msgid ""
" (e.g., DOS FDISK, OS/2 FDISK)\n"
msgstr ""
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr ""
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr ""
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr ""
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2355,121 +2382,121 @@ msgid ""
"\n"
msgstr ""
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr ""
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
msgstr ""
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
msgstr ""
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Interna napaka\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr ""
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
"(rite)\n"
msgstr ""
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
msgstr ""
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr ""
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, c-format
msgid "%s (%u-%u, default %u): "
msgstr ""
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, c-format
msgid "Using default value %u\n"
msgstr ""
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr ""
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr ""
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr ""
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, c-format
msgid "Selected partition %d\n"
msgstr "Izbrani razdelek %d\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
msgid "No partition is defined yet!\n"
msgstr "Noben razdelek e ni doloen!\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr "Vsi primarni razdelki so e doloeni!\n"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "steza"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "sektor"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Enote prikaza/vnosa spremenjene na %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "OPOZORILO: Razdelek %d je razirjeni razdelek\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "Nastavljena je zdruljivost z DOS.\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "Zdruljivost z DOS ni nastavljena.\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "Razdelek %d e ne obstaja!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2481,7 +2508,7 @@ msgstr ""
"razdelkov tipa 0. Razdelek lahko zbriete z\n"
"ukazom ,d`.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2489,7 +2516,7 @@ msgstr ""
"Razdelka ne morete pretvoriti v razirjenega ali obratno.\n"
"Najprej ga morate zbrisati.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2499,7 +2526,7 @@ msgstr ""
"Tak je dogovor v SunOS/Solaris, Linux pa ga spotuje.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2509,52 +2536,52 @@ msgstr ""
"razdelek 11 pa kot celotni del (6), kot priakuje IRIX.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "Tip razdelka %d spremenjen v %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr "Fizini zaetek razdelka %d ni enak loginemu (ne-Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " fizini=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "logini=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "Fizini konec razdelka %d ni enak loginemu:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "Razdelek %i se ne zane na meji stez:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "mora biti (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "Razdelek %i se ne kona na meji stez.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "mora biti (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
@@ -2563,7 +2590,7 @@ msgstr ""
"\n"
"Disk %s: %ld MB, %lld bajtov\n"
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, c-format
msgid ""
"\n"
@@ -2572,17 +2599,17 @@ msgstr ""
"\n"
"Disk %s: %ld.%ld GB, %lld bytes\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr "%d glav, %d sektorjev/stezo, %d stez"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, fuzzy, c-format
msgid ", total %llu sectors"
msgstr ", skupno %lu sektorjev"
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
@@ -2591,35 +2618,35 @@ msgstr ""
"Enote = %s od %d x %d = %d bajtov\n"
"\n"
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr ""
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Naprava"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
msgstr ""
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2627,92 +2654,92 @@ msgid ""
"\n"
msgstr ""
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
#, fuzzy
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr " # Ozn Glav Sekt Stz ID Glav Sekt Stz sektor sektorjev\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr ""
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr ""
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr ""
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr ""
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr ""
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr ""
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr ""
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr ""
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr ""
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr ""
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, c-format
msgid "%lld unallocated sectors\n"
msgstr ""
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr ""
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr ""
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr ""
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr ""
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr ""
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2720,25 +2747,25 @@ msgid ""
"\tWARNING: This will destroy the present disk contents.\n"
msgstr ""
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr ""
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr ""
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
#, fuzzy
msgid "All logical partitions are in use\n"
msgstr "logini razdelki niso v diskovnem vrstnem redu"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
#, fuzzy
msgid "Adding a primary partition\n"
msgstr "Slab primarni razdelek"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2746,30 +2773,30 @@ msgid ""
" p primary partition (1-4)\n"
msgstr ""
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr ""
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr ""
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr ""
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2778,7 +2805,7 @@ msgid ""
"The new table will be used at the next reboot.\n"
msgstr ""
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2786,95 +2813,101 @@ msgid ""
"information.\n"
msgstr ""
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr ""
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr ""
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr ""
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr ""
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr ""
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr ""
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr ""
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr ""
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr ""
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr ""
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "Ne morem odpreti %s\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "ne morem odpreti %s\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr ""
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr ""
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
msgstr ""
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr ""
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr ""
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
"The current boot file is: %s\n"
msgstr ""
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr ""
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr ""
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3231,7 +3264,7 @@ msgstr ""
msgid "Linux native"
msgstr ""
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr ""
@@ -3506,7 +3539,7 @@ msgid "SunOS home"
msgstr ""
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr ""
@@ -3840,8 +3873,8 @@ msgid "Priam Edisk"
msgstr ""
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr ""
@@ -3892,149 +3925,154 @@ msgstr ""
msgid "NTFS volume set"
msgstr ""
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr ""
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr ""
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr ""
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr ""
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr ""
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr ""
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr ""
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr ""
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr ""
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr ""
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr ""
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr ""
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
msgid "Solaris"
msgstr ""
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr ""
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr ""
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr ""
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr ""
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr ""
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr ""
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr ""
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr ""
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr ""
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr ""
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr ""
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr ""
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr ""
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr ""
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr ""
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr ""
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr ""
@@ -4960,121 +4998,121 @@ msgstr ""
msgid "internal error, contact the author."
msgstr ""
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "zagnano iz MILO\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Ura Ruffian BCD\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "vrata ure naravnana na 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "funky TOY!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomski %s neuspeen v 1000 iteracijah!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Neuspelo odpiranje vrat /dev/port: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
msgid "I failed to get permission because I didn't try.\n"
msgstr "Dovoljenja nismo dobili, ker nismo poskuali.\n"
-#: hwclock/cmos.c:601
+#: hwclock/cmos.c:602
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s ne more dobiti dostopa do V/I vrat: klic iopl(3) neuspeen.\n"
-#: hwclock/cmos.c:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Verjetno potrebujete pravice skrbnika sistema.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Privzemamo, da strojna ura tee v %s asu.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "univerzalnem (UTC)"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "krajevnem"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Opozorilo: neprepoznana tretja vrstica v datoteki adjtime\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Priakovano: ,UTC`, ,LOCAL` ali pa ni).\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Zadnji popravek drsenja opravljen %ld sekund po letu 1969\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Zadnja kalibracija opravljena %ld sekund po letu 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "Strojna ura tee v %s asu\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "neznanem"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "akamo na tiktak ure...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...dobili tiktak.\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr "Neveljavne vrednosti v strojni uri: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"as strojne ure: %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld sekund po letu 1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "as, prebran iz strojne ure: %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr "Strojno uro nastavljamo na %.2d:%.2d:%.2d = %ld sekund po letu 1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Ure nismo premaknili - zgolj preizkus.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5083,7 +5121,7 @@ msgstr ""
"as, ki je pretekel od referennega, je %.6f sekund.\n"
"Poveujemo zaostanek, da bi dosegli naslednjo celo sekundo.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5091,20 +5129,20 @@ msgstr ""
"Registri strojne ure vsebujejo vrednosti ki so bodisi neveljavne\n"
"(npr. 50. dan v mesecu), bodisi izven naega obsega (npr. leto 2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f sekund\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "Izbira --date ni bila podana.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "Argument izbire --date je predolg.\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5112,22 +5150,22 @@ msgstr ""
"Vrednost, podana pri izbiri --date ni veljaven datum.\n"
"Med drugim vsebuje narekovaje.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Izvajamo ukaz date: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr ""
"Ne moremo pognati ukaza ,date` v lupini /bin/sh, klic popen() neuspeen"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "odziv ukaza date = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5142,7 +5180,7 @@ msgstr ""
"Odziv pa:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5153,62 +5191,62 @@ msgid ""
" %s\n"
msgstr ""
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr ""
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
msgstr ""
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr ""
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr ""
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr ""
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr ""
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr ""
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr ""
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
msgstr ""
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
msgstr ""
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
msgstr ""
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5216,54 +5254,54 @@ msgid ""
"Adjusting drift factor by %f seconds/day\n"
msgstr ""
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr ""
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr ""
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr ""
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
"%s"
msgstr ""
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr ""
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr ""
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr ""
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr ""
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr ""
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5271,31 +5309,31 @@ msgid ""
"(and thus is presumably not running on an Alpha now). No action taken.\n"
msgstr ""
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr ""
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr ""
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
msgstr ""
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr ""
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr ""
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5327,165 +5365,165 @@ msgid ""
" either --utc or --localtime\n"
msgstr ""
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
msgstr ""
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr ""
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
msgstr ""
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
"both.\n"
msgstr ""
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
"specified both.\n"
msgstr ""
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr ""
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr ""
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr ""
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr ""
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
msgstr ""
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr ""
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
msgstr ""
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr ""
-#: hwclock/kd.c:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr ""
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr ""
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr ""
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr ""
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr ""
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr ""
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr ""
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr ""
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr ""
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr ""
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr ""
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr ""
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr ""
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr ""
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr ""
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr ""
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr ""
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr ""
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr ""
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5493,17 +5531,17 @@ msgid ""
"this system.\n"
msgstr ""
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr ""
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr ""
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr ""
@@ -5511,23 +5549,23 @@ msgstr ""
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr ""
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr ""
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr ""
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr ""
@@ -5739,7 +5777,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Geslo: "
@@ -6526,36 +6564,36 @@ msgstr ""
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr ""
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Zagon v enouporabnikem nainu.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr ""
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr ""
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr ""
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr ""
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr ""
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr ""
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -6563,35 +6601,35 @@ msgstr ""
"\n"
"Geslo ni pravilno.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr ""
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr ""
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr ""
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr ""
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr ""
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr ""
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr ""
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr ""
@@ -7156,17 +7194,17 @@ msgstr ""
msgid "Message from %s@%s on %s at %s ..."
msgstr ""
-#: mount/fstab.c:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr ""
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr ""
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr ""
@@ -7175,58 +7213,58 @@ msgstr ""
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:472
+#: mount/fstab.c:484
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:487
+#: mount/fstab.c:499
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:499
+#: mount/fstab.c:511
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
-#: mount/fstab.c:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr ""
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr ""
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "as se je iztekel"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
"Perhaps there is a stale lock file?\n"
msgstr ""
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr ""
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr ""
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr ""
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
@@ -7292,26 +7330,26 @@ msgstr "%s: ni blona enota\n"
msgid "Couldn't lock into memory, exiting.\n"
msgstr ""
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr ""
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, fuzzy, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "Ni mo pognati %s: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr ""
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, c-format
msgid ""
"usage:\n"
@@ -7321,12 +7359,11 @@ msgid ""
" %s [-e encryption] [-o offset] {-f|loop_device} file # setup\n"
msgstr ""
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "premalo pomnilnika"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
@@ -7344,294 +7381,312 @@ msgstr ""
msgid "; rest of file ignored"
msgstr ""
-#: mount/mount.c:375
+#: mount/mount.c:382
#, 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:380
+#: mount/mount.c:387
#, 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:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: enote %s ni mo odpreti za pisanje: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: napaka pri pisanju na %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr ""
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr ""
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "priklop ni uspel"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: samo sistemski skrbnik lahko priklopi %s na %s"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr ""
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr ""
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr ""
-#: mount/mount.c:619
+#: mount/mount.c:626
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr ""
-#: mount/mount.c:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr ""
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr ""
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr ""
-#: mount/mount.c:686
+#: mount/mount.c:693
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr ""
-#: mount/mount.c:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr ""
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr ""
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr ""
-#: mount/mount.c:844
+#: mount/mount.c:851
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr ""
-#: mount/mount.c:884
+#: mount/mount.c:891
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr ""
-#: mount/mount.c:895
+#: mount/mount.c:902
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
-#: mount/mount.c:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr ""
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr ""
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: priklopna toka %s ni imenik"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: dostop zavrnjen"
-#: mount/mount.c:911
+#: mount/mount.c:918
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:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s je v rabi"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr ""
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr ""
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr ""
-#: mount/mount.c:931
+#: mount/mount.c:938
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr ""
-#: mount/mount.c:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr ""
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
" (a path prefix is not a directory)\n"
msgstr ""
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr ""
-#: mount/mount.c:959
+#: mount/mount.c:966
#, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
+msgstr ""
+
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
msgstr ""
-#: mount/mount.c:993
+#: mount/mount.c:1005
msgid "mount table full"
msgstr ""
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr ""
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr ""
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr ""
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr ""
-#: mount/mount.c:1018
+#: mount/mount.c:1030
msgid "mount: maybe you meant 'iso9660'?"
msgstr ""
-#: mount/mount.c:1020
+#: mount/mount.c:1032
msgid "mount: maybe you meant 'vfat'?"
msgstr ""
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr ""
-#: mount/mount.c:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
" (maybe `insmod driver'?)"
msgstr ""
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr ""
-#: mount/mount.c:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr ""
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "blona enota"
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: %s%s ni mo priklopiti v bralnem nainu"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr ""
-#: mount/mount.c:1066
+#: mount/mount.c:1078
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s je zaitena pred pisanjem, priklapljamo v bralnem nainu"
-#: mount/mount.c:1165
+#: mount/mount.c:1177
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr ""
-#: mount/mount.c:1171
+#: mount/mount.c:1183
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr ""
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr ""
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr ""
-#: mount/mount.c:1414
+#: mount/mount.c:1426
#, fuzzy
msgid ""
"Usage: mount -V : print version\n"
@@ -7683,46 +7738,46 @@ msgstr ""
"Druge izbire: [-nfFrsvw] [-o izbire].\n"
"Podrobnosti lahko poiete v prironiku z ukazom: man 8 mount\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: to lahko izvede samo sistemski skrbnik"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr ""
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr ""
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: priklapljamo %s\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr ""
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr ""
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr ""
-#: mount/mount_by_label.c:190
+#: mount/mount_by_label.c:192
#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, c-format
+msgid "%s: bad UUID"
msgstr ""
#: mount/mount_guess_fstype.c:489
@@ -7838,20 +7893,20 @@ msgstr ""
msgid "unknown nfs status return value: %d"
msgstr ""
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr ""
-#: mount/swapon.c:54
+#: mount/swapon.c:57
#, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -7859,31 +7914,36 @@ msgid ""
" %s [-v] special ...\n"
msgstr ""
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s na %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
-msgstr ""
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "Ni mo pognati %s: %s\n"
-#: mount/swapon.c:183
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
+msgstr "%s: ni mo odpreti %s\n"
+
+#: mount/swapon.c:196
#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
-#: mount/swapon.c:195
+#: mount/swapon.c:208
#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr ""
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr ""
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr ""
@@ -7988,42 +8048,48 @@ msgid ""
" umount [-f] [-r] [-n] [-v] special | node...\n"
msgstr ""
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "Ni mogoe odpreti "
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr ""
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr ""
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr ""
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr ""
-#: mount/umount.c:587
+#: mount/umount.c:592
#, c-format
msgid "umount: %s is not in the fstab (and you are not root)"
msgstr ""
-#: mount/umount.c:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr ""
-#: mount/umount.c:632
+#: mount/umount.c:637
#, 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:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr ""
@@ -9391,9 +9457,6 @@ msgstr ""
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "oznaka"
-
#, fuzzy
#~ msgid "swapon: unable to open loop device %s\n"
#~ msgstr "ni mogoe odpreti %s"
diff --git a/po/sv.po b/po/sv.po
index 3ffc7011f..773b9438c 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12j\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+0100\n"
"PO-Revision-Date: 2004-12-12 23:01+0100\n"
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -156,7 +156,7 @@ msgstr "anvndning: %s [ -n ] enhet\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -762,7 +762,7 @@ msgstr "fr mnga inoder - max r 512"
msgid "not enough space, need at least %lu blocks"
msgstr "inte tillrckligt med utrymme, behver minst %lu block"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Enhet: %s\n"
@@ -837,7 +837,7 @@ msgstr ""
"Anvndning: mkfs [-V] [-t filsystemstyp] [filsystemsflaggor] enhet "
"[storlek]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1072,7 +1072,7 @@ msgstr "skning misslyckades under test av block"
msgid "Weird values in do_check: probably bugs\n"
msgstr "Konstiga vrden i \"do_check\": troligtvis programfel\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "skning misslyckades i \"check_blocks\""
@@ -1129,64 +1129,86 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Antar sidstorleken %d (inte %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "etikett"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Anvndning: %s [-c] [-v0|-v1] [-pSIDSTORLEK] /dev/namn [block]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "fr mnga felaktiga sidor"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Slut p minne"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "en felaktig sida\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, c-format
msgid "%lu bad pages\n"
msgstr "%lu felaktiga sidor\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: fel: Ingenstans att skapa vxlingsutrymme?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: fel: storleken %lu r strre n enhetsstorleken %lu\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: fel: version %d r oknd\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: fel: vxlingsutrymmet mste vara minst %ld kB\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: varning: avkortar vxlingsutrymmet till %ld kB\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: fel: Ingenstans att skapa vxlingsutrymme?\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "Kommer inte att frska skapa vxlingsenhet p \"%s\""
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "desdigert: frsta sidan r olsbar"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1201,24 +1223,24 @@ msgstr ""
"vxlingsutrymme p den enheten kan du anvnda flaggan -f fr att tvinga\n"
"fram det.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "Kan inte stlla in vxlingsutrymme: olsbart"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Stller in vxlingsutrymme version %d, storlek = %llu kB\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "kan inte spola tillbaka vxlingsenheten"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "kan inte skriva signatursida"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync misslyckades"
@@ -1260,57 +1282,62 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Oanvndbar"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Ledigt utrymme"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Disken har ndrats.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Starta om systemet fr att frskra dig om att partitionstabellen har\n"
"uppdaterats korrekt.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1322,313 +1349,313 @@ msgstr ""
"partitioner br du titta i manualen fr cfdisk\n"
"fr ytterligare information.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "DESDIGERT FEL"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Tryck valfri tangent fr att avsluta cfdisk"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Kan inte ska p diskenhet"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "Kan inte inte lsa diskenhet"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "Kan inte skriva diskenhet"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Fr mnga partitioner"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "Partitionen brjar fre sektor 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "Partitionen slutar fre sektor 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "Partitonen brjar efter slutet p disken"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "Partitionen slutar efter slutet p disken"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr "Partitionen slutar i den slutliga partiella cylindern"
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "logiska partitioner r inte i diskordning"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "logiska partitioner verlappar varandra"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "frstorade logiska partitioner verlappar varandra"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!!! Internt fel vid skapande av logisk enhet utan utkad partition !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"Kan inte skapa logisk enhet hr -- det skulle skapa tv utkade partitioner"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Menyposten r fr lng. Menyn kan se konstig ut."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Meny utan riktning. Anvnder standardvrdet vgrt."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Ogiltig tangent"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Tryck en tangent fr att fortstta"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Primr"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Skapa en ny primr partition"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Logisk"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Skapa en ny logisk partition"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Avbryt"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "Skapa inte ngon partition"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Internt fel !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Storlek (i MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Brjan"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Lgg till partition i brjan av det lediga utrymmet"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Slutet"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Lgg till partition i slutet av det lediga utrymmet"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Ingen plats att skapa den utkade partitionen"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
msgid "No partition table.\n"
msgstr "Ingen partitionstabell.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
msgid "No partition table. Starting with zero table."
msgstr "Ingen partitionstabell. Startar med tom tabell."
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
msgid "Bad signature on partition table"
msgstr "Felaktig signatur p partitionstabell"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
msgid "Unknown partition table type"
msgstr "Oknd typ av partitionstabell"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Vill du brja med en tom tabell [j/N]?"
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr "Du angav fler cylindrar n som ryms p disken"
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "Kan inte ppna diskenhet"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
msgid "Opened disk read-only - you have no permission to write"
msgstr "ppnade disken skrivskyddat - du har ingen rttighet att skriva"
-#: fdisk/cfdisk.c:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "Kan inte hmta diskstorlek"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Felaktig primr partition"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Felaktig logisk partition"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Varning!! Detta kan frstra data p din disk!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"r du sker p att du vill skriva partitionstabellen till disk? (ja eller "
"nej): "
-#: fdisk/cfdisk.c:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "nej"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "Skrev inte partitionstabellen till disk"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "ja"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Ange \"ja\" eller \"nej\""
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Skriver partitionstabell till disk..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Skrev partitionstabell till disk"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Skrev partitionstabellen, men omlsning av tabellen misslyckades. Starta om "
"fr att uppdatera tabellen."
-#: fdisk/cfdisk.c:1857
+#: fdisk/cfdisk.c:1906
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Inga primra partitioner r markerade som startbara. DOS huvudstartpost\n"
"(MBR) kan inte starta detta."
-#: fdisk/cfdisk.c:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Mer n en primr partition r markerad som startbar. DOS huvudstartpost\n"
"(MBR) kan inte starta detta."
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Ange filnamnet eller tryck RETUR fr att visa p skrmen: "
-#: fdisk/cfdisk.c:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "Kan inte ppna filen \"%s\""
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Diskenhet: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Sektor 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Sektor %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Ingen "
# Primr/Logisk antar jag
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Pri/Log"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Primr "
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Logisk "
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Oknd"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Start"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
msgid "None"
msgstr "Ingen"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Partitionstabell fr %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
msgid " First Last\n"
msgstr " Frsta Sista\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1636,7 +1663,7 @@ msgstr ""
" # Typ Sektor Sektor Avstnd Lngd Filsystemstyp (ID) "
"Flagga\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1657,470 +1684,470 @@ msgstr ""
# (the one from the line below in the source).
#
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ----Start----- -----Slut----- Start- Antal\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
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:2144
+#: fdisk/cfdisk.c:2193
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "Rtt"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Visa tabellen i rtt dataformat"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Sektorer"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Visa tabellen sorterad efter sektorer"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Tabell"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Visa bara partitionstabellen"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "Visa inte tabellen"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Hjlpskrm fr cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Det hr r cfdisk, ett curses-baserat diskpartitioneringsprogram som"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2260
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "lter dig skapa, ta bort och ndra partitioner p din"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "hrddisk."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright 1994-1999 Kevin E. Martin och aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Kommando Betydelse"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "-------- ---------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b Sl p/av startbarhetsflaggan p aktuell partition"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Ta bort aktuell partition"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr ""
" g ndra parametrarna fr cylindrar, huvuden, sektorer-per-spr"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " VARNING: Denna flagga br endast anvndas av personer som"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " vet vad de gr."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Visa denna hjlpskrm"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m Maximera diskanvndandet p aktuell partition"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr ""
" Obs: Detta kan komma att gra partitionen inkompatibel med"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Skapa en ny partition frn ledigt utrymme"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
msgid " p Print partition table to the screen or to a file"
msgstr ""
" p Visa partitionstabellen p skrmen eller skriv den till en fil"
-#: fdisk/cfdisk.c:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Det finns flera olika format p partitionen"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " som du kan vlja mellan:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
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:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Tabell sorterad efter sektorer"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - Tabell i rtt format"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q Avsluta programmet utan att skriva partitionstabellen"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Byt filsystemstypen"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u Byt enheter p visningen av partitionsstorlek"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Byter mellan MB, sektorer och cylindrar"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Skriv partitionstabellen till disk (mste vara ett stort W)"
-#: fdisk/cfdisk.c:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " Eftersom detta kan frstra data p disken mste du"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr ""
" antingen bekrfta eller avvisa detta genom att ange \"ja\""
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " eller \"nej\""
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "Uppil Flytta markren till fregende partition"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "Nerpil Flytta markren till nsta partition"
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL+L Rita om skrmen"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Visa denna skrm"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Obs: Alla kommandon kan anges antingen med sm eller stora bokstver"
-#: fdisk/cfdisk.c:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "(utom fr skrivningar med W)."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Cylindrar"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "ndra cylindergeometri"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Huvuden"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "ndra huvudgeometri"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "ndra sektorgeometri"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Klar"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Frdig med geometrindring"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Ange antalet cylindrar: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Ogiltigt antal cylindrar"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Ange antalet huvuden: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Ogiltigt antal huvuden"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Ange antalet sektorer per spr: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Ogiltigt antal sektorer"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Ange typen av filsystem: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "Kan inte ndra filsystemstypen till ett tomt vrde"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "Kan inte ndra filsystemstypen till utkad"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Oknd(%02X)"
# Vad r detta?
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Pri/Log"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Oknd (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Diskenhet: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Storlek: %lld byte, %lld MB"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Storlek: %lld byte, %lld,%lld GB"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Huvuden: %d Sektorer per spr: %d Cylindrar: %lld"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Namn"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Flaggor"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Part.-typ"
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "FS-typ"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Etikett]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
msgid " Sectors"
msgstr " Sektorer"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
msgid " Cylinders"
msgstr " Cylindrar"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
msgid " Size (MB)"
msgstr " Storlek (MB)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
msgid " Size (GB)"
msgstr " Storlek (GB)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Startbar"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Sl p/av startbarhetsflaggan p aktuell partition"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Ta bort"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Ta bort aktuell partition"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometri"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "ndra diskgeometri (endast experter)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Hjlp"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Visa hjlpskrm"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Maximera"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Maximera diskanvndningen fr aktuell partition (endast experter)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Ny"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Skapa ny partition frn ledigt utrymme"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Visa"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print partition table to the screen or to a file"
msgstr "Visa partitionstabellen p skrmen eller skriv den till en fil"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Avsluta"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Avsluta programmet utan att skriva partitionstabellen"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Typ"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
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:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Enheter"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr ""
"Byt enheter p visningen av partitionsstorleken (MB, sektorer, cylindrar)"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Skriv"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr "Skriv partitionstabellen till disk (detta kan frstra data)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "Kan inte gra denna partition startbar"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "Kan inte ta bort en tom partition"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "Kan inte maximera denna partition"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Denna partition r oanvndbar"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Denna partition anvnds redan"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "Kan inte ndra typen p en tom partition"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "Inge fler partitioner"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Ogiltigt kommando"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2394,20 +2421,20 @@ msgstr " f fixa partitionsordningen"
msgid "You must set"
msgstr "Du mste stlla in"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "huvuden"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "sektorer"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "cylindrar"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2416,11 +2443,11 @@ msgstr ""
"%s%s.\n"
"Du kan gra detta frn menyn extra funktionalitet.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " och "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2440,28 +2467,28 @@ msgstr ""
"2) start- och partitioneringsprogramvara frn andra operativsystem\n"
" (exemeplvis DOS FDISK, OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Felaktigt avstnd i primr utkad partition\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Varning: extra lnkpekare i partitionstabell %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr "Varning: ignorerar extra data i partitionstabell %d\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2473,16 +2500,16 @@ msgstr ""
"inte det tidigare innehllet att kunna terstllas.\n"
"\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Observera: sektorstorleken r %d (inte %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "Du kommer inte att kunna skriva partitionstabellen.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
@@ -2490,7 +2517,7 @@ msgstr ""
"Denna disk har bde magiska DOS- och BSD-siffror.\n"
"Ge kommandot \"b\" fr att g till BSD-lge.\n"
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
@@ -2498,16 +2525,16 @@ msgstr ""
"Enheten innehller varken en giltig DOS-partitionstabell eller en Sun-, SGI- "
"eller OSF-disketikett\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Internt fel\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "Ignorerar extra utkad partition %d\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2516,7 +2543,7 @@ msgstr ""
"Varning: ogiltiga flaggan 0x%04x i partitionstabell %d kommer ett korrigeras "
"vid skrivning med w\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2524,78 +2551,78 @@ msgstr ""
"\n"
"mottog EOF tre gnger - avslutar...\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Hexadecimal kod (tryck L fr att se koder): "
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%u-%u, standardvrde %u): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, c-format
msgid "Using default value %u\n"
msgstr "Anvnder standardvrdet %u\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Vrdet r utanfr intervallet.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Partitionsnummer"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Varning: partition %d har tom typ\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, c-format
msgid "Selected partition %d\n"
msgstr "Valde partition %d\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
msgid "No partition is defined yet!\n"
msgstr "Ingen partition r definierad n!\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr "Alla primra partitioner har redan definierats!\n"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "cylinder"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "sektor"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "ndrar visnings-/inmatningsenheter till %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "VARNING: Partition %d r en utkad partition\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "DOS-kompatibilitetsflagga r satt\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "DOS-kompatibilitetsflagga r inte satt\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "Partition %d finns inte n!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2608,7 +2635,7 @@ msgstr ""
"oklokt. Du kan ta bort en partition\n"
"genom att anvnda kommandot \"d\".\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2616,7 +2643,7 @@ msgstr ""
"Du kan inte ndra en partition till en utkad partition eller tvrtom\n"
"Ta bort den frst.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2627,7 +2654,7 @@ msgstr ""
"gillar det.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2638,52 +2665,52 @@ msgstr ""
"frvntar sig det.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "ndrade systemtypen fr partition %d till %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr "Partition %d har olika fysiska/logiska brjan (icke-Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " fys=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "logisk=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "Partition %d har olika fysiska/logiska slut:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "Partition %i brjar inte p cylindergrns:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "borde vara (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "Partition %i slutar inte p cylindergrns.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "borde vara (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
@@ -2692,7 +2719,7 @@ msgstr ""
"\n"
"Disk %s: %ld MB, %lld byte\n"
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, c-format
msgid ""
"\n"
@@ -2701,17 +2728,17 @@ msgstr ""
"\n"
"Disk %s: %ld,%ld GB, %lld byte\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr "%d huvuden, %d sektorer/spr, %d cylindrar"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ", totalt %llu sektorer"
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
@@ -2720,7 +2747,7 @@ msgstr ""
"Enheter = %s av %d %d = %d byte\n"
"\n"
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2728,7 +2755,7 @@ msgstr ""
"Ingenting att gra. Ordningen r redan korrekt.\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
@@ -2738,16 +2765,16 @@ msgstr ""
"Du valde nog fel enhet.\n"
"\n"
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Start Brjan Slut Block Id System\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Enhet"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2755,7 +2782,7 @@ msgstr ""
"\n"
"Posterna i partitionstabellen r inte i diskordning\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2766,94 +2793,94 @@ msgstr ""
"Disk %s: %d huvuden, %d sektorer, %d cylindrar\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "Nr AF Hd Sek Cyl Hd Sek Cyl Brjan Strl ID\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Varning: partition %d innehller sektor 0\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Partition %d: huvud %d r strre n maximala %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Partition %d: sektor %d r strre n maximala %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Partitioner %d: cylinder %d r strre n maximala %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr ""
"Partition %d: tidigare sektorer %d stmmer inte verens med totala %d\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Varning: felaktig databrjan p partition %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Varning: partition %d verlappar med partition %d.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Varning: partition %d r tom\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "Logisk partition %d r inte helt inuti partition %d\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "Totala antalet allokerade sektorer %d strre n maximala %lld\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, c-format
msgid "%lld unallocated sectors\n"
msgstr "%lld oallokerade sektorer\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr ""
"Partition %d r redan definierad. Ta bort den innan du lgger till den "
"igen.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Frsta %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "Sektor %d r redan allokerad\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Inga lediga sektorer r tillgngliga\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Sista %s eller +storlek eller +storlekM eller +storlekK"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2866,24 +2893,24 @@ msgstr ""
"\tVARNING: Detta kommer att frstra det nuvarande innehllet\n"
"\tp disken.\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "Det maximala antalet partitioner har skapats\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr ""
"Du mste ta bort en partition och lgga till en utkad partition frst\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
msgid "All logical partitions are in use\n"
msgstr "Alla logiska partitioner anvnds\n"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
msgid "Adding a primary partition\n"
msgstr "Lgger till en primr partition\n"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2894,20 +2921,20 @@ msgstr ""
" %s\n"
" p primr partition (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l logisk (5 eller hgre)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e utkad"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Ogiltigt partitionsnummer fr typen \"%c\"\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2915,11 +2942,11 @@ msgstr ""
"Partitionstabellen har ndrats!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Anropar ioctl() fr att lsa om partitionstabellen.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2932,7 +2959,7 @@ msgstr ""
"Krnan anvnder fortfarande den gamla tabellen.\n"
"Den nya tabellen kommer att anvndas vid nsta omstart.\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2943,64 +2970,71 @@ msgstr ""
"VARNING: Om du har skapat eller ndrat ngon DOS 6.x-partition\n"
"br du lsa fdisk-manualsidan fr ytterligare information.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Fel vid stngning av %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Synkroniserar hrddiskar.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "Partition %d har inget dataomrde\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Ny brjan utav data"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Expertkommando (m fr hjlp): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Antal cylindrar"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Antal huvuden"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Antal sektorer"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr "Varning: stller in sektoravstnd fr DOS-kompatibilitet\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "Disk %s innehller inte en giltig partitionstabell\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "Kan inte ppna %s\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "kan inte ppna %s\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: oknt kommando\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr "Denna krna hittar sjlv sektorstorleken - flaggan -b ignoreras\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -3009,16 +3043,16 @@ msgstr ""
"enhet\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr "Upptckte en OSF/1-disketikett p %s, gr in i disketikettslge.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Kommando (m fr hjlp): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -3027,15 +3061,15 @@ msgstr ""
"\n"
"Aktuell startfil r: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Ange namnet p den nya startfilen: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "Startfilen ofrndrad\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3414,7 +3448,7 @@ msgstr "Linux vxling"
msgid "Linux native"
msgstr "Linux egen"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3748,7 +3782,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linux raid autodetekterad"
@@ -4118,8 +4152,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4170,149 +4204,154 @@ msgstr "Linux utkad"
msgid "NTFS volume set"
msgstr "NTFS-volymsamling"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "IBM Thinkpad-vilolge"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr "Darwin UFS"
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr "Darwin start"
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI fs"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI vxling"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "Boot Wizard dold"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr "Solaris start"
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
msgid "Solaris"
msgstr "Solaris"
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32 MB)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "Icke-filsystemsdata"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Dell-verktyg"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS-tkomst"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS fs"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "Linux/PA-RISC start"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS sekundr"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5319,121 +5358,121 @@ msgstr "getopt (utkad) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "internt fel, kontakta frfattaren."
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "startade frn MILO\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Ruffian BCD-klocka\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "klockporten justerades till 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "hftig LEKSAK!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: atomisk %s misslyckades fr 1000 iterationer!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "Kan inte ppna /dev/port: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
msgid "I failed to get permission because I didn't try.\n"
msgstr "Jag misslyckades med att f tilltelse eftersom jag inte frskte.\n"
-#: hwclock/cmos.c:601
+#: hwclock/cmos.c:602
#, c-format
msgid "%s is unable to get I/O port access: the iopl(3) call failed.\n"
msgstr "%s kan inte f I/O-porttillgng: iopl(3)-anropet misslyckades.\n"
-#: hwclock/cmos.c:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Du behver troligtvis root-privilegier.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Antar att hrdvaruklockan hller %s-tid.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "lokal"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Varning: oknd tredje rad i adjtime-fil\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Frvntade: \"UTC\" eller \"LOCAL\" eller ingenting.)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Senaste dragningsjustering gjordes %ld sekunder efter 1969\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Senaste kalibrering gjordes %ld sekunder efter 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "Hrdvaruklockan hller %s-tid\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "oknd"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "Vntar p klocktick...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...fick klocktick\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr "Ogiltiga vrden i hrdvaruklockan: %4d-%.2d-%.2d %.2d.%.2d.%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr "Hv-klocktid: %4d-%.2d-%.2d %.2d.%.2d.%.2d = %ld sekunder sedan 1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Tid som lsts frn hrdvaruklockan: %4d-%.2d-%.2d %02d.%02d.%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Stller hrdvaruklockan till %.2d.%.2d.%.2d = %ld sekunder sedan 1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Klockan r inte ndrad - testar bara.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5442,7 +5481,7 @@ msgstr ""
"Tid som har gtt sedan referenstiden r %.6f sekunder.\n"
"Frdrjer ytterligare fr att n nsta hela sekund.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5451,20 +5490,20 @@ msgstr ""
"50:e dagen i mnaden) eller utanfr det intervall som vi kan hantera (t.ex. "
"r 2095).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f sekunder\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "Ingen --date-flagga angavs.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "--date-argumentet r fr lngt\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5472,22 +5511,22 @@ msgstr ""
"Vrdet i --date-flaggan r ogiltigt.\n"
"I synnerhet som det innehller citationstecken.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Anropar date-kommandot: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr ""
"Kan inte kra \"date\"-programmet i skalet /bin/sh. popen() misslyckades"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "svar frn date-kommandot = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5502,7 +5541,7 @@ msgstr ""
"Svaret var:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5519,12 +5558,12 @@ msgstr ""
"Svaret var:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "datumstrngen %s r lika med %ld sekunder sedan 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5532,33 +5571,33 @@ msgstr ""
"Hrdvaruklockan innehller inte en giltig tid, s vi kan inte stlla "
"systemtiden med den.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "Anropar settimeofday:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr "Stller inte systemklockan eftersom vi kr i testlge.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Mste vara superanvndaren fr att kunna stlla systemklockan.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "settimeofday() misslyckades"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5566,7 +5605,7 @@ msgstr ""
"Justerar inte dragningsfaktorn eftersom hrdvaruklockan tidigare innehll "
"skrp.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
@@ -5575,7 +5614,7 @@ msgstr ""
"r noll, s historiken r trasig och en omstart av kalibreringen\n"
"r ndvndig.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5583,7 +5622,7 @@ msgstr ""
"Justerar inte dragningsfaktorn eftersom det har gtt mindre n en dag sedan "
"den senaste kalibreringen.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5594,23 +5633,23 @@ msgstr ""
"dragningsfaktor p %f sekunder/dag.\n"
"Justerar dragningsfaktorn med %f sekunder/dag\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "Tid sedan senaste justeringen r %d sekunder\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr ""
"Behver infoga %d sekunder och referera tillbaka i tiden %.6f sekunder "
"sedan\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "Uppdaterar inte adjtime-filen eftersom vi r i testlge.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5619,35 +5658,35 @@ msgstr ""
"Skulle skrivit fljande till %s:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Dragningsjusteringsparametrarna uppdaterades inte.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
"Hrdvaruklockan innehller inte giltig tid, s vi kan inte justera den.\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr ""
"Den justering som behvs r mindre n en sekund, s stller inte klockan.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Anvnder %s.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Inget anvndbart klockgrnssnitt hittades.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "Kunde inte stlla systemklockan.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5658,16 +5697,16 @@ msgstr ""
"Denna kopia av hwclock byggdes fr en annan maskin n Alpha\n"
"(och krs drfr troligen inte p en Alpha just nu). Ingen tgrd utfrdes.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "Kunde inte f tag i epokvrdet frn krnan.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "Krnan antar att epokvrdet r %lu\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5675,16 +5714,16 @@ msgstr ""
"Fr att stlla epokvrdet mste du anvnda flaggan \"epoch\" fr att ange "
"vilket vrde det ska stllas till.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "Stller inte epoken till %d - testar bara.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "Kan inte stlla in epokvrdet i krnan.\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5742,7 +5781,7 @@ msgstr ""
" --noadjfile frsk inte komma t /etc/adjtime. Krver att antingen\n"
" --utc eller --localtime anvnds\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5751,12 +5790,12 @@ msgstr ""
" tala om fr hwclock vilken typ av alpha du har (se hwclock"
"(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s tar inga argument som inte r flaggor. Du angav %d.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
@@ -5764,7 +5803,7 @@ msgstr ""
"Du har angivit flera funktioner\n"
"Du kan bara utfra en funktion t gngen.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5773,7 +5812,7 @@ msgstr ""
"%s: Flaggorna --utc och --localtime r msesidigt uteslutande. Du angav "
"bda.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5782,35 +5821,35 @@ msgstr ""
"%s: Flaggorna --adjust och --noadjfile r msesidigt uteslutande. Du angav "
"bda.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr "%s: Med --noadjfile mste du ange antingen --utc eller --localtime\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "Ingen anvndbar tid att stlla. Kan inte stlla klockan.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Tyvrr, endast superanvndaren kan ndra hrdvaruklockan.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Tyvrr, endast superanvndaren kan ndra systemklockan.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
msgstr ""
"Tyvrr, endast superanvndaren kan ndra hrdvaruklockans epok i krnan.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr "Kan inte komma t hrdvaruklockan via ngon knd metod.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
@@ -5818,101 +5857,101 @@ msgstr ""
"Anvnd flaggan --debug fr att se detaljerna ver vr skning efter en "
"tkomstmetod.\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Vntar i slingan p att tiden frn KDGHWCLK ska ndras\n"
-#: hwclock/kd.c:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK-ioctl fr att lsa tid misslyckades"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Gjorde time-out under vntan p att tiden skulle ndras.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK-ioctl fr att lsa tid misslyckades i slingan"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() misslyckades med att lsa tid frn %s"
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "KDSHWCLK-ioctl misslyckades"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "Kan inte ppna /dev/tty1 eller /dev/vc/1"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK-ioctl misslyckades"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "open() p %s misslyckades"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "ioctl() till %s fr att lsa tid misslyckades.\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Vntar i slingan p att tiden frn %s ska ndras\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s har inga avbrottsfunktioner. "
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "read() p %s fr att vnta p klocktick misslyckades"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "select() p %s fr att vnta p klocktick misslyckades"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "select() p %s fr att vnta p klocktick gjorde time-out\n"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "ioctl() p %s fr att sl av uppdateringsavbrott misslyckades"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr "ioctl() p %s fr att sl p uppdateringsavbrott misslyckades ovntat"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "ioctl() p %s fr att stlla tiden misslyckades.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "ioctl(%s) lyckades.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "ppning av %s misslyckades"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5922,17 +5961,17 @@ msgstr ""
"Fr att ndra epokvrdet i krnan mste vi komma t Linux \"rtc\"-drivrutin "
"via specialenhetsfilen %s. Denna fil finns inte p detta system.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "Kan inte ppna %s"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "ioctl(RTC_EPOCH_READ) p %s misslyckades"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr "vi har lst epoken %ld frn %s med RTC_EPOCH_READ-ioctl.\n"
@@ -5940,23 +5979,23 @@ msgstr "vi har lst epoken %ld frn %s med RTC_EPOCH_READ-ioctl.\n"
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr "Epokvrdet fr inte vara mindre n 1900. Du begrde %ld\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "stller epoken till %ld med RTC_EPOCH_SET-ioctl p %s.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr "Krndrivrutinen fr %s har inte RTC_EPOCH_SET-ioctl:en.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "ioctl(RTC_EPOCH_SET) p %s misslyckades"
@@ -6172,7 +6211,7 @@ msgid "Password error."
msgstr "Lsenordsfel."
#: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774
-#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Lsenord: "
@@ -6978,36 +7017,36 @@ msgstr "Avmonterar alla terstende filsystem..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: Kunde inte avmontera %s: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Startar i enanvndarlge.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr "krning av enanvndarskal misslyckades\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "grening av enanvndarskal misslyckades\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "fel vid ppnande av fifo\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr "fel vid instllning av close-on-exec p /dev/initctl"
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "fel vid krning av finalprog\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "fel vid grening av finalprog\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -7015,35 +7054,35 @@ msgstr ""
"\n"
"Fel lsenord.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "lstat() p skvg misslyckades\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "stat() p skvg misslyckades\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "ppnande av katalog misslyckades\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "grening misslyckades\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "krning misslyckades\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "kan inte ppna inittab\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "ingen TERM eller kan inte ta status p tty\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "fel vid stoppande av tjnst: \"%s\""
@@ -7626,17 +7665,17 @@ msgstr "Meddelande frn %s@%s (som %s) p %s klockan %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Meddelande frn %s@%s p %s klockan %s ..."
-#: mount/fstab.c:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "varning: fel vid lsning av %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "varning: kan inte ppna %s: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: kunde inte ppna %s - anvnder %s istllet\n"
@@ -7645,36 +7684,36 @@ msgstr "mount: kunde inte ppna %s - anvnder %s istllet\n"
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:472
+#: mount/fstab.c:484
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr "kan inte skapa lsfilen %s: %s (anvnd flaggan -n fr att sidostta)"
-#: mount/fstab.c:487
+#: mount/fstab.c:499
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr "kan inte lnka lsfilen %s: %s (anvnd flaggan -n fr att sidostta)"
-#: mount/fstab.c:499
+#: mount/fstab.c:511
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr "kan inte ppna lsfilen %s: %s (anvnd flaggan -n fr att sidostta)"
-#: mount/fstab.c:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "Kan inte lsa lsfilen %s: %s\n"
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "kan inte lsa lsfilen %s: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "gjorde time-out"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7683,22 +7722,22 @@ msgstr ""
"Kan inte skapa lnken %s\n"
"Det finns kanske en kvarglmd lsfil?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "kan inte ppna %s (%s) - mtab uppdaterades inte"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "fel vid skrivning av %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "fel vid byte av rttigheter p %s: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "kan inte byta namn p %s till %s: %s\n"
@@ -7767,26 +7806,26 @@ msgstr "%s: kunde inte hitta ngon ledig slingenhet"
msgid "Couldn't lock into memory, exiting.\n"
msgstr "Kunde inte lsa i minne, avslutar.\n"
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%llu): lyckades\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: kan inte ta bort enheten %s: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): lyckades\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr "Denna mount kompilerades utan std fr slingor. Du br kompilera om.\n"
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, c-format
msgid ""
"usage:\n"
@@ -7801,12 +7840,11 @@ msgstr ""
" %s -f # hitta ledig\n"
" %s [-e kryptering] [-o avstnd] {-f|slingenhet} fil # konfiguration\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "inte tillrckligt med minne"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"Inget std fr slingor fanns tillgngligt vid kompileringen. Du br\n"
@@ -7826,164 +7864,164 @@ msgstr "[mntent]: rad %d i %s r felaktig%s\n"
msgid "; rest of file ignored"
msgstr "; resten av filen ignoreras"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, 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:380
+#: mount/mount.c:387
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: enligt mtab r %s monterat p %s"
-#: mount/mount.c:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: kan inte ppna %s fr skrivning: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: fel vid skrivning av %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: fel vid byte av rttigheter p %s: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s ser ut som vxlingsutrymme - monteras inte"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "montering misslyckades"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: endast root kan montera %s p %s"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: slingenheten angiven tv gnger"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: typen angiven tv gnger"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: hoppar ver konfigurationen av en slingenhet\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: kommer att anvnda slingenheten %s\n"
-#: mount/mount.c:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: misslyckades konfigurera slingenheten\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: lyckades konfigurera slingenheten\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: kan inte ppna %s: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: argument till -p eller --pass-fd mste vara ett tal"
-#: mount/mount.c:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: kan inte ppna %s fr instllning av hastighet"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: kan inte stlla in hastighet: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: kan inte grena: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: denna version kompilerades utan std fr typen \"nfs\""
-#: mount/mount.c:884
+#: mount/mount.c:891
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr ""
"mount: misslyckades med montering av nfs version 4, frsker med 3...\n"
-#: mount/mount.c:895
+#: mount/mount.c:902
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr "mount: Jag kunde inte avgra filsystemstypen, och ingen angavs"
-#: mount/mount.c:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: du mste ange filsystemstypen"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: montering misslyckades"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: monteringspunkten %s r inte en katalog"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: tkomst nekas"
-#: mount/mount.c:911
+#: mount/mount.c:918
msgid "mount: must be superuser to use mount"
msgstr "mount: mste vara superanvndaren fr att anvnda mount"
#. heuristic: if /proc/version exists, then probably proc is mounted
#. proc mounted?
-#: mount/mount.c:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s r upptagen"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc r redan monterad"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s r redan monterad eller %s r upptagen"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: monteringspunkten %s finns inte"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: monteringspunkten %s r en symbolisk lnk till ingenstans"
-#: mount/mount.c:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: specialenheten %s finns inte"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7992,64 +8030,82 @@ msgstr ""
"mount: specialenheten %s finns inte\n"
" (ett skvgsprefix r inte en katalog)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s r inte redan monterad, eller felaktig flagga"
-#: mount/mount.c:959
-#, c-format
+#: mount/mount.c:966
+#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: fel filsystemstyp, felaktig flagga, felaktigt superblock\n"
" p %s, codepage saknas, eller fr mnga monterade filsystem"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "monteringstabellen full"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: kan inte lsa superblock"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: oknd enhet"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr "mount: oknd filsystemstyp \"%s\""
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: du menade troligtvis %s"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: du menade kanske \"iso9660\"?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: du menade kanske \"vfat\"?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr "mount: %s har fel enhetsnummer eller s stds filsystemstypen %s inte"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, 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:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8058,48 +8114,48 @@ msgstr ""
"mount: krnan knner inte igen %s som en blockenhet\n"
" (kanske \"insmod drivrutin\"?)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s r ingen blockenhet (frsk kanske med \"-o loop\"?)"
-#: mount/mount.c:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s r ingen blockenhet"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "blockenhet "
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: kan inte montera %s%s som endast lsbar"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, 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:1066
+#: mount/mount.c:1078
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s r skrivskyddad, monterar som endast lsbar"
-#: mount/mount.c:1165
+#: mount/mount.c:1177
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:1171
+#: mount/mount.c:1183
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"
@@ -8107,22 +8163,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: frlgger \"%s\" till bakgrunden\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: ger upp \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s r redan monterad p %s\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8169,48 +8225,48 @@ msgstr ""
"Andra flaggor: [-nfFrsvw] [-o flaggor] [-p lsenordfd].\n"
"Sg man 8 mount fr mnga fler detaljer.\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: endast root kan gra det"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: ingen %s hittades - skapar den...\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: ingen sdan partition hittades"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: monterar %s\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "ingenting monterades"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: kan inte hitta %s i %s"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: kan inte hitta %s i %s eller %s"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount: kunde inte ppna %s, s UUID och ETIKETT-konvertering kan inte "
"utfras.\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: felaktig UUID"
#: mount/mount_guess_fstype.c:489
@@ -8326,16 +8382,16 @@ msgstr "nfs-anslut"
msgid "unknown nfs status return value: %d"
msgstr "oknt nfs-statusreturvrde: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "programfel i xstrndup-anrop"
-#: mount/swapon.c:54
-#, c-format
+#: mount/swapon.c:57
+#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"anvndning: %s [-hV]\n"
@@ -8343,7 +8399,7 @@ msgstr ""
" %s [-v] [-p prioritet] special ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8354,31 +8410,36 @@ msgstr ""
" %s -a [-v]\n"
" %s [-v] special ...\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s p %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: kan inte hitta \"_stext\" i %s\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: kan inte ta status p %s: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr "swapon: varning: %s har oskra rttigheter %04o, freslr %04o\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: Hoppar ver filen %s - den verkar ha hl.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr "Inte superanvndare.\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: kan inte ppna %s: %s\n"
@@ -8486,42 +8547,48 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t vfs-typer] [-O alternativ]\n"
" umount [-f] [-r] [-n] [-v] special | nod...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "Kan inte ppna "
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "Frsker avmontera %s\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "Kunde inte hitta %s i mtab\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s r inte monterad (enligt mtab)"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: det verkar som om %s r monterad flera gnger"
-#: mount/umount.c:587
+#: mount/umount.c:592
#, 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:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: montering av %s stmmer inte verens med fstab"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: endast %s kan avmontera %s frn %s"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: endast root kan gra det"
@@ -9992,9 +10059,6 @@ msgstr "Slut p minne vid vxande av buffert.\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "etikett"
-
#~ msgid "mount: the label %s occurs on both %s and %s - not mounted\n"
#~ msgstr "mount: etiketten %s frekommer p bde %s och %s - inte monterad\n"
diff --git a/po/tr.po b/po/tr.po
index 90e0cd966..6b3742e8a 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12j\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+0100\n"
"PO-Revision-Date: 2004-12-12 10:13+0300\n"
"Last-Translator: Nilgün Belma Bugüner <nilgun@superonline.com>\n"
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
@@ -157,7 +157,7 @@ msgstr "kullanımı: %s [ -n ] AYGIT\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -764,7 +764,7 @@ msgstr "düğüm sayısı çok fazla - en çok 512"
msgid "not enough space, need at least %lu blocks"
msgstr "yer yetersiz, en az %lu blok gerekiyor"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Aygıt: %s\n"
@@ -838,7 +838,7 @@ msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr ""
"Kullanımı: mkfs [-V] [-t dsySistTürü] [dsySist-seçenekleri] aygıt [uzunluk]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1076,7 +1076,7 @@ msgstr "bloklar denetlenirken erişim başarısız"
msgid "Weird values in do_check: probably bugs\n"
msgstr "do_check yapılırken tuhaf değerler: yazılım hatası olabilir\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "check_blocks işleminde erişim başarısız"
@@ -1133,65 +1133,87 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Sayfa uzunluğu olarak %d kullanılıyor (%d değil)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "yafta"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr ""
"Kullanımı: %s [-c] [-v0|-v1] [-pSayfaUzunluğu] /dev/isim [blokSayısı]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "çok fazla bozuk sayfa var"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Bellek yetersiz"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "1 bozuk sayfa\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, c-format
msgid "%lu bad pages\n"
msgstr "%lu bozuk sayfa\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: hata: Takas alanını koyacak yer yok mu?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: hata: %lu aygıtın boyutundan büyük (%lu)\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: hata: sürüm %d bilinmiyor\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: hata: takas alanı için en az %ldkB gerekiyor\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: uyarı: takas alanı %ldkB ile sınırlanıyor\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: hata: Takas alanını koyacak yer yok mu?\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "'%s' üzerinde takas aygıtı oluşturulmayacak"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "ölümcül: ilk sayfa okunabilir değil"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1204,24 +1226,24 @@ msgstr ""
"takas alanı oluşturulmadı. Burada mutlaka bir v0 takas alanı oluşturmak\n"
"istiyorsanız -f seçeneği ile bunu yapabilirsiniz.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "Takas alanı oluşturulamıyor: okunabilir değil"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Takas alanı sürüm %d, uzunluk = %llu kB olarak ayarlanıyor\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "takas alanında başa gidilemiyor"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "imza sayfası yazılamıyor"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "fsync hata verdi"
@@ -1263,57 +1285,62 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Kullanışsız"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Boş Alan"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Disk değiştirildi.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Bölümleme tablosunun doğru olarak güncellendiğinden emin olabilmek için\n"
"sistemi yeniden başlatın.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1325,309 +1352,309 @@ msgstr ""
"değişiklik yaptıysanız, lütfen cfdisk man sayfalarındaki\n"
"ek bilgileri okuyun.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "ÖLÜMCÜL HATA"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "cfdisk'ten çıkmak için herhangi bir tuşa basınız"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Disk sürücü üzerinde arama yapılamıyor"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "Disk sürücüsü okunamıyor"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "Disk sürücüsüne yazılamıyor"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Disk bölümü sayısı çok fazla"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "Disk bölümü sıfırıncı sektörden önce başlıyor"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "Disk bölümü sıfırıncı sektörden önce bitiyor"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "Disk bölümü disk sonundan sonra başlıyor"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "Disk bölümü disk sonundan sonra bitiyor"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr "Disk bölümü son kısmî silindir içinde bitiyor"
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "mantıksal bölümler sıralamaya uygun değil"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "mantıksal bölümler içiçe geçmiş"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "büyütülen mantıksal bölümler içiçe geçiyor"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!!! Ek disk bölümü içermeyen mantıksal bölüm oluşturulurken iç hata !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr "Burada mantıksal bölüm oluşturulamıyor -- iki ek bölüm oluşacaktı"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Menü öğesi çok uzun. Menü tuhaf görünebilir."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Menü yönsüz. Yatay olarak öntanımlanıyor."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Kuraldışı tuş"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Devam etmek için bir tuşa basınız"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Birincil"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Yeni birincil disk bölümü oluşturur"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Mantıksal"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
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:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Vazgeç"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "Bir disk bölümü oluşturulmaz"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! İç hata !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Alan (MB):"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Başlangıç"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Disk bölümünü boş alanın başlangıcına ekler"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Son"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Disk bölümnü boş alanın sonuna ekler"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Ek disk bölümünü oluşturacak yer yok"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
msgid "No partition table.\n"
msgstr "Disk bölümleme tablosu yok.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
msgid "No partition table. Starting with zero table."
msgstr "Disk bölümleme tablosu yok. Boş tablo ile başlanacak."
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
msgid "Bad signature on partition table"
msgstr "Disk bölümleme tablosundaki imza kötü"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
msgid "Unknown partition table type"
msgstr "Disk bölümleme tablosu türü bilinmiyor"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
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:1574
+#: fdisk/cfdisk.c:1623
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:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "Disk açılamıyor"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
msgid "Opened disk read-only - you have no permission to write"
msgstr "Açılan disk salt-okunur - yazma izniniz yok"
-#: fdisk/cfdisk.c:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "Diskin toplam alanı hesaplanamıyor"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Birincil disk bölümü bozuk"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Mantıksal disk bölümü bozuk"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Uyarı!! Bu işlem disk üzerindeki veriyi yokedebilir!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
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:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "hayır"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "Disk bölümleme tablosu diske yazılmadı"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "evet"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Lütfen ya `evet´ ya da `hayır´ yazınız"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Disk bölümleme tablosu diske yazılıyor..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Disk bölümleme tablosu diske yazıldı"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
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:1857
+#: fdisk/cfdisk.c:1906
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:1859
+#: fdisk/cfdisk.c:1908
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:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Dosya ismini girin ya da ENTER tuşuna basın: "
-#: fdisk/cfdisk.c:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "'%s' dosyası açılamıyor"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Sabit Disk: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Sektör 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Sektör %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Yok "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Bir/Man"
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Birincil "
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Mantıksal "
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Bilinmeyen"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Açılış"
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
msgid "None"
msgstr "Hiçbiri"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "%s için Disk Bölümleme Tablosu\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
msgid " First Last\n"
msgstr " Bölüm İlk Son Sektör Dosya\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
@@ -1635,7 +1662,7 @@ msgstr ""
" # Türü Sektör Sektör Başl Sayısı Sistemi Türü "
"Flama\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1644,470 +1671,470 @@ msgstr ""
"------\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " --Başlangıç--- ----Bitiş----- Başlangıç Sektör\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
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:2144
+#: fdisk/cfdisk.c:2193
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- --------- ---------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "Ham"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Tablo temel veri biçemi olarak yazılır"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Sektör"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Tabloyu sektörlere dağılımına göre yazar"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Tablo"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Disk bölümleme tablosunu yazar"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "Tablo yazılamıyor"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "cfdisk Yardım Ekranı"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
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:2211
+#: fdisk/cfdisk.c:2260
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:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr " "
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Telif Hakkı (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr " Komut Anlamı"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr " ----- ------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
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:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Seçilen disk bölümünü siler"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Silindir, kafa, sektör/İz parametrelerini değiştirir"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
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:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " kullanılabilir."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Bu yardım ekranını gösterir"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
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:2225
+#: fdisk/cfdisk.c:2274
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:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " uyumsuzluk oluşturabilir."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Boş alanda yeni bir disk bölümü oluşturur"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
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:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr ""
" Disk bölümleme tablosunu farklı biçemlerde elde edebilirsiniz."
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " Bu biçemler:"
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
msgid " r - Raw data (exactly what would be written to disk)"
msgstr " r - Temel veri (verinin diske yazılan biçemi)"
-#: fdisk/cfdisk.c:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Disk bölümlerinin sektörlere dağılımını gösterir"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - Geleneksel disk bölümleme tablosu"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr ""
" q Disk bölümleme tablosu diskteki yerine kaydedilmeden çıkılır"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Dosya sistemi türünü değiştirir"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u Disk bölümü boyunun birimini değiştirir"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " MB, sektör, silindir birimleri sırayla yer değiştirir"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
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:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " Diskteki veriyi yanlışlıkla kaybetmemek için "
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
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:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " yazdırmayacağınıza kesin karar verebilirsiniz"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
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:2243
+#: fdisk/cfdisk.c:2292
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:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Ekranı tazeler"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Bu yardım ekranını gösterir"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
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:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "olarak kullanabilirsiniz."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Silindir"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Silindir geometrisini değiştirir"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Kafa"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Kafa geometrisini değiştirir"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Sektör geometrisini değiştirir"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Tamam"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Geometri değişikliği yapıldı"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Silindir sayısını verin: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Silindir sayısı kuraldışı"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Kafa sayısını verin: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Kafa sayısı kuraldışı"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "sektör/iz sayısını verin: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "sektör sayısı kuraldışı"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Dosya sistemi türünü verin: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "Dosya sistemi türü boş olarak değiştirilemez"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "Dosya sistemi türü ek olarak değiştirilemez"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Ne?(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", NC"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "NC"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Bir/Man"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Bilinmeyen (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Sabit Disk: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Boyut: %lld bayt, %lld MB"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Boyut: %lld bayt, %lld.%lld GB"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Kafa: %d Sektör/İz: %d Silindir: %lld "
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "İsim"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Flama"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Bölüm Türü"
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "DS Türü"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Etiket]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
msgid " Sectors"
msgstr " Sektör "
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
msgid " Cylinders"
msgstr " Silindir"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
msgid " Size (MB)"
msgstr " Boy (MB) "
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
msgid " Size (GB)"
msgstr " Boy (GB) "
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Açılış"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
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:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Sil"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Seçilen disk bölümünü kaldırır"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Geometri"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Disk geometrisini değiştirir (uzmanlar için)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Yardım"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Yardım ekranını gösterir"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Sığdır"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
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:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Yeni"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Boş alanda yeni bir disk bölümü oluşturur"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Yaz"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
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:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Çık"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Disk bölümleme tablosunu diske kaydetmeden çıkar"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Türü"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
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:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Birim"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
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:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Kaydet"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
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:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "Bu disk bölümüne açılış kaydı yapılamaz"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "Bir boş disk bölümü silinemez"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "Bu disk bölümü sığdırılamıyor"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Bu disk bölümü kullanışsız"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Bu disk bölümü zaten kullanımda"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
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:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "Başka disk bölümü yok"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Kuraldışı komut"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2384,20 +2411,20 @@ msgstr " f disk bölümleme sırasını düzeltir"
msgid "You must set"
msgstr "Belirtilmeli"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "kafa"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "sektör"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "silindir"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2406,11 +2433,11 @@ msgstr ""
"%s%s.\n"
"Bunu fazladan işlevler menüsünden yapabilirsiniz.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " ve "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2429,28 +2456,28 @@ msgstr ""
"2) diğer işletim sistemlerinin önyükleme ve disk bölümleme yazılımları\n"
" (örn. DOS FDISK, OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Birincil ek disk bölümünde hizalama hatalı\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Uyarı: %d disk bölümleme tablosunda fazladan bağ imleyici\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr "Uyarı: %d disk bölümleme tablosundaki fazladan veri yoksayılıyor\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2461,16 +2488,16 @@ msgstr ""
"değişiklikler\n"
"bellekte bekleyecek. Aksi takdirde, önceki içerik kurtarılamayacak.\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Bilgi: sektör uzunluğu %d (%d değil)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "Disk bölümleme tablosunu diskteki yerine kaydetme yetkiniz yok.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
@@ -2478,7 +2505,7 @@ msgstr ""
"Bu disk hem DOS hem de BSD olarak imli.\n"
"BSD kipine geçmek için 'b' komutunu verin.\n"
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
@@ -2486,16 +2513,16 @@ msgstr ""
"Aygıt ne geçerli bir DOS disk bölümleme tablosu ne de Sun, SGI ya da OSF "
"disk etiketleri içeriyor.\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "İç hata\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "Fazladan ek disk bölümü %d yoksayılıyor\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2504,7 +2531,7 @@ msgstr ""
"Uyarı: geçersiz bayrak 0x%04x %d. disk bölümleme tablosunda w(yaz) ile "
"düzeltilmiş olacak\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2512,78 +2539,78 @@ msgstr ""
"\n"
"Dosya sonuna rastlandı - çıkılıyor..\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Onaltılık kod (kod listesi için L tuşlayın):"
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%u-%u, öntanımlı %u): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, c-format
msgid "Using default value %u\n"
msgstr "Öntanımlı değer %u kullanılıyor\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Değer kapsamdışı.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Disk bölümü numarası"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Uyarı: %d disk bölümünün türü boş görünüyor\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, c-format
msgid "Selected partition %d\n"
msgstr "Seçilen disk bölümü %d\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
msgid "No partition is defined yet!\n"
msgstr "Tanımlı bir disk bölümü henüz yok!\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr "Tüm birincil bölümler zaten tanımlı!\n"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "silindir"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "sektör"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "gösterme/girdi birimi %s olarak değiştiriliyor\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "UYARI: %d disk bölümü bir ek disk bölümü\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "DOS uyumluluk flaması etkin\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "DOS uyumluluk flaması etkin değil\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "%d disk bölümü henüz yok!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2595,7 +2622,7 @@ msgstr ""
"muhtemelen pek uygun olmayacaktır. 'd' komutunu\n"
"kullanarak bir disk bölümünü silebilirsiniz.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2603,7 +2630,7 @@ msgstr ""
"Bir disk bölümünü bir ek bölümün içinde ya da herhangi bir yerde\n"
"değiştiremezsiniz. Önce silmeniz gerekir.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2612,7 +2639,7 @@ msgstr ""
"Linux'a uygun olsa da SunOS/Solaris gerektirdiğinden,\n"
"3. disk bölümünün diskin tamamı (5) olarak bırakıldığı kabul ediliyor.\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2621,54 +2648,54 @@ msgstr ""
"IRIX gerektirdiğinden, 11. disk bölümü tüm 'volume' (6) ve\n"
"9. disk bölümü 'volume' başlığı (6) olarak bırakıldığı kabul ediliyor.\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "%d disk bölümünün sistem türü %x (%s) olarak değiştirildi\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr ""
"%d disk bölümü farklı fiziksel/mantıksal başlangıçlara sahip (Linux "
"değil?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " fiziksel=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "mantıksal=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "%d disk bölümü farklı fiziksel/mantıksal bitişlere sahip:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "%i disk bölümünün başlangıcı silindir sınırları dışında:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "(%d, %d, 1) olmalıydı\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "%i. disk bölümü silindir sınırında bitmiyor.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "(%d, %d, %d) olmalıydı\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
@@ -2677,7 +2704,7 @@ msgstr ""
"\n"
"Disk %s: %ld MB %lld bayt\n"
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, c-format
msgid ""
"\n"
@@ -2686,17 +2713,17 @@ msgstr ""
"\n"
"Disk %s: %ld.%ld GB, %lld bayt\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr "%d kafa, %d sektör/iz, %d silindir"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ", toplam %llu sektör"
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
@@ -2705,7 +2732,7 @@ msgstr ""
"Birimler = %s / %d * %d = %d bayt\n"
"\n"
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2713,7 +2740,7 @@ msgstr ""
"Hiçbir şey yapılmadı. Sıralama zaten doğru.\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
@@ -2723,16 +2750,16 @@ msgstr ""
"Galiba yanlış aygıt seçtiniz.\n"
"\n"
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Açılış Başlangıç Bitiş BlokSayısı Kml Sistem\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Aygıt"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2740,7 +2767,7 @@ msgstr ""
"\n"
"Disk bölümleme tablosu girdileri diskteki sırasında değil\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2751,96 +2778,96 @@ msgstr ""
"Disk %s: %d kafa, %d sektör, %d silindir\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "No AF Hd Skt Sln Hd Skt Sld Başlangıç Boy Kml\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Uyarı: %d disk bölümü 0. sektörü içeriyor\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr ""
"%d disk bölümü: kafa sayısı %d en çok olabileceği %d değerinden büyük\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr ""
"%d disk bölümü: sektör sayısı %d en çok olabileceği %d değerinden büyük\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr ""
"%d disk bölümü: silindir sayısı %d en çok olabileceği %d değerinden büyük\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr "%d disk bölümü: önceki sektör sayısı %d toplam %d ile çelişiyor\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Uyarı: %d disk bölümünün veri-başlangıcı hatalı\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Uyarı: %d ile %d disk bölümleri birbirine girmiş.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Uyarı: %d disk bölümü boş\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "Mantıksal disk bölümü %d tamamen %d disk bölümünün içinde değil\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr ""
"Tahsis edilen sektör sayısı %d en fazla olması gereken %lld değerinden "
"büyük\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, c-format
msgid "%lld unallocated sectors\n"
msgstr "%lld sektör kullanılmamış\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr "%d disk bölümü zaten atanmış. Yeniden eklemeden önce silmelisiniz.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "İlk %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "Sektör %d zaten kullanımda\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Boşta sektör yok\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Son %s, +size, +sizeM veya +sizeK"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2852,24 +2879,24 @@ msgstr ""
"\tbir DOS disk bölümleme tablosu oluşturun. (o ile)\n"
"\tUYARI: Bu işlem ile diskteki tüm bilgile kaybalacaktır.\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "Oluşturulabilecek disk bölümlerinin tümü oluşturuldu\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr ""
"Önce bazı disk bölümlerini silip ondan sonra ek disk bölümünü eklemelisiniz\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
msgid "All logical partitions are in use\n"
msgstr "Tüm mantıksal bölümler kullanımda\n"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
msgid "Adding a primary partition\n"
msgstr "Bir birincil disk bölümü ekleniyor\n"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2880,20 +2907,20 @@ msgstr ""
" %s\n"
" p birincil disk bölümü (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l mantıksal (5 veya üzeri)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e ek"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Tür '%c' için disk bölümü numarası geçersiz\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2901,11 +2928,11 @@ msgstr ""
"Disk bölümleme tablosu zaten değişmişti!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Disk bölümleme tablosunu yeniden okumak için ioctl() çağrılıyor.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2918,7 +2945,7 @@ msgstr ""
"Çekirdek hala eski tabloyu kullanıyor.\n"
"Yeni tablo makinayı yeniden başlattığınızda geçerli olacak.\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2930,65 +2957,72 @@ msgstr ""
"değişiklik yaptıysanız, lütfen fdisk man sayfalarındaki\n"
"ek bilgileri okuyun.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "%s kapatılırken hata\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Diskler eşzamanlanıyor.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "%d disk bölümü veri alanına sahip değil\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Yeni veri başlangıcı"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Uzman komutları (yardım için m): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Silindir sayısı"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Kafa sayısı"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Sektör sayısı"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr "Uyarı: Sektör hizalaması DOS uyumlu olarak yapılıyor\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "%s diski geçerli bir disk bölümleme tablosu içermiyor\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "%s açılamıyor\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "%s açılamıyor\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: komut bilinmiyor\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr ""
"Bu çekirdek sektör uzunluğunu kendisi bulur. - -b seçeneği yoksayıldı\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -2997,17 +3031,17 @@ msgstr ""
"olmalıydı\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr ""
"%s üzerinde OSF/1 disk etiketi saptandı, disk etiketi kipine giriliyor.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Komut (yardım için m): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -3016,15 +3050,15 @@ msgstr ""
"\n"
"Şu anki önyükleme dosyası: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Lütfen yeni açılış dosyasının ismini giriniz:"
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "Açılış dosyası değiştirilmedi\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3402,7 +3436,7 @@ msgstr "Linux takas"
msgid "Linux native"
msgstr "Linux doğal"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3738,7 +3772,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linux raid otosaptama"
@@ -4107,8 +4141,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4159,149 +4193,154 @@ msgstr "Linux ek"
msgid "NTFS volume set"
msgstr "NTFS bölüm kümesi"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "IBM Thinkpad hibernation"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr "Darwin UFS"
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr "Darwin boot"
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI ds"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI takas"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "Önyükleme sihirbazı gizli"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr "Solaris boot"
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
msgid "Solaris"
msgstr "Solaris"
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "DS-olmayan veri"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Dell Uygulaması"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS erişimi"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS fs"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "Linux/PA-RISC önyüklemesi"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS ikincil"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5323,123 +5362,123 @@ msgstr "getopt (gelişmiş) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "iç hata, yazara bildirin."
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "MILO'dan açıldı\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Ruffian BCD clock\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "saatportu 0x%x'e ayarlandı\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "funky TimeOfYear!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, 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:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "/dev/port açılamıyor: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
msgid "I failed to get permission because I didn't try.\n"
msgstr "Denenmediğinden erişim izinleri alınamadı.\n"
-#: hwclock/cmos.c:601
+#: hwclock/cmos.c:602
#, 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:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Size root yetkileri gerekli.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Donanım saatinin %s de tutulduğu varsayılıyor.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "yerel"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Uyarı: adjtime dosyasındaki üçüncü satır anlaşılamadı\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Gereken: `UTC', `LOCAL' ya da hiçbiri.)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Son sapma ayarı 1969 dan sonraki %ld. saniyede yapıldı\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Son düzeltme 1969 dan sonraki %ld. saniyede yapıldı\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "Donanım saati %s den beri açık\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "bilinmeyen"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "saat tiki için bekleniyor...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "... saat tiki alındı\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr "Donanım saatinde geçersiz değerler: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Donanım zamanı: %4d/%.2d/%.2d %.2d:%.2d:%.2d = 1969 yılından beri %ld "
"saniye\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Donanım saatinden okunan: %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Donanım Saati %.2d:%.2d:%.2d = 1969 dan beri %ld saniye olarak ayarlanıyor\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Saat değişmeyecek - sadece test ediliyor.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5448,7 +5487,7 @@ msgstr ""
"Başlangıç zamanından beri geçen zaman %.6f saniye oldu.\n"
"Gecikme sonraki tam saniyeye kadar olandan daha fazla.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5456,20 +5495,20 @@ msgstr ""
"Donanım saati yazmaçları hem geçersiz (ayın 50. günü gibi) hem de elde "
"edilebilir olmayan bir aralıkta (2500 yılı gibi) değerler içeriyor.\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f saniye\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "--date seçeneği belirtilmemiş.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "--date ile verilen argüman çok uzun\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5477,22 +5516,22 @@ msgstr ""
"--date seçeneğinin değeri geçersiz.\n"
"Ayrıca tırnak işaretleri de içeriyor.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Verilen date komutu: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr ""
"'date' uygulaması /bin/sh kabuğunda çalıştırılamıyor. popen() başarısız"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "date komutunun sonucu = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5507,7 +5546,7 @@ msgstr ""
"Sonuç:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5524,12 +5563,12 @@ msgstr ""
"Sonuç:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "tarih dizgesi %s 1969 dan beri %ld saniyeye eşittir.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5537,33 +5576,33 @@ msgstr ""
"Donanım Saati geçerli bir zaman değeri içermediğinden Sistem Zamanı o değere "
"ayarlanamaz.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "settimeofday çağrısı:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr "Test kipinde çalışıldığından sistem saati değişmiyor.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr "Sistem saatinin ayarlanması root yetkisindedir.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "settimeofday() başarısız"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5571,7 +5610,7 @@ msgstr ""
"Donanım saatinin önceki değerleri bozuk olduğundan sapma faktörü "
"ayarlanamıyor.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
@@ -5579,7 +5618,7 @@ msgstr ""
"Son düzeltme zamanı sıfır olduğndan sapma faktörü ayarsız,\n"
"yani geçmiş hatalı ve bir düzeltme başlangıcı gerekiyor.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5587,7 +5626,7 @@ msgstr ""
"Son düzeltmeden beri 1 günden az zaman geçtiğinden sapma faktörü "
"ayarlanamıyor.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5598,21 +5637,21 @@ msgstr ""
"saniye saptı.\n"
"Sapma faktörü %4$f saniye/gün olarak ayarlanıyor\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "Son ayarlamadan beri %d saniye geçti\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr "%d saniye girmek gerekli ve zaman %.6f saniye öncesine ait\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "adjtime dosyası test kipinde olunduğundan güncellenmiyor.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5621,33 +5660,33 @@ msgstr ""
"Aşağıdaki %s e yazılmalı:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Sapma ayar parametreleri güncellenmedi.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr "Donanım saati geçerli bir zaman içermediğinden ayarlanamıyor.\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr "Gereken ayar bir saniyenin altında olduğundan saat ayarlanmıyor.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "%s kullanarak.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Kullanılabilir bir saat arayüzü yok.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "Sistem saati ayarlanamıyor.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5658,16 +5697,16 @@ msgstr ""
"değeri saklar.\n"
"hwclock'un bu kopyası bir Alpha için derlenmemiş. Bir şey yapılmadı.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "Çekirdekten dönemsellik değeri alınamıyor.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "Çekirdek dönemsellik değerini %lu varsayıyor\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5675,16 +5714,16 @@ msgstr ""
"Dönemsellik değerinin ayarlanabilmesi için, ayarlanacak değeri 'epoch' "
"seçeneği ile vermelisiniz.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "Dönemsellik %d olarak ayarlanmayacak - sadece test ediliyor.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "Çekirdekte dönemsellik değeri ayarlanamıyor.\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5743,7 +5782,7 @@ msgstr ""
" --noadjfile /etc/adjtime okunmaz. Ya --utc ya da --localtime kullanmak\n"
" gerekir.\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5752,12 +5791,12 @@ msgstr ""
" Alpha'nızın hwclock türü belirtilir\n"
" (hwclock(8) man sayfasına bakınız)\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s seçeneği argüman almaz. %d verildi.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
@@ -5765,7 +5804,7 @@ msgstr ""
"Çok sayıda işlev belirttiniz.\n"
"Bir defada sadece bir işlev uygulanabilir.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5774,7 +5813,7 @@ msgstr ""
"%s: --utc ve --localtime seçenekleri birbiriyle çelişiyor. İkisi de "
"belirtilmiş.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5783,24 +5822,24 @@ msgstr ""
"%s: --adjust ve --noadjfile seçenekleri birbiriyle çelişir.\n"
"Siz ikisini de belirtmişsiniz.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr "%s: --noadjfile ile ya --utc ya da --localtime belirtilmelidir\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "Zaman ayarlama kullanımdışı. Saat ayarlanamaz.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Donanım saati sadece root tarafından değiştirilebilir.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Sistem saati sadece root tarafından değiştirilebilir.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
@@ -5808,11 +5847,11 @@ msgstr ""
"Çekirdekteki Donanım Saati dönemsellik değeri sadece root tarafından "
"değiştirilebilir.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr "Bilinen her hangi bir yöntemle Donanım Saatine erişilemiyor.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
@@ -5820,101 +5859,101 @@ 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:54
+#: hwclock/kd.c:55
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:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "KDGHWCLK ioctl zamanı okumada başarısız"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Zamanı değiştirmek için zamanaşımı bekleniyor.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "KDGHWCLK ioctl çevrim içinde zamanı okumada başarısız"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "ioctl() %s den zamanı okuyamadı"
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "ioctl KDSHWCLK başarısız"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "/dev/tty1 veya /dev/vc/1 açılamıyor"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "KDGHWCLK ioctl başarısız"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "%s için open() işlevi hata verdi"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "ioctl() %s den zaman okumada başarısız\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "%s den zamanı değiştirmek için çevrim içinde bekleniyor\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s için kesme işlevleri yok."
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "read() %s den saat darbesi beklerken hata verdi"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "select() %s den saat darbesi beklerken hata verdi"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "select() %s den saat darbesi beklerken zamanaşımına uğradı\n"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "ioctl() %s den güncelleme kesmelerini durduramadı"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr "ioctl() %s den güncelleme kesmelerini açması gerekirken hata verdi"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "ioctl() %s den zamanı ayarlayamadı.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "ioctl(%s) başarıldı.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "%s açılamadı"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5925,17 +5964,17 @@ msgstr ""
"üzerinden Linux 'rtc' aygıt sürücüsüne erişilmelidir. Bu dosya sistemde "
"yok.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "%s açılamıyor"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "ioctl(RTC_EPOCH_READ) %s için başarısız"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr "RTC_EPOCH_READ ioctl ile dönemsellik %ld %s den okunabilir.\n"
@@ -5943,24 +5982,24 @@ msgstr "RTC_EPOCH_READ ioctl ile dönemsellik %ld %s den okunabilir.\n"
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr ""
"Dönemsellik değerinin başlangıcı 1900 yılından önce olamaz. %ld istendi.\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "RTC_EPOCH_SET ioctl ile dönemsellik %ld %s den ayarlanıyor.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr "%s için çekirdek aygıt sürücüsünde RTC_EPOCH_SET ioctl yok.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "ioctl(RTC_EPOCH_SET) %s için hata verdi"
@@ -6178,7 +6217,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Parola: "
@@ -6984,36 +7023,36 @@ msgstr "Kalan dosya istemleri ayrılıyor..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: %s ayrılamadı: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Tek kullanıcılı kip başlatılıyor.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr "Tek kullanıcılı kabuk çalıştırılamadı\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "Tek kullanıcılı kabuğun ast sürece alınamadı\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "fifo açılırken hata\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr "/dev/initctl üstünde close-on-exec ayarlanırken hata"
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "uç uygulama çalıştırılırken hata\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "uç uygulama ast sürece alınırken hata\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -7021,35 +7060,35 @@ msgstr ""
"\n"
"Parola yanlış.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "dosya yolu durum bilgileri alınamadı\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "dosya yolu durum bilgileri alınamadı\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "dizine geçilemedi\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "ast süreç oluşturulamadı\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "çalıştırma başarısız\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "inittab açılamıyor\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "Ya TERM boş ya da tty durum bilgileri alınamıyor\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "servis durdurulurken hata: \"%s\""
@@ -7622,17 +7661,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:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "uyarı: %s okunurken hata: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "uyarı: %s açılamıyor: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: %s açılamadı - yerine %s kullanılıyor\n"
@@ -7641,39 +7680,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:472
+#: mount/fstab.c:484
#, 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:487
+#: mount/fstab.c:499
#, 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:499
+#: mount/fstab.c:511
#, 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:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "%s kilit dosyası kilitlenemiyor: %s\n"
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "%s kilit dosyası kilitlenemiyor: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "zaman aşımı"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7682,22 +7721,22 @@ msgstr ""
"%s bağı oluşturulamıyor\n"
"Kalmış bir kilit dosyası olabilir mi?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "%s açılamıyor (%s) - mtab güncel değil"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "%s yazılırken hata: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "%s için kip değiştirilirken hata: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "%s %s olarak değiştirilemiyor: %s\n"
@@ -7766,26 +7805,26 @@ msgstr "%s: 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:341
+#: mount/lomount.c:340
#, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%llu): başarılı\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: %s aygıtı silinemiyor: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): başarılı\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
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:407
+#: mount/lomount.c:406
#, c-format
msgid ""
"usage:\n"
@@ -7801,12 +7840,11 @@ msgstr ""
"kullanılmamışlar\n"
" %s [ -e şifreleme ] [ -o konum ] {-f|loop_aygıtı} dosya # ayarlama\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "yeterli bellek yok"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
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"
@@ -7824,163 +7862,163 @@ msgstr "[mntent]: %d satırı %s dosyasında hatalı%s\n"
msgid "; rest of file ignored"
msgstr "; dosyanın kalanı yoksayıldı"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, 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:380
+#: mount/mount.c:387
#, 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:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: %s yazmak için açılamıyor: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: %s yazılırken hata: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: %s kipi değiştirilirken hata: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s takas alanı gibi görünüyor - bağlanmadı"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "mount başarısız"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, 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:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: loop aygıtı iki kere belirtilmiş"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: türü iki defa belirtilmiş"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: loop aygıtı ayarları atlanıyor\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, 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:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: loop aygıtı ayarları yapılamadı\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: loop aygıtı ayarları tamamlandı\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: %s açılamıyor: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
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:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: hızı ayarlamak için %s açılamıyor"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: hız ayarlanamıyor: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: ast süreç oluşturulamıyor: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
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:884
+#: mount/mount.c:891
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:895
+#: mount/mount.c:902
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:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: dosya sistemi türünü belirtmelisiniz"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: bağlanamadı"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: bağlama noktası %s bir dizin değil"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: erişim engellendi"
-#: mount/mount.c:911
+#: mount/mount.c:918
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:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s meşgul"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc zaten bağlı"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, 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:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: bağlama noktası %s yok"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, 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:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: özel aygıt %s yok"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7989,54 +8027,72 @@ msgstr ""
"mount: özel aygıt %s yok\n"
" (dosya yolu öneki bir dizin değil)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, 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:959
-#, c-format
+#: mount/mount.c:966
+#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: dosya sistemi türü yanlış, seçenek yanlış, %s üzerinde superblok\n"
" hatalı, karakter kümesi eksik, ya da çok sayıda bağlı dosya sistemi\n"
" olabilir"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "bağ tablosu dolu"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: superblok okunamıyor"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: aygıt bilinmiyor"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr "mount: dosya sistemi türü '%s' bilinmiyor"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: herhalde %s kastettiniz"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: 'iso9660' kastetmiş olabilir misiniz?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: 'vfat' kastetmiş olabilir misiniz?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8044,14 +8100,14 @@ msgstr ""
"desteklenmiyor"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, 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:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8060,48 +8116,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:1034
+#: mount/mount.c:1046
#, 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:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s bir blok aygıtı değil"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "blok aygıtı "
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: %s%s salt-okunur bağlanamıyor"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, 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:1066
+#: mount/mount.c:1078
#, 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:1165
+#: mount/mount.c:1177
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:1171
+#: mount/mount.c:1183
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"
@@ -8109,22 +8165,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: \"%s\" artalana alınıyor\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: \"%s\" bırakılıyor\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s zaten %s üzerinde bağlı\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8175,46 +8231,46 @@ 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:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: bunu sadece root yapabilir"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: %s yok - oluşturuluyor...\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: böyle bir disk bölümü yok"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: %s bağlanıyor\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "hiçbir şey bağlanmadı"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: %s %s içinde bulunamıyor"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: %s %s ya da %s içinde bulunamıyor"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr "mount: %s açılamadı, UUID ve ETİKET dönüşümü yapılmış olmayabilir.\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: UUID hatalı"
#: mount/mount_guess_fstype.c:489
@@ -8330,16 +8386,16 @@ msgstr "nfs bağlantısı"
msgid "unknown nfs status return value: %d"
msgstr "bilinmeyen nfs durum sonuç değeri: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "xstrndup çağrısında yazılım hatası"
-#: mount/swapon.c:54
-#, c-format
+#: mount/swapon.c:57
+#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"kullanımı: %s [-hV]\n"
@@ -8353,7 +8409,7 @@ msgstr ""
" -p öncelik öncelik 0 ile 32767 arasında bir değerdir.\n"
"Takas öncelikleri için: 'man 2 swapon'\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8364,31 +8420,36 @@ msgstr ""
" %s -a [-v]\n"
" %s [-v] özel ...\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s %s üzerinde\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: \"_stext\" %s içinde bulunamıyor\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: %s durum bilgileri alınamıyor: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr "swapon: uyarı: %s güvencesiz izinler (%04o) içeriyor, %04o önerilir\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: %s atlanıyor - delikler içeriyor gibi görünüyor.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr "root değil.\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: %s açılamıyor: %s\n"
@@ -8511,42 +8572,48 @@ 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:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "Açılamıyor"
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "%s sistemden ayrılmaya çalışılıyor\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "mtab içinde %s bulunamadı\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, 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:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: %s defalarca bağlanmış görünüyor"
-#: mount/umount.c:587
+#: mount/umount.c:592
#, 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:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: %s bağı fstab ile çelişiyor"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: sadece %1$s %3$s aygıtını %2$s dizininden ayırabilir"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: bu sadece root tarafından yapılabilir"
@@ -10003,9 +10070,6 @@ msgstr "Tampon büyütülürken bellek yetmedi.\n"
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "yafta"
-
#~ msgid "mount: the label %s occurs on both %s and %s - not mounted\n"
#~ msgstr "mount: etiket %s hem %s hem de %s için görünüyor - bağlanmadı\n"
diff --git a/po/uk.po b/po/uk.po
index 1460c84db..96ca4b404 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: util-linux 2.12\n"
-"POT-Creation-Date: 2004-12-15 19:42+0100\n"
+"POT-Creation-Date: 2004-12-22 11:00+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"
@@ -153,7 +153,7 @@ msgstr "використання: %s [ -n ] пристрій\n"
#: disk-utils/fdformat.c:116 disk-utils/fsck.minix.c:1249
#: disk-utils/isosize.c:179 disk-utils/mkfs.bfs.c:119 disk-utils/mkfs.c:55
#: disk-utils/mkfs.cramfs.c:778 disk-utils/mkfs.minix.c:626
-#: disk-utils/mkswap.c:462 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1175
+#: disk-utils/mkswap.c:523 disk-utils/setfdprm.c:128 hwclock/hwclock.c:1176
#: misc-utils/cal.c:313 misc-utils/ddate.c:180 misc-utils/kill.c:189
#: misc-utils/rename.c:79 misc-utils/script.c:143
#, c-format
@@ -762,7 +762,7 @@ msgstr "надто багато вузлів - максимум 512"
msgid "not enough space, need at least %lu blocks"
msgstr "не вистачає простору, потрібно принаймні %lu блоків"
-#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226
+#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2232
#, c-format
msgid "Device: %s\n"
msgstr "Пристрій: %s\n"
@@ -835,7 +835,7 @@ msgstr "помилка закривання %s"
msgid "Usage: mkfs [-V] [-t fstype] [fs-options] device [size]\n"
msgstr "Використання: mkfs [-V] [-t типФС] [параметри-ФС] пристрій [розмір]\n"
-#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:345 getopt/getopt.c:89
+#: disk-utils/mkfs.c:90 fdisk/cfdisk.c:347 getopt/getopt.c:89
#: getopt/getopt.c:99 login-utils/wall.c:237
#, c-format
msgid "%s: Out of memory!\n"
@@ -1069,7 +1069,7 @@ msgstr "помилка позиціювання при перевірці бло
msgid "Weird values in do_check: probably bugs\n"
msgstr "Незрозуміле значення у функції do_check: можливо помилка\n"
-#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:372
+#: disk-utils/mkfs.minix.c:565 disk-utils/mkswap.c:428
msgid "seek failed in check_blocks"
msgstr "помилка позиціювання у функції check_blocks"
@@ -1126,64 +1126,86 @@ msgstr ""
msgid "Assuming pages of size %d (not %d)\n"
msgstr "Передбачається розмір сторінки %d (а не %d)\n"
-#: disk-utils/mkswap.c:326
-#, c-format
-msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/name [blocks]\n"
+#: disk-utils/mkswap.c:234
+msgid "Bad swap header size, no label written.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:244
+msgid "Label was truncated.\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:250
+#, fuzzy
+msgid "no label, "
+msgstr "етикетка"
+
+#: disk-utils/mkswap.c:258
+msgid "no uuid\n"
+msgstr ""
+
+#: disk-utils/mkswap.c:382
+#, fuzzy, c-format
+msgid "Usage: %s [-c] [-v0|-v1] [-pPAGESZ] [-L label] /dev/name [blocks]\n"
msgstr "Використання: %s [-c] [-v0|-v1] [-pPAGESZ] /dev/назва [блоки]\n"
-#: disk-utils/mkswap.c:349
+#: disk-utils/mkswap.c:405
msgid "too many bad pages"
msgstr "надто багато пошкоджених сторінок"
-#: disk-utils/mkswap.c:363 misc-utils/look.c:183 misc-utils/setterm.c:1145
+#: disk-utils/mkswap.c:419 misc-utils/look.c:183 misc-utils/setterm.c:1145
#: text-utils/more.c:1975 text-utils/more.c:1986
msgid "Out of memory"
msgstr "Недостатньо пам'яті"
-#: disk-utils/mkswap.c:380
+#: disk-utils/mkswap.c:436
msgid "one bad page\n"
msgstr "одна пошкоджена сторінка\n"
-#: disk-utils/mkswap.c:382
+#: disk-utils/mkswap.c:438
#, fuzzy, c-format
msgid "%lu bad pages\n"
msgstr "%d пошкоджених сторінок\n"
-#: disk-utils/mkswap.c:502
+#: disk-utils/mkswap.c:574
#, c-format
msgid "%s: error: Nowhere to set up swap on?\n"
msgstr "%s: помилка: Не вказано де створити підкачку?\n"
-#: disk-utils/mkswap.c:520
+#: disk-utils/mkswap.c:592
#, fuzzy, c-format
msgid "%s: error: size %lu is larger than device size %lu\n"
msgstr "%s: помилка: розмір %ld більший ніж розмір пристрою %d\n"
-#: disk-utils/mkswap.c:539
+#: disk-utils/mkswap.c:615
#, c-format
msgid "%s: error: unknown version %d\n"
msgstr "%s: помилка: невідома версія %d\n"
-#: disk-utils/mkswap.c:546
+#: disk-utils/mkswap.c:622
#, c-format
msgid "%s: error: swap area needs to be at least %ldkB\n"
msgstr "%s: помилка: область підкачки повинна бути принаймні %ldкб\n"
-#: disk-utils/mkswap.c:563
+#: disk-utils/mkswap.c:639
#, c-format
msgid "%s: warning: truncating swap area to %ldkB\n"
msgstr "%s: попередження: область підкачки відсікається до %ldкб\n"
-#: disk-utils/mkswap.c:577
+#: disk-utils/mkswap.c:645
+#, fuzzy, c-format
+msgid "%s: error: label only with v1 swap area\n"
+msgstr "%s: помилка: Не вказано де створити підкачку?\n"
+
+#: disk-utils/mkswap.c:660
#, c-format
msgid "Will not try to make swapdevice on '%s'"
msgstr "Не буде створено пристрій підкачки на '%s'"
-#: disk-utils/mkswap.c:586 disk-utils/mkswap.c:607
+#: disk-utils/mkswap.c:669 disk-utils/mkswap.c:690
msgid "fatal: first page unreadable"
msgstr "фатальна помилка: не вдається прочитати першу сторінку"
-#: disk-utils/mkswap.c:592
+#: disk-utils/mkswap.c:675
#, c-format
msgid ""
"%s: Device '%s' contains a valid Sun disklabel.\n"
@@ -1197,24 +1219,24 @@ msgstr ""
"на цьому розділі, тоді використовуйте параметр -f для примусового "
"створення.\n"
-#: disk-utils/mkswap.c:616
+#: disk-utils/mkswap.c:699
msgid "Unable to set up swap-space: unreadable"
msgstr "не вдається встановити простір підкачки: не вдається прочитати"
-#: disk-utils/mkswap.c:617
+#: disk-utils/mkswap.c:700
#, c-format
msgid "Setting up swapspace version %d, size = %llu kB\n"
msgstr "Встановлюється область підкачки версії %d, розмір = %llu кб\n"
-#: disk-utils/mkswap.c:623
+#: disk-utils/mkswap.c:709
msgid "unable to rewind swap-device"
msgstr "помилка позиціювання на початок пристрою підкачки"
-#: disk-utils/mkswap.c:626
+#: disk-utils/mkswap.c:712
msgid "unable to write signature page"
msgstr "не вдається записати сторінку підпису"
-#: disk-utils/mkswap.c:634
+#: disk-utils/mkswap.c:720
msgid "fsync failed"
msgstr "помилка виконання fsync"
@@ -1256,57 +1278,62 @@ 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:2004
+#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2053
msgid "Unusable"
msgstr "Не використано"
-#: fdisk/cfdisk.c:372 fdisk/cfdisk.c:2006
+#: fdisk/cfdisk.c:374 fdisk/cfdisk.c:2055
msgid "Free Space"
msgstr "Вільний простір"
-#: fdisk/cfdisk.c:375
+#: fdisk/cfdisk.c:377
msgid "Linux ext2"
msgstr "Linux ext2"
-#: fdisk/cfdisk.c:377
+#: fdisk/cfdisk.c:379
msgid "Linux ext3"
msgstr "Linux ext3"
-#: fdisk/cfdisk.c:379
+#: fdisk/cfdisk.c:381
msgid "Linux XFS"
msgstr "Linux XFS"
-#: fdisk/cfdisk.c:381
+#: fdisk/cfdisk.c:383
+#, fuzzy
+msgid "Linux JFS"
+msgstr "Linux XFS"
+
+#: fdisk/cfdisk.c:385
msgid "Linux ReiserFS"
msgstr "Linux ReiserFS"
-#: fdisk/cfdisk.c:383 fdisk/i386_sys_types.c:57
+#: fdisk/cfdisk.c:387 fdisk/i386_sys_types.c:57
msgid "Linux"
msgstr "Linux"
-#: fdisk/cfdisk.c:386
+#: fdisk/cfdisk.c:390
msgid "OS/2 HPFS"
msgstr "OS/2 HPFS"
-#: fdisk/cfdisk.c:388
+#: fdisk/cfdisk.c:392
msgid "OS/2 IFS"
msgstr "OS/2 IFS"
-#: fdisk/cfdisk.c:392
+#: fdisk/cfdisk.c:396
msgid "NTFS"
msgstr "NTFS"
-#: fdisk/cfdisk.c:403
+#: fdisk/cfdisk.c:407
msgid "Disk has been changed.\n"
msgstr "Диск було змінено.\n"
-#: fdisk/cfdisk.c:404
+#: fdisk/cfdisk.c:408
msgid "Reboot the system to ensure the partition table is correctly updated.\n"
msgstr ""
"Перезавантажте систему щоб впевнитись, що таблиця розділів коректно "
"оновлена.\n"
-#: fdisk/cfdisk.c:407
+#: fdisk/cfdisk.c:411
msgid ""
"\n"
"WARNING: If you have created or modified any\n"
@@ -1318,324 +1345,324 @@ msgstr ""
"DOS 6.x розділи, перегляньте man сторінку з cfdisk\n"
"щоб отримати докладнішу інформацію.\n"
-#: fdisk/cfdisk.c:502
+#: fdisk/cfdisk.c:506
msgid "FATAL ERROR"
msgstr "ФАТАЛЬНА ПОМИЛКА"
-#: fdisk/cfdisk.c:503
+#: fdisk/cfdisk.c:507
msgid "Press any key to exit cfdisk"
msgstr "Натисніть будь-яку клавішу для завершення cfdisk"
-#: fdisk/cfdisk.c:550 fdisk/cfdisk.c:558
+#: fdisk/cfdisk.c:554 fdisk/cfdisk.c:562
msgid "Cannot seek on disk drive"
msgstr "Помилка позиціювання на дисковому пристрої"
-#: fdisk/cfdisk.c:552
+#: fdisk/cfdisk.c:556
msgid "Cannot read disk drive"
msgstr "не вдається прочитати дисковий пристрій"
-#: fdisk/cfdisk.c:560
+#: fdisk/cfdisk.c:564
msgid "Cannot write disk drive"
msgstr "не вдається записати на дисковий пристрій"
-#: fdisk/cfdisk.c:858
+#: fdisk/cfdisk.c:907
msgid "Too many partitions"
msgstr "Надто багато розділів"
-#: fdisk/cfdisk.c:863
+#: fdisk/cfdisk.c:912
msgid "Partition begins before sector 0"
msgstr "Розділ починається перед сектором 0"
-#: fdisk/cfdisk.c:868
+#: fdisk/cfdisk.c:917
msgid "Partition ends before sector 0"
msgstr "Розділ закінчується перед сектором 0"
-#: fdisk/cfdisk.c:873
+#: fdisk/cfdisk.c:922
msgid "Partition begins after end-of-disk"
msgstr "Розділ починається після кінця диску"
-#: fdisk/cfdisk.c:878
+#: fdisk/cfdisk.c:927
msgid "Partition ends after end-of-disk"
msgstr "Розділ закінчується після кінця диску"
-#: fdisk/cfdisk.c:883
+#: fdisk/cfdisk.c:932
msgid "Partition ends in the final partial cylinder"
msgstr "Розділ закінчується у останньому неповному циліндрі"
-#: fdisk/cfdisk.c:907
+#: fdisk/cfdisk.c:956
msgid "logical partitions not in disk order"
msgstr "логічні розділи не у тому порядку як на диску"
-#: fdisk/cfdisk.c:910
+#: fdisk/cfdisk.c:959
msgid "logical partitions overlap"
msgstr "логічні розділи перекриваються"
-#: fdisk/cfdisk.c:912
+#: fdisk/cfdisk.c:961
msgid "enlarged logical partitions overlap"
msgstr "збільшені логічні розділи перекриваються"
-#: fdisk/cfdisk.c:942
+#: fdisk/cfdisk.c:991
msgid ""
"!!!! Internal error creating logical drive with no extended partition !!!!"
msgstr ""
"!!!! Внутрішня помилка створення логічного пристрою без розширеного "
"розділу !!!!"
-#: fdisk/cfdisk.c:953 fdisk/cfdisk.c:965
+#: fdisk/cfdisk.c:1002 fdisk/cfdisk.c:1014
msgid ""
"Cannot create logical drive here -- would create two extended partitions"
msgstr ""
"не вдається створити тут логічний пристрій -- буде створено два розширених "
"розділи"
-#: fdisk/cfdisk.c:1113
+#: fdisk/cfdisk.c:1162
msgid "Menu item too long. Menu may look odd."
msgstr "Пункт меню надто довгий. Меню виглядатиме дивно."
-#: fdisk/cfdisk.c:1169
+#: fdisk/cfdisk.c:1218
msgid "Menu without direction. Defaulting horizontal."
msgstr "Меню без орієнтації. Типова орієнтація - горизонтальна."
-#: fdisk/cfdisk.c:1300
+#: fdisk/cfdisk.c:1349
msgid "Illegal key"
msgstr "Неправильний ключ"
-#: fdisk/cfdisk.c:1323
+#: fdisk/cfdisk.c:1372
msgid "Press a key to continue"
msgstr "Натисніть будь-яку клавішу для продовження"
-#: fdisk/cfdisk.c:1370 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2507
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1419 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2556
+#: fdisk/cfdisk.c:2558
msgid "Primary"
msgstr "Первинний"
-#: fdisk/cfdisk.c:1370
+#: fdisk/cfdisk.c:1419
msgid "Create a new primary partition"
msgstr "Створити новий розділ"
-#: fdisk/cfdisk.c:1371 fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2506
-#: fdisk/cfdisk.c:2509
+#: fdisk/cfdisk.c:1420 fdisk/cfdisk.c:2024 fdisk/cfdisk.c:2555
+#: fdisk/cfdisk.c:2558
msgid "Logical"
msgstr "Логічний"
-#: fdisk/cfdisk.c:1371
+#: fdisk/cfdisk.c:1420
msgid "Create a new logical partition"
msgstr "Створити новий логічний пристрій"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427 fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476 fdisk/cfdisk.c:2229
msgid "Cancel"
msgstr "Відмінити"
-#: fdisk/cfdisk.c:1372 fdisk/cfdisk.c:1427
+#: fdisk/cfdisk.c:1421 fdisk/cfdisk.c:1476
msgid "Don't create a partition"
msgstr "Не створювати розділ"
-#: fdisk/cfdisk.c:1388
+#: fdisk/cfdisk.c:1437
msgid "!!! Internal error !!!"
msgstr "!!! Внутрішня помилка !!!"
-#: fdisk/cfdisk.c:1391
+#: fdisk/cfdisk.c:1440
msgid "Size (in MB): "
msgstr "Розмір (у MB): "
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Beginning"
msgstr "Початок"
-#: fdisk/cfdisk.c:1425
+#: fdisk/cfdisk.c:1474
msgid "Add partition at beginning of free space"
msgstr "Додати розділ на початку вільного простору"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "End"
msgstr "Кінець"
-#: fdisk/cfdisk.c:1426
+#: fdisk/cfdisk.c:1475
msgid "Add partition at end of free space"
msgstr "Додати розділ наприкінці вільного простору"
-#: fdisk/cfdisk.c:1444
+#: fdisk/cfdisk.c:1493
msgid "No room to create the extended partition"
msgstr "Недостатньо простору для створення розширеного розділу"
-#: fdisk/cfdisk.c:1506
+#: fdisk/cfdisk.c:1555
#, fuzzy
msgid "No partition table.\n"
msgstr "відсутня таблиця розділів.\n"
-#: fdisk/cfdisk.c:1510
+#: fdisk/cfdisk.c:1559
#, fuzzy
msgid "No partition table. Starting with zero table."
msgstr "Немає таблиці розділів або невідома сигнатура таблиці розділів"
-#: fdisk/cfdisk.c:1520
+#: fdisk/cfdisk.c:1569
#, fuzzy
msgid "Bad signature on partition table"
msgstr "Просто вивести таблицю розділів"
-#: fdisk/cfdisk.c:1524
+#: fdisk/cfdisk.c:1573
#, fuzzy
msgid "Unknown partition table type"
msgstr "відсутня таблиця розділів.\n"
-#: fdisk/cfdisk.c:1526
+#: fdisk/cfdisk.c:1575
msgid "Do you wish to start with a zero table [y/N] ?"
msgstr "Бажаєте почати з нульової таблиці [y/N] ?"
-#: fdisk/cfdisk.c:1574
+#: fdisk/cfdisk.c:1623
msgid "You specified more cylinders than fit on disk"
msgstr "Ви вказали більше циліндрів ніж є на диску"
-#: fdisk/cfdisk.c:1606
+#: fdisk/cfdisk.c:1655
msgid "Cannot open disk drive"
msgstr "не вдається відкрити пристрій диску"
-#: fdisk/cfdisk.c:1608 fdisk/cfdisk.c:1788
+#: fdisk/cfdisk.c:1657 fdisk/cfdisk.c:1837
msgid "Opened disk read-only - you have no permission to write"
msgstr "Відкритий диск лише для читання - у вас немає прав для запису"
-#: fdisk/cfdisk.c:1629
+#: fdisk/cfdisk.c:1678
msgid "Cannot get disk size"
msgstr "не вдається отримати розмір диску"
-#: fdisk/cfdisk.c:1655
+#: fdisk/cfdisk.c:1704
msgid "Bad primary partition"
msgstr "Неправильний первинний розділ"
-#: fdisk/cfdisk.c:1685
+#: fdisk/cfdisk.c:1734
msgid "Bad logical partition"
msgstr "Неправильний логічний розділ"
-#: fdisk/cfdisk.c:1800
+#: fdisk/cfdisk.c:1849
msgid "Warning!! This may destroy data on your disk!"
msgstr "Увага!! Це може знищити дані на диску!"
-#: fdisk/cfdisk.c:1804
+#: fdisk/cfdisk.c:1853
msgid "Are you sure you want write the partition table to disk? (yes or no): "
msgstr ""
"Ви впевнені, що бажаєте записати таблицю розділів на диск? (yes або no): "
-#: fdisk/cfdisk.c:1810
+#: fdisk/cfdisk.c:1859
msgid "no"
msgstr "no"
-#: fdisk/cfdisk.c:1811
+#: fdisk/cfdisk.c:1860
msgid "Did not write partition table to disk"
msgstr "Не записувати таблицю розділів на диск"
-#: fdisk/cfdisk.c:1813
+#: fdisk/cfdisk.c:1862
msgid "yes"
msgstr "yes"
-#: fdisk/cfdisk.c:1816
+#: fdisk/cfdisk.c:1865
msgid "Please enter `yes' or `no'"
msgstr "Введіть `yes'(так) або `no'(ні)"
-#: fdisk/cfdisk.c:1820
+#: fdisk/cfdisk.c:1869
msgid "Writing partition table to disk..."
msgstr "Записується таблиця розділів на диск..."
-#: fdisk/cfdisk.c:1845 fdisk/cfdisk.c:1849
+#: fdisk/cfdisk.c:1894 fdisk/cfdisk.c:1898
msgid "Wrote partition table to disk"
msgstr "Таблиця розділів записана на диск"
-#: fdisk/cfdisk.c:1847
+#: fdisk/cfdisk.c:1896
msgid ""
"Wrote partition table, but re-read table failed. Reboot to update table."
msgstr ""
"Таблиця розділів записана, але виникла помилка при її перечитуванні. "
"Перезавантажтесь для оновлення таблиці."
-#: fdisk/cfdisk.c:1857
+#: fdisk/cfdisk.c:1906
msgid "No primary partitions are marked bootable. DOS MBR cannot boot this."
msgstr ""
"Немає первинних розділів позначених як завантажувальні. DOS MBR не зможе "
"завантажуватись."
-#: fdisk/cfdisk.c:1859
+#: fdisk/cfdisk.c:1908
msgid ""
"More than one primary partition is marked bootable. DOS MBR cannot boot this."
msgstr ""
"Більш ніж один розділ позначений як завантажувальний. DOS MBR не зможе "
"завантажуватись."
-#: fdisk/cfdisk.c:1917 fdisk/cfdisk.c:2036 fdisk/cfdisk.c:2120
+#: fdisk/cfdisk.c:1966 fdisk/cfdisk.c:2085 fdisk/cfdisk.c:2169
msgid "Enter filename or press RETURN to display on screen: "
msgstr "Введіть назву файлу або натисніть Enter, щоб відобразити екран: "
-#: fdisk/cfdisk.c:1926 fdisk/cfdisk.c:2044 fdisk/cfdisk.c:2128
+#: fdisk/cfdisk.c:1975 fdisk/cfdisk.c:2093 fdisk/cfdisk.c:2177
#, c-format
msgid "Cannot open file '%s'"
msgstr "не вдається відкрити файл '%s'"
-#: fdisk/cfdisk.c:1937
+#: fdisk/cfdisk.c:1986
#, c-format
msgid "Disk Drive: %s\n"
msgstr "Дисковий пристій: %s\n"
-#: fdisk/cfdisk.c:1939
+#: fdisk/cfdisk.c:1988
msgid "Sector 0:\n"
msgstr "Сектор 0:\n"
-#: fdisk/cfdisk.c:1946
+#: fdisk/cfdisk.c:1995
#, c-format
msgid "Sector %d:\n"
msgstr "Сектор %d:\n"
-#: fdisk/cfdisk.c:1966
+#: fdisk/cfdisk.c:2015
msgid " None "
msgstr " Немає "
-#: fdisk/cfdisk.c:1968
+#: fdisk/cfdisk.c:2017
msgid " Pri/Log"
msgstr " Перв/Лог "
-#: fdisk/cfdisk.c:1970
+#: fdisk/cfdisk.c:2019
msgid " Primary"
msgstr " Первинний"
-#: fdisk/cfdisk.c:1972
+#: fdisk/cfdisk.c:2021
msgid " Logical"
msgstr " Логічний "
#. odd flag on end
#. type id
#. type name
-#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747
+#: fdisk/cfdisk.c:2059 fdisk/fdisk.c:1438 fdisk/fdisk.c:1750
#: fdisk/fdisksgilabel.c:239 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650
msgid "Unknown"
msgstr "Невідомий"
-#: fdisk/cfdisk.c:2016 fdisk/cfdisk.c:2484 fdisk/fdisksunlabel.c:45
+#: fdisk/cfdisk.c:2065 fdisk/cfdisk.c:2533 fdisk/fdisksunlabel.c:45
msgid "Boot"
msgstr "Заван."
-#: fdisk/cfdisk.c:2018
+#: fdisk/cfdisk.c:2067
#, c-format
msgid "(%02X)"
msgstr "(%02X)"
-#: fdisk/cfdisk.c:2020
+#: fdisk/cfdisk.c:2069
msgid "None"
msgstr "Немає"
-#: fdisk/cfdisk.c:2055 fdisk/cfdisk.c:2139
+#: fdisk/cfdisk.c:2104 fdisk/cfdisk.c:2188
#, c-format
msgid "Partition Table for %s\n"
msgstr "Таблиця розділів для %s\n"
-#: fdisk/cfdisk.c:2057
+#: fdisk/cfdisk.c:2106
msgid " First Last\n"
msgstr " Перший Останній\n"
-#: fdisk/cfdisk.c:2058
+#: fdisk/cfdisk.c:2107
msgid ""
" # Type Sector Sector Offset Length Filesystem Type (ID) "
"Flag\n"
msgstr ""
" # Тип Сектор Сектор Зсув Довжина Тип файл. системи(ID) Ознаки\n"
-#: fdisk/cfdisk.c:2059
+#: fdisk/cfdisk.c:2108
msgid ""
"-- ------- ----------- ----------- ------ ----------- -------------------- "
"----\n"
@@ -1644,467 +1671,467 @@ msgstr ""
"----\n"
#. Three-line heading. Read "Start Sector" etc vertically.
-#: fdisk/cfdisk.c:2142
+#: fdisk/cfdisk.c:2191
msgid " ---Starting--- ----Ending---- Start Number of\n"
msgstr " ---Початок--- ----Кінець---- Початк. Кільк.\n"
-#: fdisk/cfdisk.c:2143
+#: fdisk/cfdisk.c:2192
msgid " # Flags Head Sect Cyl ID Head Sect Cyl Sector Sectors\n"
msgstr " # Ознак Гол Сект Цил ID Гол Сект Цил Сектор Секторів\n"
-#: fdisk/cfdisk.c:2144
+#: fdisk/cfdisk.c:2193
msgid "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
msgstr "-- ----- ---- ---- ---- ---- ---- ---- ---- ----------- -----------\n"
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Raw"
msgstr "Неформатов."
-#: fdisk/cfdisk.c:2177
+#: fdisk/cfdisk.c:2226
msgid "Print the table using raw data format"
msgstr "Вивести таблицю у 'неформатованому' вигляді"
-#: fdisk/cfdisk.c:2178 fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2227 fdisk/cfdisk.c:2330
msgid "Sectors"
msgstr "Сектори"
-#: fdisk/cfdisk.c:2178
+#: fdisk/cfdisk.c:2227
msgid "Print the table ordered by sectors"
msgstr "Вивести таблицю сортовану за секторами"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Table"
msgstr "Таблиця"
-#: fdisk/cfdisk.c:2179
+#: fdisk/cfdisk.c:2228
msgid "Just print the partition table"
msgstr "Просто вивести таблицю розділів"
-#: fdisk/cfdisk.c:2180
+#: fdisk/cfdisk.c:2229
msgid "Don't print the table"
msgstr "Не виводити таблицю"
-#: fdisk/cfdisk.c:2208
+#: fdisk/cfdisk.c:2257
msgid "Help Screen for cfdisk"
msgstr "Екран з довідкою для cfdisk"
-#: fdisk/cfdisk.c:2210
+#: fdisk/cfdisk.c:2259
msgid "This is cfdisk, a curses based disk partitioning program, which"
msgstr "Це cfdisk - консольна програма роботи з розділами на базі curses, яка"
-#: fdisk/cfdisk.c:2211
+#: fdisk/cfdisk.c:2260
msgid "allows you to create, delete and modify partitions on your hard"
msgstr "дозволяє створювати, видаляти та змінювати розділи вашого"
-#: fdisk/cfdisk.c:2212
+#: fdisk/cfdisk.c:2261
msgid "disk drive."
msgstr "жорсткого диску."
-#: fdisk/cfdisk.c:2214
+#: fdisk/cfdisk.c:2263
msgid "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
msgstr "Copyright (C) 1994-1999 Kevin E. Martin & aeb"
-#: fdisk/cfdisk.c:2216
+#: fdisk/cfdisk.c:2265
msgid "Command Meaning"
msgstr "Команда Призначення"
-#: fdisk/cfdisk.c:2217
+#: fdisk/cfdisk.c:2266
msgid "------- -------"
msgstr "------- -----------"
-#: fdisk/cfdisk.c:2218
+#: fdisk/cfdisk.c:2267
msgid " b Toggle bootable flag of the current partition"
msgstr " b Перемикнути ознаку завантаження поточного розділу"
-#: fdisk/cfdisk.c:2219
+#: fdisk/cfdisk.c:2268
msgid " d Delete the current partition"
msgstr " d Видалити поточний розділ"
-#: fdisk/cfdisk.c:2220
+#: fdisk/cfdisk.c:2269
msgid " g Change cylinders, heads, sectors-per-track parameters"
msgstr " g Змінити параметри: циліндри, головки, сектори-на-доріжку"
-#: fdisk/cfdisk.c:2221
+#: fdisk/cfdisk.c:2270
msgid " WARNING: This option should only be used by people who"
msgstr " УВАГА: Цей параметр повинен використовуватись лише людьми"
-#: fdisk/cfdisk.c:2222
+#: fdisk/cfdisk.c:2271
msgid " know what they are doing."
msgstr " які знають, що вони роблять."
-#: fdisk/cfdisk.c:2223
+#: fdisk/cfdisk.c:2272
msgid " h Print this screen"
msgstr " h Вивести цю довідку"
-#: fdisk/cfdisk.c:2224
+#: fdisk/cfdisk.c:2273
msgid " m Maximize disk usage of the current partition"
msgstr " m Максимізувати використання диску поточним розділом"
-#: fdisk/cfdisk.c:2225
+#: fdisk/cfdisk.c:2274
msgid " Note: This may make the partition incompatible with"
msgstr " Зауважте: це може зробити розділ несумісним з"
-#: fdisk/cfdisk.c:2226
+#: fdisk/cfdisk.c:2275
msgid " DOS, OS/2, ..."
msgstr " DOS, OS/2, ..."
-#: fdisk/cfdisk.c:2227
+#: fdisk/cfdisk.c:2276
msgid " n Create new partition from free space"
msgstr " n Створити новий розділ у вільному просторі"
-#: fdisk/cfdisk.c:2228
+#: fdisk/cfdisk.c:2277
msgid " p Print partition table to the screen or to a file"
msgstr " p Вивести таблицю розділів на екран або у файл"
-#: fdisk/cfdisk.c:2229
+#: fdisk/cfdisk.c:2278
msgid " There are several different formats for the partition"
msgstr " Є декілька форматів виводу розділів:"
-#: fdisk/cfdisk.c:2230
+#: fdisk/cfdisk.c:2279
msgid " that you can choose from:"
msgstr " "
-#: fdisk/cfdisk.c:2231
+#: fdisk/cfdisk.c:2280
msgid " r - Raw data (exactly what would be written to disk)"
msgstr ""
" r - не форматовані дані (у вигляді, в якому вони запишуться "
"на диск)"
-#: fdisk/cfdisk.c:2232
+#: fdisk/cfdisk.c:2281
msgid " s - Table ordered by sectors"
msgstr " s - Таблиця сортована по секторам"
-#: fdisk/cfdisk.c:2233
+#: fdisk/cfdisk.c:2282
msgid " t - Table in raw format"
msgstr " t - таблиця не форматованих даних"
-#: fdisk/cfdisk.c:2234
+#: fdisk/cfdisk.c:2283
msgid " q Quit program without writing partition table"
msgstr " q Вийти з програми без запису таблиці розділів"
-#: fdisk/cfdisk.c:2235
+#: fdisk/cfdisk.c:2284
msgid " t Change the filesystem type"
msgstr " t Змінити тип файлової системи"
-#: fdisk/cfdisk.c:2236
+#: fdisk/cfdisk.c:2285
msgid " u Change units of the partition size display"
msgstr " u Змінити одиниці вимірювання розміру розділів"
-#: fdisk/cfdisk.c:2237
+#: fdisk/cfdisk.c:2286
msgid " Rotates through MB, sectors and cylinders"
msgstr " Перемикає між Мб, секторами та циліндрами"
-#: fdisk/cfdisk.c:2238
+#: fdisk/cfdisk.c:2287
msgid " W Write partition table to disk (must enter upper case W)"
msgstr ""
" W Записати таблицю розділів на диск ( W повинен бути в верхньому "
"регістрі)"
-#: fdisk/cfdisk.c:2239
+#: fdisk/cfdisk.c:2288
msgid " Since this might destroy data on the disk, you must"
msgstr " Це може зруйнувати дані на диску, тому необхідно або"
-#: fdisk/cfdisk.c:2240
+#: fdisk/cfdisk.c:2289
msgid " either confirm or deny the write by entering `yes' or"
msgstr " підтвердити або відмовитись від запису набравши `yes' чи "
-#: fdisk/cfdisk.c:2241
+#: fdisk/cfdisk.c:2290
msgid " `no'"
msgstr " `no'"
-#: fdisk/cfdisk.c:2242
+#: fdisk/cfdisk.c:2291
msgid "Up Arrow Move cursor to the previous partition"
msgstr "СтрілкаВгору Перемістити курсор на попередню позицію"
-#: fdisk/cfdisk.c:2243
+#: fdisk/cfdisk.c:2292
msgid "Down Arrow Move cursor to the next partition"
msgstr "СтрілкаВниз Перемістити курсор у наступну позицію"
-#: fdisk/cfdisk.c:2244
+#: fdisk/cfdisk.c:2293
msgid "CTRL-L Redraws the screen"
msgstr "CTRL-L Оновлює вміст екрану"
-#: fdisk/cfdisk.c:2245
+#: fdisk/cfdisk.c:2294
msgid " ? Print this screen"
msgstr " ? Виводить цю довідку"
-#: fdisk/cfdisk.c:2247
+#: fdisk/cfdisk.c:2296
msgid "Note: All of the commands can be entered with either upper or lower"
msgstr "Зауважте: Всі команди вводяться або у нижньому або у верхньому"
-#: fdisk/cfdisk.c:2248
+#: fdisk/cfdisk.c:2297
msgid "case letters (except for Writes)."
msgstr "регістрах (за винятком (W)запису)."
-#: fdisk/cfdisk.c:2279 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
+#: fdisk/cfdisk.c:2328 fdisk/fdisksunlabel.c:318 fdisk/fdisksunlabel.c:320
msgid "Cylinders"
msgstr "Циліндрів"
-#: fdisk/cfdisk.c:2279
+#: fdisk/cfdisk.c:2328
msgid "Change cylinder geometry"
msgstr "Змінити геометрію циліндру"
-#: fdisk/cfdisk.c:2280 fdisk/fdisksunlabel.c:315
+#: fdisk/cfdisk.c:2329 fdisk/fdisksunlabel.c:315
msgid "Heads"
msgstr "Головки"
-#: fdisk/cfdisk.c:2280
+#: fdisk/cfdisk.c:2329
msgid "Change head geometry"
msgstr "Змінити геометрію головки"
-#: fdisk/cfdisk.c:2281
+#: fdisk/cfdisk.c:2330
msgid "Change sector geometry"
msgstr "Змінити геометрію сектору"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done"
msgstr "Виконано"
-#: fdisk/cfdisk.c:2282
+#: fdisk/cfdisk.c:2331
msgid "Done with changing geometry"
msgstr "Завершити зміну геометрії"
-#: fdisk/cfdisk.c:2295
+#: fdisk/cfdisk.c:2344
msgid "Enter the number of cylinders: "
msgstr "Введіть кількість циліндрів: "
-#: fdisk/cfdisk.c:2306 fdisk/cfdisk.c:2877
+#: fdisk/cfdisk.c:2355 fdisk/cfdisk.c:2926
msgid "Illegal cylinders value"
msgstr "Недопустиме значення циліндрів"
-#: fdisk/cfdisk.c:2312
+#: fdisk/cfdisk.c:2361
msgid "Enter the number of heads: "
msgstr "Введіть геометрію головок: "
-#: fdisk/cfdisk.c:2319 fdisk/cfdisk.c:2887
+#: fdisk/cfdisk.c:2368 fdisk/cfdisk.c:2936
msgid "Illegal heads value"
msgstr "Недопустиме значення головок"
-#: fdisk/cfdisk.c:2325
+#: fdisk/cfdisk.c:2374
msgid "Enter the number of sectors per track: "
msgstr "Введіть кількість секторів на доріжку: "
-#: fdisk/cfdisk.c:2332 fdisk/cfdisk.c:2894
+#: fdisk/cfdisk.c:2381 fdisk/cfdisk.c:2943
msgid "Illegal sectors value"
msgstr "Недопустиме значення секторів"
-#: fdisk/cfdisk.c:2435
+#: fdisk/cfdisk.c:2484
msgid "Enter filesystem type: "
msgstr "Введіть тип файлової системи: "
-#: fdisk/cfdisk.c:2453
+#: fdisk/cfdisk.c:2502
msgid "Cannot change FS Type to empty"
msgstr "Тип ФС не може бути порожнім"
-#: fdisk/cfdisk.c:2455
+#: fdisk/cfdisk.c:2504
msgid "Cannot change FS Type to extended"
msgstr "Не можна змінювати тип ФС на розширений"
-#: fdisk/cfdisk.c:2486
+#: fdisk/cfdisk.c:2535
#, c-format
msgid "Unk(%02X)"
msgstr "Невід(%02X)"
-#: fdisk/cfdisk.c:2489 fdisk/cfdisk.c:2492
+#: fdisk/cfdisk.c:2538 fdisk/cfdisk.c:2541
msgid ", NC"
msgstr ", НК"
-#: fdisk/cfdisk.c:2497 fdisk/cfdisk.c:2500
+#: fdisk/cfdisk.c:2546 fdisk/cfdisk.c:2549
msgid "NC"
msgstr "НК"
-#: fdisk/cfdisk.c:2508
+#: fdisk/cfdisk.c:2557
msgid "Pri/Log"
msgstr "Перв/Лог"
-#: fdisk/cfdisk.c:2515
+#: fdisk/cfdisk.c:2564
#, c-format
msgid "Unknown (%02X)"
msgstr "Невідомий (%02X)"
-#: fdisk/cfdisk.c:2584
+#: fdisk/cfdisk.c:2633
#, c-format
msgid "Disk Drive: %s"
msgstr "Пристій диску: %s"
-#: fdisk/cfdisk.c:2591
+#: fdisk/cfdisk.c:2640
#, c-format
msgid "Size: %lld bytes, %lld MB"
msgstr "Розмір: %lld байт, %lld Мб"
-#: fdisk/cfdisk.c:2594
+#: fdisk/cfdisk.c:2643
#, c-format
msgid "Size: %lld bytes, %lld.%lld GB"
msgstr "Розмір: %lld байт, %lld.%lld Гб"
-#: fdisk/cfdisk.c:2598
+#: fdisk/cfdisk.c:2647
#, c-format
msgid "Heads: %d Sectors per Track: %d Cylinders: %lld"
msgstr "Головок: %d Секторів на доріжку: %d Циліндрів: %lld"
-#: fdisk/cfdisk.c:2602
+#: fdisk/cfdisk.c:2651
msgid "Name"
msgstr "Назва"
-#: fdisk/cfdisk.c:2603
+#: fdisk/cfdisk.c:2652
msgid "Flags"
msgstr "Ознаки"
-#: fdisk/cfdisk.c:2604
+#: fdisk/cfdisk.c:2653
msgid "Part Type"
msgstr "Тип розд."
-#: fdisk/cfdisk.c:2605
+#: fdisk/cfdisk.c:2654
msgid "FS Type"
msgstr "Тип ФС"
-#: fdisk/cfdisk.c:2606
+#: fdisk/cfdisk.c:2655
msgid "[Label]"
msgstr "[Позначка]"
-#: fdisk/cfdisk.c:2608
+#: fdisk/cfdisk.c:2657
msgid " Sectors"
msgstr " Секторів"
-#: fdisk/cfdisk.c:2610
+#: fdisk/cfdisk.c:2659
msgid " Cylinders"
msgstr " Циліндрів"
-#: fdisk/cfdisk.c:2612
+#: fdisk/cfdisk.c:2661
msgid " Size (MB)"
msgstr "Розмір (Мб)"
-#: fdisk/cfdisk.c:2614
+#: fdisk/cfdisk.c:2663
msgid " Size (GB)"
msgstr "Розмір (Гб)"
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Bootable"
msgstr "Завантаж."
-#: fdisk/cfdisk.c:2668
+#: fdisk/cfdisk.c:2717
msgid "Toggle bootable flag of the current partition"
msgstr "Перемикнути ознаку завантаження поточного розділу"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete"
msgstr "Видалити"
-#: fdisk/cfdisk.c:2669
+#: fdisk/cfdisk.c:2718
msgid "Delete the current partition"
msgstr "Видалити поточний розділ"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Geometry"
msgstr "Геометрія"
-#: fdisk/cfdisk.c:2670
+#: fdisk/cfdisk.c:2719
msgid "Change disk geometry (experts only)"
msgstr "Змінити геометрію диску (лише для фахівців)"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Help"
msgstr "Довідка"
-#: fdisk/cfdisk.c:2671
+#: fdisk/cfdisk.c:2720
msgid "Print help screen"
msgstr "Вивести вікно з довідкою"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize"
msgstr "Максимум"
-#: fdisk/cfdisk.c:2672
+#: fdisk/cfdisk.c:2721
msgid "Maximize disk usage of the current partition (experts only)"
msgstr "Максимізувати використання диску поточним розділом (для фахівців)"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "New"
msgstr "Новий"
-#: fdisk/cfdisk.c:2673
+#: fdisk/cfdisk.c:2722
msgid "Create new partition from free space"
msgstr "Створити новий розділ у вільному просторі"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print"
msgstr "Вивести"
-#: fdisk/cfdisk.c:2674
+#: fdisk/cfdisk.c:2723
msgid "Print partition table to the screen or to a file"
msgstr "Вивести таблицю розділів на екран або у файл"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit"
msgstr "Вихід"
-#: fdisk/cfdisk.c:2675
+#: fdisk/cfdisk.c:2724
msgid "Quit program without writing partition table"
msgstr "Вийти з програми без запису таблиці розділів"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Type"
msgstr "Тип"
-#: fdisk/cfdisk.c:2676
+#: fdisk/cfdisk.c:2725
msgid "Change the filesystem type (DOS, Linux, OS/2 and so on)"
msgstr "Змінити тип файлової системи (DOS, Linux, OS/2 та ін.)"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Units"
msgstr "Одиниці"
-#: fdisk/cfdisk.c:2677
+#: fdisk/cfdisk.c:2726
msgid "Change units of the partition size display (MB, sect, cyl)"
msgstr "Змінити одиниці вимірювання розмірів розділу (МБ. сект, цил)"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write"
msgstr "Записати"
-#: fdisk/cfdisk.c:2678
+#: fdisk/cfdisk.c:2727
msgid "Write partition table to disk (this might destroy data)"
msgstr "Записати таблицю розділів на диск (може зіпсувати дані)"
-#: fdisk/cfdisk.c:2724
+#: fdisk/cfdisk.c:2773
msgid "Cannot make this partition bootable"
msgstr "не вдається зробити розділ завантажувальним"
-#: fdisk/cfdisk.c:2734
+#: fdisk/cfdisk.c:2783
msgid "Cannot delete an empty partition"
msgstr "не вдається видалити порожній розділ"
-#: fdisk/cfdisk.c:2754 fdisk/cfdisk.c:2756
+#: fdisk/cfdisk.c:2803 fdisk/cfdisk.c:2805
msgid "Cannot maximize this partition"
msgstr "не вдається максимізувати цей розділ"
-#: fdisk/cfdisk.c:2764
+#: fdisk/cfdisk.c:2813
msgid "This partition is unusable"
msgstr "Цей розділ не використовується"
-#: fdisk/cfdisk.c:2766
+#: fdisk/cfdisk.c:2815
msgid "This partition is already in use"
msgstr "Цей розділ вже використовується"
-#: fdisk/cfdisk.c:2783
+#: fdisk/cfdisk.c:2832
msgid "Cannot change the type of an empty partition"
msgstr "не вдається змінити тип порожнього розділу"
-#: fdisk/cfdisk.c:2810 fdisk/cfdisk.c:2816
+#: fdisk/cfdisk.c:2859 fdisk/cfdisk.c:2865
msgid "No more partitions"
msgstr "Немає більше розділів"
-#: fdisk/cfdisk.c:2823
+#: fdisk/cfdisk.c:2872
msgid "Illegal command"
msgstr "Неправильна команда"
-#: fdisk/cfdisk.c:2833
+#: fdisk/cfdisk.c:2882
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:2840
+#: fdisk/cfdisk.c:2889
#, c-format
msgid ""
"\n"
@@ -2377,20 +2404,20 @@ msgstr " f виправити порядок розділів"
msgid "You must set"
msgstr "Необхідно встановити"
-#: fdisk/fdisk.c:584
+#: fdisk/fdisk.c:587
msgid "heads"
msgstr "головки"
-#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936
+#: fdisk/fdisk.c:589 fdisk/fdisk.c:1260 fdisk/sfdisk.c:936
msgid "sectors"
msgstr "сектори"
-#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470
+#: fdisk/fdisk.c:591 fdisk/fdisk.c:1260 fdisk/fdiskbsdlabel.c:470
#: fdisk/sfdisk.c:936
msgid "cylinders"
msgstr "циліндри"
-#: fdisk/fdisk.c:592
+#: fdisk/fdisk.c:595
#, c-format
msgid ""
"%s%s.\n"
@@ -2399,11 +2426,11 @@ msgstr ""
"%s%s.\n"
"Ви можете зробити це з меню додаткових функцій.\n"
-#: fdisk/fdisk.c:593
+#: fdisk/fdisk.c:596
msgid " and "
msgstr " та "
-#: fdisk/fdisk.c:610
+#: fdisk/fdisk.c:613
#, c-format
msgid ""
"\n"
@@ -2422,28 +2449,28 @@ msgstr ""
"2) завантаженням та зміною розділів з інших операційних систем\n"
" (наприклад, DOS FDISK, OS/2 FDISK)\n"
-#: fdisk/fdisk.c:633
+#: fdisk/fdisk.c:636
msgid "Bad offset in primary extended partition\n"
msgstr "Неправильний зсув у головному розширеному розділі\n"
-#: fdisk/fdisk.c:647
+#: fdisk/fdisk.c:650
#, c-format
msgid ""
"Warning: omitting partitions after #%d.\n"
"They will be deleted if you save this partition table.\n"
msgstr ""
-#: fdisk/fdisk.c:666
+#: fdisk/fdisk.c:669
#, c-format
msgid "Warning: extra link pointer in partition table %d\n"
msgstr "Попередження: додатковий вказівник у таблиці розділів %d\n"
-#: fdisk/fdisk.c:674
+#: fdisk/fdisk.c:677
#, c-format
msgid "Warning: ignoring extra data in partition table %d\n"
msgstr "Попередження: додаткові дані у таблиці розділів проігноровано %d\n"
-#: fdisk/fdisk.c:719
+#: fdisk/fdisk.c:722
msgid ""
"Building a new DOS disklabel. Changes will remain in memory only,\n"
"until you decide to write them. After that, of course, the previous\n"
@@ -2455,16 +2482,16 @@ msgstr ""
"буде втрачено.\n"
"\n"
-#: fdisk/fdisk.c:763
+#: fdisk/fdisk.c:766
#, c-format
msgid "Note: sector size is %d (not %d)\n"
msgstr "Примітка: розмір сектору %d (не %d)\n"
-#: fdisk/fdisk.c:920
+#: fdisk/fdisk.c:923
msgid "You will not be able to write the partition table.\n"
msgstr "Ви не зможете записати таблицю розділів.\n"
-#: fdisk/fdisk.c:949
+#: fdisk/fdisk.c:952
msgid ""
"This disk has both DOS and BSD magic.\n"
"Give the 'b' command to go to BSD mode.\n"
@@ -2472,7 +2499,7 @@ msgstr ""
"Цей диск має як DOS сигнатуру, так і BSD.\n"
"Дайте команду 'b', щоб перейти у BSD режим.\n"
-#: fdisk/fdisk.c:959
+#: fdisk/fdisk.c:962
msgid ""
"Device contains neither a valid DOS partition table, nor Sun, SGI or OSF "
"disklabel\n"
@@ -2480,16 +2507,16 @@ msgstr ""
"Пристрій не містить ані правильної DOS таблиці розділів, ані Sun, SGI чи OSF "
"етикетки диску\n"
-#: fdisk/fdisk.c:976
+#: fdisk/fdisk.c:979
msgid "Internal error\n"
msgstr "Внутрішня помилка\n"
-#: fdisk/fdisk.c:989
+#: fdisk/fdisk.c:992
#, c-format
msgid "Ignoring extra extended partition %d\n"
msgstr "Додаткові розширені розділи ігноруються %d\n"
-#: fdisk/fdisk.c:1001
+#: fdisk/fdisk.c:1004
#, c-format
msgid ""
"Warning: invalid flag 0x%04x of partition table %d will be corrected by w"
@@ -2498,7 +2525,7 @@ msgstr ""
"Попередження: неправильна ознака 0x%04x таблиці розділів %d буде виправлена "
"при w(запису)\n"
-#: fdisk/fdisk.c:1023
+#: fdisk/fdisk.c:1026
msgid ""
"\n"
"got EOF thrice - exiting..\n"
@@ -2506,78 +2533,78 @@ msgstr ""
"\n"
"тричі отримано EOF - завершення..\n"
-#: fdisk/fdisk.c:1062
+#: fdisk/fdisk.c:1065
msgid "Hex code (type L to list codes): "
msgstr "Шістнадцятковий код (наберіть L щоб переглянути перелік кодів)"
-#: fdisk/fdisk.c:1102
+#: fdisk/fdisk.c:1105
#, c-format
msgid "%s (%u-%u, default %u): "
msgstr "%s (%u-%u, типово %u): "
-#: fdisk/fdisk.c:1169
+#: fdisk/fdisk.c:1172
#, c-format
msgid "Using default value %u\n"
msgstr "Використовується типове значення %u\n"
-#: fdisk/fdisk.c:1173
+#: fdisk/fdisk.c:1176
msgid "Value out of range.\n"
msgstr "Значення за межами діапазону.\n"
-#: fdisk/fdisk.c:1183
+#: fdisk/fdisk.c:1186
msgid "Partition number"
msgstr "Номер розділу"
-#: fdisk/fdisk.c:1194
+#: fdisk/fdisk.c:1197
#, c-format
msgid "Warning: partition %d has empty type\n"
msgstr "Попередження: розділ %d має порожнє поле типу\n"
-#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242
+#: fdisk/fdisk.c:1219 fdisk/fdisk.c:1245
#, c-format
msgid "Selected partition %d\n"
msgstr "Вибраний розділ %d\n"
-#: fdisk/fdisk.c:1219
+#: fdisk/fdisk.c:1222
msgid "No partition is defined yet!\n"
msgstr "Ще не визначено жодного розділу!\n"
-#: fdisk/fdisk.c:1245
+#: fdisk/fdisk.c:1248
msgid "All primary partitions have been defined already!\n"
msgstr "Всі первинні розділи вже були визначені!\n"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "cylinder"
msgstr "циліндр"
-#: fdisk/fdisk.c:1255
+#: fdisk/fdisk.c:1258
msgid "sector"
msgstr "сектор"
-#: fdisk/fdisk.c:1264
+#: fdisk/fdisk.c:1267
#, c-format
msgid "Changing display/entry units to %s\n"
msgstr "Змінюються одиниці відображення/вводу на %s\n"
-#: fdisk/fdisk.c:1275
+#: fdisk/fdisk.c:1278
#, c-format
msgid "WARNING: Partition %d is an extended partition\n"
msgstr "УВАГА: Розділ %d є розширеним розділом\n"
-#: fdisk/fdisk.c:1286
+#: fdisk/fdisk.c:1289
msgid "DOS Compatibility flag is set\n"
msgstr "Ознаку сумісності з DOS встановлено\n"
-#: fdisk/fdisk.c:1290
+#: fdisk/fdisk.c:1293
msgid "DOS Compatibility flag is not set\n"
msgstr "Ознаку сумісності з DOS не встановлено\n"
-#: fdisk/fdisk.c:1390
+#: fdisk/fdisk.c:1393
#, c-format
msgid "Partition %d does not exist yet!\n"
msgstr "Розділ %d ще не існує!\n"
-#: fdisk/fdisk.c:1395
+#: fdisk/fdisk.c:1398
msgid ""
"Type 0 means free space to many systems\n"
"(but not to Linux). Having partitions of\n"
@@ -2589,7 +2616,7 @@ msgstr ""
"можливо, нерозсудливо. Ви можете видалити\n"
"розділ використовуючи команду `d'.\n"
-#: fdisk/fdisk.c:1404
+#: fdisk/fdisk.c:1407
msgid ""
"You cannot change a partition into an extended one or vice versa\n"
"Delete it first.\n"
@@ -2597,7 +2624,7 @@ msgstr ""
"Не можна перетворювати первинний розділ у розширений, або навпаки\n"
"Спочатку видаліть його.\n"
-#: fdisk/fdisk.c:1413
+#: fdisk/fdisk.c:1416
msgid ""
"Consider leaving partition 3 as Whole disk (5),\n"
"as SunOS/Solaris expects it and even Linux likes it.\n"
@@ -2607,7 +2634,7 @@ msgstr ""
"тому що на це покладаються SunOS/Solaris, та Linux також це сприймає.\n"
"\n"
-#: fdisk/fdisk.c:1419
+#: fdisk/fdisk.c:1422
msgid ""
"Consider leaving partition 9 as volume header (0),\n"
"and partition 11 as entire volume (6)as IRIX expects it.\n"
@@ -2617,52 +2644,52 @@ msgstr ""
"та розділу 11 на весь том (6), тому що IRIX на це покладається.\n"
"\n"
-#: fdisk/fdisk.c:1432
+#: fdisk/fdisk.c:1435
#, c-format
msgid "Changed system type of partition %d to %x (%s)\n"
msgstr "Змінено тип системи розділу %d на %x (%s)\n"
-#: fdisk/fdisk.c:1487
+#: fdisk/fdisk.c:1490
#, c-format
msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n"
msgstr "У розділу %d відрізняються фізичний та логічний початок (не-Linux?):\n"
-#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516
+#: fdisk/fdisk.c:1492 fdisk/fdisk.c:1500 fdisk/fdisk.c:1509 fdisk/fdisk.c:1519
#, c-format
msgid " phys=(%d, %d, %d) "
msgstr " фіз=(%d, %d, %d) "
-#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498
+#: fdisk/fdisk.c:1493 fdisk/fdisk.c:1501
#, c-format
msgid "logical=(%d, %d, %d)\n"
msgstr "логічний=(%d, %d, %d)\n"
-#: fdisk/fdisk.c:1495
+#: fdisk/fdisk.c:1498
#, c-format
msgid "Partition %d has different physical/logical endings:\n"
msgstr "У розділу %d відрізняються фізичний та логічний кінці:\n"
-#: fdisk/fdisk.c:1504
+#: fdisk/fdisk.c:1507
#, c-format
msgid "Partition %i does not start on cylinder boundary:\n"
msgstr "Розділ %i не починається на межі циліндру:\n"
-#: fdisk/fdisk.c:1507
+#: fdisk/fdisk.c:1510
#, c-format
msgid "should be (%d, %d, 1)\n"
msgstr "повинно бути (%d, %d, 1)\n"
-#: fdisk/fdisk.c:1513
+#: fdisk/fdisk.c:1516
#, c-format
msgid "Partition %i does not end on cylinder boundary.\n"
msgstr "Розділ %i не закінчується на межі циліндру.\n"
-#: fdisk/fdisk.c:1517
+#: fdisk/fdisk.c:1520
#, c-format
msgid "should be (%d, %d, %d)\n"
msgstr "повинно бути (%d, %d, %d)\n"
-#: fdisk/fdisk.c:1529
+#: fdisk/fdisk.c:1532
#, c-format
msgid ""
"\n"
@@ -2671,7 +2698,7 @@ msgstr ""
"\n"
"Диск %s: %ld Мб, %lld байт\n"
-#: fdisk/fdisk.c:1532
+#: fdisk/fdisk.c:1535
#, c-format
msgid ""
"\n"
@@ -2680,17 +2707,17 @@ msgstr ""
"\n"
"Диск %s: %ld.%ld Гб, %lld байт\n"
-#: fdisk/fdisk.c:1534
+#: fdisk/fdisk.c:1537
#, c-format
msgid "%d heads, %d sectors/track, %d cylinders"
msgstr "%d головок, %d секторів/доріжку, %d циліндрів"
-#: fdisk/fdisk.c:1537
+#: fdisk/fdisk.c:1540
#, c-format
msgid ", total %llu sectors"
msgstr ", загалом %llu секторів"
-#: fdisk/fdisk.c:1540
+#: fdisk/fdisk.c:1543
#, c-format
msgid ""
"Units = %s of %d * %d = %d bytes\n"
@@ -2699,7 +2726,7 @@ msgstr ""
"Одиниці виміру = %s з %d * %d = %d байт\n"
"\n"
-#: fdisk/fdisk.c:1648
+#: fdisk/fdisk.c:1651
msgid ""
"Nothing to do. Ordering is correct already.\n"
"\n"
@@ -2707,23 +2734,23 @@ msgstr ""
"Немає що робити. Порядок вже коректний.\n"
"\n"
-#: fdisk/fdisk.c:1704
+#: fdisk/fdisk.c:1707
msgid ""
"This doesn't look like a partition table\n"
"Probably you selected the wrong device.\n"
"\n"
msgstr ""
-#: fdisk/fdisk.c:1718
+#: fdisk/fdisk.c:1721
#, c-format
msgid "%*s Boot Start End Blocks Id System\n"
msgstr "%*s Завант Початок Кінець Блоків Ід Система\n"
-#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
+#: fdisk/fdisk.c:1722 fdisk/fdisksgilabel.c:222 fdisk/fdisksunlabel.c:674
msgid "Device"
msgstr "Пристрій"
-#: fdisk/fdisk.c:1756
+#: fdisk/fdisk.c:1759
msgid ""
"\n"
"Partition table entries are not in disk order\n"
@@ -2731,7 +2758,7 @@ msgstr ""
"\n"
"Елементи таблиці розділів не у тому порядку, як на диску\n"
-#: fdisk/fdisk.c:1766
+#: fdisk/fdisk.c:1769
#, c-format
msgid ""
"\n"
@@ -2742,92 +2769,92 @@ msgstr ""
"Диск %s: %d головок, %d секторів, %d циліндрів\n"
"\n"
-#: fdisk/fdisk.c:1768
+#: fdisk/fdisk.c:1771
msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n"
msgstr "№ Акт Гол Сек Цил Гол Сек Цил Початок Розмір Ід\n"
-#: fdisk/fdisk.c:1813
+#: fdisk/fdisk.c:1816
#, c-format
msgid "Warning: partition %d contains sector 0\n"
msgstr "Попередження: розділ %d містить нульовий сектор\n"
-#: fdisk/fdisk.c:1816
+#: fdisk/fdisk.c:1819
#, c-format
msgid "Partition %d: head %d greater than maximum %d\n"
msgstr "Розділ %d: головка %d перевищує максимум %d\n"
-#: fdisk/fdisk.c:1819
+#: fdisk/fdisk.c:1822
#, c-format
msgid "Partition %d: sector %d greater than maximum %d\n"
msgstr "Розділ %d: сектор %d перевищує максимум %d\n"
-#: fdisk/fdisk.c:1822
+#: fdisk/fdisk.c:1825
#, c-format
msgid "Partitions %d: cylinder %d greater than maximum %d\n"
msgstr "Розділ %d: циліндр %d перевищує максимум %d\n"
-#: fdisk/fdisk.c:1826
+#: fdisk/fdisk.c:1829
#, c-format
msgid "Partition %d: previous sectors %d disagrees with total %d\n"
msgstr ""
"Розділ %d: кількість попередніх секторів %d відрізняється від загальної %d\n"
-#: fdisk/fdisk.c:1858
+#: fdisk/fdisk.c:1861
#, c-format
msgid "Warning: bad start-of-data in partition %d\n"
msgstr "Попередження: неправильна область початку даних у розділі %d\n"
-#: fdisk/fdisk.c:1866
+#: fdisk/fdisk.c:1869
#, c-format
msgid "Warning: partition %d overlaps partition %d.\n"
msgstr "Попередження: розділ %d перекривається з розділом %d.\n"
-#: fdisk/fdisk.c:1886
+#: fdisk/fdisk.c:1889
#, c-format
msgid "Warning: partition %d is empty\n"
msgstr "Попередження: розділ %d порожній\n"
-#: fdisk/fdisk.c:1891
+#: fdisk/fdisk.c:1894
#, c-format
msgid "Logical partition %d not entirely in partition %d\n"
msgstr "Логічний розділ %d не вміщується цілком у розділ %d\n"
-#: fdisk/fdisk.c:1897
+#: fdisk/fdisk.c:1900
#, fuzzy, c-format
msgid "Total allocated sectors %d greater than the maximum %lld\n"
msgstr "Загальна кількість розподілених секторів %d перевищує максимум %d\n"
-#: fdisk/fdisk.c:1900
+#: fdisk/fdisk.c:1903
#, fuzzy, c-format
msgid "%lld unallocated sectors\n"
msgstr "%d нерозподілених секторів\n"
-#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
+#: fdisk/fdisk.c:1918 fdisk/fdisksgilabel.c:631 fdisk/fdisksunlabel.c:503
#, c-format
msgid "Partition %d is already defined. Delete it before re-adding it.\n"
msgstr "Розділ %d вже визначений. Видаліть його перед повторним додаванням.\n"
-#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
+#: fdisk/fdisk.c:1945 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:649
#: fdisk/fdisksunlabel.c:518
#, c-format
msgid "First %s"
msgstr "Перший %s"
-#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559
+#: fdisk/fdisk.c:1960 fdisk/fdisksunlabel.c:559
#, c-format
msgid "Sector %d is already allocated\n"
msgstr "Сектор %d вже розподілений\n"
-#: fdisk/fdisk.c:1993
+#: fdisk/fdisk.c:1996
msgid "No free sectors available\n"
msgstr "Немає наявних вільних секторів\n"
-#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
+#: fdisk/fdisk.c:2005 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570
#, c-format
msgid "Last %s or +size or +sizeM or +sizeK"
msgstr "Останній %s або +size або +sizeM або +sizeK"
-#: fdisk/fdisk.c:2067
+#: fdisk/fdisk.c:2070
msgid ""
"\tSorry - this fdisk cannot handle AIX disk labels.\n"
"\tIf you want to add DOS-type partitions, create\n"
@@ -2839,26 +2866,26 @@ msgstr ""
"\tDOS таблицю розділів. (Використовуйте команду o.)\n"
"\tЗАСТЕРЕЖЕННЯ: Це призведе до знищення поточного вмісту диску.\n"
-#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618
+#: fdisk/fdisk.c:2082 fdisk/fdiskbsdlabel.c:618
msgid "The maximum number of partitions has been created\n"
msgstr "Вже створено максимальну кількість розділів\n"
-#: fdisk/fdisk.c:2087
+#: fdisk/fdisk.c:2090
msgid "You must delete some partition and add an extended partition first\n"
msgstr ""
"Спочатку необхідно видалити деякий розділ та додати розширений розділ\n"
-#: fdisk/fdisk.c:2090
+#: fdisk/fdisk.c:2093
#, fuzzy
msgid "All logical partitions are in use\n"
msgstr "логічні розділи не у тому порядку як на диску"
-#: fdisk/fdisk.c:2091
+#: fdisk/fdisk.c:2094
#, fuzzy
msgid "Adding a primary partition\n"
msgstr "Неправильний первинний розділ"
-#: fdisk/fdisk.c:2096
+#: fdisk/fdisk.c:2099
#, c-format
msgid ""
"Command action\n"
@@ -2869,20 +2896,20 @@ msgstr ""
" %s\n"
" p первинний розділ (1-4)\n"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "l logical (5 or over)"
msgstr "l логічний (5 або більше)"
-#: fdisk/fdisk.c:2098
+#: fdisk/fdisk.c:2101
msgid "e extended"
msgstr "e розширений"
-#: fdisk/fdisk.c:2117
+#: fdisk/fdisk.c:2120
#, c-format
msgid "Invalid partition number for type `%c'\n"
msgstr "Неправильний номер розділу для типу `%c'\n"
-#: fdisk/fdisk.c:2153
+#: fdisk/fdisk.c:2156
msgid ""
"The partition table has been altered!\n"
"\n"
@@ -2890,11 +2917,11 @@ msgstr ""
"Таблиця розділів була змінена!\n"
"\n"
-#: fdisk/fdisk.c:2162
+#: fdisk/fdisk.c:2165
msgid "Calling ioctl() to re-read partition table.\n"
msgstr "Викликається ioctl(), щоб перечитати таблицю розділів.\n"
-#: fdisk/fdisk.c:2178
+#: fdisk/fdisk.c:2181
#, c-format
msgid ""
"\n"
@@ -2907,7 +2934,7 @@ msgstr ""
"Ядро досі використовує стару таблицю розділів.\n"
"Нова таблиця розділів використовуватиметься після перезавантаження.\n"
-#: fdisk/fdisk.c:2188
+#: fdisk/fdisk.c:2191
msgid ""
"\n"
"WARNING: If you have created or modified any DOS 6.x\n"
@@ -2919,65 +2946,72 @@ msgstr ""
"розділи, перегляньте man-сторінку з fdisk для отримання додаткової\n"
"інформації.\n"
-#: fdisk/fdisk.c:2195
+#: fdisk/fdisk.c:2197
+#, fuzzy
+msgid ""
+"\n"
+"Error closing file\n"
+msgstr "Помилка закривання %s\n"
+
+#: fdisk/fdisk.c:2201
msgid "Syncing disks.\n"
msgstr "Синхронізація дисків.\n"
-#: fdisk/fdisk.c:2242
+#: fdisk/fdisk.c:2248
#, c-format
msgid "Partition %d has no data area\n"
msgstr "Розділ %d не має області даних\n"
-#: fdisk/fdisk.c:2247
+#: fdisk/fdisk.c:2253
msgid "New beginning of data"
msgstr "Новий початок даних"
-#: fdisk/fdisk.c:2263
+#: fdisk/fdisk.c:2269
msgid "Expert command (m for help): "
msgstr "Команди експертного режиму(m - довідка): "
-#: fdisk/fdisk.c:2276
+#: fdisk/fdisk.c:2282
msgid "Number of cylinders"
msgstr "Кількість циліндрів"
-#: fdisk/fdisk.c:2303
+#: fdisk/fdisk.c:2309
msgid "Number of heads"
msgstr "Кількість головок"
-#: fdisk/fdisk.c:2328
+#: fdisk/fdisk.c:2334
msgid "Number of sectors"
msgstr "Кількість секторів"
-#: fdisk/fdisk.c:2331
+#: fdisk/fdisk.c:2337
msgid "Warning: setting sector offset for DOS compatiblity\n"
msgstr "Попередження: встановлюється зсув сектору для сумісності з DOS\n"
-#: fdisk/fdisk.c:2403
+#: fdisk/fdisk.c:2409
#, c-format
msgid "Disk %s doesn't contain a valid partition table\n"
msgstr "Диск %s не містить правильної таблиці розділів\n"
-#: fdisk/fdisk.c:2414
+#: fdisk/fdisk.c:2420
#, c-format
msgid "Cannot open %s\n"
msgstr "не вдається відкрити %s\n"
-#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454
+#: fdisk/fdisk.c:2438 fdisk/sfdisk.c:2454
#, c-format
msgid "cannot open %s\n"
msgstr "не вдається відкрити %s\n"
-#: fdisk/fdisk.c:2452
+#: fdisk/fdisk.c:2458
#, c-format
msgid "%c: unknown command\n"
msgstr "%c: невідома команда\n"
-#: fdisk/fdisk.c:2520
+#: fdisk/fdisk.c:2526
msgid "This kernel finds the sector size itself - -b option ignored\n"
msgstr ""
"Це ядро визначає розмір сектору саме, тому -b параметри проігноровано\n"
-#: fdisk/fdisk.c:2524
+#: fdisk/fdisk.c:2530
msgid ""
"Warning: the -b (set sector size) option should be used with one specified "
"device\n"
@@ -2986,16 +3020,16 @@ msgstr ""
"(встановити розмір сектора)\n"
#. OSF label, and no DOS label
-#: fdisk/fdisk.c:2583
+#: fdisk/fdisk.c:2589
#, c-format
msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n"
msgstr "Знайдено OSF/1 етикетку диску на %s, перехід у режим етикетки диску.\n"
-#: fdisk/fdisk.c:2593
+#: fdisk/fdisk.c:2599
msgid "Command (m for help): "
msgstr "Команда (m - довідка): "
-#: fdisk/fdisk.c:2609
+#: fdisk/fdisk.c:2615
#, c-format
msgid ""
"\n"
@@ -3004,15 +3038,15 @@ msgstr ""
"\n"
"Поточний файл завантаження: %s\n"
-#: fdisk/fdisk.c:2611
+#: fdisk/fdisk.c:2617
msgid "Please enter the name of the new boot file: "
msgstr "Введіть назву нового файлу завантаження: "
-#: fdisk/fdisk.c:2613
+#: fdisk/fdisk.c:2619
msgid "Boot file unchanged\n"
msgstr "Файл завантаження не змінено\n"
-#: fdisk/fdisk.c:2686
+#: fdisk/fdisk.c:2692
msgid ""
"\n"
"\tSorry, no experts menu for SGI partition tables available.\n"
@@ -3389,7 +3423,7 @@ msgstr "Linux swap"
msgid "Linux native"
msgstr "Linux native"
-#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:62
+#: fdisk/fdisksgilabel.c:96 fdisk/fdisksunlabel.c:55 fdisk/i386_sys_types.c:63
msgid "Linux LVM"
msgstr "Linux LVM"
@@ -3719,7 +3753,7 @@ msgid "SunOS home"
msgstr "SunOS home"
#. DOS 3.3+ secondary
-#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:99
+#: fdisk/fdisksunlabel.c:56 fdisk/i386_sys_types.c:100
msgid "Linux raid autodetect"
msgstr "Linux raid autodetect"
@@ -4088,8 +4122,8 @@ msgid "Priam Edisk"
msgstr "Priam Edisk"
#. DOS R/O or SpeedStor
-#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:90
-#: fdisk/i386_sys_types.c:96 fdisk/i386_sys_types.c:97
+#: fdisk/i386_sys_types.c:48 fdisk/i386_sys_types.c:91
+#: fdisk/i386_sys_types.c:97 fdisk/i386_sys_types.c:98
msgid "SpeedStor"
msgstr "SpeedStor"
@@ -4141,150 +4175,155 @@ msgstr "Linux extended"
msgid "NTFS volume set"
msgstr "NTFS volume set"
-#: fdisk/i386_sys_types.c:63
+#: fdisk/i386_sys_types.c:62
+#, fuzzy
+msgid "Linux plaintext"
+msgstr "Linux ext3"
+
+#: fdisk/i386_sys_types.c:64
msgid "Amoeba"
msgstr "Amoeba"
-#: fdisk/i386_sys_types.c:64
+#: fdisk/i386_sys_types.c:65
msgid "Amoeba BBT"
msgstr "Amoeba BBT"
#. (bad block table)
-#: fdisk/i386_sys_types.c:65
+#: fdisk/i386_sys_types.c:66
msgid "BSD/OS"
msgstr "BSD/OS"
#. BSDI
-#: fdisk/i386_sys_types.c:66
+#: fdisk/i386_sys_types.c:67
msgid "IBM Thinkpad hibernation"
msgstr "IBM Thinkpad hibernation"
-#: fdisk/i386_sys_types.c:67
+#: fdisk/i386_sys_types.c:68
msgid "FreeBSD"
msgstr "FreeBSD"
#. various BSD flavours
-#: fdisk/i386_sys_types.c:68
+#: fdisk/i386_sys_types.c:69
msgid "OpenBSD"
msgstr "OpenBSD"
-#: fdisk/i386_sys_types.c:69
+#: fdisk/i386_sys_types.c:70
msgid "NeXTSTEP"
msgstr "NeXTSTEP"
-#: fdisk/i386_sys_types.c:70
+#: fdisk/i386_sys_types.c:71
msgid "Darwin UFS"
msgstr "Darwin UFS"
-#: fdisk/i386_sys_types.c:71
+#: fdisk/i386_sys_types.c:72
msgid "NetBSD"
msgstr "NetBSD"
-#: fdisk/i386_sys_types.c:72
+#: fdisk/i386_sys_types.c:73
msgid "Darwin boot"
msgstr "Darwin boot"
-#: fdisk/i386_sys_types.c:73
+#: fdisk/i386_sys_types.c:74
msgid "BSDI fs"
msgstr "BSDI fs"
-#: fdisk/i386_sys_types.c:74
+#: fdisk/i386_sys_types.c:75
msgid "BSDI swap"
msgstr "BSDI swap"
-#: fdisk/i386_sys_types.c:75
+#: fdisk/i386_sys_types.c:76
msgid "Boot Wizard hidden"
msgstr "Boot Wizard hidden"
-#: fdisk/i386_sys_types.c:76
+#: fdisk/i386_sys_types.c:77
msgid "Solaris boot"
msgstr "Solaris завантажувальний"
-#: fdisk/i386_sys_types.c:77
+#: fdisk/i386_sys_types.c:78
#, fuzzy
msgid "Solaris"
msgstr "Solaris завантажувальний"
-#: fdisk/i386_sys_types.c:78
+#: fdisk/i386_sys_types.c:79
msgid "DRDOS/sec (FAT-12)"
msgstr "DRDOS/sec (FAT-12)"
-#: fdisk/i386_sys_types.c:79
+#: fdisk/i386_sys_types.c:80
msgid "DRDOS/sec (FAT-16 < 32M)"
msgstr "DRDOS/sec (FAT-16 < 32M)"
-#: fdisk/i386_sys_types.c:80
+#: fdisk/i386_sys_types.c:81
msgid "DRDOS/sec (FAT-16)"
msgstr "DRDOS/sec (FAT-16)"
-#: fdisk/i386_sys_types.c:81
+#: fdisk/i386_sys_types.c:82
msgid "Syrinx"
msgstr "Syrinx"
-#: fdisk/i386_sys_types.c:82
+#: fdisk/i386_sys_types.c:83
msgid "Non-FS data"
msgstr "Не-ФС дані"
-#: fdisk/i386_sys_types.c:83
+#: fdisk/i386_sys_types.c:84
msgid "CP/M / CTOS / ..."
msgstr "CP/M / CTOS / ..."
#. CP/M or Concurrent CP/M or
#. Concurrent DOS or CTOS
-#: fdisk/i386_sys_types.c:85
+#: fdisk/i386_sys_types.c:86
msgid "Dell Utility"
msgstr "Dell Utility"
#. Dell PowerEdge Server utilities
-#: fdisk/i386_sys_types.c:86
+#: fdisk/i386_sys_types.c:87
msgid "BootIt"
msgstr "BootIt"
#. BootIt EMBRM
-#: fdisk/i386_sys_types.c:87
+#: fdisk/i386_sys_types.c:88
msgid "DOS access"
msgstr "DOS access"
#. DOS access or SpeedStor 12-bit FAT
#. extended partition
-#: fdisk/i386_sys_types.c:89
+#: fdisk/i386_sys_types.c:90
msgid "DOS R/O"
msgstr "DOS R/O"
#. SpeedStor 16-bit FAT extended
#. partition < 1024 cyl.
-#: fdisk/i386_sys_types.c:92
+#: fdisk/i386_sys_types.c:93
msgid "BeOS fs"
msgstr "BeOS fs"
-#: fdisk/i386_sys_types.c:93
+#: fdisk/i386_sys_types.c:94
msgid "EFI GPT"
msgstr "EFI GPT"
#. Intel EFI GUID Partition Table
-#: fdisk/i386_sys_types.c:94
+#: fdisk/i386_sys_types.c:95
msgid "EFI (FAT-12/16/32)"
msgstr "EFI (FAT-12/16/32)"
#. Intel EFI System Partition
-#: fdisk/i386_sys_types.c:95
+#: fdisk/i386_sys_types.c:96
msgid "Linux/PA-RISC boot"
msgstr "Linux/PA-RISC boot"
#. SpeedStor large partition
-#: fdisk/i386_sys_types.c:98
+#: fdisk/i386_sys_types.c:99
msgid "DOS secondary"
msgstr "DOS secondary"
#. New (2.2.x) raid partition with
#. autodetect using persistent
#. superblock
-#: fdisk/i386_sys_types.c:102
+#: fdisk/i386_sys_types.c:103
msgid "LANstep"
msgstr "LANstep"
#. SpeedStor >1024 cyl. or LANstep
-#: fdisk/i386_sys_types.c:103
+#: fdisk/i386_sys_types.c:104
msgid "BBT"
msgstr "BBT"
@@ -5298,126 +5337,126 @@ msgstr "getopt (розширена) 1.1.3\n"
msgid "internal error, contact the author."
msgstr "внутрішня помилка, зв'яжіться з автором."
-#: hwclock/cmos.c:176
+#: hwclock/cmos.c:177
msgid "booted from MILO\n"
msgstr "система завантажена з MILO\n"
-#: hwclock/cmos.c:185
+#: hwclock/cmos.c:186
msgid "Ruffian BCD clock\n"
msgstr "Ruffian BCD годинник\n"
-#: hwclock/cmos.c:201
+#: hwclock/cmos.c:202
#, c-format
msgid "clockport adjusted to 0x%x\n"
msgstr "порт годинника настроєно на 0x%x\n"
-#: hwclock/cmos.c:213
+#: hwclock/cmos.c:214
msgid "funky TOY!\n"
msgstr "боязливий TOY!\n"
-#: hwclock/cmos.c:267
+#: hwclock/cmos.c:268
#, c-format
msgid "%s: atomic %s failed for 1000 iterations!"
msgstr "%s: помилка атомарної операція %s за 1000 ітерацій!"
-#: hwclock/cmos.c:591
+#: hwclock/cmos.c:592
#, c-format
msgid "Cannot open /dev/port: %s"
msgstr "не вдається відкрити /dev/port: %s"
-#: hwclock/cmos.c:598
+#: hwclock/cmos.c:599
msgid "I failed to get permission because I didn't try.\n"
msgstr "не вдається отримати дозвіл, тому-що не було зроблено спроби.\n"
-#: hwclock/cmos.c:601
+#: hwclock/cmos.c:602
#, 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:604
+#: hwclock/cmos.c:605
msgid "Probably you need root privileges.\n"
msgstr "Можливо слід мати права адміністратора.\n"
-#: hwclock/hwclock.c:223
+#: hwclock/hwclock.c:224
#, c-format
msgid "Assuming hardware clock is kept in %s time.\n"
msgstr "Вважається, що апаратний годинник синхронізований з %s часом.\n"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:318
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:319
msgid "UTC"
msgstr "UTC"
-#: hwclock/hwclock.c:224 hwclock/hwclock.c:317
+#: hwclock/hwclock.c:225 hwclock/hwclock.c:318
msgid "local"
msgstr "локальний"
-#: hwclock/hwclock.c:303
+#: hwclock/hwclock.c:304
#, c-format
msgid "%s: Warning: unrecognized third line in adjtime file\n"
msgstr "%s: Попередження: нерозпізнаний третій рядок у adjtime файлі\n"
-#: hwclock/hwclock.c:305
+#: hwclock/hwclock.c:306
msgid "(Expected: `UTC' or `LOCAL' or nothing.)\n"
msgstr "(Очікувалось: або `UTC', або `LOCAL', або порожній рядок.)\n"
-#: hwclock/hwclock.c:312
+#: hwclock/hwclock.c:313
#, c-format
msgid "Last drift adjustment done at %ld seconds after 1969\n"
msgstr "Остання корекція відхилення виконана у %ld секунд після 1969\n"
-#: hwclock/hwclock.c:314
+#: hwclock/hwclock.c:315
#, c-format
msgid "Last calibration done at %ld seconds after 1969\n"
msgstr "Останнє калібрування виконано у %ld секунд після 1969\n"
-#: hwclock/hwclock.c:316
+#: hwclock/hwclock.c:317
#, c-format
msgid "Hardware clock is on %s time\n"
msgstr "Апаратний годинник налаштований на %s час\n"
-#: hwclock/hwclock.c:318
+#: hwclock/hwclock.c:319
msgid "unknown"
msgstr "невідомий"
-#: hwclock/hwclock.c:342
+#: hwclock/hwclock.c:343
msgid "Waiting for clock tick...\n"
msgstr "Очікується сигнал годинника...\n"
-#: hwclock/hwclock.c:346
+#: hwclock/hwclock.c:347
msgid "...got clock tick\n"
msgstr "...отримано сигнал годинника\n"
-#: hwclock/hwclock.c:399
+#: hwclock/hwclock.c:400
#, c-format
msgid "Invalid values in hardware clock: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
msgstr ""
"Неправильне значення у апаратному годиннику: %4d/%.2d/%.2d %.2d:%.2d:%.2d\n"
-#: hwclock/hwclock.c:407
+#: hwclock/hwclock.c:408
#, c-format
msgid "Hw clock time : %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Час апаратного годинника: %4d/%.2d/%.2d %.2d:%.2d:%.2d = %ld секунд після "
"1969\n"
-#: hwclock/hwclock.c:435
+#: hwclock/hwclock.c:436
#, c-format
msgid "Time read from Hardware Clock: %4d/%.2d/%.2d %02d:%02d:%02d\n"
msgstr "Час прочитаний з апаратного годинника: %4d/%.2d/%.2d %02d:%02d:%02d\n"
-#: hwclock/hwclock.c:462
+#: hwclock/hwclock.c:463
#, c-format
msgid "Setting Hardware Clock to %.2d:%.2d:%.2d = %ld seconds since 1969\n"
msgstr ""
"Апаратний годинник встановлюється у %.2d:%.2d:%.2d = %ld секунд після 1969\n"
-#: hwclock/hwclock.c:468
+#: hwclock/hwclock.c:469
msgid "Clock not changed - testing only.\n"
msgstr "Годинник не змінено - лише перевірка.\n"
-#: hwclock/hwclock.c:516
+#: hwclock/hwclock.c:517
#, c-format
msgid ""
"Time elapsed since reference time has been %.6f seconds.\n"
@@ -5426,7 +5465,7 @@ msgstr ""
"Час, що минув з синхронізації часу %.6f секунд.\n"
"Очікується досягнення наступної повної секунди.\n"
-#: hwclock/hwclock.c:545
+#: hwclock/hwclock.c:546
msgid ""
"The Hardware Clock registers contain values that are either invalid (e.g. "
"50th day of month) or beyond the range we can handle (e.g. Year 2095).\n"
@@ -5435,20 +5474,20 @@ msgstr ""
"(наприклад 50-й день місяця), або за межами, які може обробити програма "
"(наприклад 2095рік).\n"
-#: hwclock/hwclock.c:555
+#: hwclock/hwclock.c:556
#, c-format
msgid "%s %.6f seconds\n"
msgstr "%s %.6f секунд\n"
-#: hwclock/hwclock.c:589
+#: hwclock/hwclock.c:590
msgid "No --date option specified.\n"
msgstr "Не було вказано параметр --date.\n"
-#: hwclock/hwclock.c:595
+#: hwclock/hwclock.c:596
msgid "--date argument too long\n"
msgstr "аргумент --date надто довгий\n"
-#: hwclock/hwclock.c:602
+#: hwclock/hwclock.c:603
msgid ""
"The value of the --date option is not a valid date.\n"
"In particular, it contains quotation marks.\n"
@@ -5456,22 +5495,22 @@ msgstr ""
"Значення аргументу --date не є правильною датою.\n"
"Зокрема, воно містить лапки.\n"
-#: hwclock/hwclock.c:610
+#: hwclock/hwclock.c:611
#, c-format
msgid "Issuing date command: %s\n"
msgstr "Виконується команда date: %s\n"
-#: hwclock/hwclock.c:614
+#: hwclock/hwclock.c:615
msgid "Unable to run 'date' program in /bin/sh shell. popen() failed"
msgstr ""
"не вдається виконати команду 'date' у оболонці /bin/sh. Помилка popen()"
-#: hwclock/hwclock.c:622
+#: hwclock/hwclock.c:623
#, c-format
msgid "response from date command = %s\n"
msgstr "вивід команди date = %s\n"
-#: hwclock/hwclock.c:624
+#: hwclock/hwclock.c:625
#, c-format
msgid ""
"The date command issued by %s returned unexpected results.\n"
@@ -5486,7 +5525,7 @@ msgstr ""
"Результат:\n"
" %s\n"
-#: hwclock/hwclock.c:636
+#: hwclock/hwclock.c:637
#, c-format
msgid ""
"The date command issued by %s returned something other than an integer where "
@@ -5503,12 +5542,12 @@ msgstr ""
"Результат:\n"
" %s\n"
-#: hwclock/hwclock.c:647
+#: hwclock/hwclock.c:648
#, c-format
msgid "date string %s equates to %ld seconds since 1969.\n"
msgstr "рядок дати %s дорівнює %ld секундам з 1969.\n"
-#: hwclock/hwclock.c:679
+#: hwclock/hwclock.c:680
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot set the "
"System Time from it.\n"
@@ -5516,35 +5555,35 @@ msgstr ""
"Апаратний годинник містить неправильний час, програма не може встановити по "
"ньому системний час.\n"
-#: hwclock/hwclock.c:701
+#: hwclock/hwclock.c:702
msgid "Calling settimeofday:\n"
msgstr "Запускається settimeofday:\n"
-#: hwclock/hwclock.c:702
+#: hwclock/hwclock.c:703
#, c-format
msgid "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
msgstr "\ttv.tv_sec = %ld, tv.tv_usec = %ld\n"
-#: hwclock/hwclock.c:704
+#: hwclock/hwclock.c:705
#, c-format
msgid "\ttz.tz_minuteswest = %d\n"
msgstr "\ttz.tz_minuteswest = %d\n"
-#: hwclock/hwclock.c:707
+#: hwclock/hwclock.c:708
msgid "Not setting system clock because running in test mode.\n"
msgstr ""
"Системний час не встановлюється, тому що запущений у тестовому режимі.\n"
-#: hwclock/hwclock.c:716
+#: hwclock/hwclock.c:717
msgid "Must be superuser to set system clock.\n"
msgstr ""
"Для встановлення системного часу необхідно мати права адміністратора.\n"
-#: hwclock/hwclock.c:719
+#: hwclock/hwclock.c:720
msgid "settimeofday() failed"
msgstr "помилка у settimeofday()"
-#: hwclock/hwclock.c:749
+#: hwclock/hwclock.c:750
msgid ""
"Not adjusting drift factor because the Hardware Clock previously contained "
"garbage.\n"
@@ -5552,7 +5591,7 @@ msgstr ""
"Коефіцієнт відхилення не корегується, тому що попереднє значення апаратного "
"годинника було неправильним.\n"
-#: hwclock/hwclock.c:754
+#: hwclock/hwclock.c:755
msgid ""
"Not adjusting drift factor because last calibration time is zero,\n"
"so history is bad and calibration startover is necessary.\n"
@@ -5561,7 +5600,7 @@ msgstr ""
"дорівнює нулю,\n"
"тому попереднє значення неправильне та необхідне рекалібрування.\n"
-#: hwclock/hwclock.c:760
+#: hwclock/hwclock.c:761
msgid ""
"Not adjusting drift factor because it has been less than a day since the "
"last calibration.\n"
@@ -5569,7 +5608,7 @@ msgstr ""
"Коефіцієнт відхилення не корегується, тому що минуло менше доби з моменту "
"останнього калібрування.\n"
-#: hwclock/hwclock.c:808
+#: hwclock/hwclock.c:809
#, c-format
msgid ""
"Clock drifted %.1f seconds in the past %d seconds in spite of a drift factor "
@@ -5580,23 +5619,23 @@ msgstr ""
"поправочний коефіцієнт відхилення %f секунд/добу.\n"
"Коефіцієнт відхилення корегується на %f секунд/добу\n"
-#: hwclock/hwclock.c:859
+#: hwclock/hwclock.c:860
#, c-format
msgid "Time since last adjustment is %d seconds\n"
msgstr "З моменту останнього корегування минуло %d секунд\n"
-#: hwclock/hwclock.c:861
+#: hwclock/hwclock.c:862
#, c-format
msgid "Need to insert %d seconds and refer time back %.6f seconds ago\n"
msgstr ""
"Необхідно вставити %d секунд та знову перевірити час знову %.6f секунд "
"назад\n"
-#: hwclock/hwclock.c:890
+#: hwclock/hwclock.c:891
msgid "Not updating adjtime file because of testing mode.\n"
msgstr "У тестовому режимі файл adjtime не оновлюється.\n"
-#: hwclock/hwclock.c:891
+#: hwclock/hwclock.c:892
#, c-format
msgid ""
"Would have written the following to %s:\n"
@@ -5605,36 +5644,36 @@ msgstr ""
"У файл %s було б записано:\n"
"%s"
-#: hwclock/hwclock.c:915
+#: hwclock/hwclock.c:916
msgid "Drift adjustment parameters not updated.\n"
msgstr "Параметри корекції відхилення не оновлені.\n"
-#: hwclock/hwclock.c:956
+#: hwclock/hwclock.c:957
msgid ""
"The Hardware Clock does not contain a valid time, so we cannot adjust it.\n"
msgstr ""
"У апаратному годиннику встановлено некоректний час, тому його не "
"вдаєтьсяскорегувати.\n"
-#: hwclock/hwclock.c:988
+#: hwclock/hwclock.c:989
msgid "Needed adjustment is less than one second, so not setting clock.\n"
msgstr ""
"Необхідна корекція менше ніж на одну секунду, тому годинник не оновлюється.\n"
-#: hwclock/hwclock.c:1014
+#: hwclock/hwclock.c:1015
#, c-format
msgid "Using %s.\n"
msgstr "Використовується %s.\n"
-#: hwclock/hwclock.c:1016
+#: hwclock/hwclock.c:1017
msgid "No usable clock interface found.\n"
msgstr "Не знайдено підтримуваного інтерфейсу годинника.\n"
-#: hwclock/hwclock.c:1112
+#: hwclock/hwclock.c:1113
msgid "Unable to set system clock.\n"
msgstr "не вдається встановити системний час.\n"
-#: hwclock/hwclock.c:1142
+#: hwclock/hwclock.c:1143
msgid ""
"The kernel keeps an epoch value for the Hardware Clock only on an Alpha "
"machine.\n"
@@ -5645,16 +5684,16 @@ msgstr ""
"Ця копія hwclock скомпільована для іншої архітектури, ніж Alpha\n"
"(тож, напевно, ця система не є системою Alpha). Ніяких дій не виконано.\n"
-#: hwclock/hwclock.c:1151
+#: hwclock/hwclock.c:1152
msgid "Unable to get the epoch value from the kernel.\n"
msgstr "не вдається отримати значення епохи від ядра.\n"
-#: hwclock/hwclock.c:1153
+#: hwclock/hwclock.c:1154
#, c-format
msgid "Kernel is assuming an epoch value of %lu\n"
msgstr "Ядро вважає, що значення епохи - %lu\n"
-#: hwclock/hwclock.c:1156
+#: hwclock/hwclock.c:1157
msgid ""
"To set the epoch value, you must use the 'epoch' option to tell to what "
"value to set it.\n"
@@ -5662,16 +5701,16 @@ msgstr ""
"Щоб встановити значення епохи, необхідно використовувати параметр 'epoch' із "
"зазначенням встановлюваного значення.\n"
-#: hwclock/hwclock.c:1159
+#: hwclock/hwclock.c:1160
#, c-format
msgid "Not setting the epoch to %d - testing only.\n"
msgstr "Епоха не встановлюється у %d - лише тестування.\n"
-#: hwclock/hwclock.c:1162
+#: hwclock/hwclock.c:1163
msgid "Unable to set the epoch value in the kernel.\n"
msgstr "не вдається встановити значення епохи у ядрі.\n"
-#: hwclock/hwclock.c:1196
+#: hwclock/hwclock.c:1197
#, c-format
msgid ""
"hwclock - query and set the hardware clock (RTC)\n"
@@ -5731,7 +5770,7 @@ msgstr ""
" --noadjfile не обробляти /etc/adjtime. Вимагає використання або --utc,\n"
" або --localtime\n"
-#: hwclock/hwclock.c:1223
+#: hwclock/hwclock.c:1224
msgid ""
" --jensen, --arc, --srm, --funky-toy\n"
" tell hwclock the type of alpha you have (see hwclock(8))\n"
@@ -5740,12 +5779,12 @@ msgstr ""
" вказати hwclock тип вашої системи alpha (дивіться hwclock"
"(8))\n"
-#: hwclock/hwclock.c:1397
+#: hwclock/hwclock.c:1398
#, c-format
msgid "%s takes no non-option arguments. You supplied %d.\n"
msgstr "%s не очікує параметрів без ключів. Ви вказали %d.\n"
-#: hwclock/hwclock.c:1403
+#: hwclock/hwclock.c:1404
msgid ""
"You have specified multiple functions.\n"
"You can only perform one function at a time.\n"
@@ -5753,7 +5792,7 @@ msgstr ""
"Ви вказали декілька функцій.\n"
"Можна виконувати лише одну функцію одночасно.\n"
-#: hwclock/hwclock.c:1410
+#: hwclock/hwclock.c:1411
#, c-format
msgid ""
"%s: The --utc and --localtime options are mutually exclusive. You specified "
@@ -5762,7 +5801,7 @@ msgstr ""
"%s: Параметри --utc та --localtime виключають одне одного. А ви вказали "
"обидва.\n"
-#: hwclock/hwclock.c:1417
+#: hwclock/hwclock.c:1418
#, c-format
msgid ""
"%s: The --adjust and --noadjfile options are mutually exclusive. You "
@@ -5771,25 +5810,25 @@ msgstr ""
"%s: Параметри --adjust та --noadjfile виключають одне одного. А ви вказали "
"обидва.\n"
-#: hwclock/hwclock.c:1424
+#: hwclock/hwclock.c:1425
#, c-format
msgid "%s: With --noadjfile, you must specify either --utc or --localtime\n"
msgstr ""
"%s: Разом з --noadjfile, необхідно вказувати або --utc, або --localtime\n"
-#: hwclock/hwclock.c:1438
+#: hwclock/hwclock.c:1439
msgid "No usable set-to time. Cannot set clock.\n"
msgstr "Вказано неправильне значення часу. не вдається встановити годинник.\n"
-#: hwclock/hwclock.c:1454
+#: hwclock/hwclock.c:1455
msgid "Sorry, only the superuser can change the Hardware Clock.\n"
msgstr "Змінювати значення апаратного годинника може лише адміністратор.\n"
-#: hwclock/hwclock.c:1459
+#: hwclock/hwclock.c:1460
msgid "Sorry, only the superuser can change the System Clock.\n"
msgstr "Змінювати системний час може лише адміністратор.\n"
-#: hwclock/hwclock.c:1464
+#: hwclock/hwclock.c:1465
msgid ""
"Sorry, only the superuser can change the Hardware Clock epoch in the "
"kernel.\n"
@@ -5797,113 +5836,113 @@ msgstr ""
"Змінювати значення епохи апаратного годинника у ядрі може лише "
"адміністратор.\n"
-#: hwclock/hwclock.c:1484
+#: hwclock/hwclock.c:1485
msgid "Cannot access the Hardware Clock via any known method.\n"
msgstr ""
"не вдається отримати доступ до апаратного годинника використовуючи будь-який "
"відомий метод.\n"
-#: hwclock/hwclock.c:1488
+#: hwclock/hwclock.c:1489
msgid ""
"Use the --debug option to see the details of our search for an access "
"method.\n"
msgstr "Щоб переглянути подробиці пошуку методу доступу вкажіть --debug.\n"
-#: hwclock/kd.c:54
+#: hwclock/kd.c:55
msgid "Waiting in loop for time from KDGHWCLK to change\n"
msgstr "Очікування зміни часу з KDGHWCLK у циклі\n"
-#: hwclock/kd.c:57
+#: hwclock/kd.c:58
msgid "KDGHWCLK ioctl to read time failed"
msgstr "Помилка зчитування часу з системному виклику ioctl KDGHWCLK"
-#: hwclock/kd.c:78 hwclock/rtc.c:187
+#: hwclock/kd.c:79 hwclock/rtc.c:188
msgid "Timed out waiting for time change.\n"
msgstr "Вийшов час очікування зміни часу.\n"
-#: hwclock/kd.c:82
+#: hwclock/kd.c:83
msgid "KDGHWCLK ioctl to read time failed in loop"
msgstr "Помилка зчитування у циклі часу з системному виклику ioctl KDGHWCLK"
-#: hwclock/kd.c:104
+#: hwclock/kd.c:105
#, c-format
msgid "ioctl() failed to read time from %s"
msgstr "помилка зчитування часу у ioctl() з %s"
-#: hwclock/kd.c:140
+#: hwclock/kd.c:141
msgid "ioctl KDSHWCLK failed"
msgstr "помилка ioctl KDSHWCLK"
#. probably KDGHWCLK exists on m68k only
-#: hwclock/kd.c:176
+#: hwclock/kd.c:177
msgid "Can't open /dev/tty1 or /dev/vc/1"
msgstr "не вдається відкрити /dev/tty1 чи /dev/vc/1"
-#: hwclock/kd.c:180
+#: hwclock/kd.c:181
msgid "KDGHWCLK ioctl failed"
msgstr "помилка ioctl KDSHWCLK"
-#: hwclock/rtc.c:115 hwclock/rtc.c:208
+#: hwclock/rtc.c:116 hwclock/rtc.c:209
#, c-format
msgid "open() of %s failed"
msgstr "помилка у open() для %s"
-#: hwclock/rtc.c:149
+#: hwclock/rtc.c:150
#, c-format
msgid "ioctl() to %s to read the time failed.\n"
msgstr "зчитування часу у ioctl() для %s.\n"
-#: hwclock/rtc.c:171
+#: hwclock/rtc.c:172
#, c-format
msgid "Waiting in loop for time from %s to change\n"
msgstr "Очікування зміни часу з %s у циклі\n"
-#: hwclock/rtc.c:226
+#: hwclock/rtc.c:227
#, c-format
msgid "%s does not have interrupt functions. "
msgstr "%s не має функції переривання."
-#: hwclock/rtc.c:237
+#: hwclock/rtc.c:238
#, c-format
msgid "read() to %s to wait for clock tick failed"
msgstr "помилка очікування у циклі в read() для %s"
-#: hwclock/rtc.c:255
+#: hwclock/rtc.c:256
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick failed"
msgstr "помилка очікування у циклі в read() для %s"
-#: hwclock/rtc.c:258
+#: hwclock/rtc.c:259
#, fuzzy, c-format
msgid "select() to %s to wait for clock tick timed out\n"
msgstr "помилка очікування у циклі в read() для %s"
-#: hwclock/rtc.c:267
+#: hwclock/rtc.c:268
#, c-format
msgid "ioctl() to %s to turn off update interrupts failed"
msgstr "помилка вимкнення оновлення переривань у ioctl() для %s"
-#: hwclock/rtc.c:270
+#: hwclock/rtc.c:271
#, c-format
msgid "ioctl() to %s to turn on update interrupts failed unexpectedly"
msgstr "неочікувана помилка вимкнення оновлення переривань у ioctl() для %s"
-#: hwclock/rtc.c:329
+#: hwclock/rtc.c:330
#, c-format
msgid "ioctl() to %s to set the time failed.\n"
msgstr "помилка встановлення часу в ioctl() для %s.\n"
-#: hwclock/rtc.c:335
+#: hwclock/rtc.c:336
#, c-format
msgid "ioctl(%s) was successful.\n"
msgstr "ioctl(%s) успішно виконано.\n"
-#: hwclock/rtc.c:364
+#: hwclock/rtc.c:365
#, c-format
msgid "Open of %s failed"
msgstr "Помилка відкривання %s"
-#: hwclock/rtc.c:382 hwclock/rtc.c:428
+#: hwclock/rtc.c:383 hwclock/rtc.c:429
#, c-format
msgid ""
"To manipulate the epoch value in the kernel, we must access the Linux 'rtc' "
@@ -5913,17 +5952,17 @@ msgstr ""
"для маніпулювання значенням епохи у ядрі необхідно отримати доступ до Linux "
"'rtc' пристрою через спеціальний файл %s. Цей файл не існує у цій системі.\n"
-#: hwclock/rtc.c:387 hwclock/rtc.c:433
+#: hwclock/rtc.c:388 hwclock/rtc.c:434
#, c-format
msgid "Unable to open %s"
msgstr "не вдається відкрити %s"
-#: hwclock/rtc.c:394
+#: hwclock/rtc.c:395
#, c-format
msgid "ioctl(RTC_EPOCH_READ) to %s failed"
msgstr "помилка у ioctl(RTC_EPOCH_READ) для %s"
-#: hwclock/rtc.c:400
+#: hwclock/rtc.c:401
#, c-format
msgid "we have read epoch %ld from %s with RTC_EPOCH_READ ioctl.\n"
msgstr "прочитано значення епохи %ld з %s через RTC_EPOCH_READ ioctl.\n"
@@ -5931,24 +5970,24 @@ msgstr "прочитано значення епохи %ld з %s через RTC_
#. kernel would not accept this epoch value
#. Hmm - bad habit, deciding not to do what the user asks
#. just because one believes that the kernel might not like it.
-#: hwclock/rtc.c:420
+#: hwclock/rtc.c:421
#, c-format
msgid "The epoch value may not be less than 1900. You requested %ld\n"
msgstr "Значення епохи не може бути нижчим ніж 1900. Ви вказали %ld\n"
-#: hwclock/rtc.c:438
+#: hwclock/rtc.c:439
#, c-format
msgid "setting epoch to %ld with RTC_EPOCH_SET ioctl to %s.\n"
msgstr "встановлюється епоха = %ld через RTC_EPOCH_SET ioctl у %s.\n"
-#: hwclock/rtc.c:443
+#: hwclock/rtc.c:444
#, c-format
msgid ""
"The kernel device driver for %s does not have the RTC_EPOCH_SET ioctl.\n"
msgstr ""
"Драйвер ядра для %s не підтримує системний виклик RTC_EPOCH_SET ioctl.\n"
-#: hwclock/rtc.c:446
+#: hwclock/rtc.c:447
#, c-format
msgid "ioctl(RTC_EPOCH_SET) to %s failed"
msgstr "помилка у ioctl(RTC_EPOCH_SET) для %s"
@@ -6166,7 +6205,7 @@ msgid "Password error."
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:297
+#: login-utils/newgrp.c:48 login-utils/simpleinit.c:340 mount/lomount.c:297
#: mount/lomount.c:300
msgid "Password: "
msgstr "Пароль: "
@@ -6971,36 +7010,36 @@ msgstr "Відключення решти файлових систем..."
msgid "shutdown: Couldn't umount %s: %s\n"
msgstr "shutdown: не вдається відключити %s: %s\n"
-#: login-utils/simpleinit.c:130
+#: login-utils/simpleinit.c:132
msgid "Booting to single user mode.\n"
msgstr "Перевантаження у режим єдиного користувача.\n"
-#: login-utils/simpleinit.c:134
+#: login-utils/simpleinit.c:136
msgid "exec of single user shell failed\n"
msgstr "помилка виконання єдиної оболонки користувача\n"
-#: login-utils/simpleinit.c:138
+#: login-utils/simpleinit.c:140
msgid "fork of single user shell failed\n"
msgstr "помилка створення процесу оболонки єдиного користувача\n"
-#: login-utils/simpleinit.c:206
+#: login-utils/simpleinit.c:208
msgid "error opening fifo\n"
msgstr "помилка відкривання fifo\n"
-#: login-utils/simpleinit.c:210
+#: login-utils/simpleinit.c:212
msgid "error setting close-on-exec on /dev/initctl"
msgstr "помилка встановлення close-on-exec на /dev/initctl"
-#: login-utils/simpleinit.c:257
+#: login-utils/simpleinit.c:259
msgid "error running finalprog\n"
msgstr "помилка запуску final_prog\n"
#. Error
-#: login-utils/simpleinit.c:261
+#: login-utils/simpleinit.c:263
msgid "error forking finalprog\n"
msgstr "помилка створення процесу final_prog\n"
-#: login-utils/simpleinit.c:343
+#: login-utils/simpleinit.c:345
msgid ""
"\n"
"Wrong password.\n"
@@ -7008,35 +7047,35 @@ msgstr ""
"\n"
"Неправильний пароль.\n"
-#: login-utils/simpleinit.c:416
+#: login-utils/simpleinit.c:418
msgid "lstat of path failed\n"
msgstr "помилка виконання lstat для шляху\n"
-#: login-utils/simpleinit.c:424
+#: login-utils/simpleinit.c:426
msgid "stat of path failed\n"
msgstr "помилка виконання stat для шляху\n"
-#: login-utils/simpleinit.c:432
+#: login-utils/simpleinit.c:434
msgid "open of directory failed\n"
msgstr "помилка відкривання каталогу\n"
-#: login-utils/simpleinit.c:506
+#: login-utils/simpleinit.c:508
msgid "fork failed\n"
msgstr "помилка створення процесу\n"
-#: login-utils/simpleinit.c:537 text-utils/more.c:1622
+#: login-utils/simpleinit.c:539 text-utils/more.c:1622
msgid "exec failed\n"
msgstr "помилка запуску\n"
-#: login-utils/simpleinit.c:561
+#: login-utils/simpleinit.c:563
msgid "cannot open inittab\n"
msgstr "не вдається відкрити inittab\n"
-#: login-utils/simpleinit.c:628
+#: login-utils/simpleinit.c:630
msgid "no TERM or cannot stat tty\n"
msgstr "немає TERM або не вдається виконати stat для tty\n"
-#: login-utils/simpleinit.c:934
+#: login-utils/simpleinit.c:936
#, c-format
msgid "error stopping service: \"%s\""
msgstr "помилка зупинення служби: \"%s\""
@@ -7609,17 +7648,17 @@ msgstr "Повідомлення від %s@%s (як %s) до %s у %s ..."
msgid "Message from %s@%s on %s at %s ..."
msgstr "Повідомлення від %s@%s до %s у %s ..."
-#: mount/fstab.c:135
+#: mount/fstab.c:136
#, c-format
msgid "warning: error reading %s: %s"
msgstr "Попередження: помилка читання %s: %s"
-#: mount/fstab.c:163 mount/fstab.c:188
+#: mount/fstab.c:164 mount/fstab.c:189
#, c-format
msgid "warning: can't open %s: %s"
msgstr "Попередження: не вдається відкрити %s: %s"
-#: mount/fstab.c:168
+#: mount/fstab.c:169
#, c-format
msgid "mount: could not open %s - using %s instead\n"
msgstr "mount: не вдається відкрити %s - натомість використовується %s\n"
@@ -7628,42 +7667,42 @@ msgstr "mount: не вдається відкрити %s - натомість в
#. and we cannot create it. Read-only filesystem?
#. Too many files open in the system?
#. Filesystem full?
-#: mount/fstab.c:472
+#: mount/fstab.c:484
#, c-format
msgid "can't create lock file %s: %s (use -n flag to override)"
msgstr ""
"не вдається створити файл блокування %s: %s (для перевизначення "
"використовуйте -n)"
-#: mount/fstab.c:487
+#: mount/fstab.c:499
#, c-format
msgid "can't link lock file %s: %s (use -n flag to override)"
msgstr ""
"не вдається створити посилання на файл блокування %s: %s (для перевизначення "
"використовуйте -n)"
-#: mount/fstab.c:499
+#: mount/fstab.c:511
#, c-format
msgid "can't open lock file %s: %s (use -n flag to override)"
msgstr ""
"не вдається відкрити файл блокування %s: %s (для перевизначення "
"використовуйте -n)"
-#: mount/fstab.c:514
+#: mount/fstab.c:526
#, c-format
msgid "Can't lock lock file %s: %s\n"
msgstr "не вдається заблокувати файл блокування %s: %s\n"
-#: mount/fstab.c:526
+#: mount/fstab.c:538
#, c-format
msgid "can't lock lock file %s: %s"
msgstr "не вдається заблокувати файл блокування %s: %s"
-#: mount/fstab.c:528
+#: mount/fstab.c:540
msgid "timed out"
msgstr "вийшов час очікування"
-#: mount/fstab.c:535
+#: mount/fstab.c:547
#, c-format
msgid ""
"Cannot create link %s\n"
@@ -7672,22 +7711,22 @@ msgstr ""
"не вдається створити посилання %s\n"
"Можливо є застарілий файл файл блокування?\n"
-#: mount/fstab.c:584 mount/fstab.c:622
+#: mount/fstab.c:587 mount/fstab.c:625
#, c-format
msgid "cannot open %s (%s) - mtab not updated"
msgstr "не вдається відкрити %s (%s) - mtab не оновлено"
-#: mount/fstab.c:630
+#: mount/fstab.c:633
#, c-format
msgid "error writing %s: %s"
msgstr "помилка запису %s: %s"
-#: mount/fstab.c:640
+#: mount/fstab.c:643
#, c-format
msgid "error changing mode of %s: %s\n"
msgstr "помилка зімни режиму доступу до %s: %s\n"
-#: mount/fstab.c:658
+#: mount/fstab.c:661
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "не вдається перейменувати %s у %s: %s\n"
@@ -7756,28 +7795,28 @@ msgstr "mount: не вдається знайти жодний вільний lo
msgid "Couldn't lock into memory, exiting.\n"
msgstr "не вдається заблокувати у пам'яті, завершення.\n"
-#: mount/lomount.c:341
+#: mount/lomount.c:340
#, fuzzy, c-format
msgid "set_loop(%s,%s,%llu): success\n"
msgstr "set_loop(%s,%s,%d): успішно завершено\n"
-#: mount/lomount.c:352
+#: mount/lomount.c:351
#, c-format
msgid "loop: can't delete device %s: %s\n"
msgstr "loop: не вдається видалити пристрій %s: %s\n"
-#: mount/lomount.c:362
+#: mount/lomount.c:361
#, c-format
msgid "del_loop(%s): success\n"
msgstr "del_loop(%s): успішно завершено\n"
-#: mount/lomount.c:370
+#: mount/lomount.c:369
msgid "This mount was compiled without loop support. Please recompile.\n"
msgstr ""
"Програма mount була скомпільована без підтримки loop-пристроїв. "
"Перекомпілюйте її \n"
-#: mount/lomount.c:407
+#: mount/lomount.c:406
#, fuzzy, c-format
msgid ""
"usage:\n"
@@ -7791,12 +7830,11 @@ msgstr ""
" %s -d loop_пристрій # видалити\n"
" %s [ -e шифрування ] [ -o зсув ] loop_пристрій файл # встановити\n"
-#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45
-#: mount/sundries.c:248
+#: mount/lomount.c:425 mount/sundries.c:205
msgid "not enough memory"
msgstr "недостатньо пам'яті"
-#: mount/lomount.c:541
+#: mount/lomount.c:540
msgid "No loop support was available at compile time. Please recompile.\n"
msgstr ""
"При компіляції не було ввімкнено підтримку loop-пристроїв. Перекомпілюйте.\n"
@@ -7815,164 +7853,164 @@ msgstr "[mntent]: рядок %d у %s неправильний%s\n"
msgid "; rest of file ignored"
msgstr "; залишок файлу ігнорується"
-#: mount/mount.c:375
+#: mount/mount.c:382
#, c-format
msgid "mount: according to mtab, %s is already mounted on %s"
msgstr "mount: згідно mtab, %s вже підключений у %s"
-#: mount/mount.c:380
+#: mount/mount.c:387
#, c-format
msgid "mount: according to mtab, %s is mounted on %s"
msgstr "mount: згідно mtab, %s підключений у %s"
-#: mount/mount.c:400
+#: mount/mount.c:407
#, c-format
msgid "mount: can't open %s for writing: %s"
msgstr "mount: не вдається відкрити %s для запису: %s"
-#: mount/mount.c:417 mount/mount.c:670
+#: mount/mount.c:424 mount/mount.c:677
#, c-format
msgid "mount: error writing %s: %s"
msgstr "mount: помилка запису %s: %s"
-#: mount/mount.c:425
+#: mount/mount.c:432
#, c-format
msgid "mount: error changing mode of %s: %s"
msgstr "mount: помилка зміни прав доступу до %s: %s"
-#: mount/mount.c:476
+#: mount/mount.c:483
#, c-format
msgid "%s looks like swapspace - not mounted"
msgstr "%s схожий на розділ підкачки - не підключатиметься"
-#: mount/mount.c:563
+#: mount/mount.c:570
msgid "mount failed"
msgstr "помилка підключення"
-#: mount/mount.c:565
+#: mount/mount.c:572
#, c-format
msgid "mount: only root can mount %s on %s"
msgstr "mount: лише адміністратор(root) може підключати %s у %s"
-#: mount/mount.c:593
+#: mount/mount.c:600
msgid "mount: loop device specified twice"
msgstr "mount: loop-пристрій вказано двічі"
-#: mount/mount.c:598
+#: mount/mount.c:605
msgid "mount: type specified twice"
msgstr "mount: тип вказано двічі"
-#: mount/mount.c:610
+#: mount/mount.c:617
msgid "mount: skipping the setup of a loop device\n"
msgstr "mount: пропускається встановлення loop-пристрою\n"
-#: mount/mount.c:619
+#: mount/mount.c:626
#, c-format
msgid "mount: going to use the loop device %s\n"
msgstr "mount: буде використовуватись loop-пристрій %s\n"
-#: mount/mount.c:624
+#: mount/mount.c:631
msgid "mount: failed setting up loop device\n"
msgstr "mount: помилка встановлення loop-пристрою\n"
-#: mount/mount.c:628
+#: mount/mount.c:635
msgid "mount: setup loop device successfully\n"
msgstr "mount: встановлення loop-пристрою успішно завершено\n"
-#: mount/mount.c:665
+#: mount/mount.c:672
#, c-format
msgid "mount: can't open %s: %s"
msgstr "mount: не вдається відкрити %s: %s"
-#: mount/mount.c:686
+#: mount/mount.c:693
msgid "mount: argument to -p or --pass-fd must be a number"
msgstr "mount: аргумент для -p або --pass-fd повинен бути числом"
-#: mount/mount.c:699
+#: mount/mount.c:706
#, c-format
msgid "mount: cannot open %s for setting speed"
msgstr "mount: помилка відкривання %s для встановлення швидкості"
-#: mount/mount.c:702
+#: mount/mount.c:709
#, c-format
msgid "mount: cannot set speed: %s"
msgstr "mount: помилка встановлення швидкості: %s"
-#: mount/mount.c:756 mount/mount.c:1336
+#: mount/mount.c:763 mount/mount.c:1348
#, c-format
msgid "mount: cannot fork: %s"
msgstr "mount: помилка створення процесу: %s"
-#: mount/mount.c:844
+#: mount/mount.c:851
msgid "mount: this version was compiled without support for the type `nfs'"
msgstr "mount: цю версію програми скомпільовано без підтримки `nfs'"
-#: mount/mount.c:884
+#: mount/mount.c:891
msgid "mount: failed with nfs mount version 4, trying 3..\n"
msgstr "mount: помилка підключення nfs версії 4, пробується 3..\n"
-#: mount/mount.c:895
+#: mount/mount.c:902
msgid ""
"mount: I could not determine the filesystem type, and none was specified"
msgstr ""
"mount: не вдається визначити тип файлової системи, та тип явно не вказаний"
-#: mount/mount.c:898
+#: mount/mount.c:905
msgid "mount: you must specify the filesystem type"
msgstr "mount: необхідно вказати тип файлової системи"
#. should not happen
-#: mount/mount.c:901
+#: mount/mount.c:908
msgid "mount: mount failed"
msgstr "mount: помилка підключення"
-#: mount/mount.c:907 mount/mount.c:942
+#: mount/mount.c:914 mount/mount.c:949
#, c-format
msgid "mount: mount point %s is not a directory"
msgstr "mount: точка монтування %s не є каталогом"
-#: mount/mount.c:909
+#: mount/mount.c:916
msgid "mount: permission denied"
msgstr "mount: доступ заборонено"
-#: mount/mount.c:911
+#: mount/mount.c:918
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:915 mount/mount.c:919
+#: mount/mount.c:922 mount/mount.c:926
#, c-format
msgid "mount: %s is busy"
msgstr "mount: %s зайнятий"
#. no
#. yes, don't mention it
-#: mount/mount.c:921
+#: mount/mount.c:928
msgid "mount: proc already mounted"
msgstr "mount: proc вже підключено"
-#: mount/mount.c:923
+#: mount/mount.c:930
#, c-format
msgid "mount: %s already mounted or %s busy"
msgstr "mount: %s вже підключено або %s зайнятий"
-#: mount/mount.c:929
+#: mount/mount.c:936
#, c-format
msgid "mount: mount point %s does not exist"
msgstr "mount: точка монтування %s не існує"
-#: mount/mount.c:931
+#: mount/mount.c:938
#, c-format
msgid "mount: mount point %s is a symbolic link to nowhere"
msgstr "mount: точка монтування %s є символічним посиланням, яке вказує нікуди"
-#: mount/mount.c:934
+#: mount/mount.c:941
#, c-format
msgid "mount: special device %s does not exist"
msgstr "mount: спеціальний пристрій %s не існує"
-#: mount/mount.c:944
+#: mount/mount.c:951
#, c-format
msgid ""
"mount: special device %s does not exist\n"
@@ -7981,56 +8019,74 @@ msgstr ""
"mount: спеціальний пристрій %s не існує\n"
" (префікс шляху не є каталогом)\n"
-#: mount/mount.c:957
+#: mount/mount.c:964
#, c-format
msgid "mount: %s not mounted already, or bad option"
msgstr "mount: %s ще не підключений, або неправильний параметр"
-#: mount/mount.c:959
+#: mount/mount.c:966
#, fuzzy, c-format
msgid ""
"mount: wrong fs type, bad option, bad superblock on %s,\n"
-" missing codepage, or too many mounted file systems"
+" missing codepage or other error"
msgstr ""
"mount: неправильний тип файлової системи, неправильний параметр, "
"неправильний суперблок на %s,\n"
" або підключено надто багато файлових систем"
-#: mount/mount.c:993
+#: mount/mount.c:976
+msgid ""
+" (could this be the IDE device where you in fact use\n"
+" ide-scsi so that sr0 or sda or so is needed?)"
+msgstr ""
+
+#: mount/mount.c:982
+msgid ""
+" (aren't you trying to mount an extended partition,\n"
+" instead of some logical partition inside?)"
+msgstr ""
+
+#: mount/mount.c:999
+msgid ""
+" In some cases useful info is found in syslog - try\n"
+" dmesg | tail or so\n"
+msgstr ""
+
+#: mount/mount.c:1005
msgid "mount table full"
msgstr "таблиця монтування переповнена"
-#: mount/mount.c:995
+#: mount/mount.c:1007
#, c-format
msgid "mount: %s: can't read superblock"
msgstr "mount: %s: не вдається прочитати суперблок"
-#: mount/mount.c:999
+#: mount/mount.c:1011
#, c-format
msgid "mount: %s: unknown device"
msgstr "mount: %s: невідомий пристрій"
-#: mount/mount.c:1004
+#: mount/mount.c:1016
#, fuzzy, c-format
msgid "mount: unknown filesystem type '%s'"
msgstr " l перелік відомих типів файлових систем"
-#: mount/mount.c:1016
+#: mount/mount.c:1028
#, c-format
msgid "mount: probably you meant %s"
msgstr "mount: можливо ви мали на увазі %s"
-#: mount/mount.c:1018
+#: mount/mount.c:1030
#, fuzzy
msgid "mount: maybe you meant 'iso9660'?"
msgstr "mount: можливо ви мали на увазі iso9660 ?"
-#: mount/mount.c:1020
+#: mount/mount.c:1032
#, fuzzy
msgid "mount: maybe you meant 'vfat'?"
msgstr "mount: можливо ви мали на увазі iso9660 ?"
-#: mount/mount.c:1023
+#: mount/mount.c:1035
#, c-format
msgid "mount: %s has wrong device number or fs type %s not supported"
msgstr ""
@@ -8038,12 +8094,12 @@ msgstr ""
"підтримується"
#. strange ...
-#: mount/mount.c:1029
+#: mount/mount.c:1041
#, c-format
msgid "mount: %s is not a block device, and stat fails?"
msgstr "mount: %s не є блочним пристроєм, та stat зазнав невдачі?"
-#: mount/mount.c:1031
+#: mount/mount.c:1043
#, c-format
msgid ""
"mount: the kernel does not recognize %s as a block device\n"
@@ -8052,47 +8108,47 @@ msgstr ""
"mount: ядро не розпізнало %s як блочний пристрій\n"
" (можливо треба виконати `insmod драйвер'?)"
-#: mount/mount.c:1034
+#: mount/mount.c:1046
#, c-format
msgid "mount: %s is not a block device (maybe try `-o loop'?)"
msgstr "mount: %s не є блочним пристроєм (можливо, спробуйте `-o loop'?)"
-#: mount/mount.c:1037
+#: mount/mount.c:1049
#, c-format
msgid "mount: %s is not a block device"
msgstr "mount: %s не є блочним пристроєм"
-#: mount/mount.c:1040
+#: mount/mount.c:1052
#, 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:1043
+#: mount/mount.c:1055
msgid "block device "
msgstr "блочний пристрій "
-#: mount/mount.c:1045
+#: mount/mount.c:1057
#, c-format
msgid "mount: cannot mount %s%s read-only"
msgstr "mount: не вдається підключити %s%s лише для читання"
-#: mount/mount.c:1049
+#: mount/mount.c:1061
#, c-format
msgid "mount: %s%s is write-protected but explicit `-w' flag given"
msgstr "mount: %s%s захищений від запису, але було вказано ключ `-w'"
-#: mount/mount.c:1066
+#: mount/mount.c:1078
#, c-format
msgid "mount: %s%s is write-protected, mounting read-only"
msgstr "mount: %s%s захищений від запису, монтується лише для читання"
-#: mount/mount.c:1165
+#: mount/mount.c:1177
msgid "mount: no type was given - I'll assume nfs because of the colon\n"
msgstr "mount: не вказано тип - вважається nfs, через наявність двокрапки\n"
-#: mount/mount.c:1171
+#: mount/mount.c:1183
msgid "mount: no type was given - I'll assume smbfs because of the // prefix\n"
msgstr ""
"mount: не вказано тип - вважається smbfs, через наявність префіксу //\n"
@@ -8100,22 +8156,22 @@ msgstr ""
#.
#. * Retry in the background.
#.
-#: mount/mount.c:1188
+#: mount/mount.c:1200
#, c-format
msgid "mount: backgrounding \"%s\"\n"
msgstr "mount: продовження спроб у фоні \"%s\"\n"
-#: mount/mount.c:1199
+#: mount/mount.c:1211
#, c-format
msgid "mount: giving up \"%s\"\n"
msgstr "mount: залишено спроби підключити \"%s\"\n"
-#: mount/mount.c:1281
+#: mount/mount.c:1293
#, c-format
msgid "mount: %s already mounted on %s\n"
msgstr "mount: %s вже підключений у %s\n"
-#: mount/mount.c:1414
+#: mount/mount.c:1426
msgid ""
"Usage: mount -V : print version\n"
" mount -h : print this help\n"
@@ -8163,47 +8219,47 @@ msgstr ""
"Інші параметри: [-nfFrsvw] [-o параметри] [-p пароль].\n"
"Додаткову інформацію дивіться у man 8 mount .\n"
-#: mount/mount.c:1603
+#: mount/mount.c:1615
msgid "mount: only root can do that"
msgstr "mount: це може робити лише адміністратор(root)"
-#: mount/mount.c:1608
+#: mount/mount.c:1620
#, c-format
msgid "mount: no %s found - creating it..\n"
msgstr "mount: не знайдено %s - створюється..\n"
-#: mount/mount.c:1620
+#: mount/mount.c:1632
msgid "mount: no such partition found"
msgstr "mount: не знайдено такого розділу"
-#: mount/mount.c:1622
+#: mount/mount.c:1634
#, c-format
msgid "mount: mounting %s\n"
msgstr "mount: підключення %s\n"
-#: mount/mount.c:1631
+#: mount/mount.c:1643
msgid "nothing was mounted"
msgstr "нічого не було підключено"
-#: mount/mount.c:1646
+#: mount/mount.c:1658
#, c-format
msgid "mount: cannot find %s in %s"
msgstr "mount: не вдається знайти %s у %s"
-#: mount/mount.c:1661
+#: mount/mount.c:1673
#, c-format
msgid "mount: can't find %s in %s or %s"
msgstr "mount: не вдається знайти %s у %s або %s"
-#: mount/mount_by_label.c:190
-#, c-format
-msgid ""
-"mount: could not open %s, so UUID and LABEL conversion cannot be done.\n"
+#: mount/mount_by_label.c:192
+#, fuzzy, c-format
+msgid "%s: could not open %s, so UUID and LABEL conversion cannot be done.\n"
msgstr ""
"mount: не вдається відкрити %s, тому конвертація UUID та LABEL неможлива.\n"
-#: mount/mount_by_label.c:310
-msgid "mount: bad UUID"
+#: mount/mount_by_label.c:315
+#, fuzzy, c-format
+msgid "%s: bad UUID"
msgstr "mount: неправильний UUID"
#: mount/mount_guess_fstype.c:489
@@ -8319,16 +8375,16 @@ msgstr "nfs connect"
msgid "unknown nfs status return value: %d"
msgstr "повернений невідомий код стану nfs: %d"
-#: mount/sundries.c:55
+#: mount/sundries.c:26
msgid "bug in xstrndup call"
msgstr "помилка при виклику xstrndup"
-#: mount/swapon.c:54
-#, c-format
+#: mount/swapon.c:57
+#, fuzzy, c-format
msgid ""
"usage: %s [-hV]\n"
" %s -a [-e] [-v]\n"
-" %s [-v] [-p priority] special ...\n"
+" %s [-v] [-p priority] special|LABEL=volume_name ...\n"
" %s [-s]\n"
msgstr ""
"використання: %s [-hV]\n"
@@ -8336,7 +8392,7 @@ msgstr ""
" %s [-v] [-p пріоритет] спец_файл ...\n"
" %s [-s]\n"
-#: mount/swapon.c:64
+#: mount/swapon.c:67
#, c-format
msgid ""
"usage: %s [-hV]\n"
@@ -8347,32 +8403,37 @@ msgstr ""
" %s -a [-v]\n"
" %s [-v] спец_файл ...\n"
-#: mount/swapon.c:168 mount/swapon.c:232
+#: mount/swapon.c:174 mount/swapon.c:266
#, c-format
msgid "%s on %s\n"
msgstr "%s на %s\n"
-#: mount/swapon.c:172
-#, c-format
-msgid "swapon: cannot stat %s: %s\n"
+#: mount/swapon.c:178 mount/swapon.c:244
+#, fuzzy, c-format
+msgid "%s: cannot find the device for %s\n"
+msgstr "%s: не вдається знайти \"_stext\" у %s\n"
+
+#: mount/swapon.c:185
+#, fuzzy, c-format
+msgid "%s: cannot stat %s: %s\n"
msgstr "swapon: не вдається отримати статистику %s: %s\n"
-#: mount/swapon.c:183
-#, c-format
-msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n"
+#: mount/swapon.c:196
+#, fuzzy, c-format
+msgid "%s: warning: %s has insecure permissions %04o, %04o suggested\n"
msgstr ""
"swapon: попередження: %s має небезпечні права %04o, пропонується %04o\n"
-#: mount/swapon.c:195
-#, c-format
-msgid "swapon: Skipping file %s - it appears to have holes.\n"
+#: mount/swapon.c:208
+#, fuzzy, c-format
+msgid "%s: Skipping file %s - it appears to have holes.\n"
msgstr "swapon: пропускається файл %s - схоже, що він містить дірки.\n"
-#: mount/swapon.c:238
+#: mount/swapon.c:276
msgid "Not superuser.\n"
msgstr "Не адміністратор.\n"
-#: mount/swapon.c:302 mount/swapon.c:397
+#: mount/swapon.c:310 mount/swapon.c:502
#, c-format
msgid "%s: cannot open %s: %s\n"
msgstr "%s: не вдається відкрити %s: %s\n"
@@ -8481,42 +8542,48 @@ msgstr ""
" umount -a [-f] [-r] [-n] [-v] [-t тип_фс] [-O параметри]\n"
" umount [-f] [-r] [-n] [-v] спец_файл | каталог...\n"
-#: mount/umount.c:557
+#. "" would be expanded to `pwd`
+#: mount/umount.c:553
+#, fuzzy
+msgid "Cannot umount \"\"\n"
+msgstr "не вдається відкрити "
+
+#: mount/umount.c:559
#, c-format
msgid "Trying to umount %s\n"
msgstr "Спроба відключити %s\n"
-#: mount/umount.c:563
+#: mount/umount.c:565
#, c-format
msgid "Could not find %s in mtab\n"
msgstr "не вдається знайти %s у mtab\n"
-#: mount/umount.c:570
+#: mount/umount.c:572
#, c-format
msgid "umount: %s is not mounted (according to mtab)"
msgstr "umount: %s не є підключеним (згідно mtab)"
-#: mount/umount.c:574
+#: mount/umount.c:579
#, c-format
msgid "umount: it seems %s is mounted multiple times"
msgstr "umount: здається %s підключений декілька разів"
-#: mount/umount.c:587
+#: mount/umount.c:592
#, c-format
msgid "umount: %s is not in the fstab (and you are not root)"
msgstr "umount: %s відсутній у fstab (та ви не адміністратор)"
-#: mount/umount.c:591
+#: mount/umount.c:596
#, c-format
msgid "umount: %s mount disagrees with the fstab"
msgstr "umount: підключений %s відрізняється від fstab"
-#: mount/umount.c:632
+#: mount/umount.c:637
#, fuzzy, c-format
msgid "umount: only %s can unmount %s from %s"
msgstr "umount: лише адміністратор може відключити %s від %s"
-#: mount/umount.c:713
+#: mount/umount.c:718
msgid "umount: only root can do that"
msgstr "umount: це може робити лише адміністратор(root)"
@@ -9978,9 +10045,6 @@ msgstr "Недостатньо пам'яті для збільшення буф
#~ msgid "UUID"
#~ msgstr "UUID"
-#~ msgid "label"
-#~ msgstr "етикетка"
-
#~ msgid "mount: the label %s occurs on both %s and %s - not mounted\n"
#~ msgstr ""
#~ "mount: ім'я %s зустрічається як на %s, так і на %s - не підключено\n"
diff --git a/sys-utils/tunelp.8 b/sys-utils/tunelp.8
index ac01ed400..963243138 100644
--- a/sys-utils/tunelp.8
+++ b/sys-utils/tunelp.8
@@ -110,7 +110,11 @@ current IRQ, is implied.
.TP
.B \-T [on|off]
-This option tell the lp driver to trust or not the IRQ.
+This option is obsolete. It was added in Linux 2.1.131,
+and removed again in Linux 2.3.10. The below is for these
+old kernels only.
+
+This option tells the lp driver to trust or not the IRQ.
This option makes sense only if you are using interrupts.
If you tell the lp driver to trust the irq, then, when the lp driver will
get an irq, it will send the next pending character to the printer