partman-efi/0000755000000000000000000000000011741307552010154 5ustar partman-efi/choose_method/0000755000000000000000000000000011516066537013001 5ustar partman-efi/choose_method/_numbers0000644000000000000000000000000711516066537014533 0ustar 45 efi partman-efi/choose_method/efi/0000755000000000000000000000000011730125670013534 5ustar partman-efi/choose_method/efi/do_option0000755000000000000000000000062511730122156015453 0ustar #!/bin/sh dev=$2 id=$3 mkdir -p $dev/$id echo efi >$dev/$id/method # See comment in commit.d/format_efi. We check again here to make the # confirm-changes screen less scary. if [ -f $dev/$id/detected_filesystem ]; then rm -f $dev/$id/format else >$dev/$id/format fi >$dev/$id/bootable >$dev/$id/efi_bootable rm -f $dev/$id/use_filesystem rm -f $dev/$id/filesystem rm -f $dev/$id/mountpoint exit 0 partman-efi/choose_method/efi/choices0000755000000000000000000000024511516066537015110 0ustar #!/bin/sh . /usr/share/debconf/confmodule dev=$1 id=$2 [ -e /var/lib/partman/efi ] || exit 0 db_metaget partman-efi/text/efi description printf "efi\t${RET}\n" partman-efi/check.d/0000755000000000000000000000000012025662336011453 5ustar partman-efi/check.d/_numbers0000644000000000000000000000000711516066537013212 0ustar 07 efi partman-efi/check.d/efi0000755000000000000000000000271212025662216012143 0ustar #!/bin/sh . /lib/partman/lib/base.sh have_efi=no new_efi_size= # Is there at least one efi-partition? 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,$size" done close_dialog for part in $partitions; do id=${part%%,*} part=${part#*,} num=${part%%,*} size=${part#*,} [ -f $id/method ] || continue method=$(cat $id/method) if [ "$method" = efi ] && [ -f $id/bootable ]; then have_efi=yes if [ -f $id/format ] && [ -z "$new_efi_size" ]; then new_efi_size="$size" fi fi done done # On Intel Macs, it isn't entirely clear that you have to have an EFI system # partition; see http://refit.sourceforge.net/myths/ for further details. In # the meantime, we only force an EFI system partition on ia64. if [ -e /var/lib/partman/efi ] && \ [ "$(udpkg --print-architecture)" = ia64 ] && \ [ "$have_efi" = no ]; then db_input critical partman-efi/no_efi || true db_go || exit 1 db_get partman-efi/no_efi if [ "$RET" = true ]; then exit 1 fi fi ARCH="$(archdetect)" # Experimentally-verified minimum size for a FAT32 filesystem created using # libparted. case $ARCH in i386/*|amd64/*) if [ "$new_efi_size" ] && longint_le "$new_efi_size" 34091007; then db_input critical partman-efi/too_small_efi || true db_go || true exit 1 fi ;; esac exit 0 partman-efi/commit.d/0000755000000000000000000000000012247636713011674 5ustar partman-efi/commit.d/_numbers0000644000000000000000000000001611516066537013425 0ustar 50 format_efi partman-efi/commit.d/format_efi0000755000000000000000000000512512247636713013740 0ustar #!/bin/sh . /lib/partman/lib/base.sh ARCH="$(archdetect)" case $ARCH in i386/*|amd64/*) new_efi_fs=fat32 ;; *) new_efi_fs=fat16 ;; esac if search-path mkfs.fat; then MKFS_FAT=mkfs.fat else MKFS_FAT=mkdosfs fi 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 ] || continue # Formatting an EFI System Partition that already has a # filesystem on it is dangerous # (https://bugs.launchpad.net/bugs/769669). The least bad # option seems to be to skip such partitions entirely. if [ -f $id/detected_filesystem ]; then continue fi method=$(cat $id/method) if [ "$method" = efi ]; then if [ -f $id/formatted ] && \ [ $id/formatted -nt $id/method ]; then continue fi log "Try to format EFI $new_efi_fs fs in $dev/$id" template=partman-basicfilesystems/progress_formatting open_dialog PARTITION_INFO $id read_line x1 x2 x3 x4 x5 device x6 close_dialog RET='' db_metaget partman/filesystem_short/efi description || RET='' [ "$RET" ] || RET=efi 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 log_sector_size="$(blockdev --getss "$(cat device)")" if [ "$log_sector_size" = 512 ]; then mkdosfs_opts= else # mkdosfs has trouble handling cluster # calculations for non-512-byte logical # sectors. Forcing one sector per cluster # avoids this as long as the filesystem # isn't too large, but that shouldn't be a # problem for EFI System Partitions. mkdosfs_opts='-s 1' fi if log-output -t partman --pass-stdout \ $MKFS_FAT -F "${new_efi_fs#fat}" \ -S "$log_sector_size" \ $mkdosfs_opts \ "$device" >/dev/null; then sync status=OK else status=failed fi db_progress STOP if [ "$status" != OK ]; then db_subst partman-basicfilesystems/create_failed TYPE efi db_subst partman-basicfilesystems/create_failed PARTITION "$num" db_subst partman-basicfilesystems/create_failed DEVICE $(humandev $(cat device)) db_input critical partman-basicfilesystems/create_failed || true db_go || true #disable_swap exit 1 fi >$id/formatted fi done done #disable_swap partman-efi/debian/0000755000000000000000000000000012247636747011413 5ustar partman-efi/debian/di-numbers0000644000000000000000000000015311516066537013372 0ustar choose_method lib/partman check.d lib/partman commit.d lib/partman init.d lib/partman update.d lib/partman partman-efi/debian/rules0000755000000000000000000000005111516066537012457 0ustar #! /usr/bin/make -f %: dh $@ --with d-i partman-efi/debian/install0000644000000000000000000000005511516066537012774 0ustar fstab.d lib/partman parted_names lib/partman partman-efi/debian/partman-efi.templates0000644000000000000000000000253011730107772015521 0ustar Template: partman-target/arch_help/ia64 Type: text # :sl5: _Description: In order to start your new system, the firmware on your Itanium system loads the boot loader from its private EFI partition on the hard disk. The boot loader then loads the operating system from that same partition. An EFI partition has a FAT16 file system formatted on it and the bootable flag set. Most installations place the EFI partition on the first primary partition of the same hard disk that holds the root file system. Template: partman-efi/text/efi Type: text # :sl5: _Description: EFI boot partition Template: partman-efi/no_efi Type: boolean # :sl5: _Description: Go back to the menu and resume partitioning? No EFI partition was found. Template: partman/method_long/efi Type: text # :sl5: _Description: EFI boot partition Template: partman/method_short/efi Type: text # :sl5: # short variant of 'EFI boot partition' # Up to 10 character positions _Description: EFIboot #Template: partman/filesystem_long/efi #Type: text #_Description: EFI boot partition (FAT16) Template: partman/filesystem_short/efi Type: text # :sl5: _Description: EFI-fat16 Template: partman-efi/too_small_efi Type: error # :sl5: _Description: EFI partition too small EFI boot partitions on this architecture cannot be created with a size less than 35 MB. Please make the EFI boot partition larger. partman-efi/debian/copyright0000644000000000000000000000023611516066537013337 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-efi/debian/po/0000755000000000000000000000000011743522201012004 5ustar partman-efi/debian/po/tr.po0000644000000000000000000000656211741270023013002 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. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-10-29 17:13+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Yeni Debian sisteminizi başlatmak amacıyla Itanium sisteminizdeki aygıt " "yazılımı sabit diskteki özel EFI bölümünden açılış önyükleyiciyi yükler. " "Açılış önyükleyici daha sonra aynı bölümden işletim sistemini yükler. Bir " "EFI bölümü FAT16 olarak biçimlendirilmiş ve önyüklenebilir bayrağı " "etkinleştirilmiş bir dosya sistemine sahiptir. Birçok kurulum EFI bölümünü, " "kök dosya sistemini de barındıran sabit diskin ilk birincil bölümüne " "yerleştirir." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI önyükleme bölümü" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Menüye geri dönerek bölümleme işlemine devam edilsin mi?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Herhangi bir EFI bölümü bulunamadı." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIönyükle" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI önyükleme bölümü" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ro.po0000644000000000000000000001007411741270022012765 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Pentru a porni noul dumneavoastră sistem, firmware-ul de pe sistemul " "dumneavoastră Itanium ia încărcătorul de sistem de pe partiția sa privată " "EFI de pe discul fix. Încărcătorul de sistem pornește apoi sistemul de " "operare de pe aceiași partiție. O partiție EFI este formatată cu sistemul de " "fișiere FAT16 și are fanionul „bootable” activat. Majoritatea instalărilor " "plasează partiția EFI pe prima partiție primară a aceluiași disc fix care " "conține sistemul de fișiere rădăcină." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Partiție de pornire EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Vă întoarceți la meniu și reluați partiționarea?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Nu s-a găsit nici o partiție EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Partiție de pornire EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/zh_TW.po0000644000000000000000000000565511741270023013412 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. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "為了能啟動您的新系統,您的 Itanium 系統的韌體將會從硬碟上的專用 EFI 分割區中" "載入開機程式,這個開機程式再從同一分割區中載入作業系統。而在 EFI 分割區上會有" "一個格式化過,並設定為可開機的 FAT16 檔案系統。大部份的安裝程式會將 EFI 分割" "區置於和包含 root 檔案系統之同一顆硬碟的第一個主要分割區上。" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI 的啟動分割區" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "是否返回選單並重新分割磁區?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "找不到 EFI 分割區。" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI 的啟動分割區" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ru.po0000644000000000000000000000727711741270023013007 0ustar # THIS FILE IS AUTOMATICALLY GENERATED FROM THE MASTER FILE # packages/po/ru.po # # DO NOT MODIFY IT 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. # Russian L10N Team , 2004. # Yuri Kozlov , 2004, 2005. # Dmitry Beloglazov , 2005. # Yuri Kozlov , 2005, 2006. # msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2005-07-25 21:11+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" "X-Generator: KBabel 1.9.1\n" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Для запуска новой системы Debian на машинах Itanium, микропрограмма " "загружает системный загрузчик из своего собственного EFI раздела жёсткого " "диска. Затем системный загрузчик загружает операционную систему с этого же " "раздела. Раздел EFI содержит файловую систему FAT16 и на нём установлен " "загрузочный флаг. Большинство установок размещают EFI раздел в первый " "первичный раздел того же жёсткого диска, на котором содержится корневая " "файловая система." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "загрузочный раздел EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Вернуться в меню и продолжить разметку?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Не найдено разделов EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "загрузочный раздел EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/nl.po0000644000000000000000000000614311741270022012760 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 msgid "" msgstr "" "Project-Id-Version: nl\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-10-25 14:06+0200\n" "Last-Translator: Eric Spreen \n" "Language-Team: 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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Om uw nieuwe systeem te kunnen opstarten dient de firmware van uw Itanium-" "systeem de opstartlader te laden uit de private-EFI-partitie op de harde " "schijf. De opstartlader laad vervolgens het besturingssysteem vanuit " "dezelfde partitie. Een EFI-partitie heeft een FAT16 bestandssysteem en heeft " "een actieve opstartbaar-vlag. De meeste installaties plaatsen de EFI-" "partitie op de eerste primaire partitie van de schijf die het " "basisbestandssysteem bevat." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI-opstartpartitie" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Terug naar het menu om met de schijfindeling verder te gaan?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Er is geen EFI-partitie gevonden." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFI-start" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI-opstartpartitie" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/bg.po0000644000000000000000000001036211741270021012734 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "За да стартирате Вашата нова система, фърмуерът на Вашата система Itanium " "зарежда програмата за начално зареждане от собствения си дял EFI на твърдия " "диск. След това програмата за начално зареждане зарежда операционната " "система от същия дял. Дяловете EFI са форматирани с файлова система FAT16 и " "са активирани за начално зареждане. Повечето инсталации слагат дяловете EFI " "на първия главен дял на същия твърд диск, който съдържа кореновата файлова " "система." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Зареждащ дял на EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Връщане в менюто и преразделяне?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Не беше открит дял на EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFI-начален" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Зареждащ дял на EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/sv.po0000644000000000000000000000631111741270023012775 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 # # THIS FILE IS AUTOMATICALLY GENERATED FROM THE MASTER FILE # packages/po/sv.po # # DO NOT MODIFY IT 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. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-03-19 11:54+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "För att starta ditt nya system måste den fasta programvaran på ditt Itanium-" "system läsa in starthanteraren från dess privata EFI-partition på " "hårddisken. Starthanteraren läser sedan in operativsystemet från samma " "partition. En EFI-partition har ett FAT16-filsystem formaterat på sig och " "startbar-flaggan aktiverad. De flesta installationer lägger EFI-partitionen " "på den första primära partitionen på samma hårddisk som rymmer " "rotfilsystemet." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI-startpartition" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Gå tillbaka till menyn och återuppta partitioneringen?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Hittade ingen EFI-partition." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIstart" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI-startpartition" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ca.po0000644000000000000000000000624311741270021012732 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. # msgid "" msgstr "" "Project-Id-Version: debian-installer squeeze\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Per a iniciar el sistema nou, el microprogramari al vostre sistema Itanium " "carrega el carregador des de la seua partició EFI privada del disc dur. " "Aleshores el carregador inicia el sistema operatiu des d'aquesta mateixa " "partició. Una partició EFI té un sistema de fitxers FAT16 formatat en ella i " "el senyalador d'arrencable establert. La majoria de les instaŀlacions " "ubiquen la partició EFI a la primera partició primària del mateix disc on " "està el sistema de fitxers arrel." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Partició d'arrencada EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Voleu tornar al menú i continuar amb la partició?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "No s'ha trobat cap partició EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "arrencadaEFI" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Partició d'arrencada EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/pt.po0000644000000000000000000000573411741270022012777 0ustar # THIS FILE IS AUTOMATICALLY GENERATED FROM THE MASTER FILE # packages/po/pt.po # # DO NOT MODIFY IT DIRECTLY : SUCH CHANGES WILL BE LOST # # Portuguese messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2005-06-14 22:05+0000\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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "De modo a iniciar o seu novo sistema, o firmware no seu sistema Itanium " "carrega o carregador do sistema a partir da sua partição EFI privada no " "disco rígido. O carregador do sistema então carrega o sistema operativo a " "partir dessa partição. Uma partição EFI tem um sistema de ficheiros FAT16 " "formatado e com a flag de arranque activa. A maioria das instalações colocam " "a partição EFI na primeira partição primária no mesmo disco rígido que " "contém o sistema de ficheiros raíz." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Partição de arranque EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Voltar atrás para o menu e continuar o particionamento?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Não foi encontrada nenhuma partição EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Partição de arranque EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/sl.po0000644000000000000000000000672611741270023012775 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 # THIS FILE IS AUTOMATICALLY GENERATED FROM THE MASTER FILE # packages/po/sl.po # # DO NOT MODIFY IT DIRECTLY : SUCH CHANGES WILL BE LOST # # # 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. msgid "" msgstr "" "Project-Id-Version: sl\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Ko zaženete vaš novi sistem bo strojna programska oprema na sistemu Itanium " "naložila zagonski nalagalnik iz svojega zasebnega razdelka EFI na trdem " "disku. Zagonski nalagalnik potem zažene operacijski sistem z istega " "razdelka. Razdelek EFI vsebuje formatiran datotečni sistem FAT16 in ima " "nastavljeno zagonsko zastavico. Večina namestitev uvrsti razdelek EFI na " "prvi primaren razdelek diska, ki vsebuje korenski datotečni sistem." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Zagonski razdelek EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Se želite vrniti na meni in nadaljevati razdeljevanje?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Ni mogoče najti razdelka EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIzagon" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Zagonski razdelek EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/se.po0000644000000000000000000000525611741270023012763 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 #, fuzzy msgid "EFI boot partition" msgstr "Formatere partišuvnna:" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 #, fuzzy msgid "Go back to the menu and resume partitioning?" msgstr "Mana ruovttoluotta fállui ja divo meattáhusaid?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 #, fuzzy msgid "No EFI partition was found." msgstr "Eai gávdnon partišunerehahtti media." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 #, fuzzy msgid "EFI-fat16" msgstr "fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Formatere partišuvnna:" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/sk.po0000644000000000000000000000603611741270023012766 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. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-03-21 02:13+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Na spustenie vášho nového systému je nutné, aby váš systém Itanium načítal " "zavádzač z jeho vyhradenej EFI oblasti na pevnom disku. Zavádzač potom " "načíta operačný systém z tej istej oblasti. EFI oblasť obsahuje súborový " "systém FAT16 a má nastavený príznak štartovania. Väčšina inštalácií " "umiestňuje EFI oblasť na prvú primárnu oblasť toho istého disku, na ktorom " "je aj koreňový súborový systém." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Štartovacia EFI oblasť" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Vrátiť sa späť do menu a pokračovať v rozdeľovaní?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Nebola nájdená žiadna EFI oblasť." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Štartovacia EFI oblasť" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ka.po0000644000000000000000000001002611741270022012735 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 # msgid "" msgstr "" "Project-Id-Version: debian-installer.2006071\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Itanium-ზე ახალი სისტემის გასაშვებად მიკროპროგრამა მყარი დისკის თავისი EFI " "დანაყოფიდან ტვირთავს სისტემურ ჩამტვირთველს, რომელიც შემდგომში ტვირთავს " "ოპერაციულ სისტემას იმავე დანაყოფიდან. EFI დანაყოფი დაფორმატებულია FAT 16-ით " "და მასზე დაყენებულია ჩატვირთვის ალამი. ინსტალაციების უმეტესობა EFI დანაყოფს " "ათავსებს იმ დისკის პირველივე პირველად დანაყოფზე, რომელიც შეიცავს ძირითად " "ფაილურ სისტემას." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI ჩატვირთვის დანაყოფი" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "დავბრუნდეთ მენიუში და გავაგრძელოთ დაყოფა?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "EFI დანაყოფი ვერ მოიძებნა." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI ჩატვირთვის დანაყოფი" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/el.po0000644000000000000000000001002411741270021012737 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. msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Για την εκκίνηση του νέου συστήματός σας, το firmware του Itanium συστήματός " "σας εκτελεί το φορτωτή εκκίνησης από την δεσμευμένη κατάτμηση EFI στον " "σκληρό δίσκο. Ο φορτωτής εκκίνησης τότε φορτώνει το λειτουργικό σύστημα από " "την ίδια κατάτμηση. Μια κατάτμηση EFI είναι διαμορφωμένη με σύστημα αρχείων " "FAT16 και ορισμένη σαν εκκινήσιμη. Οι περισσότερες εγκαταστάσεις τοποθετούν " "την κατάτμηση EFI στην πρώτη κύρια κατάτμηση στον ίδιο σκληρό που φιλοξενεί " "το ριζικό σύστημα αρχείων." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "κατάτμηση εκκίνησης για το EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Θέλετε να επιστρέψετε στο μενού για να συνεχίσετε την διαμέριση;" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Δε βρέθηκε κατάτμηση EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "κατάτμηση εκκίνησης για το EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ast.po0000644000000000000000000000657111741270021013142 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "El firmware del sistema Itanium tien de cargar el cargador d'arranque de la " "partición privada EFI nel discu duru pa poder arrancar el so nuevu sistema. " "El cargador d'arranque cargará dempués el sistema operativu d'esa mesma " "partición. Una partición EFI tien de tar formateada con un sistema de " "ficheros FAT16 y tener fixáu l'indicador d'arranque. La mayor parte de les " "instalaciones alluguen la partición EFI na primer partición primaria del " "mesmu discu duru au s'alcuentra el sistema de ficheros raíz." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Partición d'arranque EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "¿Volver al menú y resumir el particionáu?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Nun s'atopó partición EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Partición d'arranque EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/POTFILES.in0000644000000000000000000000006011516066537013572 0ustar [type: gettext/rfc822deb] partman-efi.templates partman-efi/debian/po/fi.po0000644000000000000000000000630211741270021012741 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. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Kun uusi järjestelmä käynnistetään lataa Itanium-järjestelmän " "laiteohjelmisto alkulatausohjelman kiintolevyltä yksityiseltä EFI-osioltaan. " "Alkulatausohjelma lataa sitten käyttöjärjestelmän tuolta samalta osiolta. " "EFI-osio on alustettu FAT16-tiedostojärjestelmäksi ja käynnistyskelpoisuuden " "ilmaisin on päällä. Useimmat laitteistot sijoittavat EFI-osion " "juuritiedostojärjestelmän kanssa samalle kiintolevylle sen ensimmäiseksi " "ensisijaiseksi osioksi." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI-käynnistysosio" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Palataanko valikkoon jatkamaan osioiden tekoa?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Yhtään EFI-osiota ei löytynyt." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI-käynnistysosio" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/lo.po0000644000000000000000000000721211741270022012757 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-11-26 09:11+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "ໃນການເລີ້ມບູດລະບົບທີ່ຕິດຕັ້ງໃໝ່ຂອງເຈົ້າ ເຟີມແວໃນລະບົບ Itanium " "ຂອງເຈົ້າຈະໂຫຼດບູດໂຫຼດເດີຈາກພາທີເຊິນສະເພາະແບບ EFI " "ຈາກຮາດດິດຈາກນັ້ນບູດໂຫຼດເດີຈຶ່ງຈະໂຫຼດລະບົບປະຕິບັດການຈາກພາທີເຊິນດຽວກັນຂຶ້ນມາ ພາທີເຊິນ EFI " "ຈະຟໍແມັດໄວ້ດ້ວຍລະບົບແຟ້ມແບບ FAT16 ໂດຍຕັ້ງແຟັກໃຫ້ບູດໄດ້ເອົາໄວ້ ການຕິດຕັ້ງສ່ວນໃຫຍ່ຈະສ້າງພາທີເຊິນ EFI " "ໄວ້ໃນພາທີເຊິນ primary ທຳອິດຂອງຮາດດິດດຽວກັບທີ່ເກັບລະບົບແຟ້ມພື້ນ" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "ພາທີເຊິນບູດ EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "ຈະກັບໄປຍັງລາຍການເພື່ອແບ່ງພາທິຊັ້ນໃໝ່ ຫຼື ບໍ?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "ບໍ່ເຫັນພາທີເຊິນ EFI" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFI ບູດ" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "ພາທີເຊິນບູດ EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/km.po0000644000000000000000000001025411741270022012754 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 # translation of km.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# # # Khoem Sokhem , 2006, 2007, 2008, 2010. msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_km\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-06-21 09:08+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "ដើម្បី​ចាប់ផ្ដើម​ប្រព័ន្ធ​ថ្មី​របស់​អ្នក កម្មវិធី​បង្កប់​នៅ​លើ​ប្រព័ន្ធ Itanium របស់​អ្នក នឹង​ផ្ទុក​កម្មវិធី​ចាប់ផ្ដើម​" "ប្រព័ន្ធ​ពី​ភាគថាស EFI ឯកជន​របស់​វា នៅ​លើ​ថាស​រឹង ។ បន្ទាប់​មក កម្មវិធី​ចាប់ផ្ដើម​ប្រព័ន្ធ​នឹង​ផ្ទុក​ប្រព័ន្ធ​" "ប្រតិបត្តិការ​ពី​ភាគថាស​ដដែល​នោះ ។ ភាគថាស EFI មាន​ប្រព័ន្ធ​ឯកសារ FAT16 ដែល​បាន​ធ្វើ​ទ្រង់ទ្រាយ​រួច " "ហើយ​បាន​កំណត់​ទង់​ចាប់ផ្ដើម ។ ការ​ដំឡើង​ភាគ​ច្រើន​ដាក់​ភាគថាស EFI នៅ​លើ​ភាគថាស​ចម្បង​ទីមួយ​នៃ​ថាស​រឹង​តែ​" "មួយ ដែល​ដាក់​ប្រព័ន្ធ​ឯកសារ root ។" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "ភាគថាស​ចាប់ផ្ដើម EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "ត្រឡប់​ទៅ​ម៉ឺនុយ ហើយ​បន្ត​ចែក​ភាគថាស ?​" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "រក​មិន​ឃើញ​ភាគថាស EFI ។" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "ភាគថាស​ចាប់ផ្ដើម EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/be.po0000644000000000000000000000762611741270021012743 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. # Pavel Piatruk , 2006. # Nasciona Piatrouskaja , 2006. # Hleb Rubanau , 2006.#. # Pavel Piatruk , 2007. # Pavel Piatruk , 2006, 2007, 2008. # Hleb Rubanau , 2006, 2007.#. # Nasciona Piatrouskaja , 2006. # Andrei Darashenka , 2005.#. # Paul Petruk , 2007. # Hleb Rubanau , 2006. # Paul Petruk , 2007.##. # Pavel Piatruk , 2008, 2009. msgid "" msgstr "" "Project-Id-Version: be\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-07-06 14:53+0300\n" "Last-Translator: Viktar Siarheichyk \n" "Language-Team: Belarusian (Official spelling) \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Каб запусціць Вашую новую сістэму, прашыўка сістэмы Itanium, якую Вы " "ўжываеце, загружае пачатковы загрузчык са свайго асабістага падзела EFI на " "жорсткім дыску. Загрузчык у сваю чаргу загружае з таго ж самага падзелу " "аперацыйную сістэму. Падзел EFI мае файлавую сістэму тыпу FAT16 і знак " "\"загрузачны\". Большасць усталёўшчыкаў месціць падзел EFI на першым " "асноўным падзеле таго жорсткага дыску, дзе знаходзіцца каранёвая файлавая " "сістэма." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Загрузачны падзел EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Вярнуцца ў меню і зноў распачаць перадзел дыскаў?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Не знойдзена падзела EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Загрузачны падзел EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/nn.po0000644000000000000000000000625211741270022012763 0ustar # THIS FILE IS AUTOMATICALLY GENERATED FROM THE MASTER FILE # packages/po/nn.po # # DO NOT MODIFY IT DIRECTLY : SUCH CHANGES WILL BE LOST # # translation of nn.po to Norwegian Nynorsk # translation of debian-installer.po to Norwegian nynorsk # Norwegian Nynorsk messages for debian-installer. # Copyright (C) 2003 Software in the Public Interest, Inc. # This file is distributed under the same license as debian-installer. # Håvard Korsvoll , 2004, 2005, 2006. # msgid "" msgstr "" "Project-Id-Version: nn\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2006-06-19 11:01+0200\n" "Last-Translator: Håvard Korsvoll \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" "X-Generator: KBabel 1.10.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "For å starte opp det nye systemet ditt, lastar maskinvara på itaniumsystemet " "oppstartslastaren frå sin eigen private EFI-partisjon på harddisken. " "Oppstartslastaren lastar så operativsystemet frå den same partisjonen. Ein " "EFI-partisjon er formatert med FAT16-filsystemet og har slått på " "oppstartsflagget. Dei fleste installasjonar plasserer EFI-partisjonen på den " "første primære partisjonen på den same harddisken som inneheld " "rotfilsystemet." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI oppstartspartisjon" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Vil du gå tilbake til menyen og fortsette partisjoneringa?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Fann ingen EFI-partisjon." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFI-oppstart" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI oppstartspartisjon" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/vi.po0000644000000000000000000000660311741270023012767 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 # msgid "" msgstr "" "Project-Id-Version: debian-installer Level 1\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Để khởi động hệ thống mới, phần vững trên hệ thống Itanium sẽ nạp bộ nạp " "khởi động từ phân vùng EFI riêng của nó trên đĩa cứng. Bộ nạp khởi động thì " "nạp hệ điều hành từ cùng phân vùng. Phân vùng kiểu EFI có một hệ thống tập " "tin FAT16 được định dạng trên nó, cũng có cờ khởi động được đã đặt. Phần lớn " "tiến trình cài đặt để phân vùng EFI trên phân vùng chính thứ nhất của cùng " "đĩa cứng chứa hệ thống tập tin gốc." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Phân vùng khởi động EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Trở về trình đơn và tiếp tục lại việc phân vùng không?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Không tìm thấy phân vùng EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "pvkđ_EFI" # Name: don't translate/Tên: đừng dịch #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Phân vùng khởi động EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ne.po0000644000000000000000000001017611741270022012752 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. msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_ne\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "तपाईँको नयाँ प्रणाली सुरू गर्नका लागि, हार्ड डिस्कमा तपाईँको इटानियम प्रणालीमा भएको " "फर्मवेयरले यसको निजी EFI विभाजनबाट बुट लोडरलाई लोड गर्छ । त्यसपछि बुट लोडरले उही " "विभाजनबाट सञ्चालन प्रणाली लोड गर्छ । एउटा EFI विभाजन सँग यसैमा ढाँचाबद्ध भएको FAT16 " "फाइल प्रणाली र बुटेवल झण्डा सेट हुन्छ । प्राय स्थापनाहरुले मूल फाइल प्रणालीलाई समात्ने उही " "हार्ड डिस्कको पहिलो प्राथमिक विभाजनमा EFI विभाजन राख्दछ । " #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI बुट विभाजन" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "मेनुमा फर्केर जानुहुन्छ र विभाजनलाई पुन: निरन्तरता दिनुहुन्छ?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "कुनै EFI विभाजन फेला परेन ।" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFI बुट" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI बुट विभाजन" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/te.po0000644000000000000000000000741711741270023012765 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 msgid "" msgstr "" "Project-Id-Version: te\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-10-24 10:07+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "మీ కొత్త వ్యవస్థ ప్రారంభానికి, మీ ఇటానియమ్ వ్యవస్థ పై ఫర్మ్ వేర్, హార్డ్ డిస్క్ యొక్క ప్రైవేట్ EFI విభజన " "నుండి బూట్ లోడర్ ను ఎక్కించాలి. బూట్ లోడర్ అదే విభజన నుండి నిర్వహణ వ్యవస్థను ఎక్కిస్తుంది. ఒక " "EFI విభజన FAT16 ఫైల్ వ్యవస్థతో మరియుబూటబుల్ ప్లాగ్ చేతనమయ్యి వుండాలి. చాలా స్థాపనలలో EFI " "విభజన రూట్ ఫైల్ వ్యవస్థ వుండే హార్డ్ డిస్క్ లో మొదటి ప్రధాన విభజన లో వుంటుంది." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI బూట్ విభజన" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "మెనూకి తిరిగి వెళ్లి పార్టిషనుచేయుట కొనసాగించాలా?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "EFI బూట్ విభజన కనబడలేదు" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI బూట్ విభజన" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ja.po0000644000000000000000000000644611741270022012747 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. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-09-02 10:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "あなたの新しいシステムを開始するために、Itanium システムのファームウェアは" "ハードディスクにあるプライベートな EFI パーティションからブートローダをロード" "します。ブートローダはその後同じパーティションからオペレーティングシステムを" "ロードします。EFI パーティションは FAT16 ファイルシステムとして初期化され、" "ブート可能フラグがセットされたものです。ほとんどのインストールでは EFI パー" "ティションをルートファイルシステムを保持する同じハードディスクの最初のプライ" "マリパーティションに配置します。" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI ブートパーティション" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "メニューに戻ってパーティショニングを再開しますか?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "EFI パーティションが見つかりませんでした。" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI ブートパーティション" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/uk.po0000644000000000000000000000770511741270023012774 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Для того, щоб запустити вашу нову систему, вбудоване програмне забезпечення " "вашої системи Itanium завантажує системний завантажувач із його власного " "розділу EFI на жорсткому диску. Потім системний завантажувач завантажує " "операційну систему із того ж розділу. Розділ EFI відформатований " "використовуючи файлову систему FAT16 та має прапорець „завантажувальний“. " "Більшість програм встановлення розміщують розділ EFI на першому первинному " "розділі жорсткого диску, на якому знаходиться коренева файлова система." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "завантажувальний розділ EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Повернутися до меню та продовжити розбивку?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Не знайдений розділ EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "завантажувальний розділ EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ta.po0000644000000000000000000000767311741270023012765 0ustar # THIS FILE IS AUTOMATICALLY GENERATED FROM THE MASTER FILE # packages/po/ta.po # # DO NOT MODIFY IT 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. # # drtvasudevan , 2006. # Damodharan Rajalingam , 2006. msgid "" msgstr "" "Project-Id-Version: ta\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2006-10-12 01:25+0530\n" "Last-Translator: Damodharan Rajalingam \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" "X-Generator: KBabel 1.11.4\n" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "உங்கள் புதிய இயங்கு தளத்தை துவக்க உங்கள் இடானியம் கணினியில் உள்ள ஸ்திர மென்பொருள் வன் " "தட்டில் உள்ள அதன் தனி ஈஎப் ஐ பகிர்விலிருந்து துவக்கியை துவக்கும். பின்னர் துவக்கி இயங்கு " "தளத்தை அதன் பகிர்விலிருந்து ஏற்றும் . ஈஎப்ஐ பகிர்வில் பேட்-16 முறைப் படி ஒழுங்கு படுத்தப் " "பட்டு துவக்க ஏது என குறியிட்டிருக்கும். அனேக நிறுவல்கள் ஈஎப்ஐ பகிர்வை மூல (ரூட்) கோப்பு " "அமைப்பு உள்ள வன் வட்டின் முதன்மை பகிர்வில் நிறுவும்." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "ஈஎப்ஐ பூட் (துவக்கி) பகிர்வு" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "பட்டிக்கு பின் சென்று மீண்டும் பகிர்வை தொடரவா?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "ஈஎப்ஐ பகிர்வு ஏதும் காணவில்லை." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "ஈஎப்ஐ பூட்" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "ஈஎப்ஐ-(பேட்16) FAT16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "ஈஎப்ஐ பூட் (துவக்கி) பகிர்வு" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/bs.po0000644000000000000000000000615511741270021012755 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. msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_bs\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-07-27 18:25+0100\n" "Last-Translator: Armin Beširović \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Kako biste pokrenuli vaš novi sistem, firmware na vašem Itanium sistemu " "učitava boot loader sa njegove zasebne EFI particije na hard disku. Boot " "loader onda učitava operativni sistem sa te iste particije. EFI particija je " "formatirana sa FAT16 datotečnim sistemom i postavljena kao aktivna. Većina " "instalacija postavlja EFI particiju kao prvu primarnu particiju na istom " "hard disku na kojem je i root datotečni sistem." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI boot particija" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Vratiti se nazad na meni i nastaviti particionisanje?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "EFI particija nije pronađena." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI boot particija" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/mr.po0000644000000000000000000000762411741270022012772 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 # # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2009-01-11 20:50+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "तुमची नवीन प्रणाली सुरु करण्यासाठी, तुमच्या इटानीअम संगणकातील फर्मवेअर त्याच्या वैयक्तिक " "ईएफआय विभाजनावरुन आरंभ सूचक हार्डडिस्कमध्ये लोड करतो. नंतर त्याच विभाजनावरुन आरंभ सूचक " "प्रचालन प्रणाली लोड करतो. ईएफआय विभाजनाचे संरूपण फॅट१६ फाइल पद्धतीने केलेले असून त्यावर " "आरंभयोग्य झेंडा निर्धारित केलेला असतो. बहूतेक अधिष्ठापने ज्या हार्डडिस्कवर मूल फाइल प्रणाली " "आहे त्या हार्डडीस्कच्याच प्राथमिक विभाजनावर ईएफआय विभाजन ठेवतात." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "ईएफआय आरंभ विभाजन" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "मेन्यूकडे परतून विभाजन करणे चालू ठेवायचे का?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "कोणतेही ईएफआय विभाजन सापडले नाही." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "ईएफआयआरंभ" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "ईएफआय-फॅट१६" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "ईएफआय आरंभ विभाजन" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/pt_BR.po0000644000000000000000000000615511741270022013360 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. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-07-01 03:39-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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Para que seja possível iniciar seu novo sistema, o firmware em seu sistema " "Itanium carrega o carregador de inicialização de sua partição EFI privada no " "disco rígido. Daí, o carregador de inicialização carrega o sistema " "operacional da mesma partição. Uma partição EFI possui um sistema de " "arquivos formatado como FAT16 e a \"flag\" de inicialização definida. A " "maioria das instalações colocam a partição EFI na primeira partição primária " "do mesmo disco rígido que contém o sistema de arquivos raiz." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Partição de inicialização EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Voltar ao menu e continuar o particionamento?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Nenhuma partição EFI foi encontrada." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Partição de inicialização EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ga.po0000644000000000000000000000577711741270021012751 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. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Chun do chóras nua a thosú, luchtaíonn an dochtearra ar do chóras Itanium an " "luchtóir tosaithe óna dheighilt phríobháideach EFI ar an diosca crua. " "Ansin, luchtaíonn an luchtóir tosaithe an córas oibriúcháin ón deighilt " "chéanna. Tá córas comhad FAT16 formáidithe ar dheighilt EFI, agus tá sé " "marcáilte 'intosaithe'. Go hiondúil, cuirtear an deighilt EFI ar an chéad " "phríomhdheighilt ar an diosca crua a bhfuil an fréamhchóras comhad air." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Deighilt tosaithe EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "" "An bhfuil fonn ort dul ar ais go dtí an roghchlár agus na deighiltí a shocrú " "arís?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Níor aimsíodh deighilt tosaithe EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Deighilt tosaithe EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/de.po0000644000000000000000000001027611741270021012740 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. # 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 # This file is distributed under the same license as debian-installer. # Holger Wansing , 2008, 2009, 2010, 2011. # Jens Seidel , 2005, 2006, 2007, 2008. # Dennis Stampfer , 2003, 2004, 2005. # Alwin Meschede , 2003, 2004. # Bastian Blank , 2003. # Jan Luebbe , 2003. # Thorsten Sauter , 2003. # 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-08-14 21:42+0200\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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Damit Ihr Computer Debian starten kann, lädt die Firmware Ihres Itanium-" "Systems den Bootloader aus der EFI-Partition der Festplatte. Der Bootloader " "lädt dann das Betriebssystem von derselben Partition. Eine EFI-Partition ist " "ein FAT16-Dateisystem mit gesetztem »Boot«-Flag. Die meisten Installationen " "haben die EFI-Partition in der ersten primären Partition der Festplatte, auf " "der sich auch das Wurzeldateisystem befindet." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI-Boot-Partition" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Zurück zum Hauptmenü und Partitionierung fortsetzen?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Es wurde keine EFI-Partition gefunden." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI-Boot-Partition" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/templates.pot0000644000000000000000000000422611730110001014515 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: partman-efi\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "EFI partition too small" msgstr "" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/am.po0000644000000000000000000000527511741270021012750 0ustar # THIS FILE IS AUTOMATICALLY GENERATED FROM THE MASTER FILE # packages/po/am.po # # DO NOT MODIFY IT DIRECTLY : SUCH CHANGES WILL BE LOST # # Amharic translation for debian-installer # Copyright (c) 2006 Rosetta Contributors and Canonical Ltd 2006 # This file is distributed under the same license as the debian-installer package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2007-12-21 00:59+0100\n" "Last-Translator: tegegne tefera \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" "X-Poedit-Language: Amharic\n" "X-Poedit-Country: ETHIOPIA\n" "X-Poedit-Bookmarks: 669,-1,-1,-1,-1,-1,-1,-1,-1,-1\n" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "የኤፊ ስርዓት ማስነሻ ክፋይ፦" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "ወደ ምናሌው ልመለስና ማካፈሉ ይቀጥል?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "ምንም የኤፊ ክፋይ አልተገኘም።" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "እፊቡት" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "ኤፊ-FAT16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "የኤፊ ስርዓት ማስነሻ ክፋይ፦" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/dz.po0000644000000000000000000001064511741270021012765 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-10-03 17:01+0530\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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "ཁྱོད་ཀྱི་རིམ་ལུགས་གསརཔ་འགོ་བཙུགས་ནི་ལུ་ ཁྱོད་ཀྱི་ཨི་ཊ་ནི་ཡམ་རིམ་ལུགས་ནང་གི་ཚོང་ལས་ཁང་གི་ཅ་ཆས་འདི་" "ཧརཌ་ཌིཀིས་ནང་ལུ་བུཊི་མངོན་གསལ་པ་ཁོ་རའི་རང་དབང་གི་ EFI བར་བཅད་ནང་ལས་འདི་ཕབན་ཚུ་འབདཝ་ དེ་" "ལས་བུཊི་མངོན་གསལ་པ་འདི་གིས་བར་བཅད་གཅིག་པ་དེ་ཁར་ལས་བཀོལ་སྤྱོད་འབད་ནིའི་རིམ་ལུགས་ཕབ་ལེན་འབདཝ་" "ཨིན། EFI བར་བཅད་འདི་ལུ་ FAT16 ཡིག་སྣོད་རིམ་ལུགས་རྩ་སྒྲིག་འབད་ཡོདཔ ་དང་བུཊི་འབད་བཏུབ་མི་ཟུར་རྟགས་" "གཞི་སྒྲིག་འབད་འདི་ཡོད། རྩ་བའི་ཡིག་སྣོད་རིམ་ལུགས་འཆང་མི་ཧརཌི་ཌིཀས་གཅིག་པ་འདི་་གིགཞི་རིམ་བར་བཅད་དང་" "པ་འདི་ལུ་ EFI བར་བཅད་འདི་གཞི་བཙུགས་མང་ཤོས་ལུ་གནས་འདི་ཡོད།ོད།་ཨིན།" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI བུཊི་བར་བཅད།" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "དཀར་ཆག་ནང་ལུ་ལོག་འགྱོ་འདི་བར་བཅད་འབད་ནི་ལུ་བསྐྱར་ལོག་འབད?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "EFI བར་བཅད་འཚོལ་མ་ཐོབ།" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFI བུཊི།" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI བུཊི་བར་བཅད།" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/gl.po0000644000000000000000000000630611741270021012751 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. msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2009-11-22 22:28+0100\n" "Last-Translator: Marce Villarino \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Para iniciar o novo sistema, o firmware do sistema Itanium carga o cargador " "de arranque desde a súa partición privada EFI no disco duro. Despois, o " "cargador de arranque carga o sistema operativo desde a mesma partición. Unha " "partición EFI está formatada co sistema de ficheiros FAT16 e ten o indicador " "de inicio activado. A maioría das instalacións sitúan a partición EFI na " "primeira partición primaria do mesmo disco duro que contén a partición raíz." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Partición de arranque EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Desexa voltar ao menú e continuar o particionamento?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Non se atopou ningunha partición EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "InicioEFI" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Partición de arranque EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/da.po0000644000000000000000000000654711741270021012742 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. # 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. # msgid "" msgstr "" "Project-Id-Version: debian-installer_packages_po_sublevel1_da\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-09-12 05:44+0100\n" "Last-Translator: Anders Jenbo \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "For at starte dit nye system, vil dit Itanium-systems firmware indlæse " "opstartsindlæseren fra sin private EFI-partition på harddisken. " "Opstartsindlæseren indlæser derefter styresystemet fra den samme partition. " "EFI-partitionen er formateret med et FAT16-filsystem markeret som opstartbar " "(\"bootable flag\" sat). De fleste installationer lægger EFI-partitionen på " "den første primære partition på den harddisk, der indeholder rodfilsystemet." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI-opstartspatition" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Gå tilbage til menuen og fortsæt partitioneringen?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Fandt ingen EFI-partition." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI-opstartspatition" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ug.po0000644000000000000000000000662311741270023012766 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 # # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-03-24 09:40+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "يېڭى سىستېمىنى قوزغىتىش ئۈچۈن Itanium سىستېمىڭىزدىكى مۇقىم دېتال قاتتىق " "دىسكىدىن شەخسىي EFI رايونىغا قوزغىتىش يېتەكلەش پروگراممىسىنى يۈكلەيدۇ. " "ئاندىن قوزغىتىش يېتەكلەش پروگراممىسى بىر رايوندىكى مەشغۇلات سىستېمىسىنى " "يۈكلەيدۇ. EFI رايون FAT16 ھۆججەت سىستېمىسىدىن بىرنى ۋە قوزغىتىش بەلگىسىنى " "ئۆز ئىچىگە ئالىدۇ. مۇتلەق كۆپ قىسىم ئورنىتىش پروگراممىسى EFI رايوننى غول " "ھۆججەت سىستېمىسى بار دىسكىدىكى بىرىنچى ئاساسلىق(primary) رايوننى بېكىتىدۇ." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI قوزغىتىش رايونى" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "تىزىملىككە قايتىپ رايونغا ئايرىشنى ئەسلىگە كەلتۈرەمسىز؟" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "EFI رايونى تېپىلمىدى." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI قوزغىتىش رايونى" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/et.po0000644000000000000000000000704111741270021012754 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Et su uut süsteemi käivitada, laadib su Itanium süsteemi püsivara kõvakettal " "asuvast privaatsest EFI partitsioonist alglaaduri. Seejärel laeb alglaadur " "samalt partitsioonilt operatsioonisüsteemi. EFI partitsioon on formaaditud " "FAT16 failisüsteemiga ja selle alglaaditavuse lipp on püsti. Enamik " "paigaldusi asetavad EFI partitsiooni juurfailisüsteemi sisaldava kõvaketta " "esimesele primaarsele partitsioonile." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI alglaaduripartitsioon" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Kas naasta menüüsse ja jätkata partitsioneerimist?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Süsteemist ei leitud ühtki EFI partitsiooni." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI alglaaduripartitsioon" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/eo.po0000644000000000000000000000615411741270021012753 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. msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-03-16 20:46-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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Por ekŝargi je via nova sistemo, la mikroprogramaro en via sistemo Itanium " "lanĉas la ekŝargilon el ties privata diskparto EFI en la fiksa disko. Tiam " "la ekŝargilo ŝargas je la operaciumo el la sama diskparto. Diskpartoj EFI " "havas dosieraranĝon FAT16 kaj deklaron pri ekŝargeblo. Plejmulto el la " "sistemoj lokigas la diskparton EFI sur la unua baza diskparto de la sama " "fiksa disko, kiu tenas la radikan dosiersistemon." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Ekŝarga diskparto EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Retroiru al menuo kaj rekomencu diskpartigadon?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Neniu diskparto EFI estis trovata." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIekŝargo" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Ekŝarga diskparto EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/sq.po0000644000000000000000000000575011741270023012776 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. # # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-02-21 18:30+0100\n" "Last-Translator: Elian Myftiu \n" "Language-Team: Albanian \n" "Language: sq\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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Në mënyrë që sistemi tënd i ri Debian të niset, firmware në sistemin tënd " "Itanium ngarkon ngarkuesin e nisjes nga ndarja e tij private EFI në diskun e " "ngurtë. Më pas ngarkuesi i nisjes ngarkon sistemin operativ nga e njëjta " "ndarje. Një ndarje EFI ka një filesistem të formatuar si FAT16 në të dhe " "flag e nisjes të caktuar. Shumica e instalimeve vendosin ndarjen EFI në " "ndarjen e parë të të njëjtit disk të ngurtë që pëmban filesistemin root." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Ndarje nisjeje EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Të kthehem mbrapa në menu dhe të rifilloj ndarjen?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Nuk u gjet asnjë ndarje EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Ndarje nisjeje EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/lt.po0000644000000000000000000000621511741270022012766 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. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-09-07 09:04+0300\n" "Last-Translator: Kęstutis Biliūnas \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" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Tam kad startuotų nauja Debian sistema, Itanium sistemos mikroprograma " "(firmware) įkelia pradinį įkėliklį iš savo savo nuosavo EFI disko skirsnio. " "Po to, pradinis įkėliklis įkelia operacinę sistema iš to paties skirsnio. " "EFI skirsnis formatuotas FAT16 failų sistemai ir turi nustatytą įkėlimo " "(bootable) vėliavėlę. Dažniausiai EFI skirsnis talpinamas pirmame pirminiame " "skirsnyje to pačio disko, kuriame yra ir ir šakninė failų sistema." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI pradinio įkėlimo (boot) disko skirsnis" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Ar grįžti į meniu ir tęsti disko dalijimą?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "EFI disko skirsnis nerastas." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI pradinio įkėlimo (boot) disko skirsnis" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/it.po0000644000000000000000000001017611741270022012764 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-08-21 18:53+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Per poter avviare il nuovo sistema, il firmware del sistema Itanium carica " "il programma di avvio dalla sua partizione EFI privata sul disco fisso. Il " "programma di avvio quindi carica il sistema operativo da quella stessa " "partizione. Una partizione EFI ha un file system formattato con FAT16 e il " "flag avviabile abilitato. La maggior parte delle installazioni mettono la " "partizione EFI sulla prima partizione primaria dello stesso disco che " "contiene il file system root." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Partizione di avvio EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Tornare al menù e riprendere il partizionamento?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Non è stata trovata alcuna partizione EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Partizione di avvio EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/lv.po0000644000000000000000000000616511741270022012774 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 # Aigars Mahinovs , 2006, 2008. # Viesturs Zarins , 2008. # Peteris Krisjanis , 2008. # 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. msgid "" msgstr "" "Project-Id-Version: lv\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-11-17 00:02+0200\n" "Last-Translator: Aigars Mahinovs \n" "Language-Team: Latvian \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Lai palaistu jūsu jauno sistēmu, jūsu Itanium programmaparatūra ielādēs " "palaidēju no savas EFI sadaļas. Palaidējs pēc tam no tās pašas sadaļas " "ielādēs operētājsistēmu. EFI sadaļa ir formatēta ar FAT16 failu sistēmu un " "tai ir iestatīta palaišanas iezīme. Lielākoties EFI sadaļu novieto uz tā " "diska pirmās primārās sadaļas, uz kura atrodas saknes failu sistēma." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI palaižamā sadaļa" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Atgriezties uz izvēlni un turpināt disku dalīšanu?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "EFI sadaļa netika atrasta." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI palaižamā sadaļa" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/hi.po0000644000000000000000000001113511741270022012744 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-09-17 09:17-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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "आपके तंत्र को प्रारंभ करने के लिए, आपके आइटेनियम तंत्र का फर्मवेयर पहले हार्डडिस्क पर इसके " "निजी ईएफआई पार्टिशन से बूटलोडर को लोड करता है. इसके बाद बूटलोडर उसी पार्टिशन से " "प्रचालन तंत्र को लोड करता है. एक ईएफआई पार्टिशन पर FAT16 से फॉर्मेट किया हुआ फाइलतंत्र " "होता है और इस का बूट फ्लैग सेट होता है. अधिकतर संस्थापनों में ईएफआई पार्टिशन को उसी " "हार्डडिस्क के प्रथम प्राथमिक पार्टिशन में रखा जाता है जिसमें कि रूट फाइलतंत्र होता है." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "ईएफआई पार्टिशन" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "मेन्यू में वापस जाकर पार्टिशनिंग जारी रखें?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "कोई ईएफआई पार्टिशन नहीं मिले." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "ईएफआईबूट" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "ईएफआई-एफएटी16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "ईएफआई पार्टिशन" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/nb.po0000644000000000000000000000641111741270022012744 0ustar # THIS FILE IS AUTOMATICALLY GENERATED FROM THE MASTER FILE # packages/po/nb.po # # DO NOT MODIFY IT DIRECTLY : SUCH CHANGES WILL BE LOST # # translation of nb.po to Norwegian Bokmål # translation of debian-installer.po to Norwegian Bokmål # Norwegian Bokmal messages for debian-installer. # 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. # Bjorn Steensrud , 2004. # Hans Fredrik Nordhaug , 2005. # Bjørn Steensrud , 2005, 2006. # msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2005-08-08 15:27+0200\n" "Last-Translator: Bjørn Steensrud \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" "X-Generator: KBabel 1.10\n" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "For å starte ditt nye system vil fastprogrammet på ditt Itanium-system laste " "oppstartslasteren fra sin egen EFI-partisjon på harddisken. " "Oppstartslasteren laster så operativsystemet fra den samme partisjonen. En " "EFI-partisjon har et FAT16-filsystem og er satt oppstartbar. De fleste " "installasjoner legger EFI-partisjonen på den første hovedpartisjonen på " "samme harddisk som rotfilsystemet." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI-oppstartspartisjon" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Vil du å tilbake til menyen og fortsette partisjoneringa?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Fant ingen EFI-partisjon." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI-oppstartspartisjon" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/is.po0000644000000000000000000000677211741270022012772 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Til þess að ræsa kerfið þitt mun fastbúnaður Itanium kerfisins hlaða " "ræsihleðsluforrit frá sinni einka EFI sneið á harða disknum. " "Ræsihleðsluforritið mun síða hlaða stýrikerfinu frá sömu sneið. EFI sneið er " "forsniðin með FAT16 forsniði og er ræsanlegt flaggið sett. Flestar " "uppsetningar koma EFI sneiðinni fyrir á fyrstu aðalsneiðinni á sama harða " "disk og hefur að geyma rótar skráarkerfið." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI ræsisneið" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Fara aftur í valmynd og halda áfram með sneiðingu?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Engin EFI disksneið fannst." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI ræsisneið" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/gu.po0000644000000000000000000000730711741270021012764 0ustar # THIS FILE IS AUTOMATICALLY GENERATED FROM THE MASTER FILE # packages/po/gu.po # # DO NOT MODIFY IT 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# # Kartik Mistry , 2006. # msgid "" msgstr "" "Project-Id-Version: d-i\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2006-07-10 15:53+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" "X-Generator: KBabel 1.9.1\n" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "તમારી નવી સિસ્ટમ શરુ કરવા માટે, તમારી ઇટેનિયમ સિસ્ટમ પરનું ફર્મવેર તેના ખાનગી EFI " "પાર્ટિશનમાંથી બુટ લોડર હાર્ડ ડિસ્કમાં લાવશે. બુટ લોડર પછી ઓપરેટિંગ સિસ્ટમ તે જ " "પાર્ટિશનમાં લાવશે. EFI પાર્ટિશન ફેટ૧૬ ફાઇલ સિસ્ટમથી ફોર્મેટ કરેલ છે અને બૂટબલ નિશાની " "ગોઠવેલ છે. મોટાભાગનાં સ્થાપનો EFI પાર્ટિશનને પ્રથમ પ્રાથમિક પાર્ટિશનમાં તે જ હાર્ડ " "ડિસ્કમાં મૂકે છે જ્યાં રુટ ફાઇલ સિસ્ટમ રહેલ છે." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI બૂટ પાર્ટિશન" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "મેનુમાં પાછા જશો અને પાર્ટિશન કરેલ પાછું ફેરવશો?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "કોઇ EFI પાર્ટિશન મળ્યું નહી." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIબૂટ" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-ફેટ૧૬" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI બૂટ પાર્ટિશન" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/sr.po0000644000000000000000000000701611741270023012774 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 # # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-07-04 18:23+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Да бисте могли да покренете ваш нови систем, фирмвер на вашем Itanium " "систему учитава покретачки програм са своје приватне EFI партиције на хард " "диску. Покретачки програм онда учитава оперативни систем са те исте " "партиције. EFI партиција има FAT16 фајл систем и постављену покретачку " "заставицу. Многе инсталације постављају EFI партицију на прву примарну " "партицију истог диска који садржи и „root“ фајл систем." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI покретачка партиција" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Назад на мени и наставити партиционисање?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Ниједна EFI партиција није нађена." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI покретачка партиција" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/output0000644000000000000000000000000711516066537013301 0ustar 2 utf8 partman-efi/debian/po/mk.po0000644000000000000000000000745311741270022012763 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-07-24 18:23+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: 8bits\n" "Plural-Forms: nplurals=3; plural=(n!=1);\n" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "За да се стартува твојот нов систем, фирмверот на твојот Itanium систем го " "вчитува подигнувачот од неговата приватна EFI партиција на тврдиот диск. Бут " "вчитувачот потоа го вчитува оперативниот систем од таа иста партиција. EFI " "партиција има FAT16 датотечен систем и е означена како бутабилна. Повеќете " "инсталации ќе ја постават EFI партицијата на првата примарна партиција на " "истиот тврд диск кој ја содржи и рут структурата." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI бут партиција" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Врати се назад во менито и продолжи со партиционирање?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Нема најдено EFI партиција." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI бут партиција" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ml.po0000644000000000000000000001102211741270022012747 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-2009 Debian Project # Praveen|പ്രവീണ്‍ A|എ , 2006-2009 # 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# # msgid "" msgstr "" "Project-Id-Version: Debian Installer Level 1\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2009-02-03 14:50-0800\n" "Last-Translator: Praveen Arimbrathodiyil \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "നിങ്ങളുടെ സിസ്റ്റം തുടങ്ങുന്നതിനായി നിങ്ങളുടെ ഇറ്റാനിയം സിസ്റ്റത്തിലെ ഫേംവെയര്‍ ഹാര്‍ഡ് ഡിസ്കിലെ " "അതിന്റെ സ്വകാര്യ EFI ഭാഗത്ത് നിന്നും ബൂട്ട് ലോഡര്‍ ചേര്‍ക്കുന്നു. ബൂട്ട് ലോഡര്‍ അതിനു ശേഷം അതേ ഭാഗത്ത് " "നിന്നും ഓപറേറ്റിങ്ങ് സിസ്റ്റം ചേര്‍ക്കുന്നു. ഒരു EFI ഭാഗത്തിന് FAT16 ഫോര്‍മാറ്റ് ചെയ്തിട്ടുള്ളതും ബൂട്ട് " "ചെയ്യാവുന്നത് എന്ന കൊടി സെറ്റ് ചെയ്തിട്ടുള്ളതുമായ ഫയല്‍ സിസ്റ്റം ഉണ്ടു്. കൂടുതല്‍ ഇന്‍സ്റ്റലേഷനുകളും EFI " "ഭാഗം റൂട്ട് ഫയല്‍ സിസ്റ്റം ഉള്‍​ക്കൊള്ളുന്ന അതേ ഹാര്‍ഡ് ഡിസ്കിന്റെ ആദ്യ പ്രാഥമിക ഭാഗത്താണ് " "വയ്ക്കാറുള്ളത്." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI ബൂട്ട് ഭാഗം" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "മെനുവിലേയ്ക്കു് തിരിച്ചു പോയി വിഭജനം തുടരണമോ?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "EFI ഭാഗമൊന്നും കണ്ടില്ല." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIബൂട്ട്" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI ബൂട്ട് ഭാഗം" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/fa.po0000644000000000000000000000633311741270021012735 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. msgid "" msgstr "" "Project-Id-Version: fa\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-07-29 02:08+0330\n" "Last-Translator: Ebrahim Byagowi \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "به منظور شروع سیستم جدید خود ،firmware خود را در سیستم Itanium بارگذاری و " "راه انداز خود را از پارتیشن مخصوص EFI بر روی هارد دیسک قرار دهید. راه انداز " "سیستم عامل موجود در همان پارتیشن راه بار گزاری می‌کند. یک پارتیشن EFI‌ با فایل " "سیستم FAT16 فرمت بندی شده و مجموعه پرچم های راه انداز بر روی آن تنظیم شده " "است. پارتیشن EFI بیشتر در اولین پارتیشن اصلی دیسک سخت قرار می‌گیرد." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "پارتیشن بوت EFI " #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "آیا میخواهید به منوی اصلی بازگشته و به پارتیشن بندی ادامه دهید ؟" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "هیچ پارتیشن EFI پیدا نشد." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "پارتیشن بوت EFI " #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/tl.po0000644000000000000000000000660711741270023012774 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-2008 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-2008 # 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 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2009-01-14 09:24+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Upang paandarin ang inyong bagong sistemang Debian, ang firmware sa inyong " "sistemang Itanium ay magpapasok ng boot loader mula sa sarili nitong EFI " "partisyon sa hard disk. Tapos magpapasok ang boot loader ng operating " "system mula sa partisyon na iyon. Ang EFI partisyon ay may FAT16 file " "system at naka-set ang bootable flag nito. Karamihan ng mga installation ay " "naglalagay ng EFI partisyon sa unang punong partisyon ng hard disk na " "naglalaman ng root file system." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI boot partition" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Bumalik sa menu at ipagpatuloy ang pag-partisyon?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Walang EFI partisyon na nahanap." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI boot partition" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/zh_CN.po0000644000000000000000000000726411741270023013356 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-08-11 11:13+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "为了启动新系统,您的安腾系统上的固件会从硬盘上其私有的 EFI 分区中装载启动引导" "程序。然后由启动引导程序装载同一分区上的操作系统。EFI 分区包含一个 FAT16 格式" "的文件系统和可启动标志。绝大多数安装程序都将 EFI 分区设为与根文件系统同一硬盘" "的第一主分区。" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI 启动分区" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "返回菜单并恢复分区进程吗?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "未找到 EFI 启动分区。" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI 启动分区" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/kn.po0000644000000000000000000001006111741270022012751 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. # # # Translations from iso-codes: # Shankar Prasad , 2009. # Vikram Vincent , 2007. msgid "" msgstr "" "Project-Id-Version: kn\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-11-01 23:07+0530\n" "Last-Translator: vignesh prabhu \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "ನಿಮ್ಮ ಹೊಸ ವ್ಯವಸ್ಥೆಯನ್ನು ಪ್ರಾರಂಭಿಸಲು, ನಿಮ್ಮ ಇಟಾನಿಯಂ ವ್ಯವಸ್ಥೆಯ ಮೇಲಿರುವ ಫರ್ಮ್ ವೇರ್, ಹಾರ್ಡ್ " "ಡಿಸ್ಕಿನ ಮೇಲಿರುವ ತನ್ನ ಖಾಸಗೀ EFI ವಿಭಜನೆಯಿಂದ ಬೂಟ್ ಲೋಡರನ್ನು ಲೋಡ್ ಮಾಡಿಕೊಳ್ಳುತ್ತದೆ. ನಂತರ " "ಅದೇ ವಿಭಜನೆಯಿಂದ ಆಪರೇಟಿಂಗ್ ಸಿಸ್ಟಮ್ಮನ್ನು ಬೂಟ್ ಲೋಡರ್ ಲೋಡ್ ಮಾಡುತ್ತದೆ. ಒಂದು EFI ವಿಭಜನೆಯು " "ತನ್ನ ಮೇಲೆ ಫಾರ್ಮ್ಯಾಟ್ ಮಾಡಲ್ಪಟ್ಟ FAT16 ಕಡತ ವ್ಯವಸ್ಥೆಯನ್ನು ಹೊಂದಿದ್ದು, ಬೂಟ್ ಫ್ಲ್ಯಾಗ್ ಸೆಟ್ " "ಆಗಿರುತ್ತದೆ. ಬಹುತೇಕ ಇನ್ಸ್ಟಾಲೇಶನ್ ಗಳು EFI ವಿಭಜನೆಯನ್ನು, ರೂಟ್ ಕಡತ ವ್ಯವಸ್ಥೆಯನ್ನು ಹೊದಿರುವ " "ಹಾರ್ಡ್ ಡಿಸ್ಕಿನ, ಮೊದಲ ಪ್ರಾಥಮಿಕ ವಿಭಜನೆಯ ಮೇಲೆ ಇಡುತ್ತವೆ." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI ಬೂಟ್ ವಿಭಜನೆ" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "ವಿಭಜನೆ ಪಟ್ಟಿಗೆ ಹಿಂದಿರುಗಿ ವಿಭಜನೆಯನ್ನು ಪುನಃ ಆರಂಭಿಸಿ" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "ಯಾವುದೇ EFI ಬೂಟ್ ವಿಭಜನೆ ಪತ್ತೆಯಾಗಲಿಲ್ಲ" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "EFI partition too small" msgstr "" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/pa.po0000644000000000000000000000751211741270022012750 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# # # Amanpreet Singh Alam , 2005. # Amanpreet Singh Alam , 2006. # A S Alam , 2006, 2007. # A S Alam , 2007. # Amanpreet Singh Alam , 2008. # Amanpreet Singh Brar , 2008. msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2008-05-02 22:01+0530\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi/Panjabi \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "ਨਵਾਂ ਸਿਸਟਮ ਚਲਾਉਣ ਲਈ, ਤੁਹਾਡੇ Itanium ਸਿਸਟਮ ਤੇ firmware ਹਾਰਡ ਡਿਸਕ ਤੋਂ ਆਪਣੇ ਨਿੱਜੀ EFI " "ਭਾਗ ਤੋਂ ਬੂਟ ਲੋਡਰ ਲੋਡ ਕਰਦਾ ਹੈ। ਬੂਟ ਲੋਡਰ ਫਿਰ ਉਸੇ ਭਾਗ ਤੋਂ ਓਪਰੇਟਿੰਗ ਲੋਡ ਕਰਦਾ ਹੈ। ਇੱਕ EFI ਭਾਗ ਕੋਲ " "FAT16 ਫਾਇਲ ਸਿਸਟਮ ਹੈ ਅਤੇ ਬੂਟ-ਹੋਣ-ਯੋਗ ਚਿੰਨ ਸੈੱਟ ਹੈ। ਬਹੁਤੀਆਂ ਇੰਸਟਾਲੇਸ਼ਨਾਂ EFI ਭਾਗ ਨੂੰ ਉਸੇ ਹਾਰਡ " "ਡਿਸਕ ਦੇ ਪਹਿਲੇ ਪ੍ਰਾਇਮਰੀ ਭਾਗ ਵਿੱਚ ਰੱਖਦਾ ਹੈ ਜੋ root ਫਾਇਲ ਸਿਸਟਮ ਸੰਭਾਲਦਾ ਹੈ।" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI boot ਪਾਰਟੀਸ਼ਨ" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "ਪਿੱਛੇ ਮੇਨੂ ਉੱਤੇ ਜਾਓ ਅਤੇ ਪਾਰਟੀਸ਼ਨਿੰਗ ਮੁੜ ਪ੍ਰਾਪਤ ਕਰੋ?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "ਕੋਈ EFI ਭਾਗ ਨਹੀਂ ਲੱਭਿਆ ਹੈ।" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI boot ਪਾਰਟੀਸ਼ਨ" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/fr.po0000644000000000000000000000665111741270021012761 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. # # 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. msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-03-18 12:08+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Afin de démarrer le nouveau système, le microcode (« firmware ») du système " "Itanium charge le gestionnaire de démarrage depuis la partition spéciale EFI " "du disque dur. Le gestionnaire de démarrage charge ensuite le système " "d'exploitation depuis cette partition. Une partition EFI utilise le système " "de fichiers FAT16 et doit être marquée comme amorçable. Dans la plupart des " "installations, cette partition est la première partition primaire du disque " "qui comporte le système de fichiers racine." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Partition de démarrage EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Revenir au menu et reprendre le partitionnement ?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Aucune partition EFI n'a été trouvée." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Partition de démarrage EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/id.po0000644000000000000000000000737011741270022012746 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Untuk memulai sistem anda yang baru, firmware pada sistem Itanium Anda " "menjalankan boot loader dari partisi EFI pada harddisk. Boot loader kemudian " "akan menjalankan sistem operasi dari partisi yang sama. Sebuah partisi EFI " "memiliki sistem berkas FAT16 yang telah diformat dan memiliki tanda bisa-" "boot. Kebanyakan instalasi menempatkan partisi EFI di partisi primer pertama " "pada harddisk yang sama yang menyimpan sistem berkas root." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Partisi boot EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Kembali ke menu dan melanjutkan proses partisi?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Partisi EFI tidak ditemukan." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "bootEFI" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Partisi boot EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/eu.po0000644000000000000000000000635011741270021012757 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. # Inaki Larranaga Murgoitio 2005 # # Piarres Beobide , 2004, 2005, 2006, 2007, 2008. # Iñaki Larrañaga Murgoitio , 2008. msgid "" msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2009-01-14 09:20+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Debian sistema berria abiarazteko, Itanium sistemako firmwareak abioko " "kargatzailea kargatzen du disko gogorreko EFI partizio pribatutik. Ondoren, " "abioko kargatzaileak sistema eragilea kargatzen du partizio horretatik. EFI " "partizioak FAT16 fitxategi sistema formateatuta du eta abiagarriaren bandera " "ezarrita du. Instalazio gehienetan EFI partizioa erroko fitxategi-sistema " "eusten duen disko gogorraren lehen mailako partizioan jartzen da." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI abioko partizioa" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Menura itzuli eta partizioak egiten jarraitu nahi duzu?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Ez da EFI partiziorik aurkitu." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFI abioa" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI abioko partizioa" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/bn.po0000644000000000000000000001051511741270021012743 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. # msgid "" msgstr "" "Project-Id-Version: bn\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-11-07 17:52+0600\n" "Last-Translator: Israt Jahan \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "আপনার নতুন সিস্টেমকে চালু করার জন্য আইটানিয়াম সিস্টেমের ফার্মওয়্যারটি বুট লোডারকে " "হার্ড ডিস্কে অবস্থিত তার নিজস্ব EFI পার্টিশন থেকে লোড করে। এরপর বুট লোডারটি " "অপারেটিং সিস্টেমকে ঐ একই পার্টিশন থেকে লোড করে। EFI পার্টিশনের ফাইল সিস্টেম হল " "FAT16 এবং এই পার্টিশনের বুটযোগ্য ফ্ল্যাগটি সক্রিয় থাকে। অধিকাংশ সিস্টেমই EFI " "পার্টিশনকে রুট ফাইল সিস্টেমধারী হার্ড ডিস্কের প্রথম প্রাইমারি পার্টিশনে স্থাপন করে।" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI বুট পার্টিশন" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "মেনুতে পেছনে ফিরে গিয়ে পার্টিশন করা আরম্ভ করবো কি?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "কোনো EFI পার্টিশন খুঁজে পাওয়া যায় নি।" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI বুট পার্টিশন" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/kk.po0000644000000000000000000000671211741270022012756 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 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-09-30 13:44+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Сіздің жаңа жүйеңізді іске қосу үшін, firmware Itanium машиналарында қатты " "дискісіндегі өзінің EFI бөлімінен жүйелік жүктеуішті енгізеді. Содан соң, " "жүйелік жүктеуіш операциялық жүйені сол бөлімнен жүктейді. EFI бөлімі FAT16 " "файлдық жүйесіне сай қалыптастырылған және онда жүктеуіш жалауша орнатылған. " "Көптеген қондырғылар EFI бөлімін түбірлік файлдық жүйесі бар сол қатты " "дискінің бірінші біріншілік бөліміне орнатады" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI жүктейтін бөлімі" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Алдыңғы мәзірге оралып, бөлімдеуді жалғастыру керек пе?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "EFI бөлімдері табылмады." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI жүктейтін бөлімі" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ar.po0000644000000000000000000000654211741270021012753 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. msgid "" msgstr "" "Project-Id-Version: ar\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "كي تستطيع بدء تشغيل نظامك الجديد، تقوم البرمجيات الضمنيّة بنظام Itanium الخاص " "بك بتحميل مُحمّل الإقلاع من جزء EFI الخاص به على القرص الصلب. يقوم محمّل " "الإقلاع بعدها بتحميل نظام التشغيل من نفس الجزء. يحتوي جزء EFI نظام ملفات " "FAT16 منسّق عليه وعلامة إقلاع. تضع معظم التثبيتات جزء EFI على الجزء الأوّلي " "الأول لنفس القرص الصلب والذي يحتوي نظام الملفات الجذر." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "جزء إقلاع EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "العودة إلى القائمة وإكمال التجزئة؟" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "لم يعثر على جزء EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "جزء إقلاع EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/th.po0000644000000000000000000000733411741270023012766 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. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-02-02 11:11+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "ในการเริ่มบูตระบบที่ติดตั้งใหม่ของคุณ เฟิร์มแวร์ในระบบ Itanium " "ของคุณจะโหลดบูตโหลดเดอร์จากพาร์ทิชันเฉพาะแบบ EFI จากฮาร์ดดิสก์ จากนั้น " "บูตโหลดเดอร์จึงจะโหลดระบบปฏิบัติการจากพาร์ทิชันเดียวกันขึ้นมา พาร์ทิชัน EFI " "จะฟอร์แมตไว้ด้วยระบบแฟ้มแบบ FAT16 โดยตั้งแฟล็กให้บูตได้เอาไว้ การติดตั้งส่วนใหญ่จะสร้างพาร์ทิชัน " "EFI ไว้ในพาร์ทิชัน primary แรกของฮาร์ดดิสก์เดียวกับที่เก็บระบบแฟ้มราก" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "พาร์ทิชันบูต EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "จะกลับไปยังเมนูเพื่อแบ่งพาร์ทิชันใหม่หรือไม่?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "ไม่พบพาร์ทิชัน EFI" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFI บูต" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "พาร์ทิชันบูต EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/hr.po0000644000000000000000000000567311741270022012767 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. # # msgid "" msgstr "" "Project-Id-Version: Debian-installer 1st-stage master file HR\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2008-09-01 18:05+0200\n" "Last-Translator: Josip Rodin \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" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Kako bi pokrenuo vaš novi sustav, firmware vašeg Itanium računala učitava " "boot učitavač s njegove privatne EFI particije na tvrdome disku. Boot " "učitavač tada učitava operacijski sustav s te iste particije. EFI particija " "formatirana je kao FAT16 datotečni sustav i označena bootable zastavicom. " "Većina instalacija smješta EFI particiju na prvu primarnu particiju istoga " "tvrdog diska koji sadrži i korijenski datotečni sustav." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI boot particija" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Vrati se u izbornik i nastavi particioniranje?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Nije pronađena EFI particija." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI boot particija" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/pl.po0000644000000000000000000000745411741270022012770 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "By móc uruchomić nowy system, firmware w Twoim systemie Itanium ładuje " "program rozruchowy ze swojej prywatnej partycji EFI znajdującej się na dysku " "twardym. Program rozruchowy ładuje wtedy system operacyjny z tej samej " "partycji. Partycja EFI posiada system plików FAT16 oraz ustawioną flagę " "rozruchową. Większość instalacji umiejscawia partycję EFI na pierwszej, " "głównej partycji tego samego dysku twardego, na którym znajduje się główny " "system plików." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Partycja rozruchowa EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Wrócić do menu i kontynuować partycjonowanie?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Nie znaleziono partycji EFI." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFI rozr." #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Partycja rozruchowa EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/si.po0000644000000000000000000000714611741270023012767 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "ඔබේ නව පද්ධතිය ආරම්භ කිරීමට, ස්ථිරාංග ඔබේ Itanium පද්ධතිය විසින් දෘඩ තැටිය මත සාදන පුද්ගලික " "EFI කොටසක ඇති ආරම්භක පූරකයක් පූර්ණය කරයි. ආරම්භක පූරකය එම කොටසේම ඇති මෙහෙයුම් පද්ධතිය පූර්ණය " "කරයි. EFI කොටසක් සතුව FAT16 මගින් හැඩසවි කල හා ආරම්භක ධජය ඇති ගොනු පද්ධතියක් ඇත. බොහෝ " "ස්ථාපනයන්ගේ EFI කොටස root ගොනු පද්ධතිය පවතින තැටියේම ප්‍රථම ප්‍රාථමික කොටසේ පවතී." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI ආරම්භක කොටස" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "මෙනුවට ආපසු ගොස් කොටස්කිරීම සිදුකරගෙන යන්නද?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "කිසිඳු EFI කොටක් හමුනොවිනි." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "ඇරඹුම් කොටස හදුනාගෙන නැත" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/hu.po0000644000000000000000000000603711741270022012765 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 # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-11-08 09:16+0100\n" "Last-Translator: SZERVÁC Attila \n" "Language-Team: Debian L10n Hungarian \n" "Language: \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Az új rendszer indításához, az Itanium rendszer firmware-e a boot betöltőt a " "privát EFI partíciójáról tölti be a merevlemezről. E partícióról tölti aztán " "be a boot betöltő az operációs rendszert. Egy EFI partíció FAT16 " "fájlrendszerű és bekapcsolt indító zászlóval bír. A legtöbb telepítés az EFI " "partíciót a gyökér fájlrendszert is tartalmazó merevlemez 1. elsődleges " "partíciójára teszi." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI indító partíció" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Visszalépsz a menübe és folytatod a particionálást?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Nem leltem EFI partíciót." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI indító partíció" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/cs.po0000644000000000000000000000565111741270021012756 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. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-02-20 19:50+0100\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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "Abyste mohli zavést svůj nový systém, musí firmware vašeho Itania zavést " "zavaděč z jeho soukromé EFI oblasti na pevném disku. Zavaděč pak ze stejné " "oblasti zavede i operační systém. EFI oblast musí obsahovat souborový systém " "FAT16 a musí mít nastaven příznak zavádění. Většina instalací umísťuje EFI " "oblast na první primární oblast stejného disku, na kterém leží kořenový " "souborový systém." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "zaváděcí EFI oblast" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Vrátit se zpět do menu a pokračovat v rozdělování?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Nebyla nalezena žádná EFI oblast." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "zaváděcí" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "zaváděcí EFI oblast" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ku.po0000644000000000000000000000535611741270022012773 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. msgid "" msgstr "" "Project-Id-Version: ku\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2010-07-09 21:51+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish Team http://pckurd.net\n" "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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "partîsiyona boot a EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "Bila vegere pêşekê û karê dabeşkirinê bidome?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "Partîsiyona EFI nehat dîtin." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "partîsiyona boot a EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/ko.po0000644000000000000000000000610311741270022012754 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. # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-03-09 02:14+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "새 데비안 시스템을 시작할 때, 이 이터늄 시스템의 펌웨어가 하드 디스크의 EFI " "파티션에서 부트로더를 읽어들입니다. 그 다음에 부트로더가 같은 파티션에서 운" "영 체제를 읽어들입니다. EFI 파티션은 FAT16 파티션으로 포맷되어 있고 부팅 가" "능 플래그가 설정되어 있습니다. 보통 루트 파일 시스템이 들어 있는 같은 하드 " "디스크의 첫 번째 주 파티션을 EFI 파티션으로 합니다." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "EFI 부팅 파티션" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "메뉴로 돌아가서 파티션 나누기를 다시 시작하시겠습니까?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "EFI 파티션이 없습니다." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "EFIboot" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "EFI 부팅 파티션" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/es.po0000644000000000000000000001111711741270021012752 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) # # msgid "" msgstr "" "Project-Id-Version: debian-installer\n" "Report-Msgid-Bugs-To: partman-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+0000\n" "PO-Revision-Date: 2011-02-04 03:13+0100\n" "Last-Translator: Javier Fernández-Sanguino \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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "El firmware del sistema Itanium debe cargar el cargador de arranque de la " "partición privada EFI en el disco duro para poder arrancar su nuevo sistema. " "El cargador de arranque cargará después el sistema operativo de esa misma " "partición. Una partición EFI debe estar formateada con un sistema de " "ficheros FAT16 y tener fijado el indicador de arranque. La mayor parte de " "las instalaciones ubican la partición EFI en la primera partición primaria " "del mismo disco duro donde se encuentra el sistema de ficheros raíz." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "Partición de arranque «EFI»" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "¿Desea volver al menú y reiniciar el particionado?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "No se encontró ninguna partición «EFI»." #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "arranque EFI" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "Partición de arranque «EFI»" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/po/he.po0000644000000000000000000000757511741270021012754 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-efi@packages.debian.org\n" "POT-Creation-Date: 2012-03-14 12:33+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 #. :sl5: #: ../partman-efi.templates:1001 msgid "" "In order to start your new system, the firmware on your Itanium system loads " "the boot loader from its private EFI partition on the hard disk. The boot " "loader then loads the operating system from that same partition. An EFI " "partition has a FAT16 file system formatted on it and the bootable flag set. " "Most installations place the EFI partition on the first primary partition of " "the same hard disk that holds the root file system." msgstr "" "כדי להתחיל את המערכת החדשה שלך, ה-firmware על מערכת ה-Itanium טוענת את מנהל " "האתחול ממחיצת EFI הפרטית על הדיסק הקשיח. מנהל האתחול טוען את מערכת ההפעלה " "מאותה מחיצה. מחיצת EFI היא בעלת מערכת קבצים מסוג FAT16 ובעלת דגל אתחול. רוב " "ההתקנות שמות את מחיצת ה-EFI על המחיצה הראשית הראשונה של הדיסק הקשיח שמכיל את " "שורש מערכת הקבצים." #. Type: text #. Description #. :sl5: #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:2001 ../partman-efi.templates:4001 msgid "EFI boot partition" msgstr "מחיצת אתחול של EFI" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "Go back to the menu and resume partitioning?" msgstr "חזור חזרה לתפריט והמשך את החלוקה למחיצות?" #. Type: boolean #. Description #. :sl5: #: ../partman-efi.templates:3001 msgid "No EFI partition was found." msgstr "לא נמצאה מחיצת EFI" #. Type: text #. Description #. :sl5: #. short variant of 'EFI boot partition' #. Up to 10 character positions #: ../partman-efi.templates:5001 msgid "EFIboot" msgstr "אתחול של EFI" #. Type: text #. Description #. :sl5: #: ../partman-efi.templates:7001 msgid "EFI-fat16" msgstr "EFI-fat16" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 #, fuzzy msgid "EFI partition too small" msgstr "מחיצת אתחול של EFI" #. Type: error #. Description #. :sl5: #: ../partman-efi.templates:8001 msgid "" "EFI boot partitions on this architecture cannot be created with a size less " "than 35 MB. Please make the EFI boot partition larger." msgstr "" partman-efi/debian/compat0000644000000000000000000000000211516066537012601 0ustar 7 partman-efi/debian/control0000644000000000000000000000143112076315071012775 0ustar Source: partman-efi Section: debian-installer Priority: standard Maintainer: Ubuntu Installer Team XSBC-Original-Maintainer: Debian Install System Team Uploaders: dann frazier , Christian Perrier Build-Depends: debhelper (>= 7.0.8), dh-di, po-debconf (>= 0.5.0) Standards-Version: 3.8.1 XS-Debian-Vcs-Browser: http://git.debian.org/?p=d-i/partman-efi.git XS-Debian-Vcs-Git: git://git.debian.org/d-i/partman-efi.git Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-core-dev/partman-efi/ubuntu Package: partman-efi XC-Package-Type: udeb Architecture: i386 ia64 amd64 Depends: partman-base (>= 129), dosfstools-udeb, ${misc:Depends} Description: Add to partman support for EFI boot partitions partman-efi/debian/changelog0000644000000000000000000006034112247636747013271 0ustar partman-efi (25ubuntu6) trusty; urgency=low * Use mkfs.fat rather than mkdosfs if it exists (LP: #1257702). -- Colin Watson Wed, 04 Dec 2013 14:36:21 +0000 partman-efi (25ubuntu5) saucy; urgency=low * Pass "-s 1" to mkdosfs if the logical sector size is not equal to 512 bytes, since mkdosfs has trouble with cluster calculations otherwise (LP: #1065281). -- Colin Watson Wed, 18 Sep 2013 13:54:58 +0100 partman-efi (25ubuntu4) raring; urgency=low * Depend on dosfstools-udeb for the changes in 25ubuntu3. -- Colin Watson Fri, 18 Jan 2013 18:54:03 +0000 partman-efi (25ubuntu3) raring; urgency=low * Use mkdosfs to create FAT filesystems, since libparted cannot handle doing that on non-512-sector disks (LP: #1065281). -- Colin Watson Fri, 18 Jan 2013 18:51:51 +0000 partman-efi (25ubuntu2) quantal; urgency=low * check.d/efi: Fix parsing bug in code to find the EFI System Partition size, spotted by Steve McIntyre. -- Colin Watson Mon, 17 Sep 2012 18:59:44 +0100 partman-efi (25ubuntu1) precise; urgency=low * Resynchronise with Debian. Remaining changes: - Automatically use existing EFI system partitions on Intel Macs as EFI boot partitions. - Create fat32 EFI partitions with the name "EFI System Partition" by default on Intel Macs. - choose_method/efi/do_option: Make sure no mountpoint is set. - Remove efi-modules dependency; it seems to be built into Ubuntu kernels now. - Require partman-base >= 129 to support a null value for the name. - Automatically mount the first method=efi filesystem we see on /boot/efi. - On x86 architectures, create EFI system partitions using FAT32 rather than FAT16, and require newly-created ones to have a minimum size of 34091008 bytes. - Never format EFI system partitions that already contain a filesystem. * Detect existing EFI system partitions more reliably on GPT partition tables (LP: #972122, #900245). -- Colin Watson Wed, 11 Apr 2012 15:06:07 +0100 partman-efi (25) unstable; urgency=low [ Updated translations ] * Asturian (ast.po) by Mikel González * Bulgarian (bg.po) by Damyan Ivanov * German (de.po) by Holger Wansing * Dzongkha (dz.po) by Jurmey Rabgay * Estonian (et.po) by Mattias Põldaru * Hebrew (he.po) by Lior Kaplan * Hindi (hi.po) by Kumar Appaiah * Indonesian (id.po) by Mahyuddin Susanto * Icelandic (is.po) by Sveinn í Felli * Italian (it.po) by Milo Casagrande * Kannada (kn.po) by vignesh prabhu * Macedonian (mk.po) by Arangel Angov * Polish (pl.po) by Marcin Owsiany * Romanian (ro.po) by Ioan Eugen Stan * Sinhala (si.po) * Ukrainian (uk.po) by Borys Yanovych * Simplified Chinese (zh_CN.po) by YunQiang Su -- Otavio Salvador Thu, 15 Mar 2012 15:01:44 -0300 partman-efi (24ubuntu3) precise; urgency=low * On x86 architectures, create EFI system partitions using FAT32 rather than FAT16, and require newly-created ones to have a minimum size of 34091008 bytes, experimentally verified as the minimum libparted will accept (LP: #811485). * Never format EFI system partitions that already contain a filesystem (LP: #769669). -- Colin Watson Wed, 14 Mar 2012 14:31:13 +0000 partman-efi (24ubuntu2) oneiric; urgency=low * Be case insensitive on matching the name EFI System Partition when detecting existing EFI system partitions. -- Mario Limonciello Mon, 15 Aug 2011 18:24:38 +0800 partman-efi (24ubuntu1) oneiric; urgency=low * Resynchronise with Debian. Remaining changes: - Automatically use existing EFI system partitions on Intel Macs as EFI boot partitions. - Create fat32 EFI partitions with the name "EFI System Partition" by default on Intel Macs. - choose_method/efi/do_option: Make sure no mountpoint is set. - Remove efi-modules dependency; it seems to be built into Ubuntu kernels now. - Require partman-base >= 129 to support a null value for the name. - Automatically mount the first method=efi filesystem we see on /boot/efi. -- Colin Watson Wed, 04 May 2011 00:17:35 +0100 partman-efi (24) 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 * Estonian (et.po) by Mattias Põldaru * Korean (ko.po) by Changwoo Ryu * 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 Sat, 30 Apr 2011 12:28:48 +0200 partman-efi (23ubuntu1) natty; urgency=low * Resynchronise with Debian. Remaining changes: - Automatically use existing EFI system partitions on Intel Macs as EFI boot partitions. - Create fat32 EFI partitions with the name "EFI System Partition" by default on Intel Macs. - choose_method/efi/do_option: Make sure no mountpoint is set. - Remove efi-modules dependency; it seems to be built into Ubuntu kernels now. - Require partman-base >= 129 to support a null value for the name. - Automatically mount the first method=efi filesystem we see on /boot/efi. -- Colin Watson Wed, 26 Jan 2011 14:47:11 +0000 partman-efi (23) unstable; urgency=low [ Updated translations ] * Lao (lo.po) by Anousak Souphavanh * Sinhala (si.po) by Danishka Navin -- Otavio Salvador Fri, 24 Dec 2010 20:25:29 -0200 partman-efi (22ubuntu1) natty; urgency=low * Resynchronise with Debian. Remaining changes: - Automatically use existing EFI system partitions on Intel Macs as EFI boot partitions. - Create fat32 EFI partitions with the name "EFI System Partition" by default on Intel Macs. - choose_method/efi/do_option: Make sure no mountpoint is set. - Remove efi-modules dependency; it seems to be built into Ubuntu kernels now. - Require partman-base >= 129 to support a null value for the name. - Automatically mount the first method=efi filesystem we see on /boot/efi. -- Colin Watson Mon, 15 Nov 2010 11:20:13 +0000 partman-efi (22) unstable; urgency=low [ Colin Watson ] * Use 'dh $@ --options' rather than 'dh --options $@', for forward-compatibility with debhelper v8. [ Updated translations ] * Asturian (ast.po) by maacub * Bulgarian (bg.po) by Damyan Ivanov * Bengali (bn.po) by Israt Jahan * Bosnian (bs.po) by Armin Beirovi * Catalan (ca.po) by Jordi Mallach * Danish (da.po) by Anders Jenbo * Persian (fa.po) by Ebrahim Byagowi * Icelandic (is.po) by Sveinn Felli * Kazakh (kk.po) by Baurzhan Muftakhidinov * Telugu (te.po) by Arjuna Rao Chavala -- Otavio Salvador Fri, 12 Nov 2010 10:40:28 -0200 partman-efi (21ubuntu1) maverick; urgency=low * Resynchronise with Debian. Remaining changes: - Automatically use existing EFI system partitions on Intel Macs as EFI boot partitions. - Create fat32 EFI partitions with the name "EFI System Partition" by default on Intel Macs. - choose_method/efi/do_option: Make sure no mountpoint is set. - Remove efi-modules dependency; it seems to be built into Ubuntu kernels now. - Require partman-base >= 129 to support a null value for the name. * Automatically mount the first method=efi filesystem we see on /boot/efi. (This replaces previous code in partman-basicfilesystems, which didn't work since method=efi partitions don't have an acting_filesystem.) -- Colin Watson Fri, 03 Sep 2010 13:42:45 +0100 partman-efi (21) unstable; urgency=low [ Colin Watson ] * Upgrade to debhelper v7. [ Updated translations ] * Asturian (ast.po) by astur * Belarusian (be.po) by Viktar Siarheichyk * Bulgarian (bg.po) by Damyan Ivanov * Bengali (bn.po) by Israt Jahan * Danish (da.po) by Jacob Sparre Andersen * German (de.po) by Holger Wansing * Esperanto (eo.po) by Felipe Castro * Persian (fa.po) by acathur * French (fr.po) by Christian Perrier * Galician (gl.po) by Marce Villarino * Hindi (hi.po) * Indonesian (id.po) by Arief S Fitrianto * Italian (it.po) by Milo Casagrande * Kazakh (kk.po) by Baurzhan Muftakhidinov * Central Khmer (km.po) by Khoem Sokhem * Kurdish (ku.po) by Erdal Ronahi * Lithuanian (lt.po) by Kęstutis Biliūnas * Macedonian (mk.po) by Arangel Angov * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw) * Romanian (ro.po) by ioan-eugen STAN * Slovenian (sl.po) by Vanja Cvelbar * Simplified Chinese (zh_CN.po) by 苏运强 -- Christian Perrier Sun, 11 Jul 2010 19:09:59 +0200 partman-efi (20ubuntu2) maverick; urgency=low * Drop lpia support. * Only create a fat32 partition on Intel Macs; other compliant EFI implementations should (as I read it) be able to cope with fat16, and the 256MB minimum size of fat32 is inconvenient. -- Colin Watson Fri, 11 Jun 2010 00:54:08 +0100 partman-efi (20ubuntu1) karmic; urgency=low * Resynchronize with Debian. Remaining changes: - Automatically use existing EFI system partitions on Intel Macs as EFI boot partitions. - Create fat32 EFI partitions with the name "EFI System Partition" by default on Intel Macs. - choose_method/efi/do_option: Make sure no mountpoint is set. - Remove efi-modules dependency; it seems to be built into Ubuntu kernels now - Also support lpia * Require partman-base >= 129 to support a null value for the name. -- Evan Dandrea Wed, 24 Jun 2009 15:34:48 +0100 partman-efi (20) unstable; urgency=low [ Christian Perrier ] * Bump debhelper compatibility level to 6 * Add ${misc:Depends} to dependencies so that the udeb properly depends on debconf * Add myself as uploader * Update Standards to 3.8.1 (no change) [ Updated translations ] * Bengali (bn.po) by Md. Rezwan Shahid * Estonian (et.po) by Mattias Põldaru * Basque (eu.po) by Piarres Beobide * Galician (gl.po) by marce villarino * Hindi (hi.po) by Kumar Appaiah * Kazakh (kk.po) by daur88 * Malayalam (ml.po) by Praveen Arimbrathodiyil * Marathi (mr.po) by Sampada * Tagalog (tl.po) by Eric Pareja -- Christian Perrier Sun, 14 Jun 2009 19:03:04 +0200 partman-efi (19) unstable; urgency=high * Rebuild with fixed Danish translation -- Christian Perrier Fri, 09 Jan 2009 07:59:28 +0100 partman-efi (18ubuntu1) intrepid; urgency=low [ Emmet Hikory ] * Resynchronise with Debian. Remaining changes: - Automatically use existing EFI system partitions on Intel Macs as EFI boot partitions. - Create fat32 EFI partitions with the name "EFI System Partition" by default on Intel Macs. - choose_method/efi/do_option: Make sure no mountpoint is set. - Remove efi-modules dependency; it seems to be built into Ubuntu intrepid kernels now * Also support lpia -- Evan Dandrea Wed, 08 Oct 2008 03:22:41 -0400 partman-efi (18) unstable; urgency=low [ Updated translations ] * Belarusian (be.po) by Pavel Piatruk * Bosnian (bs.po) by Armin Besirovic * Welsh (cy.po) by Jonathan Price * Danish (da.po) * Basque (eu.po) by Iñaki Larrañaga Murgoitio * French (fr.po) by Christian Perrier * Croatian (hr.po) by Josip Rodin * Italian (it.po) by Milo Casagrande * Kurdish (ku.po) by Erdal Ronahi * Latvian (lv.po) by Peteris Krisjanis * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw) * Serbian (sr.po) by Veselin Mijušković -- Otavio Salvador Sun, 21 Sep 2008 21:11:08 -0300 partman-efi (17ubuntu2) intrepid; urgency=low * Remove efi-modules dependency; it seems to be built into Ubuntu intrepid kernels now. -- Colin Watson Wed, 20 Aug 2008 10:56:12 +0100 partman-efi (17ubuntu1) intrepid; urgency=low * Resynchronise with Debian. Remaining changes: - Automatically use existing EFI system partitions on Intel Macs as EFI boot partitions. - Create fat32 EFI partitions with the name "EFI System Partition" by default on Intel Macs. - choose_method/efi/do_option: Make sure no mountpoint is set. -- Colin Watson Mon, 19 May 2008 14:31:13 +0200 partman-efi (17) unstable; urgency=low [ Updated translations ] * Finnish (fi.po) by Esko Arajärvi * Marathi (mr.po) by Sampada * Panjabi (pa.po) by Amanpreet Singh Alam -- Otavio Salvador Thu, 08 May 2008 01:04:59 -0300 partman-efi (16) unstable; urgency=low [ Updated translations ] * Bulgarian (bg.po) by Damyan Ivanov * Indonesian (id.po) by Arief S Fitrianto * Latvian (lv.po) by Viesturs Zarins * Polish (pl.po) by Bartosz Fenski * Turkish (tr.po) by Recai Oktaş * Traditional Chinese (zh_TW.po) by Tetralet -- Otavio Salvador Fri, 15 Feb 2008 09:05:54 -0200 partman-efi (15) unstable; urgency=low * Moved definitions.sh to ./lib/base.sh. Requires partman-base (>= 114). * efi_sync_flag: use single assignment for adding flags. * Major whitespace cleanup and a few minor coding style fixes. [ Updated translations ] * Amharic (am.po) by tegegne tefera * Korean (ko.po) by Changwoo Ryu * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ * Panjabi (pa.po) by A S Alam -- Frans Pop Sat, 29 Dec 2007 22:13:31 +0100 partman-efi (14ubuntu1) hardy; urgency=low * Resynchronise with Debian. Remaining changes: - Automatically use existing EFI system partitions on Intel Macs as EFI boot partitions. - Create fat32 EFI partitions with the name "EFI System Partition" by default on Intel Macs. - choose_method/efi/do_option: Make sure no mountpoint is set. -- Colin Watson Mon, 10 Dec 2007 11:28:33 +0000 partman-efi (14) unstable; urgency=low [ Colin Watson ] * Move sanity-checking scripts from finish.d to check.d. Requires partman-base 106. * Use 'mkdir -p' rather than more awkward test-then-create constructions. [ Frans Pop ] * Move deletion of SVN directories to install-rc script. * Improve the way install-rc is called. * Add amd64 to supported architectures. Closes: #439660. [ Updated translations ] * Belarusian (be.po) by Hleb Rubanau * Bengali (bn.po) by Jamil Ahmed * Danish (da.po) by Claus Hindsgaul * Basque (eu.po) by Piarres Beobide * Italian (it.po) by Stefano Canepa * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ * Panjabi (pa.po) by A S Alam * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw) * Romanian (ro.po) by Eddy Petrișor * Vietnamese (vi.po) by Clytie Siddall -- Frans Pop Wed, 05 Dec 2007 13:20:33 +0100 partman-efi (13ubuntu2) gutsy; urgency=low * init.d/efi: Fix reversed logic affecting ia64 systems (LP: #137501). * choose_method/efi/do_option: Make sure no mountpoint is set. -- Colin Watson Thu, 06 Sep 2007 11:43:48 +0100 partman-efi (13ubuntu1) gutsy; urgency=low * Resynchronise with Debian. Remaining changes: - Automatically use existing EFI system partitions on Intel Macs as EFI boot partitions. - Create fat32 EFI partitions with the name "EFI System Partition" by default on Intel Macs. - Move sanity-checking scripts from finish.d to check.d. -- Colin Watson Mon, 14 May 2007 12:07:44 +0100 partman-efi (13) unstable; urgency=low [ Updated translations ] * Malayalam (ml.po) by Praveen A -- Frans Pop Tue, 27 Feb 2007 18:27:32 +0100 partman-efi (12) unstable; urgency=low * Add dependency on efi-modules. [ Updated translations ] * Arabic (ar.po) by Ossama M. Khayat * Belarusian (be.po) by Pavel Piatruk * Danish (da.po) by Claus Hindsgaul * Esperanto (eo.po) by Serge Leblanc * Kurdish (ku.po) by rizoye-xerzi * Latvian (lv.po) by Aigars Mahinovs * Malayalam (ml.po) by Praveen A * Panjabi (pa.po) by A S Alam * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw) * Romanian (ro.po) by Eddy Petrișor * Slovenian (sl.po) by Matej Kovačič -- Frans Pop Wed, 31 Jan 2007 17:51:57 +0100 partman-efi (11ubuntu3) feisty; urgency=low * Remove gptsync code; parted does this itself now as of version 1.7.1-3ubuntu3. -- Colin Watson Wed, 7 Mar 2007 12:57:39 +0000 partman-efi (11ubuntu2) feisty; urgency=low * Move sanity-checking scripts from finish.d to check.d. * Set maintainer to ubuntu-installer@lists.ubuntu.com. -- Colin Watson Tue, 20 Feb 2007 20:54:54 +0000 partman-efi (11ubuntu1) feisty; urgency=low * On Intel Macs, depend on gptsync-udeb and run gptsync on changed devices after committing changes. * Automatically use existing EFI system partitions on Intel Macs as EFI boot partitions (LP: #38225). * Create fat32 EFI partitions with the name "EFI System Partition" by default on Intel Macs. -- Colin Watson Wed, 17 Jan 2007 13:58:59 +0000 partman-efi (11) unstable; urgency=low * Run debconf-updatepo * Update Standards-Version to 3.7.2 -- dann frazier Tue, 31 Oct 2006 15:32:39 -0700 partman-efi (10) unstable; urgency=low [ Colin Watson ] * Build on i386, for i386-based Apple systems; restrict to systems with EFI (i.e. /proc/efi or /sys/firmware/efi exist). * Try to load efivars module on init to make sure that the kernel has a chance to create /proc/efi if appropriate. [ Updated translations ] * Arabic (ar.po) by Ossama M. Khayat * Bosnian (bs.po) by Safir Secerovic * Catalan (ca.po) by Jordi Mallach * Danish (da.po) by Claus Hindsgaul * German (de.po) by Jens Seidel * Dzongkha (dz.po) * Esperanto (eo.po) by Serge Leblanc * Estonian (et.po) by Siim Põder * Basque (eu.po) by Piarres Beobide * Irish (ga.po) by Kevin Patrick Scannell * Hungarian (hu.po) by SZERVÑC Attila * Georgian (ka.po) by Aiet Kolkhi * Khmer (km.po) by Leang Chumsoben * Kurdish (ku.po) by Erdal Ronahi * Lithuanian (lt.po) by Kęstutis Biliūnas * Nepali (ne.po) by Shiva Pokharel * Norwegian Nynorsk (nn.po) by Håvard Korsvoll * Northern Sami (se.po) by Børre Gaup * Slovenian (sl.po) by Jure Čuhalev * Swedish (sv.po) by Daniel Nylander * Tamil (ta.po) by Damodharan Rajalingam * Thai (th.po) by Theppitak Karoonboonyanan * Vietnamese (vi.po) by Clytie Siddall -- Frans Pop Thu, 13 Jul 2006 18:37:03 +0200 partman-efi (9) unstable; urgency=low * Matt Kraai - Fix the spelling of "file system". * Colin Watson - Remove useless dependency on parted-udeb. - Change "new Debian system" to "new system" to help with derivative branding. - Use 'rm -f' rather than more awkward test-then-remove constructions. * Frans Pop - Changed dependency from partman to partman-base. * dann frazier - Update Standards-Version to 3.6.2.2 - Update my e-mail address in Uploaders -- dann frazier Fri, 27 Jan 2006 15:00:53 -0700 partman-efi (8) unstable; urgency=low * Note that this includes fix(es) for variable substition bugs in translated templates. * Updated translations: - Bosnian (bs.po) by Safir Šećerović - Welsh (cy.po) by Dafydd Harries - Greek, Modern (1453-) (el.po) by Greek Translation Team - Finnish (fi.po) by Tapio Lehtonen - Gallegan (gl.po) by Hctor Fenndez Lpez - Italian (it.po) by Stefano Canepa - Lithuanian (lt.po) by Kęstutis Biliūnas - Dutch (nl.po) by Bart Cornelis - Romanian (ro.po) by Eddy Petrisor -- Joey Hess Wed, 2 Feb 2005 17:30:29 -0500 partman-efi (7) unstable; urgency=low * Updated translations: - Bulgarian (bg.po) by Ognyan Kulev - Greek, Modern (1453-) (el.po) by Greek Translation Team - French (fr.po) by French Team - Hebrew (he.po) by Lior Kaplan - Croatian (hr.po) by Krunoslav Gernhard -- Joey Hess Wed, 20 Oct 2004 15:12:12 -0400 partman-efi (6) unstable; urgency=low * Updated translations: - Welsh (cy.po) by Dafydd Harries - Hebrew (he.po) by Lior Kaplan - Hungarian (hu.po) by VEROK Istvan - Portuguese (Brazil) (pt_BR.po) by André Luís Lopes - Romanian (ro.po) by Eddy Petrisor - Traditional Chinese (zh_TW.po) by Tetralet -- Joey Hess Wed, 6 Oct 2004 16:14:30 -0400 partman-efi (5) unstable; urgency=low * Jim Lieb - remove format flag test in efi partition verification in finish.d/efi - Closes: #268554 * Updated translations: - Czech (cs.po) by Miroslav Kure - Greek, Modern (1453-) (el.po) by Greek Translation Team - Indonesian (id.po) by Debian Indonesia Team - Latvian (lv.po) by Aigars Mahinovs - Bøkmal, Norwegian (nb.po) by Bjorn Steensrud - Dutch (nl.po) by Bart Cornelis - Albanian (sq.po) by Elian Myftiu -- Joey Hess Sun, 3 Oct 2004 13:42:50 -0400 partman-efi (4) unstable; urgency=low * Joey Hess - Use a string in the filesystem list that is consistent with the others used there. No string changes, but dropped an unused string. * Updated translations: - Lithuanian (lt.po) by [unknown] -- Joey Hess Thu, 30 Sep 2004 13:44:06 -0400 partman-efi (3) unstable; urgency=low * Joey Hess - Stop unsetting seen flags, that's not necessary and it breaks preseeding. * Jim Lieb - Get file system type displayed properly - remove extra menu label - Closes: #268555 * Updated translations: - Arabic (ar.po) by Ossama M. Khayat - Bulgarian (bg.po) by Ognyan Kulev - Bosnian (bs.po) by Safir Å ećerović - Catalan (ca.po) by Jordi Mallach - Czech (cs.po) by Miroslav Kure - Welsh (cy.po) by Dafydd Harries - Danish (da.po) by Claus Hindsgaul - German (de.po) by Dennis Stampfer - Greek (el.po) by Greek Translation Team - Spanish (es.po) by Javier Fernandez-Sanguino Peña - Basque (eu.po) by Piarres Beobide Egaña - Persian (fa.po) by Arash Bijanzadeh - Finnish (fi.po) by Tapio Lehtonen - French (fr.po) by French Team - Hebrew (he.po) by Lior Kaplan - Croatian (hr.po) by Krunoslav Gernhard - Indonesian (id.po) by Parlin Imanuel Toh - Japanese (ja.po) by Kenshi Muto - Korean (ko.po) by Changwoo Ryu - Lithuanian (lt.po) by Kęstutis BiliÅ«nasn - Latvian (lv.po) by Aigars Mahinovs - Norwegian (nb.po) by Axel Bojer - Norwegian (nn.po) by HÃ¥vard Korsvoll - Polish (pl.po) by Bartosz Fenski - Portuguese (pt.po) by Miguel Figueiredo - Portuguese (Brazil) (pt_BR.po) by André Luís Lopes - Russian (ru.po) by Russian L10N Team - Slovak (sk.po) by Peter KLFMANiK Mann - Slovenian (sl.po) by Jure Čuhalev - Swedish (sv.po) by Per Olofsson - Turkish (tr.po) by Recai Oktaş - Ukrainian (uk.po) by Eugeniy Meshcheryakov - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu -- Joey Hess Wed, 29 Sep 2004 22:19:33 -0400 partman-efi (2) unstable; urgency=high * Jim Lieb - Don't disable swap after formatting - Set svn:executable on various files - Reduce commit.d/_numbers from 51 to 50 to conform with others - force bootable for fat filesystems used for efi * Christian Perrier - Rename templates file * dann frazier - Uploading with high priority, since partman-efi would be loaded but wouldn't run w/o Jim's changes. -- dann frazier Thu, 26 Aug 2004 16:58:00 -0600 partman-efi (1) unstable; urgency=high * Jim Lieb - Initial release - use partman-palo as template and create same for EFI boot partitions that are found on ia64 systems and x86 systems with EFI BIOS - Translations are a simple global substitute i.e. s/palo/efi/g * dann frazier - Uploading with high urgency as not having this package will result in users reaching the end of an install w/o having created an EFI partitioning, which will cause the boot loader install to fail. -- dann frazier Wed, 11 Aug 2004 03:45:10 -0600 partman-efi/init.d/0000755000000000000000000000000011741307371011340 5ustar partman-efi/init.d/_numbers0000644000000000000000000000000711516066537013100 0ustar 50 efi partman-efi/init.d/efi0000755000000000000000000000312611741307310012024 0ustar #!/bin/sh # This script sets method "efi" for all fat16 partitions that have the boot # flag set. # Give the kernel a chance to create /proc/efi if appropriate. modprobe efivars >/dev/null 2>&1 || true if [ -d /proc/efi ] || [ -d /sys/firmware/efi ]; then > /var/lib/partman/efi else ARCH="$(archdetect)" case $ARCH in i386/mac|amd64/mac) # Intel Macs have an EFI partition, regardless of # whether we're currently booted using BIOS # compatibility or not (if we are, we won't be able to # talk to EFI directly). > /var/lib/partman/efi ;; *) rm -f /var/lib/partman/efi exit 0 ;; esac fi . /lib/partman/lib/base.sh gpt_efi_type=c12a7328-f81f-11d2-ba4b-00a0c93ec93b for dev in /var/lib/partman/devices/*; do [ -d "$dev" ] || continue cd $dev open_dialog GET_LABEL_TYPE read_line label_type close_dialog partitions= open_dialog PARTITIONS while { read_line num id size type fs path name; [ "$id" ]; }; do if [ "$fs" = fat16 ]; then partitions="$partitions $id" elif [ "$fs" = fat32 ] && echo "$name" | grep -i "^EFI System Partition" >/dev/null; then partitions="$partitions $id" elif [ "$label_type" = gpt ] && \ [ "$(blkid -o value -s PART_ENTRY_TYPE -p "$path" 2>/dev/null)" = "$gpt_efi_type" ]; then partitions="$partitions $id" fi done close_dialog for id in $partitions; do efi=no open_dialog GET_FLAGS $id while { read_line flag; [ "$flag" ]; }; do if [ "$flag" = boot ]; then efi=yes # cannot break here fi done close_dialog if [ "$efi" = yes ]; then mkdir -p $id echo efi >$id/method fi done done partman-efi/parted_names/0000755000000000000000000000000011516066537012623 5ustar partman-efi/parted_names/efi0000644000000000000000000000000611516066537013305 0ustar fat16 partman-efi/README0000644000000000000000000000034411516066537011042 0ustar This udeb provides partman with new method "efi" (Use the partition as an EFI boot partition). It also provides an imaginary file system called also "efi" that is automatically selected for all partitions used with method efi. partman-efi/fstab.d/0000755000000000000000000000000011440166274011475 5ustar partman-efi/fstab.d/efi0000755000000000000000000000127411440166274012172 0ustar #!/bin/sh . /lib/partman/lib/base.sh ARCH="$(archdetect)" case $ARCH in i386/mac|amd64/mac) # Not yet sure what to do on Intel Macs. Mounting the EFI System # Partition on /boot/efi will change the behaviour of grub-install, # so it seems best to avoid it for the moment. exit 0 ;; esac seen_efi= 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 [ -z "$seen_efi" ] || continue [ $fs != free ] || continue [ -f "$id/method" ] || continue method=$(cat $id/method) [ "$method" = efi ] || continue echo "$path" /boot/efi vfat defaults 0 1 seen_efi=1 done close_dialog done partman-efi/update.d/0000755000000000000000000000000011732134254011655 5ustar partman-efi/update.d/efi_sync_flag0000755000000000000000000000244711516066537014412 0ustar #!/bin/sh # This script removes the efi flag for partitions whose method is not # efi and sets it for partition whose method is efi [ -e /var/lib/partman/efi ] || exit 0 . /lib/partman/lib/base.sh dev=$1 num=$2 id=$3 size=$4 type=$5 fs=$6 path=$7 shift; shift; shift; shift; shift; shift; shift name=$* cd $dev if [ $fs = free ]; then exit 0 fi method= if [ -f $id/method ]; then method=$(cat $id/method) fi flags='' open_dialog GET_FLAGS $id while { read_line flag; [ "$flag" ]; }; do if [ "$flag" != boot ]; then flags="${flags:+$flags$NL}$flag" fi done close_dialog open_dialog USES_NAMES read_line uses_names close_dialog if [ "$method" = efi ] && [ ! -f $id/bootable ]; then open_dialog SET_FLAGS $id write_line "$flags" write_line boot write_line NO_MORE close_dialog >$id/bootable >$id/efi_bootable if [ "$uses_names" = yes ] && [ "$fs" = fat32 ]; then open_dialog SET_NAME $id "EFI System Partition" close_dialog fi RET='' elif [ "$method" != efi ] && [ -f $id/bootable ] && \ [ -f $id/efi_bootable ]; then open_dialog SET_FLAGS $id write_line "$flags" write_line NO_MORE close_dialog rm $id/bootable rm $id/efi_bootable if [ "$uses_names" = yes ] && [ "$fs" = fat32 ] && \ [ "$name" = "EFI System Partition" ]; then open_dialog SET_NAME "" close_dialog fi fi partman-efi/update.d/efi_visuals0000755000000000000000000000056111516066537014126 0ustar #!/bin/sh . /usr/share/debconf/confmodule [ -e /var/lib/partman/efi ] || exit 0 dev=$1 num=$2 id=$3 size=$4 type=$5 fs=$6 path=$7 name=$8 cd $dev [ -f $id/method ] || exit 0 method=$(cat $id/method) case "$method" in efi) db_metaget partman/method_short/efi description || RET='' printf "${RET:-efi}" >$id/visual_filesystem >$id/visual_mountpoint ;; esac partman-efi/update.d/_numbers0000644000000000000000000000004011516066537013414 0ustar 21 efi_sync_flag 60 efi_visuals