partman-btrfs-14ubuntu2/0000775000000000000000000000000012274264270012303 5ustar partman-btrfs-14ubuntu2/finish.d/0000775000000000000000000000000012274264270014005 5ustar partman-btrfs-14ubuntu2/finish.d/_numbers0000664000000000000000000000002412274263662015542 0ustar 70 aptinstall_btrfs partman-btrfs-14ubuntu2/finish.d/aptinstall_btrfs0000775000000000000000000000076412274263662017321 0ustar #!/bin/sh . /lib/partman/lib/base.sh btrfs=no for dev in $DEVICES/*; do [ -d "$dev" ] || continue cd $dev partitions= open_dialog PARTITIONS while { read_line num id size type fs path name; [ "$id" ]; }; do [ "$fs" != free ] || continue [ -f $id/method -a -f $id/acting_filesystem ] || continue filesystem=$(cat $id/acting_filesystem) case $filesystem in btrfs) btrfs=yes ;; esac done close_dialog done if [ "$btrfs" = yes ]; then apt-install btrfs-tools || true fi partman-btrfs-14ubuntu2/mount.d/0000775000000000000000000000000012274264270013667 5ustar partman-btrfs-14ubuntu2/mount.d/_numbers0000664000000000000000000000001112274263662015420 0ustar 70 btrfs partman-btrfs-14ubuntu2/mount.d/btrfs0000775000000000000000000000141312274263662014740 0ustar #!/bin/sh set -- $1 fs=$1 mp=$2 type=$3 options=$4 dump=$5 pass=$6 case $type in btrfs) options="${options%,subvol=*}" #for removing the option subvol,when thats the only option #eg: options=="subvol=@", no comma present options="${options%subvol=*}" mount -t btrfs ${options:+-o "$options"} $fs /target$mp || exit 1 case $mp in /) btrfs subvolume create /target$mp/@ chmod 755 /target$mp/@ umount /target$mp options="${options:+$options,}subvol=@" mount -t btrfs -o $options $fs /target$mp ;; /home) btrfs subvolume create /target$mp/@home chmod 755 /target$mp/@home umount /target$mp options="${options:+$options,}subvol=@home" mount -t btrfs -o $options $fs /target$mp ;; esac echo "umount /target$mp" exit 0 ;; esac exit 1 partman-btrfs-14ubuntu2/init.d/0000775000000000000000000000000012274264270013470 5ustar partman-btrfs-14ubuntu2/init.d/_numbers0000664000000000000000000000002712274263662015230 0ustar 03 kernelmodules_btrfs partman-btrfs-14ubuntu2/init.d/kernelmodules_btrfs0000775000000000000000000000050212274263662017470 0ustar #!/bin/sh mkdir -p /var/lib/partman cat /proc/modules | while read module_name x; do if [ "$module_name" = btrfs ]; then >/var/lib/partman/btrfs exit 0 fi done if modprobe btrfs >/dev/null 2>/dev/null; then >/var/lib/partman/btrfs exit 0 fi if grep -q btrfs /proc/filesystems; then >/var/lib/partman/btrfs fi partman-btrfs-14ubuntu2/mountoptions/0000775000000000000000000000000012274264270015061 5ustar partman-btrfs-14ubuntu2/mountoptions/btrfs0000664000000000000000000000023312274263662016126 0ustar noatime nodiratime relatime nodev nosuid noexec ro sync usrquota grpquota nodatasum nodatacow nobarrier compress ssd noacl notreelog flushoncommit discard partman-btrfs-14ubuntu2/fstab.d/0000775000000000000000000000000012274264270013624 5ustar partman-btrfs-14ubuntu2/fstab.d/btrfs0000775000000000000000000000251312274263662014677 0ustar #!/bin/sh . /lib/partman/lib/base.sh home_found="unknown" for dev in $DEVICES/*; do [ -d $dev ] || continue cd $dev open_dialog PARTITIONS while { read_line num id size type fs path name; [ "$id" ]; }; do [ $fs != free ] || continue [ -f "$id/method" ] || continue [ -f "$id/acting_filesystem" ] || continue method=$(cat $id/method) filesystem=$(cat $id/acting_filesystem) mountpoint=$(cat $id/mountpoint) case "$filesystem" in btrfs) [ -f "$id/mountpoint" ] || continue # due to #249322, #255135, #258117: if [ "$mountpoint" = /tmp ]; then rm -f $id/options/noexec fi options=$(get_mountoptions $dev $id) if [ "$mountpoint" = / ]; then if [ "$home_found" = "unknown" ]; then home_found="false" fi pass=1 home_options="${options:+$options,}subvol=@home" options="${options:+$options,}subvol=@" home_path="$path" home_mp="$mountpoint"home elif [ "$mountpoint" = /home ]; then pass=2 options="${options:+$options,}subvol=@home" home_found=true else pass=2 fi echo "$path" "$mountpoint" btrfs $options 0 $pass ;; *) if [ "$mountpoint" = "/home" ]; then home_found="true" fi ;; esac done close_dialog done if [ "$home_found" = "false" ]; then echo "$home_path" "$home_mp" btrfs "$home_options" 0 2 home_found="true" fi partman-btrfs-14ubuntu2/valid_filesystems/0000775000000000000000000000000012274264270016031 5ustar partman-btrfs-14ubuntu2/valid_filesystems/_numbers0000664000000000000000000000001112274263662017562 0ustar 25 btrfs partman-btrfs-14ubuntu2/valid_filesystems/btrfs0000775000000000000000000000043212274263662017102 0ustar #!/bin/sh dev=$1 id=$2 property=$3 [ -f /var/lib/partman/btrfs ] || exit 0 case $property in formatable) echo btrfs ;; existing) [ -f $id/detected_filesystem ] || exit 0 fs=$(cat $id/detected_filesystem) case "$fs" in btrfs) echo btrfs ;; esac ;; esac partman-btrfs-14ubuntu2/active_partition/0000775000000000000000000000000012274264270015647 5ustar partman-btrfs-14ubuntu2/active_partition/_numbers0000664000000000000000000000001112274263662017400 0ustar 45 btrfs partman-btrfs-14ubuntu2/active_partition/btrfs/0000775000000000000000000000000012274264270016767 5ustar partman-btrfs-14ubuntu2/active_partition/btrfs/choices0000775000000000000000000000253512274263662020343 0ustar #!/bin/sh . /usr/share/debconf/confmodule set -e dev=$1 id=$2 part=$dev/$id cd $dev [ -f $part/method -a -f $part/acting_filesystem ] || exit 0 filesystem=$(cat $part/acting_filesystem) case "$filesystem" in btrfs) : ;; *) exit 0 ;; esac choice_mountpoint () { case "$filesystem" in btrfs) if [ -f $part/mountpoint ]; then mp=$(cat $part/mountpoint) else db_metaget partman-basicfilesystems/text/no_mountpoint description mp="$RET" fi db_metaget partman-basicfilesystems/text/specify_mountpoint description printf "mountpoint\t%s\${!TAB}%s\n" "$RET" "$mp" ;; esac } choice_options () { db_metaget partman-basicfilesystems/text/options description printf "options\t%s\${!TAB}%.45s\n" "$RET" "$(get_mountoptions $dev $id)" } choice_label () { # allow to set label only if the partition is to be formatted [ -f $part/format ] || return 0 [ ! -f $part/formatted \ -o $part/formatted -ot $part/method \ -o $part/formatted -ot $part/filesystem ] || return 0 case "$filesystem" in btrfs) if [ -f $part/label ]; then label=$(cat $part/label) else db_metaget partman-basicfilesystems/text/none description label=$RET fi db_metaget partman-basicfilesystems/text/specify_label description printf "label\t%s\${!TAB}%s\n" "$RET" "$label" ;; esac } choice_mountpoint choice_options choice_label partman-btrfs-14ubuntu2/active_partition/btrfs/do_option0000775000000000000000000000133712274263662020717 0ustar #!/bin/sh . /lib/partman/lib/base.sh dev=$2 id=$3 part=$dev/$id cd $dev [ -f $part/method -a -f $part/acting_filesystem ] || return 0 filesystem=$(cat $part/acting_filesystem) case $1 in mountpoint) if select_mountpoint $dev $id; then update_partition $dev $id fi ;; options) select_mountoptions $dev $id ;; label) label='' if [ -f $part/label ]; then label=$(cat $part/label) fi db_set partman-basicfilesystems/choose_label "$label" db_input critical partman-basicfilesystems/choose_label || true db_go || exit 1 db_get partman-basicfilesystems/choose_label if [ "$RET" ]; then echo "$RET" >$part/label else rm -f $part/label fi db_reset partman-basicfilesystems/choose_label ;; esac exit 0 partman-btrfs-14ubuntu2/commit.d/0000775000000000000000000000000012274264270014015 5ustar partman-btrfs-14ubuntu2/commit.d/_numbers0000664000000000000000000000002012274263662015546 0ustar 50 format_btrfs partman-btrfs-14ubuntu2/commit.d/format_btrfs0000775000000000000000000000404312274264137016436 0ustar #!/bin/sh . /lib/partman/lib/base.sh enable_swap for dev in $DEVICES/*; do [ -d "$dev" ] || continue cd $dev partitions= open_dialog PARTITIONS while { read_line num id size type fs path name; [ "$id" ]; }; do [ "$fs" != free ] || continue partitions="$partitions $id,$num" done close_dialog for part in $partitions; do id=${part%,*} num=${part#*,} [ -f $id/method -a -f $id/format \ -a -f $id/acting_filesystem ] || continue filesystem=$(cat $id/acting_filesystem) case $filesystem in btrfs) if [ -f $id/formatted ] && \ [ $id/formatted -nt $id/method ] && \ ([ ! -f $id/filesystem ] || \ [ $id/formatted -nt $id/filesystem ]); then continue fi log "Try to create file system for $dev/$id" if [ -f $id/mountpoint ]; then template=partman-basicfilesystems/progress_formatting_mountable db_subst $template MOUNT_POINT "$(cat $id/mountpoint)" else template=partman-basicfilesystems/progress_formatting fi open_dialog PARTITION_INFO $id read_line x1 x2 x3 x4 x5 device x6 close_dialog RET='' db_metaget partman/filesystem_short/"$filesystem" description || RET='' [ "$RET" ] || RET="$filesystem" db_subst $template TYPE "$RET" db_subst $template PARTITION "$num" db_subst $template DEVICE $(humandev $(cat device)) db_progress START 0 3 partman/text/formatting db_progress INFO $template db_progress SET 1 label='' if [ -f $id/label ]; then label=$(cat $id/label | \ sed 's/\(............\).*/\1/g') fi code=0 # Ensure label is quoted correctly log-output -t partman --pass-stdout \ mkfs.btrfs -f ${label:+-L "$label"} \ $device >/dev/null || code=$? sync db_progress STOP if [ "$code" != 0 ]; then T=partman-basicfilesystems/create_failed db_subst $T FILESYSTEM "$filesystem" db_subst $T PARTITION "$num" db_subst $T DEVICE $(humandev $(cat device)) db_input critical $T || true db_go || true #disable_swap exit 1 fi >$id/formatted ;; esac done done #disable_swap partman-btrfs-14ubuntu2/check.d/0000775000000000000000000000000012274264270013602 5ustar partman-btrfs-14ubuntu2/check.d/_numbers0000664000000000000000000000002612274263662015341 0ustar 09 nomountpoint_btrfs partman-btrfs-14ubuntu2/check.d/nomountpoint_btrfs0000775000000000000000000000152312274263662017506 0ustar #!/bin/sh . /lib/partman/lib/base.sh for dev in $DEVICES/*; do [ -d "$dev" ] || continue cd $dev partitions= open_dialog PARTITIONS while { read_line num id size type fs path name; [ "$id" ]; }; do [ "$fs" != free ] || continue partitions="$partitions $id,$num" done close_dialog for part in $partitions; do id=${part%,*} num=${part#*,} [ -f $id/method ] || continue [ -f $id/acting_filesystem ] || continue filesystem=$(cat $id/acting_filesystem) case "$filesystem" in btrfs) [ ! -f "$id/mountpoint" ] || continue T=partman-basicfilesystems/no_mount_point db_subst $T PARTITION "$num" db_subst $T FILESYSTEM "$filesystem" db_subst $T DEVICE $(humandev $(cat device)) db_input critical $T || true db_go || exit 1 db_get $T if [ "$RET" = true ]; then exit 1 fi ;; esac done done partman-btrfs-14ubuntu2/debian/0000775000000000000000000000000012274264270013525 5ustar partman-btrfs-14ubuntu2/debian/source/0000775000000000000000000000000012274264270015025 5ustar partman-btrfs-14ubuntu2/debian/source/format0000664000000000000000000000001512274263662016240 0ustar 3.0 (native) partman-btrfs-14ubuntu2/debian/copyright0000664000000000000000000000023612274263662015465 0ustar This package is under the GNU GPL version 2, or any later version at your option. On Debian system, the GPL is available in /usr/share/common-licenses/GPL-2 partman-btrfs-14ubuntu2/debian/di-numbers0000664000000000000000000000024012274263662015515 0ustar active_partition lib/partman valid_filesystems lib/partman init.d lib/partman check.d lib/partman commit.d lib/partman finish.d lib/partman mount.d lib/partman partman-btrfs-14ubuntu2/debian/changelog0000664000000000000000000002661612274264255015415 0ustar partman-btrfs (14ubuntu2) trusty; urgency=medium * Force formatting as btrfs filesystem, to bypass mkfs.btrfs safety-check that target (possibly) contains existing filesystem when formatting partitions with btrfs. (LP: #1276356) -- Dimitri John Ledkov Tue, 04 Feb 2014 22:24:45 +0000 partman-btrfs (14ubuntu1) saucy; urgency=low * Resynchronise with Debian. Remaining changes: - Add support for creating and mounting btrfs subvolumes corresponding to / and /home, in case of a btrfs rootfs. -- Colin Watson Tue, 01 Oct 2013 10:44:56 +0100 partman-btrfs (14) unstable; urgency=low * Add nodiratime and discard mount options (see #722598; LP: #978032). -- Colin Watson Tue, 01 Oct 2013 10:18:23 +0100 partman-btrfs (13) unstable; urgency=low [ Updated translations ] * Tajik (tg.po) by Victor Ibragimov -- Christian Perrier Sun, 08 Sep 2013 16:29:20 +0200 partman-btrfs (12ubuntu1) saucy; urgency=low * Resynchronise with Debian. Remaining changes: - Add support for creating and mounting btrfs subvolumes corresponding to / and /home, in case of a btrfs rootfs. -- Colin Watson Fri, 02 Aug 2013 11:18:39 +0100 partman-btrfs (12) unstable; urgency=low [ Dmitrijs Ledkovs ] * Set debian source format to '3.0 (native)'. * Bump debhelper compat level to 9. * Set Vcs-* to canonical format. -- Christian Perrier Sat, 13 Jul 2013 12:56:05 +0200 partman-btrfs (11ubuntu1) saucy; urgency=low * Resynchronise with Debian. Remaining changes: - Add support for creating and mounting btrfs subvolumes corresponding to / and /home, in case of a btrfs rootfs. -- Colin Watson Mon, 20 May 2013 22:23:02 +0100 partman-btrfs (11) unstable; urgency=low * Team upload [ Updated translations ] * Croatian (hr.po) by Tomislav Krznar [ Christian Perrier ] * Add myself to Uploaders * Rempalce XC-Package-Type by Package-Type -- Christian Perrier Sun, 19 May 2013 17:47:44 +0200 partman-btrfs (10ubuntu1) raring; urgency=low * Resynchronise with Debian. Remaining changes: - Add support for creating and mounting btrfs subvolumes corresponding to / and /home, in case of a btrfs rootfs. -- Colin Watson Wed, 28 Nov 2012 13:16:59 +0000 partman-btrfs (10) unstable; urgency=low [ Updated translations ] * German (de.po) by Holger Wansing -- Christian Perrier Mon, 05 Nov 2012 07:05:40 +0100 partman-btrfs (9ubuntu1) quantal; urgency=low * Resynchronise with Debian. Remaining changes: - Add support for creating and mounting btrfs subvolumes corresponding to / and /home, in case of a btrfs rootfs. -- Colin Watson Thu, 21 Jun 2012 11:51:26 +0100 partman-btrfs (9) unstable; urgency=low [ Updated translations ] * Tibetan (bo.po) by Tennom * Welsh (cy.po) by Dafydd Tomos * Lithuanian (lt.po) by Rimas Kudelis * Latvian (lv.po) by Rūdolfs Mazurs * Macedonian (mk.po) by Arangel Angov * Panjabi (pa.po) by A S Alam * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw) -- Christian Perrier Fri, 15 Jun 2012 16:02:10 +0200 partman-btrfs (8ubuntu1) precise; urgency=low * Resynchronise with Debian. Remaining changes: - Add support for creating and mounting btrfs subvolumes corresponding to / and /home, in case of a btrfs rootfs. -- Colin Watson Wed, 11 Apr 2012 12:28:17 +0100 partman-btrfs (8) unstable; urgency=low [ Updated translations ] * Asturian (ast.po) by Mikel González * Bulgarian (bg.po) by Damyan Ivanov * Estonian (et.po) by Mattias Põldaru * Indonesian (id.po) by Mahyuddin Susanto * Icelandic (is.po) by Sveinn í Felli * Kannada (kn.po) by Prabodh C P -- Otavio Salvador Thu, 15 Mar 2012 14:58:24 -0300 partman-btrfs (7ubuntu1) precise; urgency=low * Resynchronise with Debian. Remaining changes: - Add support for creating and mounting btrfs subvolumes corresponding to / and /home, in case of a btrfs rootfs. -- Colin Watson Tue, 20 Dec 2011 16:40:00 +0000 partman-btrfs (7) unstable; urgency=low [ Joey Hess ] * Allow btrfs /boot partition. This is supported by grub2 and lilo. [ Updated translations ] * Asturian (ast.po) by MAAC * Belarusian (be.po) by Viktar Siarheichyk * Bulgarian (bg.po) by Damyan Ivanov * Bengali (bn.po) by Zenat Rahnuma * Bosnian (bs.po) by Armin Besirovic * Czech (cs.po) by Miroslav Kure * German (de.po) by Holger Wansing * Dzongkha (dz.po) by dawa pemo * Esperanto (eo.po) by Felipe Castro * Spanish (es.po) by Javier Fernández-Sanguino Peña * Basque (eu.po) by Piarres Beobide * Persian (fa.po) by Behrad Eslamifar * French (fr.po) by Christian Perrier * Hebrew (he.po) by Lior Kaplan * Hindi (hi.po) by Kumar Appaiah * Hungarian (hu.po) by SZERVÁC Attila * Italian (it.po) by Milo Casagrande * Japanese (ja.po) by Kenshi Muto * Kannada (kn.po) by vignesh prabhu * Korean (ko.po) by Changwoo Ryu * Lao (lo.po) by Anousak Souphavanh * Macedonian (mk.po) by Arangel Angov * Dutch (nl.po) by Jeroen Schot * Punjabi (Gurmukhi) (pa.po) by A S Alam * Polish (pl.po) by Marcin Owsiany * Portuguese (pt.po) by Miguel Figueiredo * Romanian (ro.po) by Ioan Eugen Stan * Russian (ru.po) by Yuri Kozlov * Sinhala (si.po) * Slovak (sk.po) by Ivan Masár * Tamil (ta.po) by Dr.T.Vasudevan * Telugu (te.po) by Arjuna Rao Chavala * Thai (th.po) by Theppitak Karoonboonyanan * Turkish (tr.po) by Mert Dirik * Uyghur (ug.po) by Sahran * Ukrainian (uk.po) by Borys Yanovych * Simplified Chinese (zh_CN.po) by YunQiang Su -- Otavio Salvador Sat, 19 Nov 2011 16:19:53 -0200 partman-btrfs (6ubuntu1) oneiric; urgency=low * Resynchronise with Debian. Remaining changes: - Allow btrfs /boot on amd64/i386, now that grub2 supports it. - Add support for creating and mounting btrfs subvolumes corresponding to / and /home, in case of a btrfs rootfs. -- Colin Watson Wed, 04 May 2011 08:46:53 +0100 partman-btrfs (6) unstable; urgency=low [ Updated translations ] * Bulgarian (bg.po) by Damyan Ivanov * Czech (cs.po) by Miroslav Kure * Esperanto (eo.po) by Felipe Castro * Spanish (es.po) by Javier Fernández-Sanguino * Georgian (ka.po) by Aiet Kolkhi * Korean (ko.po) by Changwoo Ryu * Nepali (ne.po) * Romanian (ro.po) by Eddy Petrișor * Slovak (sk.po) by Ivan Masár * Swedish (sv.po) by Daniel Nylander * Thai (th.po) by Theppitak Karoonboonyanan * Uyghur (ug.po) by Sahran -- Christian Perrier Sun, 24 Apr 2011 08:24:45 +0200 partman-btrfs (5ubuntu3) natty; urgency=low * Make sure subvolumes are world-readable. -- Colin Watson Fri, 04 Feb 2011 14:29:25 +0000 partman-btrfs (5ubuntu2) natty; urgency=low * Adding support for creating and respectively mounting btrfs subvolumes corresponding to / and /home, in case of a btrfs rootfs. -- Surbhi Palande Fri, 28 Jan 2011 15:35:18 +0200 partman-btrfs (5ubuntu1) natty; urgency=low * Allow btrfs /boot on amd64/i386, now that grub2 supports it. -- Colin Watson Fri, 07 Jan 2011 15:55:57 +0000 partman-btrfs (5) unstable; urgency=low [ Updated translations ] * Dzongkha (dz.po) by Jurmey Rabgay * Central Khmer (km.po) by Khoem Sokhem * Lao (lo.po) by Anousak Souphavanh * Latvian (lv.po) by Aigars Mahinovs * Macedonian (mk.po) by Arangel Angov * Northern Sami (se.po) by Børre Gaup * Sinhala (si.po) by Danishka Navin * Slovenian (sl.po) by Vanja Cvelbar -- Otavio Salvador Fri, 24 Dec 2010 20:24:13 -0200 partman-btrfs (4) unstable; urgency=low [ Updated translations ] * Amharic (am.po) by ተገኝ ተፈራ * Asturian (ast.po) by maacub * Bulgarian (bg.po) by Damyan Ivanov * Bengali (bn.po) by Israt Jahan * Catalan (ca.po) by Jordi Mallach * Danish (da.po) by Jacob Sparre Andersen * Greek, Modern (1453-) (el.po) by Emmanuel Galatoulas * Esperanto (eo.po) by Felipe Castro * Estonian (et.po) by Mattias Põldaru * Basque (eu.po) by Piarres Beobide * Persian (fa.po) by Ebrahim Byagowi * Finnish (fi.po) by Esko Arajärvi * Galician (gl.po) by Jorge Barreiro * Hebrew (he.po) by Lior Kaplan * Hindi (hi.po) by Kumar Appaiah * Hungarian (hu.po) by SZERVÁC Attila * Indonesian (id.po) by Arief S Fitrianto * Icelandic (is.po) by Sveinn í Felli * Korean (ko.po) by Changwoo Ryu * Lithuanian (lt.po) by Kęstutis Biliūnas * Malayalam (ml.po) by Praveen Arimbrathodiyil * Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug * Dutch (nl.po) by Eric Spreen * Polish (pl.po) by Bartosz Fenski * Tamil (ta.po) by Dr.T.Vasudevan * Thai (th.po) by Theppitak Karoonboonyanan * Turkish (tr.po) by Mert Dirik * Ukrainian (uk.po) by Borys Yanovych * Vietnamese (vi.po) by Clytie Siddall -- Otavio Salvador Fri, 12 Nov 2010 16:22:59 -0200 partman-btrfs (3) unstable; urgency=low [ Colin Watson ] * Use 'dh $@ --options' rather than 'dh --options $@', for forward-compatibility with debhelper v8. [ Updated translations ] * Amharic (am.po) by Tegegne Tefera * Arabic (ar.po) by Ossama M. Khayat * Belarusian (be.po) by Viktar Siarheichyk * Catalan (ca.po) by Jordi Mallach * Czech (cs.po) by Miroslav Kure * German (de.po) by Holger Wansing * Dzongkha (dz.po) by Jurmey Rabgay * Greek, Modern (1453-) (el.po) by debian-l10n-greek * Spanish (es.po) by Omar Campagne * Estonian (et.po) by Mattias Põldaru * Basque (eu.po) by Piarres Beobide * Persian (fa.po) by Behrad Eslamifar * French (fr.po) by Christian Perrier * Galician (gl.po) by Jorge Barreiro * Croatian (hr.po) by Josip Rodin * Hungarian (hu.po) by SZERVÁC Attila * Indonesian (id.po) by Arief S Fitrianto * Italian (it.po) by Milo Casagrande * Japanese (ja.po) by Kenshi Muto * Georgian (ka.po) by Aiet Kolkhi * Kazakh (kk.po) by Baurzhan Muftakhidinov * Central Khmer (km.po) by Khoem Sokhem * Korean (ko.po) by Changwoo Ryu * Kurdish (ku.po) by Erdal Ronahi * Latvian (lv.po) by Aigars Mahinovs * Macedonian (mk.po) by Arangel Angov * Malayalam (ml.po) by Praveen Arimbrathodiyil * Marathi (mr.po) by Sampada * Nepali (ne.po) * Dutch (nl.po) by Frans Pop * Norwegian Nynorsk (nn.po) by Eirik U. Birkeland * Panjabi (pa.po) by A S Alam * Polish (pl.po) by Bartosz Fenski * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw) * Portuguese (pt.po) by Miguel Figueiredo * Romanian (ro.po) by ioan-eugen STAN * Russian (ru.po) by Yuri Kozlov * Slovak (sk.po) by Ivan Masár * Serbian (sr.po) by Janos Guljas * Swedish (sv.po) by Daniel Nylander * Tagalog (tl.po) by Eric Pareja * Ukrainian (uk.po) by Borys Yanovych * Simplified Chinese (zh_CN.po) by YunQiang Su -- Christian Perrier Wed, 28 Jul 2010 08:28:38 +0200 partman-btrfs (2) unstable; urgency=low * errors=remount-ro doesn't work. Remove it. -- Colin Watson Fri, 18 Jun 2010 11:24:31 +0100 partman-btrfs (1) unstable; urgency=low [ Joey Hess ] * Took partman-xfs and s/xfs/btrfs/, essentially. * Added error messages if /boot is on btrfs. -- Colin Watson Mon, 14 Jun 2010 14:08:21 +0100 partman-btrfs-14ubuntu2/debian/partman-btrfs.templates0000664000000000000000000000060712274263662020234 0ustar Template: partman-btrfs/text/btrfs Type: text # :sl2: # File system name (untranslatable in many languages) _Description: btrfs Template: partman/filesystem_long/btrfs Type: text # :sl2: # File system name _Description: btrfs journaling file system Template: partman/filesystem_short/btrfs Type: text # :sl1: # Short file system name (untranslatable in many languages) _Description: btrfs partman-btrfs-14ubuntu2/debian/control0000664000000000000000000000155212274263662015137 0ustar Source: partman-btrfs Section: debian-installer Priority: standard Maintainer: Ubuntu Installer Team XSBC-Original-Maintainer: Debian Install System Team Uploaders: Anton Zinoviev , Joey Hess , Christian Perrier Build-Depends: debhelper (>= 9), dh-di, po-debconf (>= 0.5.0) XS-Debian-Vcs-Browser: http://anonscm.debian.org/gitweb/?p=d-i/partman-btrfs.git XS-Debian-Vcs-Git: git://anonscm.debian.org/d-i/partman-btrfs.git Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-core-dev/partman-btrfs/ubuntu Package: partman-btrfs Package-Type: udeb Architecture: all Depends: ${misc:Depends}, btrfs-tools-udeb, btrfs-modules, partman-basicfilesystems (>= 59), partman-base (>= 124) Provides: partman-filesystem Description: Add to partman support for btrfs partman-btrfs-14ubuntu2/debian/rules0000775000000000000000000000005112274263662014605 0ustar #! /usr/bin/make -f %: dh $@ --with d-i partman-btrfs-14ubuntu2/debian/install0000664000000000000000000000010612274263662015117 0ustar mountoptions lib/partman fstab.d lib/partman parted_names lib/partman partman-btrfs-14ubuntu2/debian/compat0000664000000000000000000000000212274263662014727 0ustar 9 partman-btrfs-14ubuntu2/debian/po/0000775000000000000000000000000012274264270014143 5ustar partman-btrfs-14ubuntu2/debian/po/sl.po0000664000000000000000000000441712274263662015133 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of sl.po to Slovenian # # # Slovenian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Jure Čuhalev , 2005. # Jure Cuhalev , 2006. # Matej Kovačič , 2006. # Jožko Škrablin , 2006. # Vanja Cvelbar , 2008 # Vanja Cvelbar , 2009, 2010. # # Translations from iso-codes: # Tobias Toedter , 2007. # Translations taken from ICU SVN on 2007-09-09 # Primož Peterlin , 2005, 2007, 2008, 2009, 2010. # Copyright (C) 2000, 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. # Alastair McKinstry , 2002. # Translations from KDE: # Roman Maurer , 2002. # Primož Peterlin , 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011. # # Andraz Tori 2000. # Alastair McKinstry, , 2001. msgid "" msgstr "" "Project-Id-Version: sl\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-11-16 15:21+0100\n" "Last-Translator: Vanja Cvelbar \n" "Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Dnevniški datotečni sistem btrfs" partman-btrfs-14ubuntu2/debian/po/cy.po0000664000000000000000000000303412274263662015122 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of Debian Installer templates to Welsh # Copyright (C) 2004-2008 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Jonathan Price , 2008. # # Translations from iso-codes: # Alastair McKinstry , 2004. # - translations from ICU-3.0 # Dafydd Harries , 2002,2004,2006. # Free Software Foundation, Inc., 2002,2004 # Alastair McKinstry , 2001 # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-06-14 09:46-0000\n" "Last-Translator: Dafydd Tomos \n" "Language-Team: Welsh <>\n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "System ffeiliau dyddlyfru brtfs" partman-btrfs-14ubuntu2/debian/po/tg.po0000664000000000000000000000261112274263662015121 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # # Debian Installer master translation file template # Don't forget to properly fill-in the header of PO files # # Debian Installer translators, please read the D-I i18n documentation # in doc/i18n/i18n.txt # Victor Ibragimov , 2013 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2013-08-15 16:26+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: Tajik \n" "Language: Tajik\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=1;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Системаи файлии btrfs journaling" partman-btrfs-14ubuntu2/debian/po/eo.po0000664000000000000000000000332612274263662015116 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of Debian Installer templates to Esperanto. # Copyright (C) 2005-2011 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Samuel Gimeno , 2005. # Serge Leblanc , 2005, 2006, 2007. # Felipe Castro , 2008, 2009, 2010, 2011. # # Translations from iso-codes: # Alastair McKInstry , 2001,2002. # Copyright (C) 2001,2002,2003,2004 Free Software Foundation, Inc. # D. Dale Gulledge (translations from drakfw), 2001. # Edmund GRIMLEY EVANS , 2004-2011 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-19 20:14-0300\n" "Last-Translator: Felipe Castro \n" "Language-Team: Esperanto \n" "Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Protokoliga dosiersistemo btrfs" partman-btrfs-14ubuntu2/debian/po/et.po0000664000000000000000000000353012274263662015120 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Estonian translation of Debian-installer # # This translation is released under the same licence as the debian-installer. # # Siim Põder , 2007. # # Thanks to following Ubuntu Translators for review and fixes: # Laur Mõtus # Heiki Nooremäe # tabbernuk # # # Translations from iso-codes: # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Alastair McKinstry , 2001,2002. # Free Software Foundation, Inc., 2000, 2004, 2006 # Hasso Tepper , 2006. # Margus Väli , 2000. # Siim Põder , 2006. # Tõivo Leedjärv , 2000, 2001, 2008. # Mattias Põldaru , 2009-2011, 2012. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-01-25 02:09+0200\n" "Last-Translator: Mattias Põldaru \n" "Language-Team: Estonian <>\n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bits\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Žurnaaliv failisüsteem btrfs" partman-btrfs-14ubuntu2/debian/po/gu.po0000664000000000000000000000324212274263662015123 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of d-i.po to Gujarati # # Debian Installer master translation file template # Don't forget to properly fill-in the header of PO files# # Debian Installer translators, please read the D-I i18n documentation # in doc/i18n/i18n.txt # Contributor: # Kartik Mistry , 2006-2011 # # # Translations from iso-codes: # - translations from ICU-3.0 # # Alastair McKinstry , 2004. # Kartik Mistry , 2006, 2007, 2008. # Ankit Patel , 2009,2010. # Sweta Kothari , 2009, 2010. msgid "" msgstr "" "Project-Id-Version: d-i\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2008-08-07 11:42+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" "Language: gu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs જર્નલિંગ ફાઈલ સિસ્ટમ" partman-btrfs-14ubuntu2/debian/po/ca.po0000664000000000000000000000350512274263662015075 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Catalan messages for debian-installer. # Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Jordi Mallach , 2002, 2003, 2004, 2006, 2007, 2008, 2010. # Guillem Jover , 2005, 2007. # # Translations from iso-codes: # Alastair McKinstry , 2001. # Free Software Foundation, Inc., 2002,2004,2006 # Orestes Mas i Casals , 2004-2006. (orestes: He usat la nomenclatura de http://www.traduim.com/) # Softcatalà , 2000-2001 # Toni Hermoso Pulido , 2010. # Traductor: Jordi Ferré msgid "" msgstr "" "Project-Id-Version: debian-installer squeeze\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-10-18 21:17+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Sistema de fitxers transaccional btrfs" partman-btrfs-14ubuntu2/debian/po/vi.po0000664000000000000000000000326112274263662015127 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Vietnamese translation for Debian Installer Level 1. # Copyright © 2010 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Jean Christophe André # Vũ Quang Trung # Trịnh Minh Thành # Clytie Siddall , 2005-2010 # # # Translations from iso-codes: # Clytie Siddall , 2005-2009. # Copyright © 2009 Free Software Foundation, Inc. # Nguyễn Hùng Vũ , 2001. # msgid "" msgstr "" "Project-Id-Version: debian-installer Level 1\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-09-28 18:01+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Hệ thống tập tin ghi nhật ký btrfs" partman-btrfs-14ubuntu2/debian/po/km.po0000664000000000000000000000277612274263662015132 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of debian-installer_packages_po_sublevel1_km.po to Khmer # Khoem Sokhem , 2006, 2007, 2008, 2010. # # Translations from iso-codes: # eng vannak , 2006. # auk piseth , 2006. # Khoem Sokhem , 2006, 2010. msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_km\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-12-13 13:47+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "ប្រព័ន្ធ​ឯកសារ​ទិន្នានុប្បវត្តិ btrfs" partman-btrfs-14ubuntu2/debian/po/am.po0000664000000000000000000000267112274263662015112 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Amharic translation for debian-installer # This file is distributed under the same license as the debian-installer package. # tegegne tefera , 2006. # # # Translations from iso-codes: # Alastair McKinstry , 2004. # Data taken from ICU-2.8; contributed by: # - Daniel Yacob , Ge'ez Frontier Foundation # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-08-19 16:50+0800\n" "Last-Translator: ተገኝ ተፈራ \n" "Language-Team: Amharic\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: n>1\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs መዝጋቢ የፋይል ስርዓት" partman-btrfs-14ubuntu2/debian/po/si.po0000664000000000000000000000254212274263662015125 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # # # Debian Installer master translation file template # Don't forget to properly fill-in the header of PO files # # Debian Installer translators, please read the D-I i18n documentation # in doc/i18n/i18n.txt # # # Danishka Navin , 2009, 2011. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-15 07:01+0530\n" "Last-Translator: \n" "Language-Team: Sinhala \n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs ජර්නල ගොනු පද්ධතිය" partman-btrfs-14ubuntu2/debian/po/kn.po0000664000000000000000000000304012274263662015114 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Kannada Translations # Vikram Vincent , 2007, 2010, 2011. # Raghavendra S , 2010. # # Translators: # shashi kiran , 2010, 2011. # Prabodh CP , 2011. # # Credits: Thanks to contributions from Free Software Movement Karnataka (FSMK), 2011. # # Translations from iso-codes: # Shankar Prasad , 2009. # Vikram Vincent , 2007. msgid "" msgstr "" "Project-Id-Version: kn\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-11-27 23:24+0530\n" "Last-Translator: Prabodh C P \n" "Language-Team: Kannada \n" "Language: kn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs ದಾಖಲಾತಿ ಕಡತವ್ಯವಸ್ಥೆ" partman-btrfs-14ubuntu2/debian/po/zh_CN.po0000664000000000000000000000413112274263662015507 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Simplified Chinese translation for Debian Installer. # # Copyright (C) 2003-2008 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Translated by Yijun Yuan (2004), Carlos Z.F. Liu (2004,2005,2006), # Ming Hua (2005,2006,2007,2008), Xiyue Deng (2008), Kov Chai (2008), # Kenlen Lai (2008), WCM (2008), Ren Xiaolei (2008). # # # Translations from iso-codes: # Tobias Toedter , 2007. # Translations taken from ICU SVN on 2007-09-09 # # Free Software Foundation, Inc., 2002, 2003, 2007, 2008. # Alastair McKinstry , 2001,2002. # Translations taken from KDE: # - Wang Jian , 2000. # - Carlos Z.F. Liu , 2004 - 2006. # LI Daobing , 2007, 2008, 2009, 2010. # YunQiang Su , 2011. # # Mai Hao Hui , 2001 (translations from galeon) # YunQiang Su , 2010, 2011. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-25 23:15+0800\n" "Last-Translator: YunQiang Su \n" "Language-Team: Chinese (simplified) \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bits\n" "Plural-Forms: nplurals=1; plural=0;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs 日志文件系统" partman-btrfs-14ubuntu2/debian/po/ko.po0000664000000000000000000000357412274263662015131 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Korean messages for debian-installer. # Copyright (C) 2003,2004,2005,2008 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Changwoo Ryu , 2010, 2011. # # Translations from iso-codes: # Copyright (C) # Alastair McKinstry , 2001. # Changwoo Ryu , 2004, 2008, 2009, 2010, 2011. # Copyright (C) 2000 Free Software Foundation, Inc. # Eungkyu Song , 2001. # Free Software Foundation, Inc., 2001,2003 # Jaegeum Choe , 2001. # (translations from drakfw) # Kang, JeongHee , 2000. # Sunjae Park , 2006-2007. # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-26 08:09+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "BRTFS 저널링 파일 시스템" partman-btrfs-14ubuntu2/debian/po/sr.po0000664000000000000000000000352212274263662015135 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Serbian/Cyrillic messages for debian-installer. # Copyright (C) 2010 Software in the Public Interest, Inc. # Copyright (C) 2008 THE cp6Linux'S COPYRIGHT HOLDER # This file is distributed under the same license as the debian-installer package. # Karolina Kalic , 2010. # Janos Guljas , 2010. # Veselin Mijušković , 2008. # , fuzzy # # # Translations from iso-codes: # Aleksandar Jelenak , 2010. # Copyright (C) 2003, 2004 Free Software Foundation, Inc. # Danilo Segan , 2003, 2004, 2005. # Milos Komarcevic , Caslav Ilic , 2009. # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-08-25 17:41+0100\n" "Last-Translator: Janos Guljas \n" "Language-Team: Serbian/Cyrillic\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs журналски фајл систем" partman-btrfs-14ubuntu2/debian/po/he.po0000664000000000000000000000406412274263662015107 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of he.po to Hebrew # Hebrew messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # # Amit Dovev , 2007. # Meital Bourvine , 2007. # Omer Zak , 2008, 2010. # Lior Kaplan , 2004-2007, 2008, 2010, 2011. # # # Translations from iso-codes: # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Free Software Foundation, Inc., 2002,2004 # Alastair McKinstry , 2002 # Translations from KDE: # Meni Livne , 2000. # # Translations taken from KDE: # # Free Software Foundation, Inc., 2002,2003. # Alastair McKinstry , 2002. # - Meni Livne , 2000. # Lior Kaplan , 2005,2006, 2007, 2008, 2010. # Meital Bourvine , 2007. # msgid "" msgstr "" "Project-Id-Version: he\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-10-26 23:28+0200\n" "Last-Translator: Lior Kaplan \n" "Language-Team: Hebrew <>\n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: \n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "מערכת קבצים מבוססת יומן מסוג btrfs" partman-btrfs-14ubuntu2/debian/po/ta.po0000664000000000000000000000347012274263662015117 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of ta.po to Tamil # Tamil messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # # Translations from iso-codes: # drtvasudevan , 2006. # Damodharan Rajalingam , 2006. # Dr.T.Vasudevan , 2007, 2008, 2010. # Dr,T,Vasudevan , 2010. # Dr.T.Vasudevan , 2007, 2008, 2011. # Dwayne Bailey , 2009. # I. Felix , 2009. msgid "" msgstr "" "Project-Id-Version: ta\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-19 17:42+0530\n" "Last-Translator: Dr.T.Vasudevan \n" "Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "பிடிஆர்எப்எஸ்(btrfs)" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "பிடிஆர்எப்எஸ் (btrfs) ஆய்விதழ் எழுதும் கோப்பு அமைப்பு" partman-btrfs-14ubuntu2/debian/po/ka.po0000664000000000000000000000343112274263662015103 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Georgian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Aiet Kolkhi , 2005, 2006, 2007, 2008. # # This file is maintained by Aiet Kolkhi # # Includes contributions by Malkhaz Barkalaza , # Alexander Didebulidze , Vladimer Sichinava # Taya Kharitonashvili , Gia Shervashidze - www.gia.ge # # # Translations from iso-codes: # Alastair McKinstry , 2004. # Aiet Kolkhi , 2008. # msgid "" msgstr "" "Project-Id-Version: debian-installer.2006071\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-03-01 12:49+0400\n" "Last-Translator: Aiet Kolkhi \n" "Language-Team: Georgian\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs ჟურნალური ფაილური სისტემა" partman-btrfs-14ubuntu2/debian/po/sk.po0000664000000000000000000000356012274263662015130 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Slovak messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Peter Mann # Ivan Masár , 2007, 2008, 2009, 2010, 2011. # # Translations from iso-codes: # (translations from drakfw) # Alastair McKinstry , 2001, 2002. # Copyright (C) 2002 Free Software Foundation, Inc. # Free Software Foundation, Inc., 2004 # Ivan Masár , 2007, 2008, 2009, 2010, 2011. # Translations taken from sk.wikipedia.org on 2008-06-17 # Pavol Cvengros , 2001. # Peter Mann , 2004, 2006. # bronto, 2007. # # source: # http://www.geodesy.gov.sk # http://www.fao.org/ (historic names) # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-07-28 09:12+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "žurnálovací súborový systém btrfs" partman-btrfs-14ubuntu2/debian/po/ga.po0000664000000000000000000000275212274263662015104 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Irish messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Translations from iso-codes: # Alastair McKinstry , 2001,2002 # Free Software Foundation, Inc., 2001,2003 # Kevin Patrick Scannell , 2004, 2008, 2009, 2011. # Sean V. Kelley , 1999 msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2006-03-21 14:42-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" "Language: ga\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Córas comhad iriseáin btrfs" partman-btrfs-14ubuntu2/debian/po/eu.po0000664000000000000000000000372112274263662015123 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of eu.po to Euskara # Basque messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Translations from iso-codes: # Copyright (C) # Translations from KDE: # Piarres Beobide , 2004-2009, 2011. # Iñaki Larrañaga Murgoitio , 2008, 2010. # Mikel Olasagasti , 2004. # Piarres Beobide Egaña , 2004,2006,2007, 2008, 2009. # Iñaki Larrañaga Murgoitio , 2010. # Free Software Foundation, Inc., 2002. # Alastair McKinstry , 2002. # Marcos Goienetxe , 2002. # Piarres Beobide , 2008. # Xabier Bilbao , 2008. msgid "" msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-24 15:53+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: debian-l10n-eu@lists.debian.org\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Content-Transfer-Encoding=UTF-8Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs egunkaridun fitxategi-sistema" partman-btrfs-14ubuntu2/debian/po/it.po0000664000000000000000000000461412274263662015130 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Italian messages for debian-installer. # Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # The translation team (for all four levels): # Cristian Rigamonti # Danilo Piazzalunga # Davide Meloni # Davide Viti # Filippo Giunchedi # Giuseppe Sacco # Lorenzo 'Maxxer' Milesi # Renato Gini # Ruggero Tonelli # Samuele Giovanni Tonon # Stefano Canepa # Stefano Melchior # # # Translations from iso-codes: # Alastair McKinstry , 2001 # Alessio Frusciante , 2001 # Andrea Scialpi , 2001 # (translations from drakfw) # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. # Danilo Piazzalunga , 2004 # Davide Viti , 2006 # Marcello Raffa , 2001 # Tobias Toedter , 2007. # Translations taken from ICU SVN on 2007-09-09 # Milo Casagrande , 2008, 2009, 2010, 2011. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-26 22:44+0200\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8-bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "File system btrfs con journaling" partman-btrfs-14ubuntu2/debian/po/id.po0000664000000000000000000000411312274263662015102 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of id.po to Bahasa Indonesia # Indonesian messages for debian-installer. # # # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Translators: # # Debian Indonesian L10N Team , 2004. # * Parlin Imanuel Toh (parlin_i@yahoo.com), 2004-2005. # * I Gede Wijaya S (gwijayas@yahoo.com), 2004. # * Arief S F (arief@gurame.fisika.ui.ac.id), 2004-2007. # * Setyo Nugroho (setyo@gmx.net), 2004. # Arief S Fitrianto , 2008-2011. # # Translations from iso-codes: # Alastair McKinstry , 2002. # Andhika Padmawan , 2010,2011. # Arief S Fitrianto , 2004-2006. # Erwid M Jadied , 2008. # Free Software Foundation, Inc., 2002,2004 # Translations from KDE: # Ahmad Sofyan , 2001. # msgid "" msgstr "" "Project-Id-Version: debian-installer (level1)\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-02-13 03:15+0700\n" "Last-Translator: Mahyuddin Susanto \n" "Language-Team: Debian Indonesia Translators \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "sistem berkas berjurnal btrfs" partman-btrfs-14ubuntu2/debian/po/be.po0000664000000000000000000000364212274263662015102 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of be.po to Belarusian (Official spelling) # Andrei Darashenka , 2005, 2006. # Nasciona Piatrouskaja , 2006. # Pavel Piatruk , 2006, 2007, 2008. # Hleb Rubanau , 2006, 2007. # Nasciona Piatrouskaja , 2006. # Paul Petruk , 2007. # Pavel Piatruk , 2008, 2009, 2011. # Viktar Siarheichyk , 2010, 2011, 2012. # Translations from iso-codes: # Alastair McKinstry , 2004. # Alexander Nyakhaychyk , 2009. # Ihar Hrachyshka , 2007, 2010. msgid "" msgstr "" "Project-Id-Version: be\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-15 01:58+0300\n" "Last-Translator: Viktar Siarheichyk \n" "Language-Team: Belarusian (Official spelling) \n" "Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Файлавая сістэма btrfs з падтрымкай журнала" partman-btrfs-14ubuntu2/debian/po/lt.po0000664000000000000000000000375212274263662015135 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Lithuanian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Marius Gedminas , 2004. # Darius Skilinskas , 2005. # Kęstutis Biliūnas , 2004...2010. # Translations from iso-codes: # Gintautas Miliauskas , 2008. # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Translations from KDE: # - Ričardas Čepas # Free Software Foundation, Inc., 2000-2001, 2004 # Gediminas Paulauskas , 2000-2001. # Alastair McKinstry , 2001,2002. # Kęstutis Biliūnas , 2004, 2006, 2008, 2009, 2010. # Rimas Kudelis , 2012. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-05-27 19:07+0300\n" "Last-Translator: Rimas Kudelis \n" "Language-Team: Lithuanian \n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" "%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs žurnalinė failų sistema" partman-btrfs-14ubuntu2/debian/po/sv.po0000664000000000000000000000334012274263662015137 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Swedish messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Swedish translation by: # Per Olofsson # Daniel Nylander , 2006. # # Translations from iso-codes: # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Mattias Newzella , 2001. # Christian Rose , 2004. # Daniel Nylander , 2007. # Martin Bagge , 2008. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-03-28 06:40+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Journalförande filsystemet btrfs" partman-btrfs-14ubuntu2/debian/po/gl.po0000664000000000000000000000404112274263662015110 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of gl.po to Galician # Galician messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Marce Villarino , 2009. # marce villarino , 2009. # Marce Villarino , 2009. # Jorge Barreiro , 2010. # # Translations from iso-codes: # Fran Diéguez , 2010. # # Translations from KDE desktop.po: # - Jesús Bravo Álvarez # Alastair McKinstry - further translations from ICU-3.0 # # Free Software Foundation, Inc., 2000,2002,2003,2004. # Alastair McKinstry, , 2001,2002. # Jacobo Tarrío , 2005, 2006, 2007, 2008. # Jorge Barreiro , 2010. # # Jesus Bravo Alvarez , 2001. (from KDE desktop.po) # msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-10-21 00:51+0200\n" "Last-Translator: Jorge Barreiro \n" "Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Sistema de ficheiros transaccional btrfs" partman-btrfs-14ubuntu2/debian/po/bg.po0000664000000000000000000000422212274263662015077 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of bg.po to Bulgarian # Bulgarian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Ognyan Kulev , 2004, 2005, 2006. # Nikola Antonov , 2004. # # # Translations from iso-codes: # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Free Software Foundation, Inc., 2004. # Georgi Georgiev , 2001, 2004. # Alastair McKinstry , 2001. # Ognyan Kulev , 2004. # Damyan Ivanov , 2006, 2007, 2008, 2009, 2010. # Copyright (C) # (translations from drakfw) # - further translations from ICU-3.9 # Translation of ISO 639 (language names) to Bulgarian # Copyright (C) 2010 Free Software Foundation, Inc. # # Copyright (C) # Roumen Petrov , 2010. # Damyan Ivanov , 2006, 2007, 2008, 2009, 2010, 2011, 2012. # msgid "" msgstr "" "Project-Id-Version: bg\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-02-25 18:10+0200\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Български \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "журнална файлова система btrfs" partman-btrfs-14ubuntu2/debian/po/pl.po0000664000000000000000000000411012274263662015116 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Polish messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Copyright (C) 2004-2010 Bartosz Feński # # # Translations from iso-codes: # Tobias Toedter , 2007. # Translations taken from ICU SVN on 2007-09-09 # Jakub Bogusz , 2009-2011 # # Alastair McKinstry , 2001 # Alastair McKinstry, , 2004. # Andrzej M. Krzysztofowicz , 2007 # Cezary Jackiewicz , 2000-2001 # Free Software Foundation, Inc., 2000-2010 # Free Software Foundation, Inc., 2004-2009 # GNOME PL Team , 2001 # Jakub Bogusz , 2007-2011 # Tomasz Z. Napierala , 2004, 2006. # Translations from KDE: # - Jacek Stolarczyk # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-26 10:46+0100\n" "Last-Translator: Marcin Owsiany \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "System plików btrfs z księgowaniem" partman-btrfs-14ubuntu2/debian/po/nl.po0000664000000000000000000000353512274263662015126 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of nl.po to Dutch # Dutch messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Frans Pop , 2005. # Frans Pop , 2007, 2008, 2009, 2010. # Eric Spreen , 2010. # Jeroen Schot , 2011. # # Translations from iso-codes: # Translations taken from ICU SVN on 2007-09-09. # Tobias Toedter , 2007. # # Elros Cyriatan , 2004. # Luk Claes , 2005. # Freek de Kruijf , 2006, 2007, 2008, 2009, 2010, 2011. # Taco Witte , 2004. # Reinout van Schouwen , 2007. # msgid "" msgstr "" "Project-Id-Version: debian-installer/sublevel1\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-27 08:48+0200\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs loggend bestandssysteem" partman-btrfs-14ubuntu2/debian/po/cs.po0000664000000000000000000000276712274263662015130 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Czech messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Translations from iso-codes: # Alastair McKinstry , 2001. # Free Software Foundation, 2002,2004 # Miroslav Kure , 2004--2010. # Petr Cech (Petr Čech), 2000. # Stanislav Brabec , 2001. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-25 19:24+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "žurnálovací souborový systém btrfs" partman-btrfs-14ubuntu2/debian/po/fi.po0000664000000000000000000000341712274263662015112 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Finnish messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Thanks to laatu@lokalisointi.org. # # # Tommi Vainikainen , 2003 - 2004. # Tapio Lehtonen , 2004 - 2006. # Esko Arajärvi , 2007 - 2008, 2009, 2010. # # Translations from iso-codes: # Copyright (C) 2007 Tobias Toedter . # Translations taken from ICU SVN on 2007-09-09 # Tommi Vainikainen , 2005-2010. # Copyright (C) 2005-2006, 2008-2010 Free Software Foundation, Inc. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-08-22 12:24+0300\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs tapahtumakirjanpidon sisältävä tiedostojärjestelmä" partman-btrfs-14ubuntu2/debian/po/uk.po0000664000000000000000000000327612274263662015136 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of uk.po to Ukrainian # translation of uk.po to # Ukrainian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # # Translations from iso-codes: # Eugeniy Meshcheryakov , 2005, 2006, 2007, 2010. # Євгеній Мещеряков , 2008. # Borys Yanovych , 2010, 2011. # Maxim V. Dziumanenko , 2010. # Yuri Chornoivan , 2010, 2011. msgid "" msgstr "" "Project-Id-Version: uk\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-19 07:23+0300\n" "Last-Translator: Borys Yanovych \n" "Language-Team: Ukrainian <>\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "файлова система btrfs" partman-btrfs-14ubuntu2/debian/po/POTFILES.in0000664000000000000000000000006212274263662015722 0ustar [type: gettext/rfc822deb] partman-btrfs.templates partman-btrfs-14ubuntu2/debian/po/hu.po0000664000000000000000000000345212274263662015127 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Hungarian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # coor: SZERVÁC Attila - sas 321hu -- 2006-2008 # # # Translations from iso-codes: # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # # Arpad Biro , 2001. # VERÓK István , 2004. # SZERVÁC Attila , 2006. # Kálmán Kéménczy , 2007, 2008. # Gabor Kelemen , 2006, 2007. # Kalman Kemenczy , 2010. # Andras TIMAR , 2000-2001. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-14 08:39+0100\n" "Last-Translator: SZERVÁC Attila \n" "Language-Team: Debian L10n Hungarian \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs naplózó fájlrendszer" partman-btrfs-14ubuntu2/debian/po/is.po0000664000000000000000000000351412274263662015125 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of debian-installer_packages_po_sublevel1_is.po to Icelandic # Icelandic messages for debian-installer. # This file is distributed under the same license as debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # # Copyright (C) 2010 Free Software Foundation # # zorglubb , 2008. # Sveinn í Felli , 2010. # Alastair McKinstry, , 2002. # Sveinn í Felli , 2010, 2011. # Alastair McKinstry , 2002. # Translations from iso-codes: # Copyright (C) 2002,2003, 2010, 2011 Free Software Foundation, Inc. # Translations from KDE: # Þórarinn Rúnar Einarsson msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_is\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-12-27 21:05+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" ">\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs dagbókarstutt skráakerfi" partman-btrfs-14ubuntu2/debian/po/templates.pot0000664000000000000000000000202012274263662016663 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "" partman-btrfs-14ubuntu2/debian/po/zh_TW.po0000664000000000000000000000376412274263662015554 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Traditional Chinese messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # # Translations from iso-codes: # Tobias Quathamer , 2007. # Wei-Lun Chao , 2008, 2009. # Free Software Foundation, Inc., 2002, 2003 # Alastair McKinstry , 2001,2002 # Translations from KDE: # - AceLan , 2001 # - Kenduest Lee , 2001 # Tetralet 2004, 2007, 2008, 2009, 2010 # 趙惟倫 2010 # LI Daobing , 2007. # Hominid He(viperii) , 2007. # Mai Hao Hui , 2001. # Abel Cheung , 2007. # JOE MAN , 2001. # Chao-Hsiung Liao , 2005. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2008-08-09 00:35+0800\n" "Last-Translator: Tetralet \n" "Language-Team: Debian-user in Chinese [Big5] \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs 日誌式檔案系統" partman-btrfs-14ubuntu2/debian/po/da.po0000664000000000000000000000451712274263662015102 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of debian-installer_packages_po_sublevel1_da.po to # Danish messages for debian-installer. # This file is distributed under the same license as debian-installer. # Ask Hjorth Larsen , 2010. # Mads Bille Lundby , 2008. # Jesper Dahl Nyerup , 2008. # Jacob Sparre Andersen , 2008, 2010. # Claus Hindsgaul , 2004-2007. # Reviewed 2007 by Niels Rasmussen # # Volume er oversat til diskenhed. Ret hvis Dansk-gruppen finder en anbefaling. # # Translations from iso-codes: # Alastair McKinstry , 2001. # Claus Hindsgaul , 2006. # Claus Hindsgaul , 2004, 2005, 2006. # Computeroversættelse Tobias Toedter , 2007. # Copyright (C) Free Software Foundation, Inc., 2006. # Frederik 'Freso' S. Olesen , 2008. # Free Software Foundation, Inc., 2000, 2004, 2005. # Joe Hansen , 2009, 2010, 2011. # Keld Simonsen , 2000, 2001. # Kenneth Christiansen , 2000. # Ole Laursen , 2001. # msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_da\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-10-29 00:05+0200\n" "Last-Translator: Ask Hjorth Larsen \n" "Language-Team: \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "»btrfs« journaliserende filsystem" partman-btrfs-14ubuntu2/debian/po/ar.po0000664000000000000000000000362712274263662015121 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of ar.po to Arabic # Arabic messages for debian-installer. Copyright (C) 2003 Software in the Public Interest, Inc. This file is distributed under the same license as debian-installer. Ossama M. Khayat , 2005. # Ossama M. Khayat , 2006, 2007, 2008, 2009, 2010. # # Translations from iso-codes: # Abdulaziz Al-Arfaj , 2004. # Alastair McKinstry , 2002. # Free Software Foundation, Inc., 2002, 2004 # Ossama M. Khayat , 2006, 2008, 2010. # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Translations from kde-i18n/desktop.po: # Mohammad Gamal , 2001. # msgid "" msgstr "" "Project-Id-Version: ar\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-08-22 23:44+0300\n" "Last-Translator: Ossama M. Khayat \n" "Language-Team: American English \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n>=3 && n⇐10 ? " "3 : n>=11 && n⇐99 ? 4 : 5\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "نظام ملفّات btrfs سجلّي" partman-btrfs-14ubuntu2/debian/po/ne.po0000664000000000000000000000347612274263662015123 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of debian-installer_packages_po_sublevel1_ne.po to Nepali # Shyam Krishna Bal , 2006. # Shiva Pokharel , 2006. # Shyam Krishna Bal , 2006. # Shiva Prasad Pokharel , 2006. # Shiva Pokharel , 2007, 2008. # Shiva Prasad Pokharel , 2007. # shyam krishna bal , 2007. # Nabin Gautam , 2007. # Shyam Krishna Bal , 2008. # Shiva Prasad Pokharel , 2008, 2010, 2011. # # Translations from iso-codes: # Shyam Krishna Bal , 2006. # Shiva Prasad Pokharel , 2006, 2011. msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_ne\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-02-22 17:11-0600\n" "Last-Translator: \n" "Language-Team: American English \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n !=1\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "brtfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrजज" partman-btrfs-14ubuntu2/debian/po/fr.po0000664000000000000000000000424512274263662015123 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of Debian Installer templates to French # Copyright (C) 2004-2009 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # # Translations from iso-codes: # Christian Perrier , 2002-2004. # Pierre Machard , 2002-2004. # Denis Barbier , 2002-2004. # Philippe Batailler , 2002-2004. # Michel Grentzinger , 2003-2004. # Christian Perrier , 2005, 2006, 2007, 2008, 2009, 2010, 2011. # Alastair McKinstry , 2001. # Cedric De Wilde , 2001. # Christian Perrier , 2004, 2005, 2006, 2007, 2008, 2009, 2010. # Christophe Fergeau , 2000-2001. # Christophe Merlet (RedFox) , 2001. # Free Software Foundation, Inc., 2000-2001, 2004, 2005, 2006. # Grégoire Colbert , 2001. # Tobias Quathamer , 2007, 2008. msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-24 12:12+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "système de fichiers journalisé btrfs" partman-btrfs-14ubuntu2/debian/po/mk.po0000664000000000000000000000335412274263662015123 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of debian-installer_packages_po_sublevel1_mk.po to Macedonian # translation of mk.po to # Macedonian strings from the debian-installer. # # Georgi Stanojevski, , 2004, 2005, 2006. # Georgi Stanojevski , 2005, 2006. # # Translations from iso-codes: # Alastair McKinstry , 2002 # Arangel Angov , 2008. # Free Software Foundation, Inc., 2002,2004 # Georgi Stanojevski , 2004, 2006. # Translations from KDE: # Danko Ilik # Arangel Angov , 2008, 2011. # msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_mk\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-04-11 15:54+0200\n" "Last-Translator: Arangel Angov \n" "Language-Team: Macedonian <>\n" "Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n!=1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs датотечен систем со journaling" partman-btrfs-14ubuntu2/debian/po/pt.po0000664000000000000000000000334712274263662015141 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Portuguese messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # Console-setup strings translations: # (identified by "./console-setup.templates") # Copyright (C) 2003-2011 Miguel Figueiredo # This file is distributed under the same license as debian-installer. # # # Translations from iso-codes: # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Miguel Figueiredo , 2005, 2006, 2008, 2009, 2010 # Free Software Foundation, Inc., 2001,2004 # Filipe Maia , 2001. # Alastair McKinstry , 2001. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-24 11:36+0100\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Sistema de ficheiros btrfs com journal" partman-btrfs-14ubuntu2/debian/po/ug.po0000664000000000000000000000261312274263662015124 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # # # Debian Installer master translation file template # Don't forget to properly fill-in the header of PO files # # Debian Installer translators, please read the D-I i18n documentation # in doc/i18n/i18n.txt # # # Translations from iso-codes: # Sahran , 2010. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-26 10:56+0600\n" "Last-Translator: Sahran \n" "Language-Team: Uyghur Computer Science Association \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs كۈندىلىك خاتىرە ھۆججەت سىستېمىسى" partman-btrfs-14ubuntu2/debian/po/bs.po0000664000000000000000000000353312274263662015117 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of debian-installer_packages_po_sublevel1_bs.po to Bosnian # Bosnian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Safir Secerovic , 2006. # Armin Besirovic , 2008. # # Translations from iso-codes: # Alastair McKinstry , 2001,2002. # Free Software Foundation, Inc., 2001,2002,2003,2004 # Safir Šećerović , 2004,2006. # Vedran Ljubovic , 2001 # (translations from drakfw). # Translations from KDE: # Nesiren Armin , 2002 # Vedran Ljubovic , 2002 # msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_bs\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-15 12:18+0100\n" "Last-Translator: Armin Besirovic \n" "Language-Team: Bosnian \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: 3\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs journaling datotečni sistem" partman-btrfs-14ubuntu2/debian/po/ast.po0000664000000000000000000000316312274263662015301 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Debian Installer master translation file template # Don't forget to properly fill-in the header of PO files # Debian Installer translators, please read the D-I i18n documentation # in doc/i18n/i18n.txt # astur , 2010 # Marquinos , 2010. # Translations from iso-codes: # Marcos Alvarez Costales , 2009, 2010. # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # Marquinos , 2008. # Mikel González , 2012. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-01-28 13:25+0100\n" "Last-Translator: Mikel González \n" "Language-Team: Softastur\n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Sistema de ficheros tresaccional btrfs" partman-btrfs-14ubuntu2/debian/po/ml.po0000664000000000000000000000401212274263662015114 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of Debian Installer Level 1 - sublevel 1 to malayalam # Copyright (c) 2006-2010 Debian Project # Praveen|പ്രവീണ്‍ A|എ , 2006-2010. # Santhosh Thottingal , 2006. # Sreejith :: ശ്രീജിത്ത് കെ , 2006. # Credits: V Sasi Kumar, Sreejith N, Seena N, Anivar Aravind, Hiran Venugopalan and Suresh P # # Debian Installer master translation file template # Don't forget to properly fill-in the header of PO files # Debian Installer translators, please read the D-I i18n documentation # in doc/i18n/i18n.txt# # # # Translations from iso-codes: # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Praveen A , 2006, 2008. # Ani Peter , 2009 # msgid "" msgstr "" "Project-Id-Version: Debian Installer Level 1\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-11-21 10:16+0530\n" "Last-Translator: Hrishikesh K B \n" "Language-Team: Debian Malayalam \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs ജേര്‍ണലിങ്ങ് ഫയല്‍ സിസ്റ്റം" partman-btrfs-14ubuntu2/debian/po/se.po0000664000000000000000000000263112274263662015120 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of se.po to Northern Saami # # Debian Installer master translation file template # Don't forget to properly fill-in the header of PO files# # Debian Installer translators, please read the D-I i18n documentation # in doc/i18n/i18n.txt# # # Børre Gaup , 2006, 2010. msgid "" msgstr "" "Project-Id-Version: se\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-12-31 02:09+0100\n" "Last-Translator: Børre Gaup \n" "Language-Team: Northern Sami \n" "Language: se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 #, fuzzy msgid "btrfs journaling file system" msgstr "Galgamin fiilavuogádagaid ..." partman-btrfs-14ubuntu2/debian/po/te.po0000664000000000000000000000315112274263662015117 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of te.po to Telugu # Telugu translation for debian-installer # This file is distributed under the same license as the debian-installer package. # వీవెన్ (Veeven) , 2007. # Y Giridhar Appaji Nag , 2008. # Arjuna Rao Chavala ,2010 # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # # Translations from iso-codes: # Y Giridhar Appaji Nag , 2008, 2009. # Krishna Babu K , 2009. msgid "" msgstr "" "Project-Id-Version: te\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-18 15:32+0530\n" "Last-Translator: Arjuna Rao Chavala \n" "Language-Team: Telugu \n" "Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs జర్నలింగ్ ఫైల్ సిస్టం" partman-btrfs-14ubuntu2/debian/po/bo.po0000664000000000000000000000231412274263662015107 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Tibetan translation for Debian Installer. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-04-14 22:12+0600\n" "Last-Translator: Tennom \n" "Language-Team: bo \n" "Language: bo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs ཟིན་ཐོའི་ཡིག་ཆ་མ་ལག" partman-btrfs-14ubuntu2/debian/po/hr.po0000664000000000000000000000331412274263662015121 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Croatian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # # Translations from iso-codes: # Alastair McKinstry , 2001, 2004. # Free Software Foundation, Inc., 2000,2004 # Josip Rodin, 2008 # Krunoslav Gernhard, 2004 # Vladimir Vuksan , 2000. # Vlatko Kosturjak, 2001 # Tomislav Krznar , 2012, 2013. # msgid "" msgstr "" "Project-Id-Version: Debian-installer 1st-stage master file HR\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2013-04-16 05:30+0200\n" "Last-Translator: Tomislav Krznar \n" "Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs dnevnički datotečni sustav" partman-btrfs-14ubuntu2/debian/po/nn.po0000664000000000000000000000365312274263662015131 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Norwegian Nynorsk translation of debian-installer. # Copyright (C) 2003–2010 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Håvard Korsvoll , 2004, 2005, 2006, 2007, 2008. # Eirik U. Birkeland , 2010. # # Translations from iso-codes: # Alastair McKinstry , 2001. # Free Software Foundation, Inc., 2001, 2004. # Håvard Korsvoll , 2004,2006, 2007. # Karl Ove Hufthammer , 2003-2004, 2006. (New translation done from scratch.). # Kjartan Maraas , 2001. # Roy-Magne Mo , 2001. # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 msgid "" msgstr "" "Project-Id-Version: nn\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-06-26 13:47+0200\n" "Last-Translator: Eirik U. Birkeland \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "nynorsk@lists.debian.org>\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 #, fuzzy msgid "btrfs journaling file system" msgstr "Ext3 journalførande filsystem" partman-btrfs-14ubuntu2/debian/po/hi.po0000664000000000000000000000423412274263662015112 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of debian-installer_packages_po_sublevel1_hi.po to Hindi # translation of debian-installer_packages_po_sublevel1_hi.po to # Debian Installer master translation file template # Don't forget to properly fill-in the header of PO files # Debian Installer translators, please read the D-I i18n documentation # in doc/i18n/i18n.txt # # # # Translations from iso-codes: # Data taken from ICU-2.8; originally from: # - Shehnaz Nagpurwala and Anwar Nagpurwala [first version] # - IBM NLTC: http://w3.torolab.ibm.com/gcoc/documents/india/hi-nlsgg.htm # - Arundhati Bhowmick [IBM Cupertino] # # # Nishant Sharma , 2005, 2006. # Kumar Appaiah , 2008. # Kumar Appaiah , 2008, 2009, 2010. # Kumar Appaiah , 2009. # Alastair McKinstry , 2004. # Kumar Appaiah , 2008. # Kumar Appaiah , 2008, 2011. msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_hi\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-24 23:43-0500\n" "Last-Translator: Kumar Appaiah\n" "Language-Team: American English \n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: 2X-Generator: KBabel 1.11.2\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "बीटीआरऍफ़एस" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "बीटीआरऍफ़एस जर्नलिंग फ़ाइल सिस्टम" partman-btrfs-14ubuntu2/debian/po/mr.po0000664000000000000000000000306012274263662015124 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # # # Debian Installer master translation file template # Don't forget to properly fill-in the header of PO files # # Debian Installer translators, please read the D-I i18n documentation # in doc/i18n/i18n.txt # # # Translations from iso-codes: # Alastair McKinstry , 2004. # Priti Patil , 2007. # Sampada Nakhare, 2007. # Sandeep Shedmake , 2009, 2010. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-03-05 22:52+0530\n" "Last-Translator: sampada \n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " "\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs जर्नलिंग फाइल प्रणाली" partman-btrfs-14ubuntu2/debian/po/lv.po0000664000000000000000000000371012274263662015131 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of lv.po to Latvian # Latvian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Translations from iso-codes: # Copyright (C) Free Software Foundation, Inc., 2001,2003. # Translations from KDE: # Andris Maziks # # Aigars Mahinovs , 2006, 2008. # Viesturs Zarins , 2008. # Aigars Mahinovs , 2006. # Alastair McKinstry , 2001, 2002. # Free Software Foundation, Inc., 2002,2004. # Juris Kudiņš , 2001. # Rihards Priedītis , 2009, 2010. # Rūdolfs Mazurs , 2012. # Peteris Krisjanis , 2008, 2012. # msgid "" msgstr "" "Project-Id-Version: lv\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-05-27 12:29+0300\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latviešu \n" "Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2)\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs datņu sistēma ar žurnālu" partman-btrfs-14ubuntu2/debian/po/nb.po0000664000000000000000000000412112274263662015104 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of nb.po to Norwegian Bokmål # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Knut Yrvin , 2004. # Klaus Ade Johnstad , 2004. # Axel Bojer , 2004. # Bjørn Steensrud , 2004-2007. # Hans Fredrik Nordhaug , 2005, 2007-2011. # # Translations from iso-codes: # Alastair McKinstry , 2002 # Axel Bojer , 2004. # Bjørn Steensrud , 2006. # Free Software Foundation, Inc., 2002,2004 # Hans Fredrik Nordhaug , 2007-2011. # Håvard Korsvoll , 2004. # Knut Yrvin , 2004. # Tobias Toedter , 2007. # Translations taken from ICU SVN on 2007-09-09 # Translations from KDE: # Rune Nordvik , 2001 # Kjartan Maraas , 2009. # msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-04-15 20:02+0200\n" "Last-Translator: Hans Fredrik Nordhaug \n" "Language-Team: Norwegian Bokmål \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs-journalførende filsystem" partman-btrfs-14ubuntu2/debian/po/lo.po0000664000000000000000000000245012274263662015122 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of lo.po to Lao # Lao translation of debian-installer. # Copyright (C) 2006-2010 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Anousak Souphavanh , 2010. msgid "" msgstr "" "Project-Id-Version: lo\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-12 15:24+0700\n" "Last-Translator: Anousak Souphavanh \n" "Language-Team: Lao \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "ລະບົບແຟັມ journaling btrfs" partman-btrfs-14ubuntu2/debian/po/fa.po0000664000000000000000000000332112274263662015074 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Persian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # , 2005. # # Translations from iso-codes: # Alastair McKinstry - further translations from ICU-3.0 # Alastair McKinstry , 2001,2004. # Free Software Foundation, Inc., 2001,2003,2004 # Roozbeh Pournader , 2004,2005. # Sharif FarsiWeb, Inc., 2004 # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Translations from kde: # - FarsiKDE Team # msgid "" msgstr "" "Project-Id-Version: fa\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-27 19:46+0330\n" "Last-Translator: Behrad Eslamifar \n" "Language-Team: Debian-l10n-persian \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "فایل‌سیستم btrfs journaling" partman-btrfs-14ubuntu2/debian/po/ja.po0000664000000000000000000000357612274263662015114 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Japanese messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # # Translations from iso-codes: # Alastair McKinstry , 2001, 2002. # Free Software Foundation, Inc., 2000, 2001, 2004, 2005, 2006 # IIDA Yosiaki , 2004, 2005, 2006. # Kenshi Muto , 2006-2007 # Takayuki KUSANO , 2001. # Takuro Ashie , 2001. # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Translations from KDE: # - Taiki Komoda # Yasuaki Taniguchi , 2010, 2011. # Yukihiro Nakai , 2000. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-26 22:51+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian L10n Japanese \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs ジャーナリングファイルシステム" partman-btrfs-14ubuntu2/debian/po/ku.po0000664000000000000000000000317212274263662015131 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of ku.po to Kurdish # Kurdish messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Rizoyê Xerzî # Erdal Ronahi , 2008. # Erdal , 2010. # Erdal Ronahî , 2010. # # Translations from iso-codes: # Erdal Ronahi , 2005. # Erdal Ronahi , 2007. msgid "" msgstr "" "Project-Id-Version: ku\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-08-16 00:19+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish Team http://pckurd.net\n" "Language: ku\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n!= 1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Pergala pelan ya bijurnal btrfs" partman-btrfs-14ubuntu2/debian/po/ru.po0000664000000000000000000000405012274263662015134 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of ru.po to Russian # Russian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # # Translations from iso-codes: # Russian L10N Team , 2004. # Yuri Kozlov , 2004, 2005. # Dmitry Beloglazov , 2005. # Sergey Alyoshin , 2011. # Yuri Kozlov , 2005, 2006, 2007, 2008. # Yuri Kozlov , 2009, 2010, 2011. # Alastair McKinstry , 2004. # Mikhail Zabaluev , 2006. # Nikolai Prokoschenko , 2004. # Pavel Maryanov , 2009,2010. # Yuri Kozlov , 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011. msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-25 20:30+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Журналируемая файловая система btrfs" partman-btrfs-14ubuntu2/debian/po/el.po0000664000000000000000000000441712274263662015115 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of el.po to # Greek messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # George Papamichelakis , 2004. # Emmanuel Galatoulas , 2004. # Konstantinos Margaritis , 2004, 2006. # Greek Translation Team , 2004, 2005. # quad-nrg.net , 2005, 2006, 2007. # quad-nrg.net , 2006, 2008. # QUAD-nrg.net , 2006. # galaxico@quad-nrg.net , 2009. # Emmanuel Galatoulas , 2009, 2010. # # Translations from iso-codes: # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Panayotis Pakos # Free Software Foundation, Inc., 2004. # Alastair McKinstry , 2001. # QUAD-nrg.net , 2006, 2010. # Simos Xenitellis , 2001. # Konstantinos Margaritis , 2004. # Athanasios Lefteris , 2008. msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-09-04 19:11+0300\n" "Last-Translator: Emmanuel Galatoulas \n" "Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "σύστημα αρχείων btrfs με journal" partman-btrfs-14ubuntu2/debian/po/es.po0000664000000000000000000000632112274263662015120 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Spanish messages for debian-installer. # Copyright (C) 2003-2007 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Contributors to the translation of debian-installer: # Teófilo Ruiz Suárez , 2003. # David Martínez Moreno , 2003, 2005. # Carlos Alberto Martín Edo , 2003 # Carlos Valdivia Yagüe , 2003 # Rudy Godoy , 2003-2006 # Steve Langasek , 2004 # Enrique Matias Sanchez (aka Quique) , 2005 # Rubén Porras Campo , 2005 # Javier Fernández-Sanguino , 2003-2010 # Omar Campagne , 2010 # # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: # # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/ # especialmente las notas de traducción en # http://www.debian.org/intl/spanish/notas # # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # # Si tiene dudas o consultas sobre esta traducción consulte con el último # traductor (campo Last-Translator) y ponga en copia a la lista de # traducción de Debian al español (debian-l10n-spanish@lists.debian.org) # # NOTAS: # # - Se ha traducido en este fichero 'boot loader' de forma homogénea por # 'cargador de arranque' aunque en el manual se utiliza éste término y # también 'gestor de arranque' # # - 'array' no está traducido aún. La traducción como 'arreglo' suena # fatal (y es poco conocida) # # # Translations from iso-codes: # Alastair McKinstry , 2001. # Free Software Foundation, Inc., 2001,2003,2004 # Javier Fernández-Sanguino , 2004-2008, 2010 # Juan Manuel García Molina , 2001. # Ricardo Fernández Pascual , 2000, 2001. # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-26 00:35+0200\n" "Last-Translator: Javier Fernández-Sanguino Peña \n" "Language-Team: Debian Spanish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "sistema de ficheros btrfs transaccional" partman-btrfs-14ubuntu2/debian/po/pa.po0000664000000000000000000000355012274263662015112 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of pa.po to Punjabi # # Debian Installer master translation file template # Don't forget to properly fill-in the header of PO files# # Debian Installer translators, please read the D-I i18n documentation # in doc/i18n/i18n.txt# # # # Translations from iso-codes: # Amanpreet Singh Alam , 2005. # Amanpreet Singh Alam , 2006. # A S Alam , 2006, 2007. # A S Alam , 2007, 2010. # Amanpreet Singh Alam , 2008. # Amanpreet Singh Brar , 2008. # Amanpreet Singh Alam , 2008, 2009. # Amanpreet Singh Alam[ਆਲਮ] , 2005. # A S Alam , 2009, 2012. msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-05-06 12:14+0530\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" "Language: pa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs ਜਰਨਲਿੰਗ ਫਾਇਲ ਸਿਸਟਮ" partman-btrfs-14ubuntu2/debian/po/tr.po0000664000000000000000000000417712274263662015145 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Turkish messages for debian-installer. # Copyright (C) 2003, 2004 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Recai Oktaş , 2004, 2005, 2008. # Osman Yüksel , 2004. # Özgür Murat Homurlu , 2004. # Halil Demirezen , 2004. # Murat Demirten , 2004. # # Mert Dirik , 2008, 2009. # # Translations from iso-codes: # Alastair McKinstry , 2001. # (translations from drakfw) # Fatih Demir , 2000. # Free Software Foundation, Inc., 2000,2004 # Kemal Yilmaz , 2001. # Mert Dirik , 2008. # Nilgün Belma Bugüner , 2001. # Recai Oktaş , 2004. # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Ömer Fadıl USTA , 1999. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-23 17:16+0200\n" "Last-Translator: Mert Dirik \n" "Language-Team: Debian L10n Turkish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs günlüklü dosya sistemi" partman-btrfs-14ubuntu2/debian/po/bn.po0000664000000000000000000000430112274263662015104 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Bangla translation of Debian-Installer. # Copyright (C) 2005, 2006, Debian Foundation. # This file is distributed under the same license as the Debian-Installer package. # Anubadok, the en2bn auto-translator by Golam Mortuza Hossain , 2005. # Baishampayan Ghose , 2005-2006. # Quazi Ashfaq-ur Rahman , 2005. # Khandakar Mujahidul Islam , 2005, 2006. # Progga , 2005, 2006. # Jamil Ahmed , 2006-2007. # Mahay Alam Khan (মাহে আলম খান) , 2007. # Tisa Nafisa , 2007. # Md. Rezwan Shahid , 2009. # Sadia Afroz , 2010. # Israt Jahan , 2010. # Zenat Rahnuma , 2011. # # Translations from iso-codes: # Debian Foundation, 2005. # Progga , 2005. # Jamil Ahmed , 2006. # Md. Rezwan Shahid , 2009. # Israt Jahan , 2010. # msgid "" msgstr "" "Project-Id-Version: bn\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-20 17:52+0600\n" "Last-Translator: Zenat Rahnuma \n" "Language-Team: Bengali \n" "Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs জার্নালিং ফাইল সিস্টেম" partman-btrfs-14ubuntu2/debian/po/ro.po0000664000000000000000000000445212274263662015134 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of ro.po to Romanian # Romanian translation # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans # # Developers do not need to manually edit POT or PO files. # # Eddy Petrișor , 2004, 2005, 2006, 2007, 2008, 2009, 2010. # # Translations from iso-codes: # Alastair McKinstry , 2004 # Andrei Popescu , 2010. # Eddy Petrișor , 2004, 2006, 2007, 2008, 2009. # Free Software Foundation, Inc., 2000, 2001 # Lucian Adrian Grijincu , 2009, 2010. # Mişu Moldovan , 2000, 2001. # Tobias Toedter , 2007. # Translations taken from ICU SVN on 2007-09-09 # Ioan Eugen Stan , 2011. # msgid "" msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-15 09:41+0300\n" "Last-Translator: Ioan Eugen Stan \n" "Language-Team: ro \n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: utf-8\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Sistem de fișiere btrfs cu jurnalizare" partman-btrfs-14ubuntu2/debian/po/kk.po0000664000000000000000000000323712274263662015121 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Kazakh messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # Talgat Daniyarov # Baurzhan Muftakhidinov , 2008, 2009 # Dauren Sarsenov , 2008, 2009 # # Translations from iso-codes: # Alastair McKinstry , 2004. # Sairan Kikkarin , 2006 # KDE Kazakh l10n team, 2006 # Baurzhan Muftakhidinov , 2008, 2009, 2010 # Dauren Sarsenov , 2009 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-02-02 10:21+0600\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: Kazakh \n" "Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs журналдаушы файлдық жүйесі" partman-btrfs-14ubuntu2/debian/po/th.po0000664000000000000000000000341412274263662015124 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Thai translation of debian-installer. # Copyright (C) 2006-2011 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Theppitak Karoonboonyanan , 2006-2011. # # # Translations from iso-codes: # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # Free Software Foundation, Inc., 2002,2003,2004 # Alastair McKinstry , 2002, 2004 # Translations from KDE: # - Thanomsub Noppaburana # Thanomsub Noppaburana (Translations from KDE) # Theppitak Karoonboonyanan , 2005-2011 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2011-09-27 12:09+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "ระบบแฟ้ม journaling btrfs" partman-btrfs-14ubuntu2/debian/po/pt_BR.po0000664000000000000000000000333212274263662015516 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of Debian Installer templates to Brazilian Portuguese. # This file is distributed under the same license as debian-installer. # # Felipe Augusto van de Wiel (faw) , 2008-2010. # # Translations from iso-codes: # Alastair McKinstry , 2001, 2002. # Free Software Foundation, Inc., 2000 # Juan Carlos Castro y Castro , 2000,2005. # Leonardo Ferreira Fontenelle , 2006-9. # Lisiane Sztoltz # Tobias Quathamer , 2007. # Translations taken from ICU SVN on 2007-09-09 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-03-31 20:46-0300\n" "Last-Translator: Felipe Augusto van de Wiel (faw) \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Sistema de arquivos com \"journaling\" btrfs" partman-btrfs-14ubuntu2/debian/po/de.po0000664000000000000000000000501212274263662015075 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # German messages for debian-installer (sublevel1). # Copyright (C) 2003 Software in the Public Interest, Inc. # # This file is distributed under the same license as debian-installer. # Holger Wansing , 2008, 2009, 2010, 2011, 2012. # Jens Seidel , 2005, 2006, 2007, 2008. # Dennis Stampfer , 2003, 2004, 2005. # Alwin Meschede , 2003, 2004. # Bastian Blank , 2003. # Jan Luebbe , 2003. # Thorsten Sauter , 2003. # # Console-setup strings translations: # (identified by "./console-setup.templates") # Copyright (C) 2006, the console-setup package'c copyright holder # Copyright (C) 2006, Matthias Julius # Copyright (C) 2007-2009 Helge Kreutzmann # Copyright (C) 2008-2011 Holger Wansing # # Translations from iso-codes: # Alastair McKinstry , 2001. # Björn Ganslandt , 2000, 2001. # Bruno Haible , 2004, 2007. # Christian Stimming , 2006. # Dennis Stampfer , 2004. # Karl Eichwalder , 2001. # Simon Hürlimann , 2004. # Stefan Siegel , 2001. # Tobias Quathamer , 2006, 2007, 2008, 2009, 2010. # Translations taken from ICU SVN on 2007-09-09 # Wolfgang Rohdewald , 2005. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-11-04 14:05+0100\n" "Last-Translator: Holger Wansing \n" "Language-Team: Debian German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "Btrfs-Journaling-Dateisystem" partman-btrfs-14ubuntu2/debian/po/sq.po0000664000000000000000000000261112274263662015132 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Albanian messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # # # # Translations from iso-codes: # Alastair McKinstry , 2004 # Elian Myftiu , 2004,2006. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-02-21 18:30+0100\n" "Last-Translator: Elian Myftiu \n" "Language-Team: Albanian \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 #, fuzzy msgid "btrfs journaling file system" msgstr "Filesistem Ext3 journaling" partman-btrfs-14ubuntu2/debian/po/dz.po0000664000000000000000000000300512274263662015122 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # translation of dz.po to Dzongkha # Translation of debian-installer level 1 Dzongkha # Debian Installer master translation file template # Copyright @ 2006 Free Software Foundation, Inc. # Sonam Rinchen , 2006. # # # Translations from iso-codes: # Free Software Foundation, Inc., 2006 # Kinley Tshering , 2006 # msgid "" msgstr "" "Project-Id-Version: dDz.po\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2012-02-29 04:41-0500\n" "Last-Translator: Jurmey Rabgay \n" "Language-Team: Dzongkha \n" "Language: dz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "btrfs" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 msgid "btrfs journaling file system" msgstr "btrfs ཇོར་ན་ལིང་ཡིག་སྣོད་རིམ་ལུགས།" partman-btrfs-14ubuntu2/debian/po/tl.po0000664000000000000000000000341112274263662015125 0ustar # THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES # The master files can be found under packages/po/ # # DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST # # Tagalog messages for debian-installer. # Copyright (C) 2004-2010 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Ipinamamahagi ang talaksang ito alinsunod sa lisensiya ng debian-installer. # Eric Pareja , 2004-200 # Rick Bahague, Jr. , 2004 # Reviewed by Roel Cantada on Feb-Mar 2005. # Sinuri ni Roel Cantada noong Peb-Mar 2005. # This file is maintained by Eric Pareja # Inaalagaan ang talaksang ito ni Eric Pareja # # ituloy angsulong mga kapatid http://www.upm.edu.ph/~xenos # # # Translations from iso-codes: # Eric Pareja 2005,2006 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-btrfs@packages.debian.org\n" "POT-Creation-Date: 2011-09-27 22:48+0000\n" "PO-Revision-Date: 2010-07-09 22:53+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" "Language: tl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl2: #. File system name (untranslatable in many languages) #. Type: text #. Description #. :sl1: #. Short file system name (untranslatable in many languages) #: ../partman-btrfs.templates:1001 ../partman-btrfs.templates:3001 msgid "btrfs" msgstr "" #. Type: text #. Description #. :sl2: #. File system name #: ../partman-btrfs.templates:2001 #, fuzzy msgid "btrfs journaling file system" msgstr "Ext3 journaling file system" partman-btrfs-14ubuntu2/TODO0000664000000000000000000000174312274263662013004 0ustar * Support for multi-volume btrfs filesystems * Support for other mkfs.btrfs options, if any are useful. * Support for btrfs snapshots / using existing btrfs? * mountoptions is missing a few options that may be worth supporting, including degraded, and all options that require a parameter. * mountoptions contains nobarrier, which is an unsafe option. Remove? Warn? * Resizing? * How about installation into different subvolumes? Example: / (root), /usr, /var and /home each on the same btrfs filesystem, but as separate named subvolumes (root/default, usr, var and home). This would break the one filesystem==one mount concept currently used by the partitioner. Here, one filesystem would be mounted in several places, but with a slightly different subvol mount option. Maybe handle like LVM, where there's a separate dialogue for creating LVs (subvolumes), and then select individual subvolumes on the main partitioning dialogue for mounting in a given location. partman-btrfs-14ubuntu2/parted_names/0000775000000000000000000000000012274264270014745 5ustar partman-btrfs-14ubuntu2/parted_names/btrfs0000664000000000000000000000000612274263662016010 0ustar btrfs