diff -Nru ubiquity-2.10.26/d-i/manifest ubiquity-2.10.28/d-i/manifest --- ubiquity-2.10.26/d-i/manifest 2013-07-20 00:01:06.000000000 +0000 +++ ubiquity-2.10.28/d-i/manifest 2013-12-03 18:02:48.000000000 +0000 @@ -10,16 +10,16 @@ hw-detect 1.88ubuntu2 kboot-installer 0.0.1ubuntu9 localechooser 2.39ubuntu2 -netcfg 1.68ubuntu14 +netcfg 1.68ubuntu14.1 partconf 1.37 -partman-auto 101ubuntu2 +partman-auto 101ubuntu2.2 partman-auto-loop 0ubuntu21 -partman-base 153ubuntu5 -partman-basicfilesystems 71ubuntu3.1 +partman-base 153ubuntu6 +partman-basicfilesystems 71ubuntu3.4 partman-basicmethods 49 -partman-btrfs 8ubuntu1 -partman-efi 25ubuntu1.1 -partman-ext3 67ubuntu1 +partman-btrfs 8ubuntu1.1 +partman-efi 25ubuntu1.2 +partman-ext3 67ubuntu1.1 partman-jfs 35 partman-newworld 26 partman-partitioning 85ubuntu2 diff -Nru ubiquity-2.10.26/d-i/source/netcfg/debian/changelog ubiquity-2.10.28/d-i/source/netcfg/debian/changelog --- ubiquity-2.10.26/d-i/source/netcfg/debian/changelog 2012-03-09 16:06:36.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/netcfg/debian/changelog 2013-11-19 15:47:02.000000000 +0000 @@ -1,3 +1,11 @@ +netcfg (1.68ubuntu14.1) precise; urgency=low + + [ Philipp Kern ] + * netcfg.c (main): Remove a local definition of hostname. + (Closes: #690330, LP: #901700) + + -- Chris J Arges Tue, 19 Nov 2013 09:45:02 -0600 + netcfg (1.68ubuntu14) precise; urgency=low * Fix detection of empty domains when writing to /etc/hosts in the case diff -Nru ubiquity-2.10.26/d-i/source/netcfg/netcfg.c ubiquity-2.10.28/d-i/source/netcfg/netcfg.c --- ubiquity-2.10.26/d-i/source/netcfg/netcfg.c 2012-03-06 16:30:01.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/netcfg/netcfg.c 2013-11-19 15:47:00.000000000 +0000 @@ -103,10 +103,7 @@ /* Check to see if netcfg should be run at all */ debconf_get(client, "netcfg/enable"); if (!strcmp(client->value, "false")) { - char *hostname = NULL; - netcfg_get_hostname(client, "netcfg/get_hostname", hostname, 0); - netcfg_write_common("", hostname, NULL); return 0; } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/debian/changelog ubiquity-2.10.28/d-i/source/partman-auto/debian/changelog --- ubiquity-2.10.26/d-i/source/partman-auto/debian/changelog 2012-04-11 23:27:22.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/debian/changelog 2013-09-30 14:50:47.000000000 +0000 @@ -1,3 +1,17 @@ +partman-auto (101ubuntu2.2) precise; urgency=low + + * Filter out reused partitions when calculating the size used by a recipe + (LP: #1197766). + + -- Colin Watson Mon, 30 Sep 2013 15:50:44 +0100 + +partman-auto (101ubuntu2.1) precise; urgency=low + + * Bump EFI partition size range to 512-1024MB, in line with Debian; 100MB + is too small on a disk with 4KiB logical sectors (LP: #1065281). + + -- Colin Watson Thu, 12 Sep 2013 13:58:05 +0100 + partman-auto (101ubuntu2) precise; urgency=low * Temporarily back out changes to recipes/atomic and recipes/home from diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/lib/recipes.sh ubiquity-2.10.28/d-i/source/partman-auto/lib/recipes.sh --- ubiquity-2.10.26/d-i/source/partman-auto/lib/recipes.sh 2012-04-11 10:56:49.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/lib/recipes.sh 2013-09-30 14:49:54.000000000 +0000 @@ -341,6 +341,21 @@ done } +filter_reused () { + scheme_reused=$( + foreach_partition ' + if echo "$*" | grep -q '\''\$reuse{'\''; then + echo "$*" + fi' + ) + scheme=$( + foreach_partition ' + if ! echo "$*" | grep -q '\''\$reuse{'\''; then + echo "$*" + fi' + ) +} + choose_recipe () { local recipes recipedir free_size choices min_size type target @@ -358,6 +373,7 @@ if [ ! -z "$RET" ] && [ -e "$RET" ]; then recipe="$RET" decode_recipe $recipe $type + filter_reused if [ $(min_size) -le $free_size ]; then return 0 else @@ -375,6 +391,7 @@ for recipe in $recipedir/*; do [ -f "$recipe" ] || continue decode_recipe $recipe $type + filter_reused if [ $(min_size) -le $free_size ]; then choices="${choices}${recipe}${TAB}${name}${NL}" if [ "$default_recipe" = no ]; then @@ -410,18 +427,7 @@ expand_scheme() { # Filter out reused partitions first, as we don't want to take # account of their size. - scheme_reused=$( - foreach_partition ' - if echo "$*" | grep -q '\''\$reuse{'\''; then - echo "$*" - fi' - ) - scheme=$( - foreach_partition ' - if ! echo "$*" | grep -q '\''\$reuse{'\''; then - echo "$*" - fi' - ) + filter_reused # Make factors small numbers so we can multiply on them. # Also ensure that fact, max and fs are valid diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-amd64-efi/atomic ubiquity-2.10.28/d-i/source/partman-auto/recipes-amd64-efi/atomic --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-amd64-efi/atomic 2012-03-14 12:37:33.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-amd64-efi/atomic 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/atomic_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-amd64-efi/home ubiquity-2.10.28/d-i/source/partman-auto/recipes-amd64-efi/home --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-amd64-efi/home 2012-03-14 12:37:35.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-amd64-efi/home 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/home_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-amd64-efi/multi ubiquity-2.10.28/d-i/source/partman-auto/recipes-amd64-efi/multi --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-amd64-efi/multi 2012-03-14 12:37:37.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-amd64-efi/multi 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/multi_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-i386-efi/atomic ubiquity-2.10.28/d-i/source/partman-auto/recipes-i386-efi/atomic --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-i386-efi/atomic 2012-03-14 12:37:33.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-i386-efi/atomic 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/atomic_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-i386-efi/home ubiquity-2.10.28/d-i/source/partman-auto/recipes-i386-efi/home --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-i386-efi/home 2012-03-14 12:37:35.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-i386-efi/home 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/home_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-i386-efi/multi ubiquity-2.10.28/d-i/source/partman-auto/recipes-i386-efi/multi --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-i386-efi/multi 2012-03-14 12:37:37.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-i386-efi/multi 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/multi_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/atomic ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/atomic --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/atomic 2012-03-14 12:37:33.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/atomic 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/atomic_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/home ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/home --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/home 2012-03-14 12:37:35.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/home 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/home_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/multi ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/multi --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/multi 2012-03-14 12:37:37.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-amd64-efi/multi 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/multi_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/atomic ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/atomic --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/atomic 2012-03-14 12:37:33.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/atomic 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/atomic_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/home ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/home --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/home 2012-03-14 12:37:35.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/home 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/home_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/multi ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/multi --- ubiquity-2.10.26/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/multi 2012-03-14 12:37:37.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-auto/recipes-kfreebsd-i386-efi/multi 2013-09-12 12:57:14.000000000 +0000 @@ -1,6 +1,6 @@ partman-auto/text/multi_scheme :: -100 150 200 free +512 512 1024 free $iflabel{ gpt } $reusemethod{ } method{ efi } diff -Nru ubiquity-2.10.26/d-i/source/partman-base/debian/changelog ubiquity-2.10.28/d-i/source/partman-base/debian/changelog --- ubiquity-2.10.26/d-i/source/partman-base/debian/changelog 2012-07-02 13:54:52.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-base/debian/changelog 2013-11-08 17:57:36.000000000 +0000 @@ -1,3 +1,10 @@ +partman-base (153ubuntu6) precise-proposed; urgency=low + + * Use the device's logical sector size throughout rather than + PED_SECTOR_SIZE_DEFAULT (LP: #1065281). + + -- James M Leddy Fri, 08 Nov 2013 17:57:33 +0000 + partman-base (153ubuntu5) precise-proposed; urgency=low * Permit non-cylinder alignment again on GPT (closes: #674894, diff -Nru ubiquity-2.10.26/d-i/source/partman-base/parted_devices.c ubiquity-2.10.28/d-i/source/partman-base/parted_devices.c --- ubiquity-2.10.26/d-i/source/partman-base/parted_devices.c 2012-07-02 13:48:20.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-base/parted_devices.c 2013-11-08 17:56:28.000000000 +0000 @@ -82,7 +82,7 @@ return; printf("%s\t%lli\t%s\n", dev->path, - dev->length * PED_SECTOR_SIZE_DEFAULT, + dev->length * dev->sector_size, dev->model); } diff -Nru ubiquity-2.10.26/d-i/source/partman-base/parted_server.c ubiquity-2.10.28/d-i/source/partman-base/parted_server.c --- ubiquity-2.10.26/d-i/source/partman-base/parted_server.c 2012-07-02 13:52:42.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-base/parted_server.c 2013-11-08 17:56:28.000000000 +0000 @@ -1061,8 +1061,8 @@ log("partition_with_id(%s)", id); if (2 != sscanf(id, "%lli-%lli", &start, &end)) critical_error("Bad id %s", id); - start_sector = start / PED_SECTOR_SIZE_DEFAULT; - end_sector = (end - PED_SECTOR_SIZE_DEFAULT + 1) / PED_SECTOR_SIZE_DEFAULT; + start_sector = start / disk->dev->sector_size; + end_sector = (end - disk->dev->sector_size + 1) / disk->dev->sector_size; if (disk == NULL) return NULL; for (part = NULL; @@ -1147,9 +1147,9 @@ name = ""; result = xasprintf("%i\t%lli-%lli\t%lli\t%s\t%s\t%s\t%s", part->num, - (part->geom).start * PED_SECTOR_SIZE_DEFAULT, - (part->geom).end * PED_SECTOR_SIZE_DEFAULT + PED_SECTOR_SIZE_DEFAULT - 1, - (part->geom).length * PED_SECTOR_SIZE_DEFAULT, type, fs, path, name); + (part->geom).start * disk->dev->sector_size, + (part->geom).end * disk->dev->sector_size + disk->dev->sector_size - 1, + (part->geom).length * disk->dev->sector_size, type, fs, path, name); free(path); return result; } @@ -2026,16 +2026,16 @@ free(s_fs_type); if (!strcasecmp(position, "full")) { - part_start = range_start / PED_SECTOR_SIZE_DEFAULT; - part_end = ((range_end - PED_SECTOR_SIZE_DEFAULT + 1) - / PED_SECTOR_SIZE_DEFAULT); + part_start = range_start / dev->sector_size; + part_end = ((range_end - dev->sector_size + 1) + / dev->sector_size); } else if (!strcasecmp(position, "beginning")) { - part_start = range_start / PED_SECTOR_SIZE_DEFAULT; - part_end = (range_start + length) / PED_SECTOR_SIZE_DEFAULT; + part_start = range_start / dev->sector_size; + part_end = (range_start + length) / dev->sector_size; } else if (!strcasecmp(position, "end")) { - part_start = (range_end - length) / PED_SECTOR_SIZE_DEFAULT; - part_end = ((range_end - PED_SECTOR_SIZE_DEFAULT + 1) - / PED_SECTOR_SIZE_DEFAULT); + part_start = (range_end - length) / dev->sector_size; + part_end = ((range_end - dev->sector_size + 1) + / dev->sector_size); } else critical_error("Bad position: %s", position); free(position); @@ -2113,7 +2113,7 @@ critical_error("Expected new size"); log("New size: %lli", new_size); start = (part->geom).start; - end = start + new_size / PED_SECTOR_SIZE_DEFAULT - 1; + end = start + new_size / dev->sector_size - 1; if (named_partition_is_virtual(device_name, part->geom.start, part->geom.end)) { resize_partition(disk, part, start, end, false); @@ -2124,8 +2124,8 @@ } } oprintf("OK\n"); - oprintf("%lli-%lli\n", (part->geom).start * PED_SECTOR_SIZE_DEFAULT, - (part->geom).end * PED_SECTOR_SIZE_DEFAULT + PED_SECTOR_SIZE_DEFAULT - 1); + oprintf("%lli-%lli\n", (part->geom).start * dev->sector_size, + (part->geom).end * dev->sector_size + dev->sector_size - 1); free(id); } @@ -2153,17 +2153,17 @@ critical_error("Expected new size"); log("New size: %lli", new_size); start = (part->geom).start; - end = start + new_size / PED_SECTOR_SIZE_DEFAULT - 1; + end = start + new_size / dev->sector_size - 1; /* ensure that the size is not less than the requested */ do { resize_partition(disk, part, start, end, false); end = end + 1; - } while ((part->geom).length * PED_SECTOR_SIZE_DEFAULT < new_size); + } while ((part->geom).length * dev->sector_size < new_size); ped_disk_commit(disk); unchange_named(device_name); oprintf("OK\n"); - oprintf("%lli-%lli\n", (part->geom).start * PED_SECTOR_SIZE_DEFAULT, - (part->geom).end * PED_SECTOR_SIZE_DEFAULT + PED_SECTOR_SIZE_DEFAULT - 1); + oprintf("%lli-%lli\n", (part->geom).start * dev->sector_size, + (part->geom).end * dev->sector_size + dev->sector_size - 1); free(id); } @@ -2219,10 +2219,10 @@ max_geom = ped_disk_get_max_partition_geometry(disk, part, constraint); if (part->type & PED_PARTITION_LOGICAL) minimize_extended_partition(disk); - min_size = constraint->min_size * PED_SECTOR_SIZE_DEFAULT; - current_size = (part->geom).length * PED_SECTOR_SIZE_DEFAULT; + min_size = constraint->min_size * dev->sector_size; + current_size = (part->geom).length * dev->sector_size; if (max_geom) - max_size = max_geom->length * PED_SECTOR_SIZE_DEFAULT; + max_size = max_geom->length * dev->sector_size; else max_size = current_size; oprintf("OK\n"); @@ -2263,10 +2263,10 @@ max_geom = ped_disk_get_max_partition_geometry(disk, part, constraint); if (part->type & PED_PARTITION_LOGICAL) minimize_extended_partition(disk); - min_size = constraint->min_size * PED_SECTOR_SIZE_DEFAULT; - current_size = (part->geom).length * PED_SECTOR_SIZE_DEFAULT; + min_size = constraint->min_size * dev->sector_size; + current_size = (part->geom).length * dev->sector_size; if (max_geom) - max_size = max_geom->length * PED_SECTOR_SIZE_DEFAULT; + max_size = max_geom->length * dev->sector_size; else max_size = current_size; oprintf("OK\n"); diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/commit.d/format_basicfilesystems ubiquity-2.10.28/d-i/source/partman-basicfilesystems/commit.d/format_basicfilesystems --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/commit.d/format_basicfilesystems 2013-01-23 12:51:27.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/commit.d/format_basicfilesystems 2013-09-12 12:31:09.000000000 +0000 @@ -55,28 +55,17 @@ if [ "$(udpkg --print-os)" = hurd ]; then options="$options -b 4096 -I 128 -o hurd" fi - if [ -z "$options" ]; then - name_progress_bar $template - open_dialog CREATE_FILE_SYSTEM $id $filesystem - read_line status - close_dialog + db_progress START 0 3 partman/text/formatting + db_progress INFO $template + db_progress SET 1 + if log-output -t partman --pass-stdout \ + mkfs.ext2 $device $options >/dev/null; then sync + status=OK else status=failed fi - if [ "$status" != OK ]; then - db_progress START 0 3 partman/text/formatting - db_progress INFO $template - db_progress SET 1 - if log-output -t partman --pass-stdout \ - mkfs.ext2 $device $options >/dev/null; then - sync - status=OK - else - status=failed - fi - db_progress STOP - fi + db_progress STOP if [ "$status" = OK ]; then label='' if [ -f $id/label ]; then diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/changelog ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/changelog --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/changelog 2013-01-23 12:53:17.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/changelog 2013-11-29 12:08:33.000000000 +0000 @@ -1,3 +1,24 @@ +partman-basicfilesystems (71ubuntu3.4) precise; urgency=low + + * Make nodiratime and discard mount options translatable (closes: #725371, + LP: #978032). + + -- Colin Watson Fri, 29 Nov 2013 12:08:27 +0000 + +partman-basicfilesystems (71ubuntu3.3) precise; urgency=low + + * Add nodiratime option for ext2, and noatime, nodiratime, relatime, and + discard options for fat16 and fat32 (see #722598; LP: #978032). + + -- Colin Watson Tue, 01 Oct 2013 10:54:50 +0100 + +partman-basicfilesystems (71ubuntu3.2) precise; urgency=low + + * Always use mkfs.ext2 to create ext2 filesystems, since libparted's ext2 + code is deprecated and can't handle large sector sizes (LP: #1215458). + + -- Colin Watson Thu, 12 Sep 2013 13:32:09 +0100 + partman-basicfilesystems (71ubuntu3.1) precise; urgency=low * Use mkdosfs to create FAT filesystems, since libparted cannot handle diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/partman-basicfilesystems.templates ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/partman-basicfilesystems.templates --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/partman-basicfilesystems.templates 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/partman-basicfilesystems.templates 2013-11-29 12:06:42.000000000 +0000 @@ -276,6 +276,13 @@ # a 65 columns limit (which means 65 characters in single-byte languages) _Description: noatime - do not update inode access times at each access +Template: partman-basicfilesystems/text/nodiratime +Type: text +# :sl2: +# Note to translators: Please keep your translations of this string below +# a 65 columns limit (which means 65 characters in single-byte languages) +_Description: nodiratime - do not update directory inode access times + Template: partman-basicfilesystems/text/relatime Type: text # :sl2: @@ -353,6 +360,13 @@ # a 65 columns limit (which means 65 characters in single-byte languages) _Description: notail - disable packing of files into the file system tree +Template: partman-basicfilesystems/text/discard +Type: text +# :sl2: +# Note to translators: Please keep your translations of this string below +# a 65 columns limit (which means 65 characters in single-byte languages) +_Description: discard - trim freed blocks from underlying block device + Template: partman-basicfilesystems/text/acls Type: text # :sl4: diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/am.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/am.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/am.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/am.po 2013-11-29 12:07:36.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-08-19 16:50+0800\n" "Last-Translator: ተገኝ ተፈራ \n" "Language-Team: Amharic\n" @@ -606,6 +606,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - የinode access ጊዜዎችን በተነሳበት ጊዜ ሁሉ አያሻሻሽል" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - update inode access times relative to modify time" @@ -614,7 +625,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - character ወይም block special devicesን አትደግፍ" @@ -623,7 +634,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - set-user-identifier ወይም set-group-identifier አትመልከት" @@ -632,7 +643,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ምንም አይነት የባይነሪ ማስኬድን አትፍቀድ" @@ -641,7 +652,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - የፋይል ስርዓቱን ተነባቢ-ብቻ አድርገህ ጫን" @@ -650,7 +661,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - ሁሉም የገቢ/ወጪ ተግባራት በጣምራነት ይከናወናሉ፡፡" @@ -659,7 +670,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "የተጠቃሚ ድርሻ - የተጠቃሚ ዲስክ ድርሻ መዝገብ ተግባራዊ ሆኗል፡፡" @@ -668,7 +679,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "ግሩፕ-ኮታ - የግሩፕ ዲስክ ኮታ ተግባራዊ ሆኗል" @@ -677,7 +688,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - በተጠቃሚ የተሰየመ ባህሪን ደግፍ" @@ -686,7 +697,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "ውጣ- ባለቤትንና ፈቃድን መቀየር የስህተት መልዕክት አይሰጥም" @@ -695,16 +706,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - በስርዓት ዛፍ ውስጥ ጥቅሎችን መስራትን ከልክል" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "" @@ -713,6 +733,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ar.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ar.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ar.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ar.po 2013-11-29 12:07:36.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: ar\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-08-22 23:44+0300\n" "Last-Translator: Ossama M. Khayat \n" "Language-Team: American English \n" @@ -611,6 +611,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - عدم تحديث أزمان الوصول إلى الـinode عند كل وصول" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - حدّث أوقات آخر وصول لـinode نسبةً لوقت التعديل access times " @@ -621,7 +632,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - عدم دعم أجهزة الرّموز أو القوالب الخاصّة" @@ -630,7 +641,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - تجاهل بتّات set-user-identifier أو set-group-identifier" @@ -639,7 +650,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - عدم السّماح بتنفيذ أيّة ثنائيّات" @@ -648,7 +659,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - تركيب نظام الملفّات للقراءة فقط" @@ -657,7 +668,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - كل نشاطات الإدخال/الإخراج تحدث متزامنة" @@ -666,7 +677,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - تمكين محاسبة حصص المستخدمين من القرص" @@ -675,7 +686,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - تمكين محاسبة حصص المجموعات من القرص" @@ -684,7 +695,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - دعم صفات المستخدم الموسعة" @@ -693,7 +704,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - تغيير المالك و التّصريحات لا يعود بأخطاء" @@ -702,16 +713,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - تعطيل تكديس الملفّات في شجرة نظام الملفّات" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - دعم قائمة التحكم بالوصول POSIX.1e" @@ -720,6 +740,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - استخدام نمط أسماء ملفات MS-DOS 8.3 القديم" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ast.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ast.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ast.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ast.po 2013-11-29 12:07:36.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-19 20:09+0100\n" "Last-Translator: maacub \n" "Language-Team: laptop\n" @@ -626,6 +626,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - nun anovar la data d'accesu d'inodo tres d'acceder" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - anovar data d'accesu d'inodo rellativa a la de modificación" @@ -634,7 +645,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - carácter o bloque de preseos especiales non sofitáu" @@ -643,7 +654,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - inorar bits set-user-identifier o set-group-identifier" @@ -652,7 +663,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - nun permitir execuciones de dengún binariu" @@ -661,7 +672,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - montar el sistema de ficheros de namái llectura" @@ -670,7 +681,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - toles actividaes d'entrada/salida ocurrirán de mou síncronu" @@ -679,7 +690,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - cuota de discu de la cuenta del usuariu activada" @@ -688,7 +699,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - cuota de discu de la cuenta del grupu activada" @@ -697,7 +708,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - sofitar atributos estendíos del usuariu" @@ -706,7 +717,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - camudar propietariu y permisos nun devuelve fallos" @@ -715,7 +726,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "" "notail - desactivar empaquetamientu de ficheros nel árbol del sistema de " @@ -723,10 +734,19 @@ #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - sofita Llista de Control d'Accesu POSIX.1e" @@ -735,7 +755,7 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" "nomes curtíos - usar sólo los nomes de ficheros al estilu del antigüu MS-DOS " diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/be.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/be.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/be.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/be.po 2013-11-29 12:07:36.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: be\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-28 12:37+0300\n" "Last-Translator: Viktar Siarheichyk \n" "Language-Team: Belarusian (Official spelling) \n" "Language-Team: Bulgarian \n" @@ -627,6 +627,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - без обновяване на времето за достъп при всяко четене" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - време на достъп до inode - спрямо времето на промяна" @@ -635,7 +646,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - без поддръжка на специални файлове-устройства" @@ -644,7 +655,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - игнориране на set-user-identifier и set-group-identifier" @@ -653,7 +664,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - забрана за изпълнение на изпълними файлове" @@ -662,7 +673,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - монтиране на файловата система само за четене" @@ -671,7 +682,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - всички входно/изходни операции се изпълняват незабавно" @@ -680,7 +691,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - активиране на квотата за потребители" @@ -689,7 +700,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - активиране на квотата за групи" @@ -698,7 +709,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - потребителски разширени атрибути" @@ -707,7 +718,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - промяната на собственика и правата не връща грешки" @@ -716,16 +727,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - изключване на пакетирането на файловете" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - поддръжка на контрол на достъпа според POSIX.1e" @@ -734,6 +754,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - имена на файлове само в стария формат MS-DOS 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/bn.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/bn.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/bn.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/bn.po 2013-11-29 12:07:36.000000000 +0000 @@ -22,7 +22,7 @@ msgstr "" "Project-Id-Version: bn\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-11-07 17:52+0600\n" "Last-Translator: Israt Jahan \n" "Language-Team: Bengali \n" @@ -627,6 +627,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - প্রতিবার ব্যবহারের সময় আইনোড-ব্যবহারের-সময় আপডেট করবে না" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - মোডিফাই টাইম সম্পর্কিত আইনোড একসেস টাইম আপডেট করুন" @@ -635,7 +646,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev- ক্যারেক্টার অথবা ব্লক স্পেশাল ডিভাইস সমর্থন করবে না" @@ -644,7 +655,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - set-user-identifier বা set-group-identifier বিট উপেক্ষা করো" @@ -653,7 +664,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - কোন বাইনারি চালানো অনুমোদন করবে না" @@ -662,7 +673,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - ফাইল সিস্টেমকে অপরিবর্তনযোগ্য অবস্থায় মাউন্ট করো" @@ -671,7 +682,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - সকল ইনপুট/আউটপুট কার্যক্রম একত্রে ঘটে" @@ -680,7 +691,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - ব্যবহারকারীভিত্তিক ডিস্ক কোটা হিসাবরক্ষণ প্রক্রিয়া সক্রিয় করা হল" @@ -689,7 +700,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - গ্রুপভিত্তিক ডিস্ক কোটা হিসাবরক্ষণ প্রক্রিয়া সক্রিয় করা হল" @@ -698,7 +709,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - ব্যবহারকারীর যোগ করা বৈশিষ্ট্য সমর্থন করো" @@ -707,7 +718,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - মালিকানা ও অনুমতি পরিবর্তন কোন ত্রুটি রিটার্ন করে না" @@ -716,16 +727,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - ফাইল সিস্টেম ট্রি-তে ফাইল প্যাক (pack) করা নিষ্ক্রিয় করো" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX সমর্থন। 1e এক্সেস কন্ট্রোলের তালিকা" @@ -734,6 +754,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "সংক্ষিপ্ত নাম - শুধুমাত্র পুরোনো MS-DOS ৮.৩ শৈলীর ফাইলের নাম ব্যবহার" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/bs.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/bs.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/bs.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/bs.po 2013-11-29 12:07:36.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_bs\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-11-10 09:02+0100\n" "Last-Translator: Armin Beširović \n" "Language-Team: Bosnian \n" @@ -640,6 +640,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ne ažuriraj vrijeme pristupa sektoru pri svakom pristupu" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - osvježi vremena pristupa inodama u odnosu na vremena izmjene" @@ -649,7 +660,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - bez podrške za karakter ili blok specijalne uređaje" @@ -658,7 +669,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignoriši set-user-identifier/set-group-identifier bits" @@ -667,7 +678,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec -- zabrani izvršavanje binarnih datoteka" @@ -676,7 +687,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro -- montiraj datotečni sistem read-only (samo za čitanje)" @@ -685,7 +696,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync -- sve ulazno/izlazne aktivnosti se javljaju istovremeno" @@ -694,7 +705,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota -- uključen user disk quota accounting" @@ -703,7 +714,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota -- uključen group disk quota accounting" @@ -712,7 +723,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - podrška za user extended attributes" @@ -721,7 +732,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - mijenjanem vlasnika i dozvola ne prijavljuju se greške" @@ -732,16 +743,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - onemogući pakovanje datoteka u stablo datotečnog sistema" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - podrška POSIX.1e Listi Kontrole Pristupa" @@ -750,6 +770,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - koristi samo staro MS-DOS 8.3 imenovanje datoteka" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ca.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ca.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ca.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ca.po 2013-11-29 12:07:36.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: debian-installer squeeze\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-18 21:17+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -628,6 +628,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - no actualitza els temps d'accés als inodes en cada accés" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - actualitza els temps d'accés als inodes amb relació al temps de " @@ -638,7 +649,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - no suporta dispositius especials de caràcter o bloc" @@ -647,7 +658,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignora els bits set-user-identifier o set-group-identifier" @@ -656,7 +667,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - no permet l'execució de cap binari" @@ -665,7 +676,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - munta el sistema de fitxers en mode només lectura" @@ -674,7 +685,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "" "sync - totes les activitats d'entrada/eixida tenen lloc sincronitzadament" @@ -684,7 +695,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - habilita la quota de disc per a usuaris" @@ -693,7 +704,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - habilita la quota de disc per a grups" @@ -702,7 +713,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - suporta atributs estesos d'usuari" @@ -711,7 +722,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - els canvis de propietari i permisos no retornen errors" @@ -720,17 +731,26 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "" "notail - inhabilita l'empaquetat de fitxers al arbre del sistema de fitxers" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - suport per a Llistes de Control d'Accés POSIX.1e (ACL)" @@ -739,6 +759,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - empra l'estil de noms de fitxer 8.3 de l'MS-DOS" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/cs.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/cs.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/cs.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/cs.po 2013-11-29 12:07:36.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2011-02-20 19:50+0100\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" @@ -618,6 +618,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - neaktualizuje čas přístupu k souboru" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - aktualizuje čas přístupu relativně k času modifikace" @@ -626,7 +637,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - zakáže speciální znaková nebo bloková zařízení" @@ -635,7 +646,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignoruje příznaky setuid a setgid" @@ -644,7 +655,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - nedovolí spouštění spustitelných souborů" @@ -653,7 +664,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - připojí souborový systém pouze pro čtení" @@ -662,7 +673,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - všechny vstupně/výstupní operace se dějí synchronně" @@ -671,7 +682,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - povolí používání diskových kvót" @@ -680,7 +691,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - povolí používání skupinových diskových kvót" @@ -689,7 +700,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - podpora pro uživatelské rozšířené atributy" @@ -698,7 +709,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - změny vlastníka a přístupových práv nevrátí chybu" @@ -707,16 +718,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - zakáže shlukování konců souborů dohromady" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - podpora POSIX.1e Access Control List" @@ -725,6 +745,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - povolí názvy souborů jen ve starém formátu 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/da.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/da.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/da.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/da.po 2013-11-29 12:07:36.000000000 +0000 @@ -20,7 +20,7 @@ msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_da\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-29 00:05+0200\n" "Last-Translator: Ask Hjorth Larsen \n" "Language-Team: \n" @@ -628,6 +628,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - opdatér ikke inode-tilgangstider ved hver tilgang" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - opdatér inode-tilgangstider relativt til ændringstider" @@ -636,7 +647,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - understøt ikke specielle tegn- eller blok-enhedsfiler" @@ -645,7 +656,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" "nosuid - ignorér bittene set-user-identifier eller set-group-identifier" @@ -655,7 +666,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - tillad ikke eksekvering af programfiler" @@ -664,7 +675,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - montér filsystemet skrivebeskyttet" @@ -673,7 +684,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - alle ind- og uddata-handlinger udføres synkront" @@ -682,7 +693,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - brugerdiskkvoter aktiveret" @@ -691,7 +702,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - gruppediskkvoter aktiveret" @@ -700,7 +711,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - understøt brugerudvidede egenskaber" @@ -709,7 +720,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - ændring af ejer og filrettigheder giver ikke fejlbeskeder" @@ -718,16 +729,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - undlad at mase filer ind i filsystemtræet" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - understøttelse for POSIX.1e Access Control List" @@ -736,6 +756,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - brug filnavne med 8.3 tegnmaksimum i stil med MS-DOS." diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/de.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/de.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/de.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/de.po 2013-11-29 12:07:36.000000000 +0000 @@ -24,7 +24,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-02 22:33+0200\n" "Last-Translator: Holger Wansing \n" "Language-Team: Debian German \n" @@ -640,6 +640,18 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "" +"noatime - Zugriffszeit einer Inode nicht bei jedem Zugriff aktualisieren" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - Inode-Zugriffszeit ist relativ zur Modifizierungszeit" @@ -648,7 +660,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - Keine Unterstützung für Zeichen- oder Blockgeräte" @@ -657,7 +669,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - SUID- und SGID-Bits ignorieren" @@ -666,7 +678,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - Ausführen von Binär-Dateien nicht erlauben" @@ -675,7 +687,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - Das Dateisystem schreibgeschützt einbinden" @@ -684,7 +696,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - Alle Eingabe-/Ausgabe-Zugriffe erfolgen synchron" @@ -693,7 +705,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - Benutzer-Quota für Festplattenspeicher aktivieren" @@ -702,7 +714,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - Gruppen-Quota für Festplattenspeicher aktivieren" @@ -711,7 +723,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - Benutzer-Erweiterungen unterstützen" @@ -720,7 +732,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - Ändern von Benutzer oder Rechten gibt keine Fehler aus" @@ -729,16 +741,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - Keine Dateien im Dateisystembaum anlegen" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - Unterstützung für POSIX.1e Access-Control-Lists" @@ -747,6 +768,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - nur alte Dateinamen im MS-DOS-Stil (8.3) verwenden" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/dz.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/dz.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/dz.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/dz.po 2013-11-29 12:07:36.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: dDz.po\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-11-16 23:22-0500\n" "Last-Translator: Jurmey Rabgay \n" "Language-Team: Dzongkha \n" @@ -618,6 +618,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime -འཛུལ་སྤྱོད་འབད་ནི་རེ་རེ་ལུ་ཨི་ནོཌ་འཛུལ་སྤྱོད་འབད་ནི་དུས་ཚད་ཚུ་དུས་མཐུན་མ་བཟོ།" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - དུས་ཚོད་ལེགས་བཅོས་དང་འབྲེལ་བའི་ཨི་ནོཌི་འཛུལ་སྤྱོད་དུས་ཚོད་ཚུ་ དུས་མཐུན་བཟོ་" @@ -626,7 +637,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev -འཐབ་འཕྲུལ་ཚུ་དམིགས་བསལ་གྱི་སྡེབ་ཚན་དང་ ཡང་ཅིན་ཡིག་འབྲུ་ལུ་རྒྱབ་སྐྱོར་མ་འབད།" @@ -635,7 +646,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" "nosuid - སྣང་མེད་བཞག་ set-user-identifier ཡང་ཅིན་ set-group-identifier bits" @@ -645,7 +656,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec -ཟུང་ལྡན་ཚུ་གང་རུང་ལུ་ལག་ལེན་འབད་མ་བཅུག་" @@ -654,7 +665,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro -ཡིག་སྣོད་རིམ་ལུགས་སྦྱར་བརྩེགས་འབད་ read-only" @@ -663,7 +674,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync -ཨིན་པུཊི་/ཨའཊི་པུཊི་ ལཱ་ཚུ་ཆ་མཉམ་མཉམ་དུ་འབྱུང་ནི་།" @@ -672,7 +683,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - ལག་ལེན་པའི་ཌིཀསི་ཐོབ་སྐལ་རྩིས་ཐོ་འབད་ནི་ལྕོགས་ཅན་བཟོ།" @@ -681,7 +692,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota -སྡེ་ཚན་གྱི་ཌིཀསི་ཐོབ་སྐལ་རྩིས་ཐོ་འབད་ནི་ལུ་ལྕོག་ཅན་བཟོ།" @@ -690,7 +701,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr -ལག་ལེན་པའི་རྒྱབ་སྐྱོར་རྒྱ བསྐྱེད་ཅན་གྱི་ཁྱད་ཆས་ཚུ།" @@ -699,7 +710,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet -བདག་པོ་བསྒྱུར་བཅོས་འབད་ནི་དང་གནང་བ་ཚུ་གྱིས་འཛོལ་བ་ཚུ་སླར་ལོག་མི་འབད།" @@ -708,16 +719,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail -ཡིག་སྣོད་རིམ་ལུགས་རྩ་འབྲེལ་ནང་ལུ་ཡིག་སྣོད་ཚུ་ལྕོགས་མིན་སྦུང་ཚན་ནི།" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e འཛུལ་སྤྱོད་ཚད་འཛིན་ཐོ་ཡིག་ངོས་ལེན་འབདཝ་ཨིན།" @@ -726,6 +746,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "མིང་་ཐུང་ཀུ་ - MS-DOS 8.3 བཟོ་རྣམ་ཡིག་སྣོད་མིང་རྙིངམ་ཚུ་རྐྱངམ་ཅིག་ལག་ལེན་འཐབ།" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/el.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/el.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/el.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/el.po 2013-11-29 12:07:36.000000000 +0000 @@ -21,7 +21,7 @@ msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-04 19:11+0300\n" "Last-Translator: Emmanuel Galatoulas \n" "Language-Team: Greek \n" @@ -639,6 +639,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - χωρίς ανανέωση της χρονικής στιγμής προσπέλασης του αρχείου" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - ενημέρωση των χρόνων προσπέλασης των inodes σε σχέση με τους " @@ -649,7 +660,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - χωρίς υποστήριξη αρχείων μονάδων χαρακτήρων ή block" @@ -658,7 +669,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - θα αγνοηθούν τα bit ταυτότητας χρήστη ή ομάδος" @@ -667,7 +678,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - χωρίς υποστήριξη εκτέλεσης οποιωνδήποτε εκτελέσιμων αρχείων" @@ -676,7 +687,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - το σύστημα αρχείων θα προσαρτηθεί μόνο για ανάγνωση" @@ -685,7 +696,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "" "sync - κάθε εργασία εισόδου/εξόδου στο σύστημα αρχείων θα γίνεται σύγχρονα" @@ -695,7 +706,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - με υποστήριξη λογιστικής χρησιμοποιούμενου χώρου χρηστών" @@ -704,7 +715,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "" "grpquota - με υποστήριξη λογιστικής χρησιμοποιούμενου χώρου ομάδων χρηστών" @@ -714,7 +725,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - υποστήριξη εκτεταμένων ιδιοτήτων χρήστη" @@ -723,7 +734,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "" "quiet - η αλλαγή χρηστών και αδειών προσπέλασης δεν επιστρέφει σφάλματα" @@ -733,16 +744,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - απενεργοποίηση συγκέντρωσης των αρχείων στο σύστημα αρχείων" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - υποστηρίζει Access Control List POSIX.1e" @@ -751,6 +771,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - χρήση μόνο ονομάτων αρχείων του τύπου MS-DOS 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/eo.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/eo.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/eo.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/eo.po 2013-11-29 12:07:36.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2011-03-16 20:46-0300\n" "Last-Translator: Felipe Castro \n" "Language-Team: Esperanto \n" @@ -624,6 +624,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ne ĝisdatigi alir-tempojn de 'inodoj' je ĉiu aliro" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - ĝisdatigi alir-tempojn de 'inodoj' relative al modif-tempo" @@ -632,7 +643,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ne administri signecajn aŭ blokecajn specialajn aparatojn" @@ -641,7 +652,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - preteratenti la bitojn 'setuid' kaj 'setgid'" @@ -650,7 +661,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - malpermesi plenumigon de iuj ajn programoj" @@ -659,7 +670,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - munti la dosiersistemon nur-lege" @@ -668,7 +679,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - ĉiuj enigaj/eligaj aktivaĵoj okazas sinkrone" @@ -677,7 +688,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - ebligi kontroladon de disko-kvotoj por uzantoj" @@ -686,7 +697,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - ebligi kontroladon de disko-kvotoj por grupoj" @@ -695,7 +706,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - administri etenditajn atributojn por uzantoj" @@ -704,7 +715,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - ŝanĝado de posedanto kaj permesoj ne rezultas en eraroj" @@ -713,16 +724,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - malebligi pakigadon de dosieroj en la dosiersistema arbo" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - subteni POSIX.1E Alir-Kontrola Listo" @@ -731,6 +751,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "nometoj - nur uzi la malnovajn dosiernomojn laŭ stilo 8.3 de MS-DOS" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/es.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/es.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/es.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/es.po 2013-11-29 12:07:36.000000000 +0000 @@ -49,7 +49,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2011-02-04 03:13+0100\n" "Last-Translator: Javier Fernández-Sanguino \n" "Language-Team: Debian Spanish \n" @@ -671,6 +671,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - no actualizar la fecha de acceso de inodo tras acceder" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - actualizar fecha de acceso de inodo relativa a la de modificación" @@ -680,7 +691,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - no dar soporte a dispositivos de carácter o bloque" @@ -689,7 +700,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignorar los bits «setuid» y «setgid»" @@ -698,7 +709,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - no permitir la ejecución de ningún binario" @@ -707,7 +718,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - montar el sistema de ficheros en modo de solo lectura" @@ -716,7 +727,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - realizar las operaciones de e/s de forma síncrona" @@ -725,7 +736,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - activar el análisis de cuotas de usuarios" @@ -734,7 +745,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - activar el análisis de cuotas de grupos" @@ -743,7 +754,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - soporte para atributos extendidos de usuario" @@ -752,7 +763,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - los cambios de usuario o permisos no devuelven errores" @@ -761,16 +772,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - no empaqueta los ficheros en el árbol del sistema de fichero." #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - soporte de listas de control de acceso (ACL) de POSIX.1e" @@ -779,6 +799,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - usa sólo el estilo MS-DOS 8.3 de nombre de fichero" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/et.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/et.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/et.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/et.po 2013-11-29 12:07:36.000000000 +0000 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-06 17:01+0300\n" "Last-Translator: Mattias Põldaru \n" "Language-Team: Eesti\n" @@ -627,6 +627,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ära uuenda igal pöördumisel inode'i pöördusaega" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - uuenda inode'i pöördusaega sõltuvana muutmisajast" @@ -635,7 +646,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ära toeta plokk- või spetsiaalseadmeid" @@ -644,7 +655,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignoreeri säti-grupi/kasutaja-identifikaator bitte" @@ -653,7 +664,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - keela käivitamine" @@ -662,7 +673,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - haagi failisüsteem vaid lugemiseks" @@ -671,7 +682,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - kõik sisend/väljund tegevused toimuvad sünkroonselt" @@ -680,7 +691,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - kasutajate kettakvootide arvestamise luba" @@ -689,7 +700,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - gruppide kettakvootide arvestamise luba" @@ -698,7 +709,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - kasutaja laiendatud atribuutide tugi" @@ -707,7 +718,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - omaniku ja lubade muutmine ei tagasta vigasid" @@ -716,16 +727,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - keela failide pakkimine failisüsteemi puu külge" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e Access Control List tugi" @@ -734,6 +754,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "lühinimed - kasutatakse ainult vanu MS-DOS 8.3 laadis failinimesid" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/eu.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/eu.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/eu.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/eu.po 2013-11-29 12:07:36.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-17 12:19+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque \n" @@ -631,6 +631,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ez eguneratu inodoen atzipen orduak atzipen bakoitzeko" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - eguneratu inodoen atzipen ordua eraldaketa orduaren arabera" @@ -639,7 +650,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ez onartu karaktereen edo blokeen gailu berezirik" @@ -648,7 +659,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" "nosuid - ez ikusi egin set-user-identifier edo set-group-identifier bitei" @@ -658,7 +669,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ez eman bitarrak exekutatzeko baimenik" @@ -667,7 +678,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - irakurtzeko soilik muntatu fitxategi-sistema" @@ -676,7 +687,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - sarrerako/irteerako jarduerak sinkronikoki gertatzen dira" @@ -685,7 +696,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - erabiltzailearen disko kuotaren kontua gaituta dago" @@ -694,7 +705,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - taldearen disko kuotaren kontua gaituta dago" @@ -703,7 +714,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - onartu erabiltzailearen hedaturiko atributuak" @@ -712,7 +723,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - jabea eta baimenak aldatzeak ez du errorerik ematen" @@ -721,16 +732,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - desgaitu fitxategiak paketatzea sistemako zuhaitzean" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e sarrera kontrol zerrenda onarpena" @@ -739,6 +759,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - MS-DOS 8.3 zahar estilo izenak bakarrik erabili" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/fa.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/fa.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/fa.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/fa.po 2013-11-29 12:07:36.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: fa\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-28 07:59+0330\n" "Last-Translator: Behrad Eslamifar \n" "Language-Team: Debian-l10n-persian \n" @@ -614,6 +614,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - دفعات دسترسی‌های inode را برای هر دسترسی به روز نکن" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "realtime - دفعات دسترسی inode را به نسبت زمان تغییر به روز کن" @@ -622,7 +633,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ابزارهای مخصوص بلوک یا کاراکتر را پشتیبانی نکن" @@ -631,7 +642,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" "nosuid - بیت‌های set-user-identifier یا set-group-identifier را در نظر نگیر" @@ -641,7 +652,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - اجازهٔ اجرا هرگونه باینری را نده" @@ -650,7 +661,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - فایل‌سیستم را فقط‌خواندنی ماونت کنید" @@ -659,7 +670,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - همهٔ فعالیت‌های ورودی/خروجی همزمان باشند" @@ -668,7 +679,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - حسابرسی سهم دیسک کاربر فعال شود" @@ -677,7 +688,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - حسابرسی سهم دیسک گروه فعال شود" @@ -686,7 +697,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - مشخصه‌های توسعه‌یافتهٔ کاربر پشتیبانی شود" @@ -695,7 +706,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - تغییر مالک و مجوزها خطاهایی برنگرداند" @@ -704,16 +715,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - بسته‌بندی پرونده‌ها در درون درخت سیستم‌فایل غرفعال شود" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - پشتیبانی از استاندارد کنترل دسترسی POSIX.1e" @@ -722,6 +742,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "نام کوتاه - تنها برای مدل نام گذاری قدیمی MS-DOS 8.3 استفاده می شود." diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/fi.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/fi.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/fi.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/fi.po 2013-11-29 12:07:36.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-08-22 12:24+0300\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" @@ -628,6 +628,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - älä päivitä inoden atimea jokaisella käyttökerralla" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - päivitä inoden käyttöajat suhteessa muutosaikaan" @@ -636,7 +647,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ei tukea merkki- tai lohkolaitteille" @@ -645,7 +656,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ohita set-user-identifier- ja set-group-identifier-bitit" @@ -654,7 +665,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - binääritiedostojen suoritusta ei sallita" @@ -663,7 +674,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - liitä tiedostojärjestelmä kirjoitussuojattuna." @@ -672,7 +683,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - kaikki syöttö/tulostus tapahtuu synkronisesti" @@ -681,7 +692,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - käyttäjäkohtaiset levykiintiöt käytössä" @@ -690,7 +701,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - ryhmäkohtaiset levykiintiöt käytössä" @@ -699,7 +710,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - tue lisäominaisuuksia käyttäjille" @@ -708,7 +719,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - omistajan ja käyttöoik. muuttaminen ei aiheuta virheitä" @@ -717,16 +728,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - poista käytöstä tiedostojen pakkaus" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - tuki POSIX.1e pääsynvalvontalistoille (ACL)" @@ -735,6 +755,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "lyhyet nimet - käytä vain MS-DOS-tyylisiä (8.3) tiedostonimiä" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/fr.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/fr.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/fr.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/fr.po 2013-11-29 12:07:36.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-08-20 23:36-0400\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" @@ -633,6 +633,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - pas de mise à jour des date et heure d'accès des inodes" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - màj relative des date et heure d'accès des inodes" @@ -641,7 +652,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - pas de gestion des périphériques bloc ou caractère" @@ -650,7 +661,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - pas de gestion des bits setuid ou setgid" @@ -659,7 +670,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - interdiction de l'exécution des programmes" @@ -668,7 +679,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - montage en lecture seule" @@ -677,7 +688,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - toutes les entrées/sorties sont synchrones" @@ -686,7 +697,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - gestion des quota des utilisateurs" @@ -695,7 +706,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - gestion des quota des groupes" @@ -704,7 +715,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - gestion des attributs étendus pour les utilisateurs" @@ -713,7 +724,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - pas d'erreur en changeant le propriétaire ou les droits" @@ -722,16 +733,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - pas de regroupement des fichiers dans l'arborescence" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - gestion des listes de contrôle d'accès POSIX.1e" @@ -740,6 +760,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - n'utiliser que des noms de fichiers 8.3 type MS-DOS" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ga.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ga.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ga.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ga.po 2013-11-29 12:07:36.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2006-03-21 14:42-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -621,6 +621,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ná nuashonraigh amanna rochtana i-nód ag gach rochtain" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - nuashonraigh am rochtana an i-nóid i gcoibhneas lena am athraithe" @@ -630,7 +641,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "" "nodev - ná tacaigh le comhaid speisialta de na cineálacha \"bloc\" nó " @@ -641,7 +652,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - déan neamhaird de ghiotáin setuid agus setgid" @@ -650,7 +661,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ná ceadaigh aon chlár dénártha a rith" @@ -659,7 +670,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - feistigh mar chóras comhad inléite amháin" @@ -668,7 +679,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - tarlaíonn gníomhaíochtaí ionchurtha/aschurtha go sioncrónach" @@ -677,7 +688,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - cumasaigh cuntasaíocht cuótaí diosca" @@ -686,7 +697,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - cumasaigh cuntasaíocht cuótaí diosca de réir grúpaí" @@ -695,7 +706,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - tacaigh le haitreabúidí breise úsáideora" @@ -704,7 +715,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quite - ná hais-seol earráidí nuair a athraítear úinéirí ná ceadanna" @@ -713,16 +724,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - díchumasaigh pacáil de chomhaid i gcrann an chórais comhad" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - tacaigh le liostaí rialaithe rochtana POSIX.1e" @@ -731,6 +751,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - úsáid seanainmneacha de chuid MS-DOS 8.3 amháin" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/gl.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/gl.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/gl.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/gl.po 2013-11-29 12:07:36.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-21 00:51+0200\n" "Last-Translator: Jorge Barreiro \n" "Language-Team: Galician \n" @@ -632,6 +632,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime; non actualizar o tempo de acceso aos inodos con cada acceso" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime; actualizar o tempo de acceso relativo á modificación" @@ -640,7 +651,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev; non soportar dispositivos especiais de carácter ou bloque" @@ -649,7 +660,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" "nosuid; ignorar os bits SUID (fixado de usuario) e SGID (fixado de grupo)" @@ -659,7 +670,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec; non admitir a execución de binarios" @@ -668,7 +679,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro; montar o sistema de ficheiros en modo de só lectura" @@ -677,7 +688,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync; realizar a entrada e saída de xeito síncrono" @@ -686,7 +697,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota; activar a contabilidade das cotas de disco dos usuarios" @@ -695,7 +706,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota; activar a contabilidade das cotas de disco dos grupos" @@ -704,7 +715,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr; soportar atributos estendidos de usuario" @@ -713,7 +724,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet; os trocos de usuario e permisos non producen erros" @@ -722,16 +733,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail; non empaquetar os ficheiros na árbore do FS" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - dá soporte ás listas de control de acceso POSIX.1e" @@ -740,6 +760,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "nomes cortos - usar só nomes ao estilo do vello MS-DOS 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/gu.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/gu.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/gu.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/gu.po 2013-11-29 12:07:36.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: d-i\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2008-08-07 11:42+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" @@ -615,6 +615,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - દરેક ઉપયોગ વખતે આઇનોડ ઉપયોગ સમય સુધારો નહી" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - ફેરફાર સમયને સંબંઘિત આઇનોડ ઉપયોગ સમય સુધારો" @@ -623,7 +634,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - કેરેક્ટર અથવા બ્લોક સ્પેશિયલ ઉપકરણોને આધાર નહી" @@ -632,7 +643,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - વપરાશકર્તા-ઓળખનાર-ગોઠવણ અથવા સમૂહ-ઓળખનાર-ગોઠવણ બિટ્સ અવગણો" @@ -641,7 +652,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - કોઇ પણ બાયનરીઓ ચલાવવાની પરવાનગી ન આપો" @@ -650,7 +661,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - ફાઇલ સિસ્ટમ માત્ર વંચાય તેવી માઉન્ટ કરો" @@ -659,7 +670,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - બધી ઇનપુટ/આઉટપુટ પ્રવૃતિઓ સંગત થાય છે" @@ -668,7 +679,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - વપરાશકર્તા ડિસ્ક આરક્ષણ ખાતું સક્રિય" @@ -677,7 +688,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - સમૂહ ડિસ્ક આરક્ષણ ખાતું સક્રિય" @@ -686,7 +697,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - વપરાશકર્તા વિસ્તરીત ગુણધર્મો આધાર આપે છે" @@ -695,7 +706,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - માલિક અને પરવાનગીઓ બદલવાની ક્રિયા ક્ષતિઓ આપતી નથી" @@ -704,16 +715,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - ફાઇલોનું ફાઇલ સિસ્ટમ વૃક્ષમાં જોડાવવાનું અસક્રિય કરે છે" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e પ્રવેશ નિયંત્રણ યાદી આધાર આપે છે" @@ -722,6 +742,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - માત્ર જૂની MS-DOS 8.3 શૈલીના ફાઈલનામો વાપરો" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/he.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/he.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/he.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/he.po 2013-11-29 12:07:36.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: he\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-04 12:45+0300\n" "Last-Translator: Lior Kaplan \n" "Language-Team: Hebrew <>\n" @@ -620,6 +620,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - אל תעדכן את זמני הגישה ל-inode בכל גישה" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - עדכון זמני גישה ל-inode באופן יחסי לזמן השינוי" @@ -628,7 +639,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - אל תתמוך בהתקנים מיוחדים מסוג character או block" @@ -637,7 +648,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - התעלם מביט set-user-identifier או set-group-identifier" @@ -646,7 +657,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - אל תרשה הרצת קבצים בינארים" @@ -655,7 +666,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - עגינת מערכת הקבצים לקריאה בלבד" @@ -664,7 +675,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - המתן לסיום כל פעולות הקלט/פלט לפני המשך עבודה" @@ -673,7 +684,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - הפעלת מכסות עבור חשבונות משתמשים" @@ -682,7 +693,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - הפעלת מכסות עבור חשבונות קבוצות" @@ -691,7 +702,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - תמיכה במאפיינים מורחבים של המשתמש" @@ -700,7 +711,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - שינוי בעלות והרשאות לא יחזירו שגיאות" @@ -709,16 +720,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - בטל אריזת קבצים לתוך עץ מערכת הקבצים" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - תמיכה ברשימות בקרת גישה (Access Control List) לפי תקן POSIX.1e" @@ -727,6 +747,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - השתמש בשמות קבצים בסגנון MS-DOS 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/hi.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/hi.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/hi.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/hi.po 2013-11-29 12:07:36.000000000 +0000 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_hi\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-03 17:14-0500\n" "Last-Translator: Kumar Appaiah \n" "Language-Team: American English \n" @@ -628,6 +628,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - प्रत्येक अभिगम पर ऐक्सेस समय न बदलें" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "realtime - प्रत्येक अभिगम पर ऐक्सेस समय न बदलें" @@ -636,7 +647,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - कैरेक्टर या ब्लॉक विशेष उपकरण समर्थित न करें" @@ -645,7 +656,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - set-user-identifier या set-group-identifier बिट्स को न मानें" @@ -654,7 +665,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - बाइनरी चलाने की अनुमति न दें" @@ -663,7 +674,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - फाइलतंत्र को केवल पढ़ने योग्य आरूढ़ करें" @@ -672,7 +683,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - समस्त इनपुट/आउटपुट गतिविधियाँ तुल्यकालिक हों" @@ -681,7 +692,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - उपयोक्ता के डिस्क कोटा का लेखा समर्थित" @@ -690,7 +701,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - समूह के डिस्क कोटा का लेखा समर्थित" @@ -699,7 +710,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - उपयोक्ता के विस्तारित गुण समर्थित करें" @@ -708,7 +719,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - स्वामी व अनुमतियाँ बदलने पर त्रुटियाँ न दिखाएँ" @@ -717,16 +728,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - फाइलों का फाइलतंत्र वृक्ष में संकुलन असमर्थ करें" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "एसीएलएस - प्रवेश नियंत्रण सूची का समर्थन करें" @@ -735,6 +755,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - मात्र पुराने ढंग के MS-DOS 8.3 फ़ाइल तंत्र का उपयोग करें" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/hr.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/hr.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/hr.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/hr.po 2013-11-29 12:07:36.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: Debian-installer 1st-stage master file HR\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-07-07 12:30+0200\n" "Last-Translator: Josip Rodin \n" "Language-Team: Croatian \n" @@ -623,6 +623,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ne osvježavaj vremena pristupa inodama pri svakom pristupu" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - osvježavaj vremena pristupa rel. vremenu promjene" @@ -631,7 +642,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ne podržavaj osobite znakovne ili blok uređaje" @@ -640,7 +651,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignoriraj set-user-identifier ili set-group-identifier bitove" @@ -649,7 +660,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ne dopusti izvršenje binarnih datoteka" @@ -658,7 +669,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - montiraj datotečni sustav samo-za-čitanje" @@ -667,7 +678,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - sve ulazne/izlazne aktivnosti sinkronizirane" @@ -676,7 +687,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - omogući računanje korisničkih diskovnih udjela" @@ -685,7 +696,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - omogući računanje grupnih diskovnih udjela" @@ -694,7 +705,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - podrška za korisničke dodatne atribute" @@ -703,7 +714,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - mijenjanje vlasnika i dopuštenja ne pokazuje pogreške" @@ -712,16 +723,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - onemogući grupiranje datoteka u stablo datotečnog sustava" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - podrška za POSIX.1e Access Control List" @@ -730,6 +750,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - koristi imena datoteka samo u 8.3 (DOS) stilu" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/hu.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/hu.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/hu.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/hu.po 2013-11-29 12:07:36.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-11-08 09:16+0100\n" "Last-Translator: SZERVÁC Attila \n" "Language-Team: Debian L10n Hungarian \n" "Language-Team: Bahasa Indonesia \n" @@ -625,6 +625,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - jangan mengubah waktu akses pada tiap inode" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - ubah waktu akses relatif terhadap waktu penyuntingan" @@ -633,7 +644,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - jangan mendukung karakter atau piranti khusus blok" @@ -642,7 +653,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" "nosuid - abaikan bit-bit 'set-user-identifier' atau 'set-group-identifier'" @@ -652,7 +663,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - jangan izinkan eksekusi program biner apapun" @@ -661,7 +672,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - kaitkan sistem berkas sebagai hanya-baca (read-only)" @@ -670,7 +681,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - semua masukan/keluaran terjadi secara serempak" @@ -679,7 +690,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - lakukan perhitungan kuota untuk setiap pengguna" @@ -688,7 +699,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - lakukan perhitungan kuota untuk grup pengguna" @@ -697,7 +708,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - dukungan atribut tambahan untuk pengguna" @@ -706,7 +717,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "" "quiet - perubahan kepemilikan dan perijinan tidak menampilkan kesalahan" @@ -716,16 +727,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - mematikan pengepakan berkas pada pohon sistem berkas" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acl - dukungan untuk POSIX.1e Access Control List" @@ -734,6 +754,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "namasingkat - hanya menggunakan sistem penamaan 8.3 MS-DOS" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/is.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/is.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/is.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/is.po 2013-11-29 12:07:36.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_is\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-12 13:30+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -618,6 +618,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime- ekki uppfæra aðgangstíma inode við hverja uppflettingu" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - uppfæra sóknartíma inode í hlutfalli við breytitíma" @@ -626,7 +637,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - Ekki leyfa jaðartækjaskrár (device files)" @@ -635,7 +646,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - hundsa suid og sgid bita" @@ -644,7 +655,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - banna keyrslu forrita" @@ -653,7 +664,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - Banna skrif (read-only)" @@ -662,7 +673,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - Allar breytingar á skráarkerfi eru gerðar um leið" @@ -671,7 +682,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - virkja diskplássúthlutun fyrir notendur" @@ -680,7 +691,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - virkja diskplássúthlutun fyrir hópa" @@ -689,7 +700,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - styðja notendastillingar" @@ -698,7 +709,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "hljótt - breytingar á eigendum og réttindum skila ekki villum" @@ -707,16 +718,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - sleppa pökkun á skrám í kerfistréð" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - stuðningur við POSIX.1e Access Control List aðgangsstýringu" @@ -725,6 +745,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - nota eingöngu gamla MS-DOS 8.3 skráaheitastílinn" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/it.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/it.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/it.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/it.po 2013-11-29 12:07:36.000000000 +0000 @@ -25,7 +25,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-27 07:25-0400\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" @@ -637,6 +637,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - non aggiorna l'ora di accesso all'inode a ogni accesso" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - aggiorna l'ora di accesso all'ora di modifica" @@ -645,7 +656,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - non supporta i device speciali a caratteri o blocchi" @@ -654,7 +665,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignora i bit set-user-identifier o set-group-identifier" @@ -663,7 +674,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - non permette l'esecuzione di alcun binario" @@ -672,7 +683,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - monta il file system in sola lettura" @@ -681,7 +692,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - le attività di I/O vengono eseguite in modo sincrono" @@ -690,7 +701,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - abilita l'accounting della quota disco per l'utente" @@ -699,7 +710,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - abilita l'accounting della quota disco per il gruppo" @@ -708,7 +719,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - supporto per attributi utente estesi" @@ -717,7 +728,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - cambiare proprietario/permessi non ritorna alcun errore" @@ -726,16 +737,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - disabilita il packing dei file nel file system" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - supporta le ACL (Access Control List) POSIX.1e" @@ -744,6 +764,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - utilizza solo lo stile di nomi dei file MS-DOS 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ja.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ja.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ja.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ja.po 2013-11-29 12:07:36.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-02 10:33+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian L10n Japanese \n" @@ -623,6 +623,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - アクセスごとでの inode アクセス時刻の更新をしない" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - 変更時刻によって inode アクセス時刻を更新する" @@ -631,7 +642,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - キャラクタ/ブロック特殊デバイスをサポートしない" @@ -640,7 +651,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - SUID および SGID ビットを無視する" @@ -649,7 +660,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - あらゆるバイナリの実行を許可しない" @@ -658,7 +669,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - 読み取りのみとしてファイルシステムをマウントする" @@ -667,7 +678,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - すべての入出力の処理を同期する" @@ -676,7 +687,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - ユーザのディスククオータ計測を有効にする" @@ -685,7 +696,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - グループのディスククオータ計測を有効にする" @@ -694,7 +705,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - ユーザ拡張属性をサポートする" @@ -703,7 +714,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - 所有者とパーミッションの変更でエラーを返さない" @@ -712,16 +723,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - ファイルシステムツリーへのファイルのパッキングを無効化" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e Access Control List のサポート" @@ -730,6 +750,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - 古い MS-DOS 8.3 形式のファイル名のみを使用" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ka.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ka.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ka.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ka.po 2013-11-29 12:07:36.000000000 +0000 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: debian-installer.2006071\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2011-03-01 12:49+0400\n" "Last-Translator: Aiet Kolkhi \n" "Language-Team: Georgian\n" @@ -642,6 +642,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - არ განახლდეს inode access time ყოველ მიმართვაზე" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - update inode access times relative to modify time" @@ -650,7 +661,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - სიმბოლური და ბლოკური მოწყობილობების მხარდაჭერის მოხსნა" @@ -659,7 +670,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - SUID და SGID ბიტების იგნორირება" @@ -668,7 +679,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - პროგრამების გაშვების აკრძალვა" @@ -686,7 +697,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - ფაილური სისტემის მონტაჟი \"მხოლოდ კითხვის\" რეჟიმში" @@ -704,7 +715,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "" "sync - ფაილური სისტემის ყველა შემავალი-გამომავალი პროცესი განხორციელდება " @@ -715,7 +726,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - მომხმარებელთა დისკური ქვოთების მეთვალყურეობა" @@ -724,7 +735,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - ჯგუფთა დისკური ქვოთების მეთვალყურეობა" @@ -733,7 +744,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - დამატებითი სამომხმარებლო ატრიბუტების მხარდაჭერა" @@ -742,7 +753,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - მფლობელისა და უფლებების შეცვლისას შეცდომების გარეშე" @@ -751,16 +762,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - ფაილური სისტემის ხეში ფაილების ჩაწყობის აკრძალვა" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e Access Control List-ის მხარდაჭერა" @@ -769,6 +789,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - MS-DOS 8.3 ძველი სტილის ფაილის მოკლე სახელები" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/kk.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/kk.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/kk.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/kk.po 2013-11-29 12:07:36.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-30 13:44+0600\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: Kazakh \n" @@ -624,6 +624,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - inode қатынау санын бірден жаңартпау" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - indoe қатынау санын өзгерту уақытына қатысты жаңарту" @@ -632,7 +643,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - таңбалық не арнайы құрылғыларды қолдамау" @@ -641,7 +652,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - SUID және SGID биттерін елемеу" @@ -650,7 +661,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ешбір бағдарламаның орындалуын болдырмау" @@ -659,7 +670,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - файлдық жүйені 'тек оқуға' тіркеу" @@ -668,7 +679,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - барлық енгізу-шығару процестері синхронды түрде іске асады" @@ -677,7 +688,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - пайдаланушылардың дискілік квотасын есептеуді қосу" @@ -686,7 +697,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - топтардың дискілік квотасын есептеуге рұқсат беру" @@ -695,7 +706,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - пайдаланушының кеңейтілген атрибуттарын қосу" @@ -704,7 +715,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet – иесі мен оның құқықтарын өзгерту қате қайтармайды" @@ -713,16 +724,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - файлдарды файлдық жүйенің ағашына қысуға тыйым салу" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e Access Control List қолдау" @@ -731,6 +751,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - тек ескі MS-DOS 8.3 түріндегі файлдар аттарын қолдану" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/km.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/km.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/km.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/km.po 2013-11-29 12:07:36.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_km\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-12-13 13:47+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -606,6 +606,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - កុំ​ធ្វើ​បច្ចុប្បន្នភាព​្យ​ពេលវេលា​ចូល​ដំណើរការ​អាយណូ័យ រាល់​ពេល​ចូល​ដំណើរការ" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - ធ្វើ​​បច្ចុប្បន្នភាព​​ពេល​វេលា​​ចូល​ដំណើរការ​អាយណូត​ទាក់ទង​ទៅ​នឹង​ពេលវេលា​កែប្រែ" @@ -614,7 +625,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - កុំ​គាំទ្រ​ឧបករណ៍​តួអក្សរ ឬ ឧបករណ៍​បណ្ដុំ​ពិសេស​" @@ -623,7 +634,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - មិន​អើពើ​ប៊ីត​សម្គាល់​ថា​កំណត់​អ្នកប្រើ ឬ ប៊ីត​សម្គាល់​ថា​កំណត់​ក្រុម" @@ -632,7 +643,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - មិន​អនុញ្ញាត​ឲ្យ​ប្រតិបត្តិ​ឯកសារ​គោល​ពីរ" @@ -641,7 +652,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - ម៉ោន​ប្រព័ន្ធ​ឯកសារ​ទៅ​ជា​បាន​តែ​អាន" @@ -650,7 +661,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - ធ្វើ​សមកាលកម្ម​រាល់​សកម្មភាព​បញ្ចេញ/បញ្ចូល​ទាំងអស់" @@ -659,7 +670,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - អនុញ្ញាត​ឲ្យ​ប្រើ​គណនី​កូតា​ថាស​អ្នក​ប្រើ" @@ -668,7 +679,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - អនុញ្ញាត​ឲ្យ​ប្រើ​គណនី​កូតា​ថាស​ក្រុម" @@ -677,7 +688,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - គាំទ្រ​គុណលក្ខណៈ​បន្ថែម​ទៀត​របស់​អ្នក​ប្រើ" @@ -686,7 +697,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - ការ​ផ្លាស់ប្ដូរ​ម្ចាស់ និង សិទ្ធិ​នឹង​មិន​ត្រឡប់​កំហុស​អ្វី​ឡើយ" @@ -695,16 +706,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - មិន​អនុញ្ញាត​ឲ្យ​ខ្ចប់​ឯកសារ​ទៅ​ក្នុង​មែកធាង​ប្រព័ន្ធ​ឯកសារ" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - គាំ​ទ្រ​ POSIX.1e Access Control List" @@ -713,6 +733,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "ឈ្មោះ​ខ្លី​ - ប្រើ​​តែ​ឈ្មោះ​​ឯកសារ​រចនាប័ទ្ម​ MS-DOS 8.3 ចាស់​ៗ" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ko.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ko.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ko.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ko.po 2013-11-29 12:07:36.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2011-03-09 02:14+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: Korean \n" @@ -620,6 +620,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - 접근할 때 inode의 접근 시각을 업데이트하지 않습니다" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - inode의 접근 시각을 변경 시각에 상대 시각으로 업데이트" @@ -628,7 +639,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - 캐릭터 장치나 블럭 장치를 지원하지 않습니다" @@ -637,7 +648,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - set user ID 혹은 set group ID 비트를 무시합니다" @@ -646,7 +657,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - 실행 파일의 실행을 막습니다" @@ -655,7 +666,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - 읽기 전용으로 파일 시스템을 마운트합니다" @@ -664,7 +675,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - 모든 입/출력이 동기적으로 일어납니다" @@ -673,7 +684,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - 사용자 디스크 쿼타 기능을 사용합니다" @@ -682,7 +693,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - 그룹 디스크 쿼타 기능을 사용합니다" @@ -691,7 +702,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - 사용자 확장 속성을 지원합니다" @@ -700,7 +711,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - 소유자나 권한을 바꿀 때 오류를 리턴하지 않습니다" @@ -709,16 +720,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - 파일 시스템 트리에 파일을 몰아 넣지 않습니다" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e 액세스 컨트롤 리스트 지원" @@ -727,6 +747,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - 전통적인 MS-DOS 8.3 형식 파일 이름만 사용" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ku.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ku.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ku.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ku.po 2013-11-29 12:07:36.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: ku\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-07-09 21:51+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish Team http://pckurd.net\n" @@ -625,6 +625,18 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "" +"noatime -Demên gihihiştinê ji bo inode di her gihiştinekê de nehatiye nûkirin" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "noatime -Demên gihîştinê ji bo inode di her gihiştinekê de nehatiye nûkirin" @@ -634,7 +646,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - Pişgiriya alavên sembolan an qalibên taybet nake" @@ -643,7 +655,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid -" @@ -652,7 +664,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - destûrê nede pelên cotik (binary) ku bên xebitandin" @@ -661,7 +673,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - mountkirina pergala pelan tenê ji bo xwendinê (read-only)" @@ -670,7 +682,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - bila hemû kirinên têketin/derketinê hemdemî pêk bê" @@ -679,7 +691,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - hesabê kota ya dîs a bikarhêner çalak bike" @@ -688,7 +700,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - hesabê kota yê dîsk ê komê çalak bike" @@ -697,7 +709,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - taybetiyên bikarhêner ên firehkirî destek bike" @@ -706,7 +718,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - dema xwediyê pelê û destûrên wê hatin guhartin çewtiyê nede" @@ -715,16 +727,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "nîşe - paketkirina pelan di dara pergala pelan de pêk nehat" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "" @@ -733,6 +754,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/lo.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/lo.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/lo.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/lo.po 2013-11-29 12:07:36.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: lo\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-11-26 09:11+0700\n" "Last-Translator: Anousak Souphavanh \n" "Language-Team: Lao \n" @@ -602,6 +602,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ບໍຕອ້ງປັບຄ່າເວລາເຂົ້າໃຊ້ inodeທຸກຄັ້ງທີ່ເຂົ້າໃຊ້" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - ປັບຄ່າເວລາເຂົ້າໃຊ້ inodeໂດຍທຽບກັບເວລາທີ່ແກ້ໄຂ" @@ -610,7 +621,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ບໍ່ຕອ້ງຮອງຮັບອຸປະກອນອັກຂະລະຫຼືອຸປະກອນບອ໋ດແບບພິເສດ" @@ -619,7 +630,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ບໍ່ໄຊ້ບິດ set-user-identifier ຫຼື set-group-identifier" @@ -628,7 +639,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ບໍ່ອະນຸຍາດໃຫ້ເຂົ້າໃຊ້ໂປແກັຣມໃດໆ" @@ -637,7 +648,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - ເມົາລະບົບແຟັມແບບອ່ານຢ່າງດຽວ" @@ -646,7 +657,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - ການອ່ານ/ຂຽນເກີດພອ້ມກັບການປ່ຽນແປງໃນດິດສະເໝີ" @@ -655,7 +666,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - ເປີດໃຊ້ການກຳນົດໂຄຕ້າສຳລັບບັນຊີຜູ້ໃຊ້" @@ -664,7 +675,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - ເປີດໃຊ້ການກຳນົດໂຄຕ້າສຳລັບກຸ່ມຜູ້ໃຊ້" @@ -673,7 +684,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - ຮອງຮັບແອດທິບິວສວ່ນຂະຫຍາຍສຳລັບຜູ້ໃຊ້" @@ -682,7 +693,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - ການປ່ຽນການອະນຸຍາດສິດທິຫຼືເຈົ້າຂອງບໍ່ຄືນຄ່າຂໍ້ຜິດພາດ" @@ -691,16 +702,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - ປິດການອັດແຟັມເຂົ້າໄປໃນໂຄງສ່າງລະບົບແຟັມ" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - ຮອງຮັບ Access Control List ตาม POSIX.1e" @@ -709,6 +729,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames -ໃຊ້ຊື່ແຟ້ມໃນແບບ 7.3 ແບບເກົ່າຂອງ MS-DOS ເທົ່ານັ້ນ" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/lt.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/lt.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/lt.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/lt.po 2013-11-29 12:07:36.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-07 09:04+0300\n" "Last-Translator: Kęstutis Biliūnas \n" "Language-Team: Lithuanian \n" @@ -626,6 +626,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - neatnaujint kreipimosi laiko kiekvieno kreipimosi metu" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - atnaujint kreipimosi laiką, esant pakeitimams" @@ -634,7 +645,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - neleist kurti specialių simbolinių ar blokinių įrenginių" @@ -643,7 +654,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignoruoti SUID ir SGID bitus" @@ -652,7 +663,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - neleisti vykdyti jokių programų" @@ -661,7 +672,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - prijungti failų sistemą tik skaitymui" @@ -670,7 +681,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - visi įvesties/išvesties veiksmai vyks sinchroniškai" @@ -679,7 +690,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - leisti naudotojų disko kvotų apskaitą" @@ -688,7 +699,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - leisti grupių disko kvotų apskaitą" @@ -697,7 +708,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - išplėstų naudotojo atributų palaikymas" @@ -706,7 +717,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - failo savininko ir teisų pakeitimas negrąžins klaidų" @@ -715,16 +726,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - drausti failų pakavimą failų sistemos medyje" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e prieigos teisių sąrašo palaikymas" @@ -733,6 +753,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - naud. tik seno MS-DOS 8.3 stiliaus failų vardams" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/lv.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/lv.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/lv.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/lv.po 2013-11-29 12:07:36.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: lv\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-11-17 00:02+0200\n" "Last-Translator: Aigars Mahinovs \n" "Language-Team: Latvian \n" @@ -618,6 +618,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - piekļūstot inode, neatjaunināt tā pieejas laikus" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - atjaunināt inode piekļuves laiku attiecībā pret izmainīšanas laiku" @@ -627,7 +638,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - neatbalstīt rakstzīmju vai bloku speciālas ierīces" @@ -636,7 +647,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignorēt set-user-identifier vai set-group-identifier bitus" @@ -645,7 +656,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - neļaut izpildīt izpildāmos failus" @@ -654,7 +665,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - montēt failu sistēmu vienīgi lasīšanas režīmā" @@ -663,7 +674,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - visas ievades/izvades darbības notiek sinhroni" @@ -672,7 +683,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - ierobežot lietotāja izmantoto diska apjomu" @@ -681,7 +692,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - ierobežot lietotāju grupas izmantoto diska apjomu" @@ -690,7 +701,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - atbalstīt lietotāju paplašinātos atribūtus" @@ -699,7 +710,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - īpašnieku un atļauju maiņas neatgriež kļūdu paziņojumus" @@ -708,16 +719,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - atslēgt failu uzkrāšanu failu sistēmas kokā" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - atbalsts POSIX.1e ACL piekļuves kontrolēm" @@ -726,6 +746,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - lietot tikai vecā MSDOS stila 8.3 failu nosaukumus" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/mk.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/mk.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/mk.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/mk.po 2013-11-29 12:07:36.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_mk\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-07-07 09:44+0100\n" "Last-Translator: Arangel Angov \n" "Language-Team: Macedonian \n" @@ -628,6 +628,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - не го менувај времето на пристап при секој пристап" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - ажурира времиња за пристап на inode релативно на менување на " @@ -638,7 +649,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev = немој да подржуваш специјални уреди" @@ -647,7 +658,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - игнорирај set-user-identifier или set-group-identifier" @@ -656,7 +667,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - не дозволувај извршување на бинарни" @@ -665,7 +676,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - монтирај го датотечниот систем само за читање" @@ -674,7 +685,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - сите влезно/излезни активности се случуваат синхронизирани" @@ -683,7 +694,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - квоти за искористеност на диск по корисник вклучени" @@ -692,7 +703,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - квоти за искористеност на диск по група вклучени" @@ -701,7 +712,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - подршка на додатни кориснички атрибути" @@ -710,7 +721,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - менување на сопственикот и дозволите не враќаат грешки" @@ -719,16 +730,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - исклучи го пакувањето на датотеки во датотечното дрво" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "" @@ -737,6 +757,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ml.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ml.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ml.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ml.po 2013-11-29 12:07:36.000000000 +0000 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: Debian Installer Level 1\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-11-21 02:13+0530\n" "Last-Translator: Praveen Arimbrathodiyil \n" "Language-Team: Debian Malayalam \n" @@ -624,6 +624,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ഓരോ സമീപനത്തിലും inode സമീപന സമയം പുതുക്കേണ്ട" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - ഐനോഡ് (inode) സമീപന സമയങ്ങള്‍ മാറ്റം വരുത്തിയ സമയത്തിനു് അപേക്ഷികമായി പുതുക്കുക" @@ -633,7 +644,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - കാരക്ടര്‍ അല്ലെങ്കില്‍ ബ്ലോക് പ്രത്യേക ഉപകരണങ്ങളെ സപ്പോര്‍ട്ട് ചെയ്യേണ്ട" @@ -642,7 +653,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" "nosuid - set-user-identifier അല്ലെങ്കില്‍ set-group-identifier എന്നീ ബിറ്റുകള്‍ " @@ -653,7 +664,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ഒരു ബൈനറികളുടേയും പ്രവര്‍ത്തനം അനുവദിക്കരുത്" @@ -662,7 +673,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - വായനക്ക് മാത്രമായി ഫയല്‍ സിസ്റ്റം മൌണ്ട് ചെയ്യുക" @@ -671,7 +682,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - എല്ലാ ഇന്‍പുട്ട്/ഔട്ട്പുട്ട് നടപടികളും ഒരേ സമയത്തു് നടക്കും" @@ -680,7 +691,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - ഉപയോക്തൃ ഡിസ്ക് ആനുപാതിക പങ്ക് കണക്ക് വെയ്പ് ഇനേബിള്‍ ചെയ്യുക" @@ -689,7 +700,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - ഗ്രൂപ്പ് ഡിസ്ക് ആനുപാതിക പങ്ക് കണക്ക് വെയ്പ് ഇനേബിള്‍ ചെയ്യുക" @@ -698,7 +709,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - ഉപയോക്തൃ വികസിത ഗുണങ്ങളെ പിന്തുണക്കുക" @@ -707,7 +718,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - ഉടമസ്തനെയും അനുമതികളും മാറ്റുന്നത് തെറ്റുകള്‍ തിരിച്ചു് തരില്ല" @@ -716,16 +727,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - ഫയല്‍ സിസ്റ്റം ട്രീയിലേക്ക് ഫയലുകള്‍ പാക്ക് ചെയ്യുന്നത് കഴിയാത്തതാക്കുക" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e ആക്സസ് കണ്ട്രോള്‍ ലിസ്റ്റ്" @@ -734,6 +754,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - പഴയ എംഎസ്-ഡോസ് 8.3 ശൈലിയിലുള്ള ഫയലിന്റെ പേരുകള്‍ മാത്രം ഉപയോഗിയ്ക്കുക" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/mr.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/mr.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/mr.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/mr.po 2013-11-29 12:07:36.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-02 10:36+0530\n" "Last-Translator: Sampada \n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " @@ -623,6 +623,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - आयनोड प्रवेश वेळा प्रत्येक प्रवेशाला सुधारू नका" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - वेळ बदलानुसार आयनोड प्रवेश वेळा सुधारा" @@ -631,7 +642,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - चिन्ह वा ब्लॉक च्या विशेष उपकरणांना पाठबळ नको" @@ -640,7 +651,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - वापरदार-ओळखदर्शक-निश्चिती वा गट-ओळखदर्शक-निश्चिती बिट दुर्लक्षा" @@ -649,7 +660,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - कोणत्याही बायनरीज् अंमलात आणू देऊ नका" @@ -658,7 +669,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - फाइलप्रणाली फक्त-वाचन अशी आरोहित करा" @@ -667,7 +678,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - सर्व आवक/जावक क्रिया एकाच वेळी होतात" @@ -676,7 +687,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - वापरदाराच्या डिस्कच्या हिश्श्याचा हिशोब कार्यसक्षम" @@ -685,7 +696,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - गटाच्या डिस्कच्या हिश्श्याचा हिशोब कार्यसक्षम" @@ -694,7 +705,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - वापरदाराच्या वाढीव गुणधर्मांना पाठबळ" @@ -703,7 +714,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - मालक व परवानग्या बदलूनही त्रुटी येत नाहीत" @@ -712,16 +723,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - फाइल प्रणाली वृक्षात फायली भरणे कार्यअक्षम करा" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e प्रवेश नियंत्रण यादीला पाठबळ" @@ -730,6 +750,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "संक्षिप्तनामे - फक्त जुन्या MS-DOS 8.3 प्रकारची फाइलनामे वापरा" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/nb.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/nb.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/nb.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/nb.po 2013-11-29 12:07:36.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-08-25 17:46+0200\n" "Last-Translator: Hans Fredrik Nordhaug \n" "Language-Team: Norwegian Bokmål \n" @@ -622,6 +622,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ikke oppdater inode-tid for tilgang ved hver tilgang" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - oppdater inode-tid for tilgang relativt til endringstid" @@ -630,7 +641,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ikke støtt tegn- eller spesielle blokkenheter" @@ -639,7 +650,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignorer sett-bruker-id- eller sett-gruppe-id-bits" @@ -648,7 +659,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ikke tillat kjøring av noen binærfiler" @@ -657,7 +668,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - monter filsystemet uten skrivetilgang" @@ -666,7 +677,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - alle inn/ut-aktiviteter utføres synkront" @@ -675,7 +686,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - slå på diskkvoter for brukere" @@ -684,7 +695,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - slå på diskkvoter for grupper" @@ -693,7 +704,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - støtt utvidede attributter for brukere" @@ -702,7 +713,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - endring av eier og rettigheter ga ingen feilmeldinger" @@ -711,16 +722,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "haleløs - ikke pakk filer inn i filsystemtreet" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - støtte for POSIX.1e tilgangskontrolliste" @@ -729,6 +749,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - bruk kun filnavn i gammel MS-DOS 8.3-stil" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ne.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ne.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ne.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ne.po 2013-11-29 12:07:36.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_ne\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2011-01-26 17:38-0600\n" "Last-Translator: \n" "Language-Team: American English \n" @@ -624,6 +624,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - प्रत्येक पहुँचमा इनोड पहुँच समय अपडेट नगर्नुहोस्" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - समय परिमार्जन गर्न सापेक्षिक अधिक्तम पटक पहुँच अद्यावधिक गर्नुहोस्" @@ -632,7 +643,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - क्यारेक्टर वा बन्द भएको विशेष यन्त्रहरुलाई समर्थन नदिनुहोस्" @@ -641,7 +652,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - सेट-प्रयोगकर्ता-पहिचायक वा सेट-समूह-पहिचायक बिटहरू उपेक्षा गर्नुहोस्" @@ -650,7 +661,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - कुनै बाइनरीहरुको कार्यन्वयन अनुमति नदिनुहोस्" @@ -659,7 +670,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro- पढ्ने फाइल प्रणाली मात्र माउन्ट गर्नुहोस्" @@ -668,7 +679,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - सबै आगत/निर्गत क्रियाकलापहरुले तुल्यकालिकरुप उत्पन्न गर्दछ" @@ -677,7 +688,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - प्रयोगकर्ता डिस्क क्यूटा लेखा सक्षम गारीएको छ" @@ -686,7 +697,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - समूह डिस्क भाग लेखालाई सक्षम गर्नुहोस्" @@ -695,7 +706,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - प्रयोगकर्ता विस्तारित विशेषताहरू समर्थन गर्नुहोस्" @@ -704,7 +715,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - मालिक र अनुमति परिवर्तन गरेर त्रुटि फर्कदैन" @@ -713,16 +724,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - फाइल प्रणाली ट्रीमा फाइल प्याक गर्न असक्षम भयो" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - समर्थन POSIX.ie पहुँच नियन्त्रण सुचि" @@ -731,6 +751,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "छोटानामहरु - पुराना MS-DOS 8.3 फाइलनामहरुको शैली मात्र प्रयोग गर्छ" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/nl.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/nl.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/nl.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/nl.po 2013-11-29 12:07:36.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: nl\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-25 14:06+0200\n" "Last-Translator: Eric Spreen \n" "Language-Team: Dutch \n" @@ -631,6 +631,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - inode-toegangstijd niet bij elke toegang bijwerken" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - inode-toegangstijd bijwerken t.o.v. de wijzigingstijd" @@ -639,7 +650,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - geen ondersteuning voor karakter- of 'block special'-apparaten" @@ -648,7 +659,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid -- set-user-identifier en set-group-identifier bits negeren" @@ -657,7 +668,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec -- uitvoeren van binaire bestanden niet toestaan" @@ -666,7 +677,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro -- bestandssysteem aankoppelen als alleen-lezen" @@ -675,7 +686,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync -- alle invoer/uitvoer-activiteiten gebeuren synchroon" @@ -684,7 +695,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota -- gebruikerquota zijn ingeschakeld" @@ -693,7 +704,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota -- groepquota zijn ingeschakeld" @@ -702,7 +713,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - ondersteun uitgebreide gebruikersattributen" @@ -711,7 +722,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - aanpassen van eigenaar en rechten geeft geen fouten" @@ -720,16 +731,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - plaats geen bestanden in de bestandsboomstructuur" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - ondersteun POSIX.1e Access Control List" @@ -738,6 +758,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - gebruik enkel MS-DOS 8.3-stijl bestandsnamen" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/nn.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/nn.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/nn.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/nn.po 2013-11-29 12:07:36.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: nn\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-06-26 13:47+0200\n" "Last-Translator: Eirik U. Birkeland \n" "Language-Team: Norwegian Nynorsk \n" @@ -618,6 +618,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ikkje oppdater inode tilgangstid ved kvar tilgang" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - oppdater tidspunkt for aksess av inode relativt til " @@ -628,7 +639,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ikkje støtt teikn eller blokk spesialeining" @@ -637,7 +648,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" "nosuid - ignorer set-brukar-identifikasjon eller set-gruppe-identifikasjon " @@ -648,7 +659,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - tillet inga køyring av køyrbare filer" @@ -657,7 +668,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - monter filsystemet skriveverna" @@ -666,7 +677,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - alle inn- og utdata vert handsama synkront" @@ -675,7 +686,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - slår på diskkvote for brukarar." @@ -684,7 +695,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - slår på diskkvote for grupper" @@ -693,7 +704,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - støttar utvida attributtar for brukarar" @@ -702,7 +713,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - endring av eigar og tilgangsløyve gjev ikkje feilmeldingar" @@ -711,16 +722,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - slå av pakking av filer inn i filsystemtreet" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "" @@ -729,6 +749,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/pa.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/pa.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/pa.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/pa.po 2013-11-29 12:07:36.000000000 +0000 @@ -21,7 +21,7 @@ msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-01 06:58+0530\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" @@ -620,6 +620,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ਹਰੇਕ ਵਾਰ ਵਰਤਣ ਤੇ inode ਪਹੁੰਚ ਸਮੇਂ ਦਾ ਅੱਪਡੇਟ ਨਾ ਕਰੋ" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - inode ਅਸੈੱਸ ਟਾਈਮ ਸੋਧਣ ਟਾਈਮ ਮੁਤਾਬਕ ਅੱਪਡੇਟ ਕਰੋ" @@ -628,7 +639,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ਅੱਖਰ ਜਾਂ ਬਲਾਕ ਵਾਲੇ ਜੰਤਰਾਂ ਨੂੰ ਸਹਿਯੋਗ ਨਾ ਦਿਓ" @@ -637,7 +648,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ਯੂਜ਼ਰ-ਨਿਰਧਾਰਨ-ਸ਼ਨਾਖਤੀ ਜਾਂ ਸਮੂਹ-ਨਿਰਧਾਰਨ-ਸ਼ਨਾਖਤੀ ਬਿੱਟ ਰੱਦ ਕਰੋ" @@ -646,7 +657,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ਕਿਸੇ ਬਾਇਨਰੀ ਨੂੰ ਚਲਾਉਣ ਦੀ ਮਨਜੂਰੀ ਨਾ ਦਿਓ" @@ -655,7 +666,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - ਫਾਇਲ ਸਿਸਟਮ ਸਿਰਫ ਪੜਨ ਲਈ ਮਾਊਂਟ ਕਰੋ" @@ -664,7 +675,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - ਸਾਰੀਆਂ ਇੰਪੁੱਟ/ਆਊਟਪੁੱਟ ਕਾਰਵਾਈਆਂ ਸਮਕਾਲੀ ਵਾਪਰੀਆਂ ਹਨ" @@ -673,7 +684,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - ਯੂਜ਼ਰ ਡਿਸਕ ਕੋਟਾ ਅਕਾਊਂਟਿੰਗ ਯੋਗ ਹੈ" @@ -682,7 +693,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - ਸਮੂਹ ਡਿਸਕ ਕੋਟਾ ਅਕਾਊਂਟਿੰਗ ਯੋਗ ਹੈ" @@ -691,7 +702,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - ਸਹਿਯੋਗੀ ਯੂਜ਼ਰ ਰਾਹੀਂ ਫੈਲੀ ਵਿਸ਼ੇਸ਼ਤਾ" @@ -700,7 +711,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - ਮਾਲਕ ਅਤੇ ਮਨਜੂਰੀ ਤਬਦੀਲੀ ਨਾਲ ਕੋਈ ਗਲਤੀ ਨਹੀਂ ਹੋਈ" @@ -709,16 +720,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - ਫਾਇਲ ਸਿਸਟਮ ਸੂਚੀ ਲੜੀ ਵਿੱਚ ਫਾਇਲਾਂ ਦੀ ਪੈਕਿੰਗ ਨੂੰ ਅਯੋਗ ਕਰੋ" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - support POSIX.1e ਅਸੈੱਸ ਕੰਟਰੋਲ ਲਿਸਟ" @@ -727,6 +747,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "ਛੋਟੇ ਨਾਂ - ਪੁਰਾਣੇ MS-DOS 8.3 ਸਟਾਈਲ ਵਰਗੇ ਫਾਇਲ ਨਾਂ ਹੀ ਵਰਤਦਾ ਹੈ" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/pl.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/pl.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/pl.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/pl.po 2013-11-29 12:07:36.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-06 20:59+0200\n" "Last-Translator: Bartosz Fenski \n" "Language-Team: Polish \n" @@ -625,6 +625,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - nie aktualizuj czasów dostępu do i-węzła" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - aktualizuj czasy dostępu względem czasu modyfikacji" @@ -633,7 +644,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - nie obsługuj znakowych lub blokowych urządzeń specjalnych" @@ -642,7 +653,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid -- ignoruj bity suid i sgid" @@ -651,7 +662,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - nie pozwalaj na wykonywanie żadnych binariów" @@ -660,7 +671,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - zamontuj system plików tylko do odczytu" @@ -669,7 +680,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - operacje wejścia/wyjścia odbywają się synchronicznie" @@ -678,7 +689,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - aktywacja quoty dyskowej dla użytkowników" @@ -687,7 +698,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - aktywacja quoty dyskowej dla grup" @@ -696,7 +707,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - obsługa rozszerzonych atrybutów użytkownika" @@ -705,7 +716,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - zmiana właściciela i uprawnień nie zwraca błędów" @@ -714,16 +725,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - wyłącz pakowanie plików do drzewa systemu plików" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - obsługa list kontroli dostępu (ACL) POSIX.1e" @@ -732,6 +752,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "krótkie nazwy - tylko krótkie nazwy MS-DOS 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/pt.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/pt.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/pt.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/pt.po 2013-11-29 12:07:36.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-08-21 11:38+0100\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" @@ -625,6 +625,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - não actualizar datas de acesso aos inode em cada acesso" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - actualizar data de acesso ao inode relativo à data de modificação" @@ -634,7 +645,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - não suportar dispositivos especiais de caracteres ou blocos" @@ -643,7 +654,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignorar bits set-user-identifier ou set-group-identifier" @@ -652,7 +663,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - não permitir a execução de qualquer binário" @@ -661,7 +672,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - montar o sistema de ficheiros apenas para leitura" @@ -670,7 +681,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - toda a actividade de entrada/saída ocorre de maneira síncrona" @@ -679,7 +690,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - quota de disco por utilizador activada" @@ -688,7 +699,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - quota de disco por grupo activada" @@ -697,7 +708,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - suportar atributos extendidos de utilizador" @@ -706,7 +717,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - alterar o dono e as permissões não retornam erros" @@ -715,17 +726,26 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "" "notail - desabilitar o packing de ficheiros na árvore do sistema de ficheiros" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - suportar Listas de Controlo de Acessos POSIX.1e" @@ -734,6 +754,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "nomes curtos - usar os antigos nomes de ficheiros MS-DOS 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/pt_BR.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/pt_BR.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/pt_BR.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/pt_BR.po 2013-11-29 12:07:37.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-11-19 15:52-0200\n" "Last-Translator: Felipe Augusto van de Wiel \n" "Language-Team: Brazilian Portuguese \n" "Language-Team: Romanian \n" @@ -637,6 +637,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - nu actualiza timpii de acces (în inod) la fiecare acces" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - reține timpii de acces relativ la timpul de modificare" @@ -645,7 +656,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - nu suporta dispozitive caracter sau bloc speciale" @@ -654,7 +665,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignoră biții „set user ID” sau „set group ID”" @@ -663,7 +674,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - nu permite execuția unui fișier binar" @@ -672,7 +683,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - montează sistemul de fișiere în mod „doar citire”" @@ -681,7 +692,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - toate activitățile de intrare/ieșire de desfășoară sincron" @@ -690,7 +701,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - activează cota de disc per utilizator" @@ -699,7 +710,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - activează cota de disc per grup" @@ -708,7 +719,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - suport pentru atribute extinse utilizator" @@ -718,7 +729,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - fără erori la schimbarea proprietarului și a drepturilor" @@ -727,16 +738,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - fără împachetarea fișierelor în sistemul de fișiere" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - suportă liste pentru accesul controlului POSIX.1e" @@ -745,6 +765,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - doar nume de fișiere de tip vechi MS-DOS 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ru.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ru.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ru.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ru.po 2013-11-29 12:07:37.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-08-22 10:10+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -632,6 +632,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime -- не обновлять время доступа к inode" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime -- обновлять время доступа к inode при изменениях" @@ -640,7 +651,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev -- не поддерживать символьные и блочные устройства" @@ -649,7 +660,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid -- игнорировать биты SUID и SGID" @@ -658,7 +669,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec -- запретить выполнение любых программ" @@ -667,7 +678,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro -- монтировать файловую систему в режиме 'только для чтения'" @@ -676,7 +687,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync -- включить синхронный ввод-вывод в файловой системе" @@ -685,7 +696,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota -- разрешить учёт дисковых квот пользователей" @@ -694,7 +705,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota -- разрешить учёт дисковых квот групп" @@ -703,7 +714,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr -- включить расширенные пользовательские атрибуты" @@ -712,7 +723,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet -- не возвращать ошибки при смене владельца и прав" @@ -721,16 +732,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail -- запретить упаковку файлов в дереве файловой системы" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - поддержка списков контроля доступа POSIX.1e" @@ -739,6 +759,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - исп. для файлов только старый стиль имён MS-DOS 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/se.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/se.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/se.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/se.po 2013-11-29 12:07:37.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: se\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-12-31 02:09+0100\n" "Last-Translator: Børre Gaup \n" "Language-Team: Northern Sami \n" @@ -635,7 +635,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 -msgid "relatime - update inode access times relative to modify time" +msgid "nodiratime - do not update directory inode access times" msgstr "" #. Type: text @@ -644,7 +644,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:44001 -msgid "nodev - do not support character or block special devices" +msgid "relatime - update inode access times relative to modify time" msgstr "" #. Type: text @@ -653,7 +653,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:45001 -msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" +msgid "nodev - do not support character or block special devices" msgstr "" #. Type: text @@ -662,7 +662,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:46001 -msgid "noexec - do not allow execution of any binaries" +msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" #. Type: text @@ -671,6 +671,15 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:47001 +msgid "noexec - do not allow execution of any binaries" +msgstr "" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:48001 #, fuzzy msgid "ro - mount the file system read-only" msgstr "Galgamin fiilavuogádagaid ..." @@ -680,7 +689,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "" @@ -689,7 +698,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "" @@ -698,7 +707,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "" @@ -707,7 +716,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "" @@ -716,7 +725,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "" @@ -725,16 +734,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "" @@ -743,6 +761,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/si.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/si.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/si.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/si.po 2013-11-29 12:07:37.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-11-13 23:01+0530\n" "Last-Translator: Danishka Navin \n" "Language-Team: Sinhala \n" @@ -611,6 +611,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - එක් එක් පිවිසුමේදී inode පිවිසුම් කාල යාවත් නොකරන්න" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - කාල වෙනසට අදාලව inode පිවිසුම් කාල යාවත් කරන්න." @@ -619,7 +630,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - විශේෂිත උපකරණ වල අක්‍ෂර හෝ කොටස් සඳහා සහාය නොදක්වන්න" @@ -628,7 +639,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - set-user-identifier හෝ set-group-identifier බිටු නොසලකන්න" @@ -637,7 +648,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - කිසිඳු ද්වීමය ක්‍රියාකාරීත්වයකට ඉඩ නොදෙන්න" @@ -646,7 +657,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - ගොනු පද්ධතිය කියවීමට පමණක් ලෙස රඳවන්න" @@ -655,7 +666,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - සියළු ආදාන/ප්‍රතිදාන ක්‍රියාකාරකම් සම්මුහුර්තව සිදුවේ" @@ -664,7 +675,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - පරිශීලක සඳහා තැටි ප්‍රමාණය ගණනය කිරීම සක්‍රීයයි" @@ -673,7 +684,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - කණ්ඩායම සඳහා තැටි ඉඩ ප්‍රමාණය ගණනය කිරීම සක්‍රීයයි" @@ -682,7 +693,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - පරිශීලක විසින් දිගුකල උපලක්‍ෂණ සඳහා සහාය දක්වයි" @@ -691,7 +702,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - දෝශයන් නොලැබෙන සේ හිමිකරු හා බලතල වෙනස් කරමින්" @@ -700,16 +711,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - ගොනු පද්ධති ගසට ගොනු ඇසිරීම අක්‍රීය කිරීම" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "" @@ -718,6 +738,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/sk.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/sk.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/sk.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/sk.po 2013-11-29 12:07:37.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2011-03-21 02:13+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -626,6 +626,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - neaktualizovať čas prístupu k inode pri každom prístupe" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - obnovovať čas prístupu vzhľadom na čas zmeny" @@ -634,7 +645,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - nepodporovať špeciálne blokové alebo znakové zariadenia" @@ -643,7 +654,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignorovať príznaky SUID alebo SGID" @@ -652,7 +663,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - nedovoliť vykonávanie spustiteľných súborov" @@ -661,7 +672,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - pripojiť súborový systém iba na čítanie (read-only)" @@ -670,7 +681,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - všetky vstupno/výstupné činnosti sa vykonávať synchrónne" @@ -679,7 +690,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - aktivovať diskové kvóty používateľov" @@ -688,7 +699,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - aktivovať diskové kvóty skupín" @@ -697,7 +708,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - podporovať rozšírené používateľské atribúty" @@ -706,7 +717,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - zmena vlastníka a prístupových práv bez hlásenia chýb" @@ -715,16 +726,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - zakáže zhusťovanie súborov do stromu súborového systému" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - podpora POSIX.1e Access Control List" @@ -733,6 +753,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - používať iba názvy súborov v starom formáte 8.3 MS-DOSu" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/sl.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/sl.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/sl.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/sl.po 2013-11-29 12:07:37.000000000 +0000 @@ -24,7 +24,7 @@ msgstr "" "Project-Id-Version: sl\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-11-16 15:21+0100\n" "Last-Translator: Vanja Cvelbar \n" "Language-Team: Slovenian \n" @@ -636,6 +636,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ne posodobi dostopnega časa inodov pri vsakem dostopu" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - posodobi dostopne čase inodov glede na prilagojeni čas" @@ -644,7 +655,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ne podpira znakovnih in blokovnih posebnih naprav" @@ -653,7 +664,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - prezri nastavitev izvajanja pod uporabnikom ali skupino" @@ -662,7 +673,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ne dovoli izvajanja nobenih binarnih paketov" @@ -671,7 +682,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - priklopi datotečni sistem samo za branje" @@ -680,7 +691,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - vse vhodno/izhodne dejavnosti potekajo usklajeno" @@ -689,7 +700,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - omogoči določanje kvot diskov za uporabnike" @@ -698,7 +709,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - omogoči določanje kvot diskov za skupine" @@ -707,7 +718,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - podpora za nastavljive dodatne atribute" @@ -716,7 +727,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - spreminjanje lastnika in dovoljenj ne vrne napak" @@ -725,16 +736,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - onemogoči pakiranje datotek v drevo datotečnega sistema" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - podpora za seznam za nadzor dostopa POSIX.1e" @@ -743,6 +763,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - uporabi samo imena datotek v stari obliki MS-DOS 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/sq.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/sq.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/sq.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/sq.po 2013-11-29 12:07:37.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-02-21 18:30+0100\n" "Last-Translator: Elian Myftiu \n" "Language-Team: Albanian \n" @@ -621,6 +621,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - mos fresko herët e hyrjes së inodës në çdo akses" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - fresko herët e hyrjes së inodës sipas kohës së ndryshimit" @@ -629,7 +640,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - mos suporto dispozitivat me gërma apo me blloqe speciale" @@ -638,7 +649,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - shpërfill bitet set-user-identifier apo set-group-identifier" @@ -647,7 +658,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - mos lejo ekzekutimin e asnjë binari" @@ -656,7 +667,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - monto filesistemin vetëm për lexim" @@ -665,7 +676,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "" "sync - çdo aktivitet input/output në filesistem ndodh në mënyrë sinkrone" @@ -675,7 +686,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - llogaria e kuotave të përdoruesve është e aktivizuar" @@ -684,7 +695,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - llogaria e kuotave të grupeve është e aktivizuar" @@ -693,7 +704,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - mbështet vetitë e zgjeruara të përdoruesit" @@ -702,7 +713,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - duke ndryshuar pronarin dhe lejet nuk jep gabime" @@ -711,16 +722,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - çaktivizon paketimin e kartelave në pemën e filesistemit" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "" @@ -729,6 +749,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/sr.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/sr.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/sr.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/sr.po 2013-11-29 12:07:37.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-08-25 17:41+0100\n" "Last-Translator: Janos Guljas \n" "Language-Team: Serbian/Cyrillic\n" @@ -629,6 +629,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - не ажурирај време приступа и-нода при сваком приступу" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - ажурирај atime и-нода релативно у односу на mtime" @@ -637,7 +648,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - не подржавај карактер или блок специјалне уређаје" @@ -646,7 +657,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - игнориши suid и sgid битове" @@ -655,7 +666,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - не дозвољавај извршавање програма" @@ -664,7 +675,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - монтирај фајл систем само за читање" @@ -673,7 +684,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - све активности улаза/излаза се дешавају синхроно" @@ -682,7 +693,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - укључи рачунање корисничких квота" @@ -691,7 +702,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - укључи рачунање групних квота" @@ -700,7 +711,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - подржи корисничке проширене атрибуте" @@ -709,7 +720,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - промена власника и права не враћа грешке" @@ -718,16 +729,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - онемогући паковање фајлова у стабло фајл система" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - подршка за POSIX.1e Access Control List" @@ -736,6 +756,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "кратки називи - користити старе MS-DOS 8.3 називе фајлова" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/sv.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/sv.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/sv.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/sv.po 2013-11-29 12:07:37.000000000 +0000 @@ -20,7 +20,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2011-03-19 11:54+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -630,6 +630,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - uppdatera inte inodåtkomsttid vid varje åtkomst" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - uppdatera inodåtkomsttid relativ till ändringstid" @@ -638,7 +649,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - stöd inte tecken- och blockspecialenheter" @@ -647,7 +658,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignorera setuid- och setgid-bitarna" @@ -656,7 +667,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - tillåt inte körning av binärfiler" @@ -665,7 +676,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - montera filsystemet för enbart läsning" @@ -674,7 +685,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - alla indata-/utdata-aktiviteter sker synkront" @@ -683,7 +694,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - aktivera diskkvot per användare" @@ -692,7 +703,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - aktivera diskkvot för grupp" @@ -701,7 +712,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - stöder utökade attribut för användare" @@ -710,7 +721,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - ändringar av ägare och rättigheter returnerar inte fel" @@ -719,16 +730,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - inaktivera packning av filer i filsystemsträdet" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - stöd för POSIX.1e Access Control List" @@ -737,6 +757,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - använd filnamn enligt gamla MS-DOS 8.3-stilen" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ta.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ta.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ta.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ta.po 2013-11-29 12:07:37.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: ta\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-08-29 17:32+0530\n" "Last-Translator: Dr.T.Vasudevan \n" "Language-Team: Tamil <>\n" @@ -620,6 +620,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ஐநோட் அணுகல்நேரத்தை ஒவ்வொரு அணுகலுக்கும் புதுப்பிக்காதே." + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - update ஐநோட் அணுகல்நேரத்தை மாற்று நேரத்துக்கு தொடர்பாக புதுப்பிக்கவும்" @@ -629,7 +640,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - எழுத்துறு அல்லது தொகுதி சிறப்பு சாதனங்களை ஆதரிக்காதே" @@ -638,7 +649,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" "nosuid - பயனர் அடையாள காட்டி அல்லது குழு அடையாள காட்டி அமைப்பு க்களை உதாசீனப் " @@ -649,7 +660,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - எந்த இருநிலையையும் இயங்க விடாதே" @@ -658,7 +669,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - கோப்பு அமைப்பை படிக்க-மட்டும் ஏற்று" @@ -667,7 +678,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync -உள்ளீடு/ வெளியீடு செயல்கள் ஒரே நேரத்தில் நிகழும்" @@ -676,7 +687,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - பயனருக்கு வன் தட்டு இட ஒதுக்கீடு செயற்படுத்தப் பட்டது" @@ -685,7 +696,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - குழுவுக்கு வன் தட்டு இட ஒதுக்கீடு செயற்படுத்தப் பட்டது" @@ -694,7 +705,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - பயனரின் அதிகப்படியான மதிப்புரு" @@ -703,7 +714,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - உரிமையாளர் மற்றும் அனுமதிகள் மாற்றம் பிழை எனாது." @@ -712,16 +723,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail -கோப்புகளை அமைப்பு மரத்தில் அடுக்குவதை செயல் நீக்கு." #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "ஏசிஎல்எஸ் POSIX.1e அணுகல் கட்டுப்பாடு பட்டியல்" @@ -730,6 +750,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "பெயர்சுருக்கம் - MS-DOS 8.3 வகை கோப்புபெயர்கள் மட்டும் பயனாக்கு" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/te.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/te.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/te.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/te.po 2013-11-29 12:07:37.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: te\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2011-01-19 21:00+0530\n" "Last-Translator: Arjuna Rao Chavala \n" "Language-Team: Telugu \n" @@ -607,6 +607,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ప్రతి సంపర్కము లో inode సంపర్క కాలాలను మార్చవద్దు " + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - మార్పు కాలానికి సాపేక్షంగా inode సంపర్క కాలాలను మార్చు" @@ -615,7 +626,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ప్రత్యేక కేరెక్టర్ లేక బ్లాక్ డివైసులకు తోడ్పాటు ఇవ్వవద్దు" @@ -624,7 +635,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - set-user-identifier లేక set-group-identifier బిట్లని ఉపేక్షించు" @@ -633,7 +644,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - బైనరీల ను నడపడాన్ని అనుమతించవద్దు " @@ -642,7 +653,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - ఫైల్ సిస్టమ్ ని చదువుటకు మాత్రమే (read-only) అని అనుసంధానం చెయ్యి" @@ -651,7 +662,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - అన్ని చదవటం/రాయటం (input/output) చర్యలు occur సింక్రోనస్ గా జరగాలి" @@ -660,7 +671,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - వాడుకరి డిస్క్ కోటా లెక్కించుట చేతనము" @@ -669,7 +680,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - సమూహపు డిస్క్ కోటా లెక్కించుట చేతనము" @@ -678,7 +689,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - వాడుకరి అదనపు లక్షణాలకు తోడ్పాటు " @@ -687,7 +698,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - స్వంతదారుని , అనుమతులను మార్చుట, దోషాలను ఇవ్వదు. " @@ -696,16 +707,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - ఫైల్ సిస్టమ్ ట్రీలో ఫైళ్లని పాకింగ్ చేయుట అచేతనం " #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e అందుబాటు నియంత్రణ జాబితా తోడ్పాటు" @@ -714,6 +734,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "పొట్టిపేర్లు- పాత MS-DOS 8.3 రూపుఫైల్ పేర్లు మాత్రమే" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/templates.pot ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/templates.pot --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/templates.pot 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/templates.pot 2013-11-29 12:07:36.000000000 +0000 @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: partman-basicfilesystems\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -582,7 +582,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 -msgid "relatime - update inode access times relative to modify time" +msgid "nodiratime - do not update directory inode access times" msgstr "" #. Type: text @@ -591,7 +591,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:44001 -msgid "nodev - do not support character or block special devices" +msgid "relatime - update inode access times relative to modify time" msgstr "" #. Type: text @@ -600,7 +600,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:45001 -msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" +msgid "nodev - do not support character or block special devices" msgstr "" #. Type: text @@ -609,7 +609,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:46001 -msgid "noexec - do not allow execution of any binaries" +msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" #. Type: text @@ -618,7 +618,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:47001 -msgid "ro - mount the file system read-only" +msgid "noexec - do not allow execution of any binaries" msgstr "" #. Type: text @@ -627,7 +627,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:48001 -msgid "sync - all input/output activities occur synchronously" +msgid "ro - mount the file system read-only" msgstr "" #. Type: text @@ -636,7 +636,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:49001 -msgid "usrquota - user disk quota accounting enabled" +msgid "sync - all input/output activities occur synchronously" msgstr "" #. Type: text @@ -645,7 +645,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:50001 -msgid "grpquota - group disk quota accounting enabled" +msgid "usrquota - user disk quota accounting enabled" msgstr "" #. Type: text @@ -654,7 +654,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:51001 -msgid "user_xattr - support user extended attributes" +msgid "grpquota - group disk quota accounting enabled" msgstr "" #. Type: text @@ -663,7 +663,7 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:52001 -msgid "quiet - changing owner and permissions does not return errors" +msgid "user_xattr - support user extended attributes" msgstr "" #. Type: text @@ -672,15 +672,33 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:53001 +msgid "quiet - changing owner and permissions does not return errors" +msgstr "" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "" @@ -689,6 +707,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/th.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/th.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/th.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/th.po 2013-11-29 12:07:37.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2011-02-02 11:11+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" @@ -604,6 +604,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - ไม่ต้องปรับค่าเวลาเข้าใช้ inode ทุกครั้งที่เข้าใช้" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - ปรับค่าเวลาเข้าใช้ inode โดยเทียบกับเวลาที่แก้ไข" @@ -612,7 +623,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ไม่ต้องรองรับอุปกรณ์อักขระหรืออุปกรณ์บล็อคแบบพิเศษ" @@ -621,7 +632,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ไม่ใช้บิต set-user-identifier หรือ set-group-identifier" @@ -630,7 +641,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ไม่อนุญาตให้เรียกใช้โปรแกรมใดๆ" @@ -639,7 +650,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - เมานท์ระบบแฟ้มแบบอ่านอย่างเดียว" @@ -648,7 +659,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - การอ่าน/เขียนเกิดพร้อมกับการเปลี่ยนแปลงในดิสก์เสมอ" @@ -657,7 +668,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - เปิดใช้การกำหนดโควตาสำหรับบัญชีผู้ใช้" @@ -666,7 +677,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - เปิดใช้การกำหนดโควตาสำหรับกลุ่มผู้ใช้" @@ -675,7 +686,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - รองรับแอตทริบิวต์ส่วนขยายสำหรับผู้ใช้" @@ -684,7 +695,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - การเปลี่ยนการอนุญาตสิทธิ์หรือเจ้าของไม่คืนค่าข้อผิดพลาด" @@ -693,16 +704,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - ปิดการอัดแฟ้มเข้าไปในโครงสร้างระบบแฟ้ม" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - รองรับ Access Control List ตาม POSIX.1e" @@ -711,6 +731,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - ใช้ชื่อแฟ้มในแบบ 7.3 แบบเก่าของ MS-DOS เท่านั้น" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/tl.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/tl.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/tl.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/tl.po 2013-11-29 12:07:37.000000000 +0000 @@ -20,7 +20,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-07-09 22:53+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" @@ -630,6 +630,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - do not update inode access times at each access" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - update inode access times relative to modify time" @@ -638,7 +649,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - do not support character or block special devices" @@ -647,7 +658,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ignore set-user-identifier or set-group-identifier bits" @@ -656,7 +667,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - do not allow execution of any binaries" @@ -665,7 +676,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - mount the file system read-only" @@ -674,7 +685,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - all input/output activities occur synchronously" @@ -683,7 +694,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - user disk quota accounting enabled" @@ -692,7 +703,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - group disk quota accounting enabled" @@ -701,7 +712,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - suportahan ang kaukulang dagdag ng gumagamit" @@ -710,7 +721,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - changing owner and permissions does not return errors" @@ -719,16 +730,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - disable packing of files into the file system tree" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "" @@ -737,6 +757,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/tr.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/tr.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/tr.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/tr.po 2013-11-29 12:07:37.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-29 17:13+0200\n" "Last-Translator: Mert Dirik \n" "Language-Team: Debian L10n Turkish \n" @@ -631,6 +631,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - her erişimde inode erişim zamanlarını güncelleme" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - değişiklik anına göreli düğüm erişim anını güncelleme" @@ -639,7 +650,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - karakter veya özel blok aygıtlarını göz ardı et" @@ -648,7 +659,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - set-user-id veya set-group-id bitlerini göz ardı et" @@ -657,7 +668,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ikili (binary) dosyaların çalıştırılmasına izin verme" @@ -666,7 +677,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - dosya sistemini salt-okunur olarak bağla" @@ -675,7 +686,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - tüm girdi/çıktı işlemleri eş zamanlı olarak oluşsun" @@ -684,7 +695,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - kullanıcı disk kota hesabını etkinleştir" @@ -693,7 +704,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - grup disk kota hesabını etkinleştir" @@ -702,7 +713,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - genişletilmiş kullanıcı özelliklerini destekle" @@ -711,7 +722,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - dosya sahibi ve izinleri değiştiğinde hata verme" @@ -720,16 +731,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - dosya sistemi ağacında dosya paketlemesi yapma" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e Erişim Denetimi Listesi desteği" @@ -738,6 +758,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - Yalnızca eski 8.3 MS-DOS tarzı dosya adları kullan" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ug.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ug.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/ug.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/ug.po 2013-11-29 12:07:37.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2011-03-24 09:40+0600\n" "Last-Translator: Sahran \n" "Language-Team: Uyghur Computer Science Association \n" @@ -632,6 +632,19 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "" +"noatime - ھەر قېتىم سانلىق مەلۇماتنى ساقلىغاندا inode نىڭ ساقلاش ۋاقتىنى " +"يېڭىلىمايدۇ" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - يېڭىلاش ۋە inode ئۆزگەرتىش ۋاقتىغا مۇناسىۋەتلىك ساقلاش ۋاقتى" @@ -641,7 +654,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - ھەرپ ياكى بۆلەكنى قوللىمايدىغان ئالاھىدە ئۈسكۈنە" @@ -650,7 +663,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "" "nosuid - set-user-identifier ياكى set-group-identifier bits غا پەرۋا قىلما" @@ -660,7 +673,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - ھەر قانداق ئىككىلىك سىستېمىدىكى ھۆججەتنى ئىجرا قىلىشنى چەكلە" @@ -669,7 +682,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - ئوقۇشقىلا بولىدىغان ئۇسۇلىدا ھۆججەت سىستېمىسىنى ئېگەرلەيدۇ" @@ -678,7 +691,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - بارلىق كىرگۈزۈش/چىقىرىش مەشغۇلاتىنى قەدەمداش قىلىدۇ" @@ -687,7 +700,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - ئىشلەتكۈچى دىسكا نورمىسى ئىقتىدارىنى قوزغىتىدۇ" @@ -696,7 +709,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "" "grpquota - ئىشلەتكۈچى گۇرۇپپا دىسكا تەقسىمات نورمىسى ئىقتىدارىنى قوزغىتىدۇ" @@ -706,7 +719,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - ئىشلەتكۈچى كېڭەيتىلگەن خاسلىقىنى قوللايدۇ" @@ -715,7 +728,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - ئىگە ۋە ھوقۇقلارنى ئۆزگەرتكەندە خاتالىق قايتمايدۇ" @@ -724,16 +737,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - ھۆججەتنى ھۆججەت سىستېما قۇرۇلمىسىغا بوغچىلاشنى چەكلەيدۇ" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - POSIX.1e نى قوللايدىغان زىيارەت تىزگىن تىزىملىكى" @@ -742,7 +764,7 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" "shortnames - پەقەت كونا MS-DOS 8.3 ئۇسلۇبىدىكى ھۆججەت ئىسمىنى ئىشلىتىدۇ" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/uk.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/uk.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/uk.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/uk.po 2013-11-29 12:07:37.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: uk\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-11-01 01:29+0200\n" "Last-Translator: Borys Yanovych \n" "Language-Team: Ukrainian <>\n" @@ -629,6 +629,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - не оновлювати часи доступу до inode при кожному зверненні" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime - оновлювати часи доступу до inode відповідно до часу модифікації" @@ -638,7 +649,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - не підтримувати спеціальні символьні та блочні пристрої" @@ -647,7 +658,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - ігнорувати біти SUID та SGID" @@ -656,7 +667,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - не дозволяти виконання будь-яких програм" @@ -665,7 +676,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - монтувати файлову систему тільки для читання" @@ -674,7 +685,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - весь ввід/вивід буде проходити синхронно" @@ -683,7 +694,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - дозволити дискові квоти для користувачів" @@ -692,7 +703,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - дозволити дискові квоти груп" @@ -701,7 +712,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - підтримувати розширені атрибути користувача" @@ -710,7 +721,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - зміна власника та прав доступу не повертатиме помилки" @@ -719,16 +730,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - заборонити упаковування файлів в дерево файлової системи" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - підтримка списків контролю доступу стандарту POSIX.1e" @@ -737,7 +757,7 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "" "shortnames - використовувати назви файлів лише в старому стилі MS-DOS 8.3" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/vi.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/vi.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/vi.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/vi.po 2013-11-29 12:07:37.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: debian-installer Level 1\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-09-28 18:01+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -626,6 +626,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime — không cập nhật giờ truy cập inode mỗi khi truy cập" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "" "relatime — cập nhật các thời gian truy cập nút thông tin tương ứng so với " @@ -636,7 +647,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev — không hỗ trợ thiết bị kiểu ký tự hay khối" @@ -645,7 +656,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid — bỏ qua bit set-user-identifier hay set-group-identifier" @@ -654,7 +665,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec — không cho phép thực hiện tập tin nhị phân" @@ -663,7 +674,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro — lắp hệ thống tập tin là chỉ đọc" @@ -672,7 +683,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync — mọi hành động nhập/xuất xảy ra đồng bộ" @@ -681,7 +692,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota — kế toán chỉ tiêu đĩa người dùng đã bật" @@ -690,7 +701,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota — kế toán chỉ tiêu đĩa nhóm đã bật" @@ -699,7 +710,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr — hỗ trợ thuộc tính kéo dài bởi người dùng" @@ -708,7 +719,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet — việc thay đổi người chủ và quyền hạn không trả về lỗi" @@ -717,16 +728,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail — tắt đóng gói tâp tin vào cây hệ thống tập tin" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "" "acls — hỗ trợ danh sách điều khiển truy cập (Access Control List) POSIX.1e" @@ -736,6 +756,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames — chỉ sử dụng tên tập tin kiểu MS-DOS 8.3 cũ (tên ngắn)" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/zh_CN.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/zh_CN.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/zh_CN.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/zh_CN.po 2013-11-29 12:07:37.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2010-10-04 03:35+0800\n" "Last-Translator: YunQiang Su \n" "Language-Team: Chinese (simplified) \n" @@ -610,6 +610,17 @@ #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) #: ../partman-basicfilesystems.templates:43001 +#, fuzzy +#| msgid "noatime - do not update inode access times at each access" +msgid "nodiratime - do not update directory inode access times" +msgstr "noatime - 在每次对数据进行存取时不更新 inode 的存取时间" + +#. Type: text +#. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:44001 msgid "relatime - update inode access times relative to modify time" msgstr "relatime - 更新和 inode 修改时间相关的存取时间" @@ -618,7 +629,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:44001 +#: ../partman-basicfilesystems.templates:45001 msgid "nodev - do not support character or block special devices" msgstr "nodev - 不支持字符或块特殊设备" @@ -627,7 +638,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:45001 +#: ../partman-basicfilesystems.templates:46001 msgid "nosuid - ignore set-user-identifier or set-group-identifier bits" msgstr "nosuid - 忽略 set-user-identifier 或 set-group-identifier 位" @@ -636,7 +647,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:46001 +#: ../partman-basicfilesystems.templates:47001 msgid "noexec - do not allow execution of any binaries" msgstr "noexec - 禁止执行任何二进制文件。" @@ -645,7 +656,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:47001 +#: ../partman-basicfilesystems.templates:48001 msgid "ro - mount the file system read-only" msgstr "ro - 以只读方式挂载文件系统" @@ -654,7 +665,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:48001 +#: ../partman-basicfilesystems.templates:49001 msgid "sync - all input/output activities occur synchronously" msgstr "sync - 同步执行所有输入/输出动作" @@ -663,7 +674,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:49001 +#: ../partman-basicfilesystems.templates:50001 msgid "usrquota - user disk quota accounting enabled" msgstr "usrquota - 开启用户磁盘限额功能" @@ -672,7 +683,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:50001 +#: ../partman-basicfilesystems.templates:51001 msgid "grpquota - group disk quota accounting enabled" msgstr "grpquota - 开启用户组磁盘限额功能" @@ -681,7 +692,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:51001 +#: ../partman-basicfilesystems.templates:52001 msgid "user_xattr - support user extended attributes" msgstr "user_xattr - 支持用户扩展属性" @@ -690,7 +701,7 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:52001 +#: ../partman-basicfilesystems.templates:53001 msgid "quiet - changing owner and permissions does not return errors" msgstr "quiet - 改变属主和权限时不返回错误" @@ -699,16 +710,25 @@ #. :sl2: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:53001 +#: ../partman-basicfilesystems.templates:54001 msgid "notail - disable packing of files into the file system tree" msgstr "notail - 禁止将文件归置到文件系统树" #. Type: text #. Description +#. :sl2: +#. Note to translators: Please keep your translations of this string below +#. a 65 columns limit (which means 65 characters in single-byte languages) +#: ../partman-basicfilesystems.templates:55001 +msgid "discard - trim freed blocks from underlying block device" +msgstr "" + +#. Type: text +#. Description #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:54001 +#: ../partman-basicfilesystems.templates:56001 msgid "acls - support POSIX.1e Access Control List" msgstr "acls - 支持 POSIX.1e 访问控制列表" @@ -717,6 +737,6 @@ #. :sl4: #. Note to translators: Please keep your translations of this string below #. a 65 columns limit (which means 65 characters in single-byte languages) -#: ../partman-basicfilesystems.templates:55001 +#: ../partman-basicfilesystems.templates:57001 msgid "shortnames - only use the old MS-DOS 8.3 style filenames" msgstr "shortnames - 只使用旧式 MS-DOS 8.3 风格文件名" diff -Nru ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/zh_TW.po ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/zh_TW.po --- ubiquity-2.10.26/d-i/source/partman-basicfilesystems/debian/po/zh_TW.po 2013-01-18 14:22:46.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-basicfilesystems/debian/po/zh_TW.po 2013-11-29 12:07:37.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-basicfilesystems@packages.debian.org\n" -"POT-Creation-Date: 2010-08-20 22:02+0200\n" +"POT-Creation-Date: 2013-11-29 12:07+0000\n" "PO-Revision-Date: 2008-08-09 00:35+0800\n" "Last-Translator: Tetralet \n" "Language-Team: Debian-user in Chinese [Big5] Tue, 01 Oct 2013 10:57:25 +0100 + partman-btrfs (8ubuntu1) precise; urgency=low * Resynchronise with Debian. Remaining changes: diff -Nru ubiquity-2.10.26/d-i/source/partman-btrfs/mountoptions/btrfs ubiquity-2.10.28/d-i/source/partman-btrfs/mountoptions/btrfs --- ubiquity-2.10.26/d-i/source/partman-btrfs/mountoptions/btrfs 2011-01-20 15:19:57.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-btrfs/mountoptions/btrfs 2013-10-01 09:56:59.000000000 +0000 @@ -1,4 +1,5 @@ noatime +nodiratime relatime nodev nosuid @@ -15,3 +16,4 @@ noacl notreelog flushoncommit +discard diff -Nru ubiquity-2.10.26/d-i/source/partman-efi/commit.d/format_efi ubiquity-2.10.28/d-i/source/partman-efi/commit.d/format_efi --- ubiquity-2.10.26/d-i/source/partman-efi/commit.d/format_efi 2013-01-23 13:21:29.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-efi/commit.d/format_efi 2013-09-18 13:00:10.000000000 +0000 @@ -57,9 +57,21 @@ db_progress INFO $template db_progress SET 1 log_sector_size="$(blockdev --getss "$(cat device)")" + if [ "$log_sector_size" = 512 ]; then + mkdosfs_opts= + else + # mkdosfs has trouble handling cluster + # calculations for non-512-byte logical + # sectors. Forcing one sector per cluster + # avoids this as long as the filesystem + # isn't too large, but that shouldn't be a + # problem for EFI System Partitions. + mkdosfs_opts='-s 1' + fi if log-output -t partman --pass-stdout \ mkdosfs -F "${new_efi_fs#fat}" \ -S "$log_sector_size" \ + $mkdosfs_opts \ "$device" >/dev/null; then sync status=OK diff -Nru ubiquity-2.10.26/d-i/source/partman-efi/debian/changelog ubiquity-2.10.28/d-i/source/partman-efi/debian/changelog --- ubiquity-2.10.26/d-i/source/partman-efi/debian/changelog 2013-01-23 13:23:11.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-efi/debian/changelog 2013-09-18 13:00:34.000000000 +0000 @@ -1,3 +1,11 @@ +partman-efi (25ubuntu1.2) precise; urgency=low + + * Pass "-s 1" to mkdosfs if the logical sector size is not equal to 512 + bytes, since mkdosfs has trouble with cluster calculations otherwise + (LP: #1065281). + + -- Colin Watson Wed, 18 Sep 2013 14:00:33 +0100 + partman-efi (25ubuntu1.1) precise; urgency=low * Use mkdosfs to create FAT filesystems, since libparted cannot handle diff -Nru ubiquity-2.10.26/d-i/source/partman-ext3/debian/changelog ubiquity-2.10.28/d-i/source/partman-ext3/debian/changelog --- ubiquity-2.10.26/d-i/source/partman-ext3/debian/changelog 2012-04-11 14:14:26.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-ext3/debian/changelog 2013-10-01 09:50:25.000000000 +0000 @@ -1,3 +1,11 @@ +partman-ext3 (67ubuntu1.1) precise; urgency=low + + * Backport from Debian (Stephen Gran): + - Allow "discard" and "nodiratime" options for ext4 (closes: #722598, + LP: #978032). + + -- Colin Watson Tue, 01 Oct 2013 10:49:22 +0100 + partman-ext3 (67ubuntu1) precise; urgency=low * Resynchronise with Debian. Remaining changes: diff -Nru ubiquity-2.10.26/d-i/source/partman-ext3/mountoptions/ext4 ubiquity-2.10.28/d-i/source/partman-ext3/mountoptions/ext4 --- ubiquity-2.10.26/d-i/source/partman-ext3/mountoptions/ext4 2011-01-20 17:36:56.000000000 +0000 +++ ubiquity-2.10.28/d-i/source/partman-ext3/mountoptions/ext4 2013-10-01 09:48:12.000000000 +0000 @@ -1,4 +1,6 @@ +discard noatime +nodiratime relatime nodev nosuid diff -Nru ubiquity-2.10.26/debian/changelog ubiquity-2.10.28/debian/changelog --- ubiquity-2.10.26/debian/changelog 2013-07-19 23:59:52.000000000 +0000 +++ ubiquity-2.10.28/debian/changelog 2013-12-03 18:04:05.000000000 +0000 @@ -1,3 +1,21 @@ +ubiquity (2.10.28) precise; urgency=low + + * Automatic update of included source packages: partman- + basicfilesystems 71ubuntu3.4. (LP: #978032) + + -- Dmitrijs Ledkovs Tue, 03 Dec 2013 18:04:05 +0000 + +ubiquity (2.10.27) precise; urgency=low + + * Automatic update of included source packages: netcfg 1.68ubuntu14.1 + (LP: #901700), partman-auto 101ubuntu2.2 (LP: #1197766, #1065281), + partman-base 153ubuntu6 (LP: #1065281), partman-basicfilesystems + 71ubuntu3.3 (LP: #978032, #1215458), partman-btrfs 8ubuntu1.1 (LP: + #978032), partman-efi 25ubuntu1.2 (LP: #1065281), partman-ext3 + 67ubuntu1.1 (LP: #978032). + + -- Dmitrijs Ledkovs Fri, 29 Nov 2013 10:32:25 +0000 + ubiquity (2.10.26) precise-proposed; urgency=low * Automatic update of included source packages: base-installer