summaryrefslogtreecommitdiffstats
path: root/common/tests/PlanetConfigTest.php
diff options
context:
space:
mode:
authorNicolas Lécureuil <neoclust@mageia.org>2020-05-17 14:46:00 +0200
committerNicolas Lécureuil <neoclust@mageia.org>2020-05-17 14:46:00 +0200
commite3de9d7dd1331f9718e04cc98e9ca7cfa27cf4aa (patch)
tree336981502f93ceb9fa5ed33ea3b47dcefc5a8402 /common/tests/PlanetConfigTest.php
parentff32e499745367b816d10f25e63ff3328214c32f (diff)
downloadplanet-master.tar
planet-master.tar.gz
planet-master.tar.bz2
planet-master.tar.xz
planet-master.zip
Sync with master of moonmoon ( version 9.0.0-rc)HEADuser/wally/upstream-10-devmaster
Source from https://github.com/Emmafrs/moonmoon/
Diffstat (limited to 'common/tests/PlanetConfigTest.php')
-rw-r--r--common/tests/PlanetConfigTest.php73
1 files changed, 73 insertions, 0 deletions
diff --git a/common/tests/PlanetConfigTest.php b/common/tests/PlanetConfigTest.php
new file mode 100644
index 0000000..4db6e90
--- /dev/null
+++ b/common/tests/PlanetConfigTest.php
@@ -0,0 +1,73 @@
+<?php
+
+use PHPUnit\Framework\TestCase;
+
+class PlanetConfigTest extends TestCase
+{
+ public function test_default_configuration_values()
+ {
+ $conf = new PlanetConfig();
+ $this->assertEquals('http://www.example.com/', $conf->getUrl());
+ }
+
+ public function test_merge_user_configuration_with_default_one()
+ {
+ $conf = new PlanetConfig(['url' => 'http://foobar.tld']);
+ $this->assertEquals('http://foobar.tld', $conf->getUrl());
+ }
+
+ public function test_generic_getter()
+ {
+ $conf = new PlanetConfig(['foo' => 'bar']);
+ $this->assertEquals('bar', $conf->foo);
+ }
+
+ public function test_generic_setter()
+ {
+ $conf = new PlanetConfig();
+ $conf->foo = 'bar';
+ $this->assertEquals('bar', $conf->foo);
+ }
+
+ public function test_normalize_key_name_on_merge()
+ {
+ $conf = new PlanetConfig(['FOO' => 'bar']);
+ $this->assertEquals('bar', $conf->foo);
+ }
+
+ public function test_normalize_key_name_on_generic_getter()
+ {
+ $conf = new PlanetConfig(['foo' => 'bar']);
+ $this->assertEquals('bar', $conf->FOO);
+ }
+
+ public function test_normalize_key_name_on_generic_setter()
+ {
+ $conf = new PlanetConfig();
+ $conf->FOO = 'bar';
+ $this->assertEquals('bar', $conf->foo);
+ }
+
+ public function test_to_array()
+ {
+ $conf = new PlanetConfig(['foo' => 'bar']);
+ $this->assertEquals('bar', $conf->toArray()['foo']);
+ $this->assertEquals('http://www.example.com/', $conf->toArray()['url']);
+ }
+
+ public function test_constructor_without_default_config()
+ {
+ $conf = new PlanetConfig(['foo' => 'bar'], false);
+ $this->assertEquals('bar', $conf->foo);
+ $this->assertEquals(1, sizeof($conf->toArray()));
+ }
+
+ public function test_to_yaml()
+ {
+ $conf = new PlanetConfig([], false);
+ $this->assertEquals("---\n", $conf->toYaml());
+
+ $conf = new PlanetConfig(['foo' => 'bar'], false);
+ $this->assertEquals("---\nfoo: bar\n", $conf->toYaml());
+ }
+}
14.2%;'/> -rw-r--r--perl-install/share/po/ast.po560
-rw-r--r--perl-install/share/po/az.po562
-rw-r--r--perl-install/share/po/be.po560
-rw-r--r--perl-install/share/po/bg.po566
-rw-r--r--perl-install/share/po/bn.po562
-rw-r--r--perl-install/share/po/br.po560
-rw-r--r--perl-install/share/po/bs.po562
-rw-r--r--perl-install/share/po/ca.po566
-rw-r--r--perl-install/share/po/cs.po564
-rw-r--r--perl-install/share/po/cy.po560
-rw-r--r--perl-install/share/po/da.po564
-rw-r--r--perl-install/share/po/de.po564
-rw-r--r--perl-install/share/po/el.po566
-rw-r--r--perl-install/share/po/eo.po560
-rw-r--r--perl-install/share/po/es.po567
-rw-r--r--perl-install/share/po/et.po567
-rw-r--r--perl-install/share/po/eu.po595
-rw-r--r--perl-install/share/po/fa.po566
-rw-r--r--perl-install/share/po/fi.po564
-rw-r--r--perl-install/share/po/fr.po564
-rw-r--r--perl-install/share/po/fur.po560
-rw-r--r--perl-install/share/po/ga.po560
-rw-r--r--perl-install/share/po/gl.po564
-rw-r--r--perl-install/share/po/he.po564
-rw-r--r--perl-install/share/po/hi.po566
-rw-r--r--perl-install/share/po/hr.po560
-rw-r--r--perl-install/share/po/hu.po564
-rw-r--r--perl-install/share/po/id.po564
-rw-r--r--perl-install/share/po/is.po567
-rw-r--r--perl-install/share/po/it.po564
-rw-r--r--perl-install/share/po/ja.po564
-rw-r--r--perl-install/share/po/ko.po560
-rw-r--r--perl-install/share/po/ky.po560
-rw-r--r--perl-install/share/po/lt.po560
-rw-r--r--perl-install/share/po/ltg.po560
-rw-r--r--perl-install/share/po/lv.po560
-rw-r--r--perl-install/share/po/mk.po562
-rw-r--r--perl-install/share/po/mn.po560
-rw-r--r--perl-install/share/po/ms.po560
-rw-r--r--perl-install/share/po/mt.po562
-rw-r--r--perl-install/share/po/nb.po564
-rw-r--r--perl-install/share/po/nl.po564
-rw-r--r--perl-install/share/po/nn.po564
-rw-r--r--perl-install/share/po/pa_IN.po562
-rw-r--r--perl-install/share/po/pl.po564
-rw-r--r--perl-install/share/po/pt.po564
-rw-r--r--perl-install/share/po/pt_BR.po564
-rw-r--r--perl-install/share/po/ro.po564
-rw-r--r--perl-install/share/po/ru.po566
-rw-r--r--perl-install/share/po/sc.po560
-rw-r--r--perl-install/share/po/sk.po564
-rw-r--r--perl-install/share/po/sl.po564
-rw-r--r--perl-install/share/po/sq.po566
-rw-r--r--perl-install/share/po/sr.po568
-rw-r--r--perl-install/share/po/sr@Latn.po560
-rw-r--r--perl-install/share/po/sv.po564
-rw-r--r--perl-install/share/po/ta.po560
-rw-r--r--perl-install/share/po/tg.po562
-rw-r--r--perl-install/share/po/th.po560
-rw-r--r--perl-install/share/po/tl.po562
-rw-r--r--perl-install/share/po/tr.po1965
-rw-r--r--perl-install/share/po/uk.po569
-rw-r--r--perl-install/share/po/uz.po564
-rw-r--r--perl-install/share/po/uz@cyrillic.po564
-rw-r--r--perl-install/share/po/vi.po566
-rw-r--r--perl-install/share/po/wa.po565
-rw-r--r--perl-install/share/po/zh_CN.po564
-rw-r--r--perl-install/share/po/zh_TW.po564
71 files changed, 21305 insertions, 20110 deletions
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 4cd9f7af3..ac8644345 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-af\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-04-21 17:33+0200\n"
"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
"Language-Team: Afrikaans\n"
@@ -20,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -29,12 +29,12 @@ msgstr ""
msgid "Please wait"
msgstr "Wag asb."
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Besig met installasie van herlaaistelsel"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -45,12 +45,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -65,218 +65,218 @@ msgstr ""
"\n"
"Vanaf watter hardeyskyf geskied die selflaai?"
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Besig met installasie van herlaaistelsel"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: any.pm:351
+#: any.pm:355
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Eerste sektor van skyf (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Eerste sektor van skyf (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Eerste sektor van die 'root'-partisie"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Op Disket"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Mis hierdie stap"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Herlaaistelsel"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Herlaaistelsel om te gebruik"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Wagperiode voor verstekstelsel gelaai word"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Bekragtig ACPI"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Bekragtig ACPI"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Bekragtig ACPI"
-#: any.pm:418
+#: any.pm:422
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Bekragtig ACPI"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sekuriteit"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Wagwoord"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: any.pm:425
+#: any.pm:429
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "U kan nie 'n lêerstelsel met enkripsie vir hegpunt %s gebruik nie."
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Beeld"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "'Root'"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Aanlas"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Videomodus"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, fuzzy, c-format
msgid "Network profile"
msgstr "Netwerkkoppelvlak"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Naam"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Verstek"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Leë etiket word nie toegelaat nie"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "U moet 'n kernel-beeld spesifiseer"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "U moet 'n 'root-partisie spesifiseer"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Ander bedryfstelsel (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -285,47 +285,47 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "toegang na X-programme"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "toegang tot rpm-nutsprogramme"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "laat \"su\" toe"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "toegang tot administratiewe-lêers"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "toegang na netwerk-nutsprogramme"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "toegang na kompilasie-gereedskap"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: any.pm:830
+#: any.pm:875
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -333,149 +333,149 @@ msgid ""
msgstr ""
"Die gebruikernaam mag alleenlik uit kleinletter, nommers, '-' en '_' bestaan"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Hierdie naam is te lank"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Gebruiker ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Groep ID"
-#: any.pm:839
+#: any.pm:884
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Opsie %s moet 'n nommer wees!"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "Gebruikernaam"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Kies 'root' se wagwoord"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Ikoon"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Regte naam"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Aanteken naam"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Dop"
-#: any.pm:925
+#: any.pm:970
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "wag asseblief gedurende 'ttmkfdir'..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Outo-inteken"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Ek kan u rekenaar so opstel om een gebruiker outomaties in te teken."
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Wil u hierdie funksie gebruik?"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Vrystelling: "
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Sluit af"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Lisensieooreenkoms"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Verlaat"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Beskik u oor nog?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Aanvaar"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Weier"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Kies asb. 'n taal om te gebruik"
-#: any.pm:1106
+#: any.pm:1151
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -483,87 +483,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Alle tale"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Alle tale"
-#: any.pm:1142
+#: any.pm:1187
#, fuzzy, c-format
msgid "Language choice"
msgstr "selfdoen"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Land / Omgewing"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Kies asseblief u land"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier is die volle lys van beskikbare lande"
-#: any.pm:1200
+#: any.pm:1245
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Ander poorte"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Gevorderd"
-#: any.pm:1206
+#: any.pm:1251
#, fuzzy, c-format
msgid "Input method:"
msgstr "Netwerkmetode:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Geen"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Geen deling"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Laat alle gebruikers toe"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Aangepaste"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -578,32 +578,32 @@ msgstr ""
"\n"
"\"Aangepaste\" laat toe vir per-gebruiker verstellings.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "U kan uitvoer deur NFS of SMB te gebruik. Kies watter u wil gebruik."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Loods userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -613,54 +613,54 @@ msgstr ""
"U kan van 'userdrake' gebruik maak om gebruikers by heirdie\n"
"groep te voeg."
-#: any.pm:1458
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Tydsone"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Hardewareklok gestel vir GMT"
-#: any.pm:1528
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Hardewareklok gestel vir GMT"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP-bediener"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Outo-tydsinkronisasie met NTP"
@@ -987,7 +987,7 @@ msgstr "Domein-administrarteur se Wagwoord"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1027,12 +1027,12 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "U kan nie die herlaaistelsel op 'n %s partisie installeer nie\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1041,7 +1041,7 @@ msgstr ""
"U herlaaistelsel se konfigurasie moet opgedateer word omdat 'n partisie se "
"nommer verander het"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1050,7 +1050,7 @@ msgstr ""
"Die herlaaistelsel kan nie korrek geïnstalleer word nie. U moet in redding-"
"modus laai, kies dan \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Her-installeer herlaaistelsel"
@@ -1080,17 +1080,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minute"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minuut"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d sekondes"
@@ -1108,27 +1114,27 @@ msgstr ""
"is as 'n WebDAV-bediener). Indien u 'n 'WebDAV' hegpunt\n"
"wil heg, kies \"Nuwe\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nuwe"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Ontheg"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Heg"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Bediener"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1136,25 +1142,25 @@ msgstr "Bediener"
msgid "Mount point"
msgstr "Hegpunt"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opsies"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Verwyder"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Klaar"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1170,17 +1176,17 @@ msgstr "Klaar"
msgid "Error"
msgstr "Fout"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Voorsien asseblief die WebDAV-bediener se URL"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Die URL moet begin met http:// or https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1191,33 +1197,33 @@ msgstr "Die URL moet begin met http:// or https://"
msgid "Warning"
msgstr "Waarskuwing"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Wil u op hierdie knoppie klik?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Bediener: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Hegpunt: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Partisionering"
@@ -1248,9 +1254,9 @@ msgstr "Verlaat"
msgid "Continue"
msgstr "Gaan voort"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Hulp"
@@ -1281,63 +1287,63 @@ msgstr "Detail"
msgid "No hard disk drives found"
msgstr "Geen hardeskywe kon gevind word nie"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Onbekend"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "Verlaat"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Ruilarea"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Ander"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Leeg"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Lêerstelsel-tipes:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Hierdie partisie se grootte kan nie verstel word nie"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Gebruik ``%s'' instede."
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1386,7 +1392,7 @@ msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "U moet herlaai om die partisielys-veranderinge te aktiveer"
@@ -1667,7 +1673,7 @@ msgid "Where do you want to mount %s?"
msgstr "Waar wil u toestel %s heg?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Grootteverandering"
@@ -1712,7 +1718,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, fuzzy, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2149,8 +2155,8 @@ msgstr "Verander tipe"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Kanselleer"
@@ -2242,7 +2248,7 @@ msgstr ""
"'n Fout het voorgekom - geen geldige toestelle om die nuwe lêerstelsels op "
"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "U moet oor 'n ESP FAT32 partisie wat as /boot/EFI geheg is, beskik"
@@ -2455,7 +2461,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2466,7 +2472,7 @@ msgstr ""
"Skep 'n partisie of kliek op 'n bestaande een.\n"
"Kies dan Hegpunt en stel dit dan '/'."
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2477,42 +2483,42 @@ msgstr ""
"\n"
"Wil u steeds voortgaan?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Gebruik beskikbare spasie"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Tekort aan oop spasie vir die nuwe partisies"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Gebruik bestaande partisies"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Daar is geen bestaande partisies om te gebruik nie"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Bereken die grootte van die Microsoft Windows®partisie"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Gebruik die beskikbare spasie op die Windows-partisie"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Watter partisie se grootte wil u verander?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, fuzzy, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2520,12 +2526,12 @@ msgid ""
"the %s installation."
msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2560,75 +2566,75 @@ msgstr ""
"Andersins, klik op %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Volgende"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Partisionering"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Watter grootte wil u vir Microsoft Windows® behou? partisie %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Grootte"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Microsoft Windows®lêerstelselgrense word bereken"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-grootteverandering het gefaal: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Daar is geen FAT partisies om te verander nie(nie genoeg spasie nie)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Verwyder Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "Wis hele skyf"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Gespesialiseerde skyfpartisionering"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Gebruik fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2637,42 +2643,42 @@ msgstr ""
"U het nou partisie %s partisioneer.\n"
"Wanneer u klaar is, stoor u veranderinge met 'w'."
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Verlaat"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Ek kon geen plek vir installasie vind nie."
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partisionering het misluk: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
@@ -2715,22 +2721,22 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Hegpunte kan slegs alfa-numeriese karakters bevat"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2741,7 +2747,7 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:450
+#: fsedit.pm:453
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2751,7 +2757,7 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2761,12 +2767,12 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2777,19 +2783,19 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "U kan nie 'n lêerstelsel met enkripsie vir hegpunt %s gebruik nie."
-#: fsedit.pm:479
+#: fsedit.pm:482
#, fuzzy, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: fsedit.pm:481
+#: fsedit.pm:484
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2801,24 +2807,24 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lêergids moet altyd in die wortellêerstelsel bly"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "U benodig 'n ware lêerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie vir outo-toekenning beskikbaar nie"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Niks om te doen nie"
@@ -2828,238 +2834,238 @@ msgstr "Niks om te doen nie"
msgid "SATA controllers"
msgstr "SATA-beheerders"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID-beheerders"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA beheerders"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "Model kaart:"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-beheerders"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-beheerders"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-beheerders"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB beheerders"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, fuzzy, c-format
msgid "USB ports"
msgstr "USB-drukker"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-beheerders"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Brûe en stelselbeheerders"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disket"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Skyf"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD-skrywers"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Magnetiese band"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, fuzzy, c-format
msgid "AGP controllers"
msgstr "USB beheerders"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Videokaart"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV-kaart"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Ander MultiMedia-toestelle"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Klankkaart"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webkamera"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Verwerkers"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN toestelle"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernetkaart"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL toestelle"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Geheue"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Drukker"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Stuurstok"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Sleutelbord"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Muis"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, fuzzy, c-format
msgid "UPS"
msgstr "CUPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Skandeerder"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Onbekend/Ander"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3310,19 +3316,19 @@ msgstr "Tipe instemmer"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "OK"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ja"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3353,22 +3359,22 @@ msgstr "Voltooi"
msgid "Previous"
msgstr "Vorige"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, fuzzy, c-format
msgid "No file chosen"
msgstr "bestands-kieser"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Tuisgids nie beskikbaar nie."
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such directory"
msgstr "Nie 'n gids nie"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Nee soos lêer"
@@ -4650,7 +4656,7 @@ msgstr "Zambië"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
@@ -5204,7 +5210,7 @@ msgstr "Laat toe/Weier vir 'root' om direk in te teken."
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Laat toe/Verbied die vertoon van gebruikername op vertoonbestuurders\n"
" (display managers, bv. sddm en gdm)."
@@ -5574,8 +5580,8 @@ msgid "Direct root login"
msgstr "Direkte 'root' inteken"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Wys gebruikers op vertoonbestuurders (sddm en gdm)"
#: security/l10n.pm:20
@@ -6788,17 +6794,17 @@ msgstr "Russian Federation"
msgid "Yugoslavia"
msgstr "Yugoslavia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Is dit korrek?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Info"
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index dbc84f6fd..9e21cb11d 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2004-06-01 03:36+0100\n"
"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
"Language-Team: Amharic <am-translate@geez.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -23,12 +23,12 @@ msgstr ""
msgid "Please wait"
msgstr "እባክዎ ይጠብቁ"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "የአስጀማሪ ተከላ በመከናወን ላይ"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -39,12 +39,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -54,414 +54,414 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "የአስጀማሪ ተከላ በመከናወን ላይ"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "አስጀማሪውን የት መትከል ይፈልጋሉ?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr ""
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr ""
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "ፍሎፒ ላይ"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "ዝለል"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "የአጀማመር ዘይቤ ምርጫ"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "የአስጀማሪ ዋና ምርጫዎች"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "አስጀማሪያ"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "ጥቅም ላይ የሚውለው አስጀማሪ"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "የመጀመሪያ መሳሪያ"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr ""
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "ACPI አስቻል"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI አስቻል"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI አስቻል"
-#: any.pm:418
+#: any.pm:422
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI አስቻል"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "ደህንነት"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "ሚስጢራዊ ቃል"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "ሚስጢራዊ ቃላቱ አይመሳሰሉም"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "እባክዎ እንደገና ይሞክሩ"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "ሚስጢራዊ ቃል (እንደገና)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "ምስል"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "የቪዲዮ አሰራር ዘዴ"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:503
+#: any.pm:507
#, fuzzy, c-format
msgid "Network profile"
msgstr "የተጠቃሚው እይታ"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "መለያ"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "ቀዳሚ"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr ""
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr ""
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "ሊኑክስ"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "የአጀማመር ዘይቤ ምርጫ"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "የX ፕሮግራሞች ማሳያ"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "ፍቀድ \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s በፊት ተጨምሯል)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "እባክዎ የተጠቃሚ ስም ይስጡ"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "የተጠቃሚ ስሙ በጣም ረጅም ነው"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "ይህ የተጠቃሚ ስም በፊትም ነበር"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "የተጠቃሚ መለያ ቁጥር"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "የብድን መለያ ቁጥር"
-#: any.pm:839
+#: any.pm:884
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "(%f በሰነድ-ስም ይተካል፤ %l በመስመር ቁጥር)"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "የተጠቃሚ ስም"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "የroot ሚስጢራዊ ቃል ይምረጡ"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"የተጠቃሚ ስም ያስገቡ\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "ምልክት"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "እውነተኛ ስም"
-#: any.pm:870
+#: any.pm:915
#, fuzzy, c-format
msgid "Login name"
msgstr "Name=ዝምብለህ ይግባ"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "ሼል"
-#: any.pm:925
+#: any.pm:970
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "ሲያትም እባክዎ ይጠብቁ\n"
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "ይህንን ሁኔታ መጠቀም ይፈልጋሉ?"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "ቀዳሚ ተጠቃሚ ይምረጡ:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "ዝጋ"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "ውጣ"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "ሌላ አልዎት?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "ተቀበል"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "አትቀበል"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "እባክዎ መጠቀሚያ ቋንቋ ይምረጡ።"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -469,87 +469,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "ሁሉንም ቋንቋዎች"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "ሁሉንም ቋንቋዎች"
-#: any.pm:1142
+#: any.pm:1187
#, fuzzy, c-format
msgid "Language choice"
msgstr "የመመሪያ ገጾች"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "ሀገር / አካባቢ"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "እባክዎ ሀገሮን ይምረጡ።"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "እዚህ ያሉት ሀገሮች ሙሉ ዝርዝር ይገኛል"
-#: any.pm:1200
+#: any.pm:1245
#, fuzzy, c-format
msgid "Other Countries"
msgstr "ሌላ ምርጫዎች"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "ጠላቂ"
-#: any.pm:1206
+#: any.pm:1251
#, fuzzy, c-format
msgid "Input method:"
msgstr "የX ዘገባ የማስትገባት ዘዴ"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "ምንም"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "መጋራት የለም"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "ለሁሉም ተጠቃሚዎች ፍቀድ"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "ምርጫ"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -559,86 +559,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "userdrake አስጀምር"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "የሰአት ክልል"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "የሰአት ክልሎት የትኛው ነው?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
-#: any.pm:1528
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP ሰርቨር"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -961,7 +961,7 @@ msgid "Domain Admin Password"
msgstr "የዶሜን አስተዳዳሪ ሚስጢራዊ ቃል"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -996,26 +996,26 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "በ/boot ውስጥ በቂ ቦታ የለም"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "አስጀማሪውን እንደገና ይትከሉ"
@@ -1045,17 +1045,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d ደቂቃዎች"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 ደቂቃ"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d ሴኮንዶች"
@@ -1069,27 +1075,27 @@ msgid ""
"points, select \"New\"."
msgstr ""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "አዲስ"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr ""
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr ""
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "ሰርቨር"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1097,25 +1103,25 @@ msgstr "ሰርቨር"
msgid "Mount point"
msgstr ""
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "ምርጫዎች"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "አስወግድ"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "ጨርሷል"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1131,17 +1137,17 @@ msgstr "ጨርሷል"
msgid "Error"
msgstr "ስህተት"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "እባክዎ የWebDAV ሰርቨር URL ያስገቡ"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URLሉ በhttp:// ወይም በhttps:// መጀመር አለበት"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1152,33 +1158,33 @@ msgstr "URLሉ በhttp:// ወይም በhttps:// መጀመር አለበት"
msgid "Warning"
msgstr "ማስጠንቀቂያ"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "እዚህ ቁልፍ ላይ መጫን ይፈልጋሉ?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "ሰርቨር:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr ""
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "ምርጫዎች: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr ""
@@ -1209,9 +1215,9 @@ msgstr "ውጣ"
msgid "Continue"
msgstr "ቀጥል"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "እርዳታ"
@@ -1239,63 +1245,63 @@ msgstr "ዝርዝሮች"
msgid "No hard disk drives found"
msgstr "ቋሚ ዲስኮችን አልተገኙም"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "ያልታወቀ"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "ውጣ"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "ሌላ"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "ባዶ"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "የፋይል ሲስተም አይነቶች:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "ይዚህ ክፋይ መጠነ ተስተካካይ አይደለም"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "በመጀመሪያ “Unmount”ን ይጠቀሙ"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "በዚህ ፈንታ “%s”ን ይጠቀሙ"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1344,7 +1350,7 @@ msgstr ""
msgid "Do you want to save the /etc/fstab modifications?"
msgstr ""
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1616,7 +1622,7 @@ msgid "Where do you want to mount %s?"
msgstr "%sን የት መትከል ይፈልጋሉ?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "መጠን በማስተካከል ላይ"
@@ -1661,7 +1667,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2084,8 +2090,8 @@ msgstr "አይነት ለውጥ"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "ተወው"
@@ -2173,7 +2179,7 @@ msgid ""
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr ""
@@ -2367,7 +2373,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2375,7 +2381,7 @@ msgid ""
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2383,42 +2389,42 @@ msgid ""
"Continue anyway?"
msgstr ""
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "ነጻ ቦታ ተጠቀም"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, fuzzy, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "ወደ አዲሱ ክፋይ ፋይሎችን አንቀሳቅስ"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "የነበሩትን ክፋዮች ተጠቀም"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr ""
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "የMicrosoft Windows® ክፋይ መጠን በማስተካከል ላይ"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, fuzzy, c-format
msgid "Which partition do you want to resize?"
msgstr "ምን ማድረግ ይፈልጋሉ?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2426,12 +2432,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2452,117 +2458,117 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "የሚቀጥለው"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "መከፋፈል አልተሳካም: %s"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "የMicrosoft Windows® ክፋይ መጠን በማስተካከል ላይ"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "መጠን"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "የMicrosoft Windows® ክፋይ መጠን በማስተካከል ላይ"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "የFATን መጠን መለወጥ አልተሳካም: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Microsoft Windows®ን አስወግድ"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "ዲስኩን እንዳለ ደምስስ"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "የተለመደውን ዲስክ አከፋፈል"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "fdiskን ተጠቀም"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "ውጣ"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "የመትከያ ቦታ ማግኘት አልቻልኩም"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "መከፋፈል አልተሳካም: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2599,22 +2605,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2622,26 +2628,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2649,19 +2655,19 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2670,24 +2676,24 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "የሚሰራ ነገር የለም"
@@ -2697,238 +2703,238 @@ msgstr "የሚሰራ ነገር የለም"
msgid "SATA controllers"
msgstr "የSATA ተቆጣጣሪዎች"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "የRAID ተቆጣጣሪዎች"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA ተቆጣጣሪዎች"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "የካርድ ሞዴል፦"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "የFirewire ተቆጣጣሪዎች"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "የPCMCIA ተቆጣጣዊዎች"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "የSCSI ተቆጣጣዊዎች"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "የUSB ተቆጣጣቂዎች"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "የUSB ፖርቶች"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "የSMBus ተቆጣጣሪዎች"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "ድልድዮች እና ሲስተም ተቆጣጣሪዎች"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "ፍሎፒ"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "ዚፕ"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "ዲስክ"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "ሲዲ-ሮም"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "ዲሲ/ዲቪዲ አቃጣይ ፕሮግራሞች"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "ዲቪዲ-ሮም"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "ቴፕ"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "የAGP ተቆጣጣሪዎች"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "የቪዲዮ ካርድ"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "የቲቪ ካርድ"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "ሌሎች የመገናኛ ብዙሃን መሳሪያዎች"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "የድምጽ ካርድ"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "ዌብ-ካም"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr ""
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "የISDN ማመጣጠኛዎች"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "የኢተርኔት ካርድ"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "ሞደም"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "የADSL ማመጣጠኛዎች"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "ማስታወሻ"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "ማተሚያ"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "ጆይ ስቲክ"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "መተየቢያ"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "መጠቆሚያ"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr ""
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "ያልታወቀ/ሌሎች"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "ሲፒዩ #"
@@ -3150,19 +3156,19 @@ msgstr "የፋይሉ ዓይነት"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "እሺ"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "አዎ"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3193,22 +3199,22 @@ msgstr "ጨርስ"
msgid "Previous"
msgstr "የቀድሞው"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, fuzzy, c-format
msgid "No file chosen"
msgstr "የፋይል ምልክት"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "የቤት ዶሴ አልተገኘም።"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such directory"
msgstr "ዶሴ አይደለም"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such file"
msgstr "ፋይሉ `%s'ን የለም\n"
@@ -4485,7 +4491,7 @@ msgstr "ዛምቢያ"
msgid "Zimbabwe"
msgstr "ዚምቧቤ"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "ወደ %s እንኳን ደህና መጡ"
@@ -5004,7 +5010,7 @@ msgstr "የሚፈነጠቅ መመልከቻ ሲጀምር _አሳይ"
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5320,7 +5326,7 @@ msgstr "የሚፈነጠቅ መመልከቻ ሲጀምር _አሳይ"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6348,17 +6354,17 @@ msgstr "ራሺያ"
msgid "Yugoslavia"
msgstr "ዩጎዝላቪያ"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "ይህ ትክክል ነው?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "መረጃ"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 406f96bf9..5c3a2be83 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2011-05-19 13:12+0000\n"
"Last-Translator: salim salim <almusalimalmusalimah@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +16,7 @@ msgstr ""
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -25,12 +25,12 @@ msgstr ""
msgid "Please wait"
msgstr "الرجاء الانتظار"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "محمل الإقلاع قيد التثبيت"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,12 +46,12 @@ msgstr ""
"\n"
"أتريد تعيين رقم هويّة كتلة جديد؟"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "فشل تثبيت محمّل الإقلاع. حدث الخطأ التالي:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -66,218 +66,218 @@ msgstr ""
"\n"
"على أي قرص تقوم بالإقلاع؟"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr ""
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "أين تريد تثبيت محمّل الإقلاع؟"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "القطاع الأول من القرص (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "القطاع الأول من التجزيء الجذري"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "على قرص مرن"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "تخطّي"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "تهيئة أسلوب الإقلاع"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "خيارات محمّل الإقلاع الرئيسية"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "محمّل الإقلاع"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "محمّل الإقلاع المُستخدم"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "جهاز الإقلاع"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "توقيت ما قبل إقلاع الصورة الافتراضية"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "تمكين ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr ""
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr ""
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "الأمن"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "كلمة المرور"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطابقة"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "الرجاء المحاولة مجدداً"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "كلمة المرور (مجدداً)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "صورة"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "الجذر"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "إلحاق"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "وضعية الفيديو"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "سجلّ إعداد الشبكة "
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "تسمية"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "افتراضي"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "لا يُسمح بالتسميات الفارغة"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "يجب تحديد صورة النواة"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "يجب تحديد تجزيء جذر"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "هذه التسمية مستخدمة مسبقا"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل المُراد إضافته؟"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "لينكس"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "نظام تشغيل آخر (ويندوز...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -286,194 +286,194 @@ msgstr ""
"هذه هي المدخلات المختلفة في قائمة الإقلاع حتى الآن.\n"
"يمكنك إضافة مدخلات أخرى أو تغيير الموجودة."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "الوصول إلى برامج X"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "الوصول إلى أدوات rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "السماح بـ\"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "الوصول إلى ملفات الإدارة"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "الوصول إلى أدوات الشبكة"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "الوصول إلى أدوات التجميع"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(تمت إضافة %s مسبقا)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "الرجاء إعطاء اسم مستخدم"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "اسم المستخدم طويل جداً"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "هوية المستخدم"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "هوية المجموعة"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "ضع كلمة مرور المستخدم الجذر"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "أيقونة"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "اسم الدخول"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "الصدفة"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "انتظر من فضلك، جاري إضافة الوسائط..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "تسجيل دخول آلي"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "يمكن إعداد جهازك لتسجيل الدخول آلياً لمستخدم معين."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "اختيار المستخدم الافتراضي:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "اختيار مدير النوافذ الذي سيتم تشغيله:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "ملاحظات الإصدار"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "إغلاق"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "اتفاقية الترخيص"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "خروج"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "قبول"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "رفض"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "الرجاء اختيار لغة لاستخدامها"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -481,87 +481,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "ماجيّا"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "كل اللغات"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "كل اللغات"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "خيار اللغة"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "الدولة / الإقليم"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "الرجاء اختيار الدولة"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "هذه قائمة كاملة بكل الدول المتوفرة"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "دول أخرى"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "متقدم"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "طريقة الإدخال:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "لاشيء"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "لا مشاركة"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "السماح لكل المستخدمين"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "مخصّص"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -576,14 +576,14 @@ msgstr ""
"\n"
"\"مخصص\" يسمح لك بعمل إعدادات خاص لكل مستخدم.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr "NFS: نظام تقسيم ملفّات يونكس التّقليدي، بدعم أقلّ على ماك و ويندوز."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -592,18 +592,18 @@ msgstr ""
"SMB: نظام تقسيم ملفّات مستعمل من قبل ويندوز، ماك OS X و العديد من أنظمة لينكس "
"الحديثة."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "يمكنك التّصدير باستعمال NFS أو SMB. الرجاء اختيار أيّهما تريد استعماله."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "تشغيل userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -612,54 +612,54 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "تحتاج أن تقوم بالخروج والعودة مجدّداً حتى يسري مفعول التّغييرات"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "المنطقة الزمنية"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "ما هي منطقتك الزمنية؟"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "خادم NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "تزامن وقت آلي (باستخدام NTP)"
@@ -988,7 +988,7 @@ msgid "Domain Admin Password"
msgstr "كلمة المرور لمدير النطاق"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1028,19 +1028,19 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "لا توجد مساحة كافية في /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "يمكنك تثبيت محمّل الإقلاع على التجزيء %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "تهيئة محمّل الإقلاع يجب أن يحدّث لأنّ التجزيء تمّ إعادة ترقيمه"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1049,7 +1049,7 @@ msgstr ""
"لا يمكن تثبيت محمّل الإقلاع بشكل صحيح. يجب أن تقوم بإقلاع الإنقاذ وتختار \"%s"
"\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "إعادة تثبيت مُحمِّل الإقلاع"
@@ -1079,17 +1079,23 @@ msgstr "غ.ب."
msgid "TB"
msgstr "ت.ب."
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d دقائق"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "دقيقة واحدة"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d ثوان"
@@ -1107,27 +1113,27 @@ msgstr ""
"كخادم WebDAV). إذا كنت تريد إضافة نقاط تحميل\n"
"WebDAV، اختر \"جديد\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "جديد"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "فكّ"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "تركيب"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "خادم"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1135,25 +1141,25 @@ msgstr "خادم"
msgid "Mount point"
msgstr "مكان التركيب"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "خيارات"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "حذف"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "تم"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1169,17 +1175,17 @@ msgstr "تم"
msgid "Error"
msgstr "خطأ"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "الرجاء إدخال عنوان خادم WebDav"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "العنوان يجب أن يبدأ بـ http:// أو https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1190,33 +1196,33 @@ msgstr "العنوان يجب أن يبدأ بـ http:// أو https://"
msgid "Warning"
msgstr "تحذير"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr ""
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "الخادم: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "مكان التركيب:"
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "التجزئة"
@@ -1247,9 +1253,9 @@ msgstr "خروج"
msgid "Continue"
msgstr "استمرار"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "مساعدة"
@@ -1280,63 +1286,63 @@ msgstr "تفاصيل"
msgid "No hard disk drives found"
msgstr "تعذّر العثور على أقراص صلبة"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "مجهول"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "ويندوز"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "أخرى"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "فارغ"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "أنواع أنظمة الملفات:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr ""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "استخدام ``الفكّ'' أولا"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr ""
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1385,7 +1391,7 @@ msgstr "هل تريد الخروج بدون كتابة جدول التجزئة؟
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "هل تريد حفظ تعديلات /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "تحتاج إلى إعادة التثبيت لتفعيل التعديلات على جدول التجزئة"
@@ -1665,7 +1671,7 @@ msgid "Where do you want to mount %s?"
msgstr "أين تريد تركيب الجهاز %s؟"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "تغيير الحجم"
@@ -1710,7 +1716,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2143,8 +2149,8 @@ msgstr "تغيير النوع"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "إلغاء"
@@ -2236,7 +2242,7 @@ msgstr ""
"لقد ظهر خطأ - لم يعثر على أجهزة صالحة يمكن إنشاء أنظمة ملفات جديدة عليها. "
"تأكد من العتاد الخاص بك لمعرفة سبب هذه المشكلة"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "لديك تجزيء ESP FAT32 تم تحميلها على /boot/EFI"
@@ -2442,7 +2448,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "لا توجد مساحة تبديل كافية للقيام بالتثبيت، الرجاء زيادة مساحة التبديل"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2453,7 +2459,7 @@ msgstr ""
"لهذا الغرض انشئ تجزيء (أو اضغط على تجزيء موجودة).\n"
"ثم اختر ``مكان التركيب'' و اجعله `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2464,42 +2470,42 @@ msgstr ""
"\n"
"هل تريد المتابعة على أي حال؟"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "استخدام المساحة الفارغة"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "لا توجد مساحة فارغة لعمل التجزيئات الجديدة"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "استخدم التجزيئات الموجودة"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "لا يوجد تجزيء لاستخدامه"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "جاري حساب مساحة تجزيء ويندوز"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "أي تجزيء تريد تغيير حجمه؟"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2507,12 +2513,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2546,75 +2552,75 @@ msgstr ""
"عندما تكون متأكداً، اضغط %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "التالي"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr ""
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "ما حجم المساحة التي تريد إبقائها لويندوز على التجزيء %s؟"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "الحجم"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "تغيير حجم تجزيء ويندوز"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "فشل تغيير حجم FAT: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "لا توجد تجزيء FAT قابل لتغيير حجمها (أو لا توجد مساحة كافية متبقية)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "حذف ويندوز(TM)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr ""
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "كل التجزيئات و بياناتها ستضيع من على السواقة %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "تجزئة قرص مخصصة"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "استخدام fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2623,42 +2629,42 @@ msgstr ""
"يمكنك الآن تجزئة %s.\n"
"عندما تنتهي لا تنس الحفظ باستخدام `w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr ""
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "لا يمكنني العثور على مساحة فارغة للتثبيت"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "عثر معالج التجزئة في DrakX على الحلول التالية:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "فشلت التجزئة: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "لا يمكنك استخدام JFS للتجزئات أصغر من 16 ميغابايت"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "لا يمكنك استخدام ReiserFS للتجزئات أصغر من 32 ميغابايت"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "لا يمكنك استخدام JFS للتجزئات أصغر من 16 ميغابايت"
@@ -2701,22 +2707,22 @@ msgstr ""
"\n"
"هل أنت موافق على خسارة كل التجزيئات؟\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "يجب أن تبدأ أماكن التركيب بالعلامة /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "أماكن التركيب يجب أن تحتوي فقط على الحروف و/أو الآرقام"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "هناك تجزيء مع مكان التركيب %s مسبقاً\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2724,26 +2730,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2751,19 +2757,19 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2772,12 +2778,12 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "هذا الدليل يجب أن يكون في نظام الملفات الجذري"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2786,12 +2792,12 @@ msgstr ""
"تحتاج إلى نظام ملفات حقيقي (ext2/ext3، resierfs، xfs، أو jfs) لمكان التركيب "
"هذه\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "لا توجد مساحة كافية للتحديد الآلي"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "لا شيء لعمله"
@@ -2801,238 +2807,238 @@ msgstr "لا شيء لعمله"
msgid "SATA controllers"
msgstr "متحكّمات SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "متحكّمات RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "متحكمات (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr ""
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "متحكمات Firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "متحكمات PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "متحكمات SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "متحكمات USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "منافذ USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "متحكّمات SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "الجسور ومتحكمات النظام"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "القرص المرن"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "القرص الصّلب"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "القرص المدمج"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "أجهزة نسخ CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "شريط"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "متحكمات AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "بطاقة الفيديو"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "بطاقة التلفاز"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "أجهزة وسائط متعددة أخرى"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "بطاقة الصوت"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "كاميرات الوب"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "المُعالجات"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "مكيّفات ISDN"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "بطاقة Ethernet"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "المودم"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "مكيّفات ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "الذاكرة"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "طابعة"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "عصا الألعاب"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "لوحة المفاتيح"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "الماوس"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "مُزوّد الطاقة الغير منقطعة (UPS)"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "الماسح الضوئي"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "غير معروف/أخرى"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3276,19 +3282,19 @@ msgstr "نوع الموالف:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "موافق"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "نعم"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3319,22 +3325,22 @@ msgstr "انتهاء"
msgid "Previous"
msgstr "السابق "
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "لم يتم اختيار أي ملف"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "لقد اخترت دليلاً، وليس ملفاً"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "لا دليل كذلك"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "لا ملف كذلك"
@@ -4616,7 +4622,7 @@ msgstr "زامبيا"
msgid "Zimbabwe"
msgstr "زيمبابوي"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "أهلا في %s"
@@ -5159,10 +5165,10 @@ msgid "Allow direct root login."
msgstr ""
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
-msgstr ""
+"Allow the list of users on the system on display managers (kdm and gdm)."
+msgstr "سرد أسماء المستخدمين على مُدراء العرض (sddm وgdm("
#: security/help.pm:35
#, c-format
@@ -5496,8 +5502,8 @@ msgid "Direct root login"
msgstr "دخول المستخدم الجذر مباشر"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "سرد أسماء المستخدمين على مُدراء العرض (sddm وgdm("
#: security/l10n.pm:20
@@ -6667,17 +6673,17 @@ msgstr "روسيا الإتحادية"
msgid "Yugoslavia"
msgstr "يوغوسلافيا"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "هل هذا صحيح؟"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "لقد اخترت ملفاً، وليس دليلاً"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "المعلومات"
diff --git a/perl-install/share/po/ast.po b/perl-install/share/po/ast.po
index d444807a7..a7a0414ef 100644
--- a/perl-install/share/po/ast.po
+++ b/perl-install/share/po/ast.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-06-01 05:40+0000\n"
"Last-Translator: enolp <enolp@softastur.org>\n"
"Language-Team: Asturian (http://www.transifex.com/projects/p/mageia/language/"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -27,12 +27,12 @@ msgstr ""
msgid "Please wait"
msgstr "Por favor, espera"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalación del cargador d'arranque en progresu"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -49,13 +49,13 @@ msgstr ""
"\n"
"¿Asignar un ID de volume nuevu?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Falló la instalación del cargador d'arranque. Asocedió'l siguiente fallu:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -70,218 +70,218 @@ msgstr ""
"\n"
"¿En qué unidá tas arrancando?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Instalación del cargador d'arranque"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "¿Ú quies instalar el cargador d'arranque?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Sector primeru (MBR) de la unidá %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Sector primeru de la unidá (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Sector primeru de la partición raigañu"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Nel disquete"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Saltar"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuración del estilu d'arranque"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Opciones principales del cargador d'arranque"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Cargador d'arranque"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Cargador d'arranque pa usar"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Preséu d'arranque"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Opciones principales"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Retrasu enantes d'arrancar la imaxe por defeutu"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Habilitar ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Habilitar SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Habilitar APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Habilitar APIC llocal"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Seguranza"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contraseña"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Les contraseñes nun concasen"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Por favor, inténtalo de nueves"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nun pues usar una contraseña con %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contraseña (de nueves)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Imaxe"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Rique la contraseña p'arrancar"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Mou de videu"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Perfil de rede"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Por defeutu"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Nun s'almiten etiquetes baleres"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Tienes d'especificar una imaxe de kernel"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Tienes d'especificar una partición raigañu"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta yá ta n'usu"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "¿Qué triba d'entrada quies amestar?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Otru SO (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuración del cargador d'arranque"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -290,47 +290,47 @@ msgstr ""
"Equí tán les entraes nel to menú d'arranque.\n"
"Pues crear entraes adicionales o camudar les esistentes"
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "accesu a X programes"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "accesu a ferramientes rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "acceder a ficheros alministrativos"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "acceder a ferramientes de rede"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "acceder a ferramientes de compilación"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(yá s'amestó %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Por favor, da un nome d'usuariu"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -339,148 +339,148 @@ msgstr ""
"El nome d'usuariu tien d'entamar con una lletra minúscula siguida namái por "
"númberos, lletres minúscules, `-' y `_'"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "El nome d'usuariu ye perllargu"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Esti nome d'usuariu yá s'amestó"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID d'usuariu"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID del grupu"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s tien de ser un númberu"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Alministración d'usuariu"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Habilitar cuenta de convidáu"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Afitar contraseña d'alministrador (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Introducir un usuariu"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Iconu"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Nome real"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Nome d'aniciu sesión"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Por favor espera, amestando medios..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Aniciu sesión automáticu"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Pues configurar el to ordenador p'aniciar sesión automáticamente nun usuariu."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Usar carauterística"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Escoyer usuariu por defeutu:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escoyer l'alministrador de ventanes pa usar:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Notes de llanzamientu"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Zarrar"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Alcuerdu de llicencia"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Colar"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "¿Aceutes esta llicencia?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Aceutar"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Refugar"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Por favor, escueyi una llingua pa usar"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -491,87 +491,87 @@ msgstr ""
"llingua que te prestaría instalar. Tarán disponibles cuando la to\n"
"instalación tea completada y reanicies el to sistema."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Llingües múltiples"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Esbillar llingües adicionales"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Compatibilidá de codificación vieya (non UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Toles llingües"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Escoyeta de llingua"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "País / Rexón"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Por favor, escueyi'l to país"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Equí ta la llista completa de países disponibles"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Otros países"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avanzáu"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Métodu d'entrada:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Un res"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Ensin compartición"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permitir tolos usuarios"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalizáu"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -587,7 +587,7 @@ msgstr ""
"\n"
"\"Personalizáu\" permitirá una granularidá per usuariu.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -596,7 +596,7 @@ msgstr ""
"NFS: el sistema de compartición de ficheros tradicional d'Unix, con menos "
"sofitu en Mac y Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -605,19 +605,19 @@ msgstr ""
"NFS: un sistema de compartición de ficheros usáu por Windows, Mac OS X y "
"abondos sistemas Linux modernos."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Pues esportar usando NFS o SMB. Por favor, esbilla cuál te prestaría usar."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Llanzar userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -626,7 +626,7 @@ msgstr ""
"La compartición per usuariu usa'l grupu \"fileshare\".\n"
"Pues usar userdrake p'amestar un usuariu a esti grupu."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -635,49 +635,49 @@ msgstr ""
"Necesites zarrar sesión y tornar otra vegada pa que les camudancies faigan "
"efeutu. Primi Aceutar pa zarrar sesión agora."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Necesites zarrar sesión y tornar otra vegada pa que les camudancies faigan "
"efeutu"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Fusu horariu"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "¿Cuál ye'l to fusu horariu?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Axustes de data, reló y fusu horariu"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "¿Cuál ye la meyor hora?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (reló hardware afitáu a UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (reló hardware afitáu a la hora llocal)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Sirvidor NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización d'hora automática (usando NTP)"
@@ -1019,7 +1019,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1054,19 +1054,19 @@ msgstr ""
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Nun pues instalar el cargador d'arranque nuna partición %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1075,7 +1075,7 @@ msgstr ""
"El cargador d'arranque nun pue instalase correutamente. Tienes d'arrancar el "
"mou rescate y escoyer \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1105,18 +1105,24 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
-msgid "%d minutes"
+msgid "%02d:%02d"
msgstr ""
#: common.pm:290
#, c-format
-msgid "1 minute"
+msgid "%d minutes"
msgstr ""
#: common.pm:292
#, c-format
+msgid "1 minute"
+msgstr ""
+
+#: common.pm:294
+#, c-format
msgid "%d seconds"
msgstr ""
@@ -1129,27 +1135,27 @@ msgid ""
"points, select \"New\"."
msgstr ""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nuevu"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr ""
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr ""
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Sirvidor"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1157,25 +1163,25 @@ msgstr "Sirvidor"
msgid "Mount point"
msgstr ""
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opciones"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Desaniciar"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fecho"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1191,17 +1197,17 @@ msgstr "Fecho"
msgid "Error"
msgstr "Fallu"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr ""
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1212,33 +1218,33 @@ msgstr ""
msgid "Warning"
msgstr "Avisu"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr ""
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Sirvidor:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr ""
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr ""
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Particionáu"
@@ -1271,9 +1277,9 @@ msgstr ""
msgid "Continue"
msgstr "Continuar"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Ayuda"
@@ -1301,63 +1307,63 @@ msgstr "Detalles"
msgid "No hard disk drives found"
msgstr ""
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Desconocíu"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Otru"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr ""
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr ""
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr ""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr ""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr ""
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1406,7 +1412,7 @@ msgstr "¿Colar ensin grabar la tabla de particiones?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr ""
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1682,7 +1688,7 @@ msgid "Where do you want to mount %s?"
msgstr ""
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr ""
@@ -1727,7 +1733,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2150,8 +2156,8 @@ msgstr ""
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Encaboxar"
@@ -2239,7 +2245,7 @@ msgid ""
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr ""
@@ -2433,7 +2439,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2444,7 +2450,7 @@ msgstr ""
"Pa cumplir esto, crea una partición (o primi nuna esistente).\n"
"Dempués escueyi l'aición `\"Puntu de montaxe'' y afítalo a `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2452,42 +2458,42 @@ msgid ""
"Continue anyway?"
msgstr ""
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Usar espaciu llibre"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nun hai espaciu abondo p'allugar particiones nueves"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr ""
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr ""
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr ""
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2495,12 +2501,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2521,117 +2527,117 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Siguiente"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr ""
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Tamañu"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr ""
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Desaniciar Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr ""
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Toles particiones y los sos datos desaniciaránse na unidá %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Particionáu de discu personalizáu"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr ""
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr ""
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr ""
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "L'encontu pal particiunáu DrakX alcontró les soluciones siguientes:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Equí ta'l conteníu dle to discu"
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particionáu fallíu: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2668,22 +2674,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Yá hai una partición col puntu de montaxe %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2691,26 +2697,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2718,19 +2724,19 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2739,24 +2745,24 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nun hai espaciu abondu pal allugamientu automáticu"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr ""
@@ -2766,238 +2772,238 @@ msgstr ""
msgid "SATA controllers"
msgstr ""
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr ""
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr ""
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr ""
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr ""
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr ""
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr ""
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr ""
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr ""
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr ""
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr ""
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr ""
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr ""
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Discu duru"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr ""
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr ""
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr ""
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr ""
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr ""
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr ""
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr ""
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr ""
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr ""
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr ""
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr ""
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr ""
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr ""
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Módem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr ""
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr ""
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr ""
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr ""
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Tecláu"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Mur"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr ""
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr ""
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr ""
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr ""
@@ -3219,19 +3225,19 @@ msgstr ""
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Aceutar"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Sí"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3262,22 +3268,22 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr ""
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr ""
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr ""
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr ""
@@ -4552,7 +4558,7 @@ msgstr ""
msgid "Zimbabwe"
msgstr ""
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr ""
@@ -5079,7 +5085,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5395,7 +5401,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6423,17 +6429,17 @@ msgstr "Federación rusa"
msgid "Yugoslavia"
msgstr ""
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr ""
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Información"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index b618bb82a..c7d13a826 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-az\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-03-31 14:21+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Xahiş edirik, gözləyin"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -44,12 +44,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -64,219 +64,219 @@ msgstr ""
"\n"
"Hansı sürücü üstündən açılış edirsiniz?"
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yükləyicisini hara qurmaq istəyirsiniz?"
-#: any.pm:351
+#: any.pm:355
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Diskin ilk sektoru (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Kök bolməsinin ilk sektoru"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Disketə"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Keç"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Açılış Tərzi Quraşdırılması"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Sistem yükləyicisinin ana seçimləri"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Açılış yükləyicisi"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Açılış avadanlığı"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:418
+#: any.pm:422
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Təhlükəsizlik"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Şifrə"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Şifrələr uyğun gəlmir"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Xahiş edirik, təkrar sınayın"
-#: any.pm:425
+#: any.pm:429
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr ""
"%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Şifrə (təkrar)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Əks"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Kök"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Sonuna əlavə et"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Video modu"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Şəbəkə profili"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiket"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Ön Qurğulu"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Boş etiket qəbul edilmir"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Çəyirdək əksini bildirməlisiniz"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Kök bölməsini bildirməlisiniz"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Bu etiket onsuzda istifadə edilib"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Nə cür bir giriş əlavə etmək istəyirsiniz?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linuks"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Digər ƏS (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Açılış Tərzi Quraşdırılması"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -285,47 +285,47 @@ msgstr ""
"Buradakı bir birindən fərqli seçimlərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "X proqramlarına yetişmə icazəsi"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "rpm vasitələrinə yetişmə"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "\"su\" icazəsi ver"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "idarəvi fayllara yetişmə"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "şəbəkə vasitələrinə yetişmə"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "dərləmə vasitələrinə yetişmə"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Xahiş edirik, bir istifadəçi adı alın"
-#: any.pm:830
+#: any.pm:875
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -334,150 +334,150 @@ msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "İstifadəçi adı çox uzundur"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Bu istifadəçi adı onsuzda əlavə edilib"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "İstifadəçi ID'si"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Qrup ID'si"
-#: any.pm:839
+#: any.pm:884
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "%s seçimi rəqəm olmalıdır!"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "İstifadəçi adı"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Ali istifadəçi şifrəsini tə'yin et"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Bir istifadəçi daxil edin\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Timsal"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Həqiqi ad"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Giriş adı"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Qabıq"
-#: any.pm:925
+#: any.pm:970
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "ttmkfdir fəaliyyətdədir, xahiş edirik, gözləyin..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Kompüteriniz istifadəçinin avtomatik giriş etməsi üçün qurğulana bilər."
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Bu xüsusiyyəti istifadə etmək istəyirsiniz?"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "İşlətmək istədiyiniz pəncərə idarəçisini seçin:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Buraxılış:"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Bağla"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Lisenziya razılığı"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Çıx"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Başqası var?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Qəbul Et"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Rədd Et"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Xahiş edirik, istifadə ediləcək dili seçin"
-#: any.pm:1106
+#: any.pm:1151
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -488,87 +488,87 @@ msgstr ""
"dilləri seçin. Onlar qurulum tamamlanandan və sistem yenidən\n"
"başlayandan sonra istifadəyə hazır olacaqlar."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Bütün dillər"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Bütün dillər"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Dil seçkisi"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Ölkə / Bölgə"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Xahiş edirik, ölkənizi seçin"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Bütün mövcud ölkələrinn siyahısı"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Diqər Ölkələr"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Ətraflı"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Giriş yöntəmi:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Heç biri"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Bölüşmə yoxdur"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Bütün istifadəçilərə icazə ver"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Xüsusi"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -585,21 +585,21 @@ msgstr ""
"\"Xüsusi\" seçənəyi, hər istifadəçiyə fərqli icazə vermək üçün istifadə "
"edilir.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -607,12 +607,12 @@ msgstr ""
"NFS ya da SMB işlədərək ixrac edə bilərsiniz. Xahiş edirik, işlətmək "
"istədiyinizi seçin."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake-ni başlat"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -622,7 +622,7 @@ msgstr ""
"Bu qrupa istifadəçiləri əlavə etmək üçün userdrake'dən istifadə edə "
"bilərsiniz. "
-#: any.pm:1458
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -630,48 +630,48 @@ msgid ""
msgstr ""
"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Vaxt Zolağı"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Vaxt zolağınız hansıdır?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Avadanlıq saatı GMT'yə görə quruludur"
-#: any.pm:1528
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Avadanlıq saatı GMT'yə görə quruludur"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP Verici"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Avtomatik vaxt sinxronizasiyası (NTP vasitəsiylə)"
@@ -999,7 +999,7 @@ msgstr "Domen İdarəçi Şifrəsi"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1034,26 +1034,26 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Sistem yükləyicisini %s bölməsinə qura bilməzsiniz\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Sistem Yükləyicisini Yenidən Qur"
@@ -1083,17 +1083,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d dəqiqə"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 dəqiqə"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d saniyə"
@@ -1111,27 +1117,27 @@ msgstr ""
"olaraq quraşdırılmalıdır). İndi WebDAV bağlama nöqtələri əlavə etmək\n"
"üçün, \"Yeni\" düyməsinə basın."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Yeni"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Ayır"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Bağla"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Verici"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1139,25 +1145,25 @@ msgstr "Verici"
msgid "Mount point"
msgstr "Bağlama nöqtəsi"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Seçimlər"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Sil"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Qurtardı"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1173,17 +1179,17 @@ msgstr "Qurtardı"
msgid "Error"
msgstr "Xəta"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Xahiş edirik, WebDAV vericisi URL-ni daxil edin"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL http:// ya da https:// ilə başlamalıdır"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1194,33 +1200,33 @@ msgstr "URL http:// ya da https:// ilə başlamalıdır"
msgid "Warning"
msgstr "Xəbərdarlıq"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Bu düyməyə basmaq istəyirsiniz?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Verici:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Seçimlər: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Bölmələndirmə"
@@ -1251,9 +1257,9 @@ msgstr "Çıxış"
msgid "Continue"
msgstr "Davam et"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Yardım"
@@ -1285,63 +1291,63 @@ msgstr "Ətraflı"
msgid "No hard disk drives found"
msgstr "Sabit disk(lər) tapıla bilmədi"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Namə'lum"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "Çıxış"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Dəyiş-toqquş"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Digər"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Boş"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Fayl sistemi növü:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Bu bölmə ölçüləndirilə bilməz"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Əvvəlcə ``Ayır'-ı işlət"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Yerinə ``%s'' işlət"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1390,7 +1396,7 @@ msgstr "Bölmə cədvəli qeyd edilmədən çıxılsın?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Dəyişikliklər /etc/fstab faylına qeyd edilsin?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1672,7 +1678,7 @@ msgid "Where do you want to mount %s?"
msgstr "%s avadanlığını hara bağlamaq istəyirsiniz?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Ölçüləndirilir"
@@ -1718,7 +1724,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, fuzzy, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2153,8 +2159,8 @@ msgstr "Növünü dəyişdir"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Ləğv Et"
@@ -2246,7 +2252,7 @@ msgstr ""
"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "/boot/EFI ünvanına bağlanmış ESP FAT32 bölməniz olmalıdır"
@@ -2456,7 +2462,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik, əlavə edin"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2468,7 +2474,7 @@ msgstr ""
"ya da yeni birini başdan yaradın. Sonra \"Bağlama \n"
"Nöqtəsi\"gedişatını seçin va buranı '/' olaraq dəyişdirin."
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2478,42 +2484,42 @@ msgstr ""
"Dəyiş-toqquş sahəniz yoxdur\n"
"Davam edilsin?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Boş sahəni istifadə et"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Yeni bölmələr ayırmaq üçün kifayət qədər boş yer yoxdur"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Mövcud bölmələri işlət"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "İstifadə ediləcək mövcud bölmə yoxdur"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Microsoft Windows® bölməsin böyüklüyü hesablanır"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Windows bölməsindəki boş sahəni işlət"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Hansı bölmə ölçüləndirilsin?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2524,12 +2530,12 @@ msgstr ""
"kompüterinizi Microsoft Windows® ilə açın, ''defrag'' vasitəsini işlədin, "
"sonra %s qurulumunu yenidən başladın."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2562,54 +2568,54 @@ msgstr ""
"Hazır olanda, %s düyməsinə basın."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Sonrakı"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Bölmələndirmə"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Microsoft Windows® üçün hansı böyüklüyü saxlamaq istəyirsiniz %s bölməsi?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Böyüklük"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Microsoft Windows® bölməsi ölçüləndirilir"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT ölçüləndirilməsi bacarılmadı: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Ölçüləndiriləcək FAT bölməsi mövcud deyil (ya da lazımi yer yoxdur)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Microsoft Windows®'u Sil"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "Bütün diski sil"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2618,22 +2624,22 @@ msgstr ""
"Sizin birdən çox diskiniz var, linux qurmaq üçün hansını istifadə "
"edəcəksiniz?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s sürüsündəki mövcud bütün bölmələr və onlardakı mə'lumatitiriləcək"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Xüsusi disk bölmələndirməsi"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Fdisk istifadə et"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2642,42 +2648,42 @@ msgstr ""
"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Çıxış"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX bölmələndirmə sehirbazı bu çıxış yollarını tapdı:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Bölmələndirmə bacarılmadı: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "16MB'dan kiçik disk bölmələrində JFS istifadə edə bilməzsiniz"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "32MB'dən kiçik disk bölmələrində ReiserFS istifadə edə bilməzsiniz"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "16MB'dan kiçik disk bölmələrində JFS istifadə edə bilməzsiniz"
@@ -2721,22 +2727,22 @@ msgstr ""
"\n"
"Bütün bölmələri itirmək işinizə gəlir?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Bağlama nöqtələri ancaq alfanumerik hərf daxil edə bilər"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bağlama nöqtəsi %s olan bölmə mövcuddur\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2747,7 +2753,7 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2757,7 +2763,7 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:458
+#: fsedit.pm:461
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2767,12 +2773,12 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2783,20 +2789,20 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, fuzzy, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "%s bağlama nöqtəsi üçün LVM Məntiqi Həcmini istifadə edə bilməzsiniz"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2808,12 +2814,12 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2822,12 +2828,12 @@ msgstr ""
"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2/3/4, reiserfs, xfs, "
"ya da jfs)ehtiyacınız var\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Avtomatik yerləşdirmə üçün kifayət qədər boş sahə yoxdur"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Ediləcək heçnə yoxdur"
@@ -2837,238 +2843,238 @@ msgstr "Ediləcək heçnə yoxdur"
msgid "SATA controllers"
msgstr "SATA idarəçiləri"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAİD idarəçiləri"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)İDE/ATA idarəçiləri"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "Kart modeli:"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire idarəçiləri"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCİA idarəçiləri"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSİ idarəçiləri"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB idarəçiləri"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, fuzzy, c-format
msgid "USB ports"
msgstr "USB çapçı"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus idarəçiləri"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Körpülər və sistem idarəçiləri"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disket"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Hard Disk"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD yazıcılar"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Kaset"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP idarəçiləri"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Video kartı"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Televiziya kartı"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Digər Multimediya avadanlıqları"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Səs kartı"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Veb kamerası"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "İşlədicilər"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN adapterləri"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Eternet Kartı"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL adapterləri"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Yaddaş"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Çapçı"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Oyun Çubuğu"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Klaviatura"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Siçan"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Darayıcı"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Na'məlum/Digərləri"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3317,19 +3323,19 @@ msgstr "Tuner növü:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Oldu"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Bəli"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3360,23 +3366,23 @@ msgstr "Qurtar"
msgid "Previous"
msgstr "Əvvəlki"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, fuzzy, c-format
msgid "No file chosen"
msgstr "fayl seçicisi"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr ""
"'/' adları sadəcə bir qovluq ola bilər, qətiyyan'iyyen bir açar ola bilməz"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such directory"
msgstr "Belə cərgə yoxdur!"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such file"
msgstr "Belə bir fayl yoxdur : `%s'\n"
@@ -4658,7 +4664,7 @@ msgstr "Zambiya"
msgid "Zimbabwe"
msgstr "Zimbabve"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoş Gəldiniz"
@@ -5308,7 +5314,7 @@ msgstr "Birbaşa ali istifadəçinin girişinə icazə ver/vermə"
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Sistemdəki ekran idarəçilərində (gdm və sddm) istifadəçilərin siyahısının "
"göstərilməsinə icazə Ver/Vermə."
@@ -5686,8 +5692,8 @@ msgid "Direct root login"
msgstr "Birbaşa ali istifadəçi girişi"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Ekran idarəçilərində (sddm və gdm) istifadəçiləri göstər"
#: security/l10n.pm:20
@@ -6883,17 +6889,17 @@ msgstr "Rusiya Federasiyası"
msgid "Yugoslavia"
msgstr "Yugoslaviya"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Bu düzdür?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, fuzzy, c-format
msgid "You have chosen a file, not a directory"
msgstr "Bir qovluq deyil, bir faylı bildirmək məcburiyyətindəsən .\n"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Mə'lumat"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 6405b9af7..4376baf71 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -23,12 +23,12 @@ msgstr ""
msgid "Please wait"
msgstr "Калі ласка, пачакайце"
-#: any.pm:258
+#: any.pm:262
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Усталяванне загрузчыку"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -39,12 +39,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнікла наступная памылка:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -54,218 +54,218 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Усталяванне загрузчыку"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: any.pm:351
+#: any.pm:355
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Першы сектар прылады (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Першы сектар прылады (MBR)"
-#: any.pm:355
+#: any.pm:359
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: any.pm:357
+#: any.pm:361
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Захаванне на дыскету"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Прапусціць"
-#: any.pm:387
+#: any.pm:391
#, fuzzy, c-format
msgid "Boot Style Configuration"
msgstr "Настройка IDE"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Галоўныя опцыі пачатковага загрузчыку"
-#: any.pm:405
+#: any.pm:409
#, fuzzy, c-format
msgid "Bootloader"
msgstr "Усталяванне загрузчыку"
-#: any.pm:406
+#: any.pm:410
#, fuzzy, c-format
msgid "Bootloader to use"
msgstr "Галоўныя опцыі пачатковага загрузчыку"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Загрузачная прылада"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr ""
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Сервер друку"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Сервер друку"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Бясьпека"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Пароль"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Паролі не супадаюць"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Паспрабуйце яшчэ раз"
-#: any.pm:425
+#: any.pm:429
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Паўтарыце пароль"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Вобраз"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Далучыць"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Відэа-рэжым"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, fuzzy, c-format
msgid "Network profile"
msgstr "Сеткавы інтэрфейс"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Метка"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Па дамаўленню"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Пустая метка не дазваляецца"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:522
+#: any.pm:526
#, fuzzy, c-format
msgid "You must specify a root partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Гэтая метка ўжо выкарыстоўваецца"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Які тып пункта жадаеце дадаць?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Іншая АС (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Настройка IDE"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -274,47 +274,47 @@ msgstr ""
"У меню маюцца наступныя пункты.\n"
"Вы можаце дадаць яшчэ, альбо змяніць існуючыя."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:815
+#: any.pm:860
#, fuzzy, c-format
msgid "access to administrative files"
msgstr "Выкарыстоўваць настройкі сыстэмнага адміністратара"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:817
+#: any.pm:862
#, fuzzy, c-format
msgid "access to compilation tools"
msgstr "Канфігурацыя сістэмных сэрвісаў"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(ужо дададзена %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Калі ласка, увядзіце імя карыстальніку"
-#: any.pm:830
+#: any.pm:875
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -323,149 +323,149 @@ msgstr ""
"Імя карыстальніку павінна змяшчаць літары толькі на ніжнім рэгістры, \n"
"лічбы, ‛-’ і ‛_’"
-#: any.pm:831
+#: any.pm:876
#, fuzzy, c-format
msgid "The user name is too long"
msgstr "Імя занадта доўгае"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Гэта імя карыстальніку ўжо дададзена"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID карыстальніка"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID групы"
-#: any.pm:839
+#: any.pm:884
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "UIN павінен утрымліваць толькі лічбы.\n"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "Карыстальнік"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Пароль для root"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Увядзіце імя карыстальніку\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Піктаграма"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Уласнае імя"
-#: any.pm:870
+#: any.pm:915
#, fuzzy, c-format
msgid "Login name"
msgstr "Гульня ў косьці"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Абалонка:"
-#: any.pm:925
+#: any.pm:970
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Падрыхтоўка ўсталяваньня"
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Аўтаматычны ўваход у сістэму"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Зачыніць гэтую тэчку"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Абярыце асноўнага карыстальніка:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Абярыце мэнэджар вокнаў:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Калі ласка, пачакайце"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Зачыніць"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Ліцэнзійная дамова"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Выхад"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Ці ёсць у вас іншы?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Прыняць"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Адказаць"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, fuzzy, c-format
msgid "Please choose a language to use"
msgstr "калі ласка, пазначце тып вашай мышы"
-#: any.pm:1106
+#: any.pm:1151
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -473,87 +473,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Вы можаце абраць іншыя мовы, якія будуць даступны пасля ўсталявання"
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Выбар мовы"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, fuzzy, c-format
msgid "All languages"
msgstr "Выбар мовы"
-#: any.pm:1142
+#: any.pm:1187
#, fuzzy, c-format
msgid "Language choice"
msgstr "Выбар мовы"
-#: any.pm:1196
+#: any.pm:1241
#, fuzzy, c-format
msgid "Country / Region"
msgstr "Краіна - рэгіён і мова"
-#: any.pm:1197
+#: any.pm:1242
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "калі ласка, пазначце тып вашай мышы"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1200
+#: any.pm:1245
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Парты вываду:"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Адмысловае"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Нічога"
-#: any.pm:1294
+#: any.pm:1339
#, fuzzy, c-format
msgid "No sharing"
msgstr "Нічога"
-#: any.pm:1294
+#: any.pm:1339
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Дадаць карыстальніка"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Па выбару"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -563,86 +563,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1497
+#: any.pm:1542
#, fuzzy, c-format
msgid "Timezone"
msgstr "Тэма"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Які ваш часавы пояс?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
-#: any.pm:1528
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
-#: any.pm:1530
+#: any.pm:1575
#, fuzzy, c-format
msgid "NTP Server"
msgstr "NIS сэервер:"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -966,7 +966,7 @@ msgid "Domain Admin Password"
msgstr "Яшчэ раз пароль:"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1001,26 +1001,26 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "Не хапае дыскавай прасторы ў /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, fuzzy, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Усталяванне загрузчыку"
@@ -1050,17 +1050,23 @@ msgstr "Гб"
msgid "TB"
msgstr ""
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d хвілін"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 хвіліна"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d секундаў"
@@ -1074,27 +1080,27 @@ msgid ""
"points, select \"New\"."
msgstr ""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Новы"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Разманціраваць"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Манціраванне"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Сервак"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1102,25 +1108,25 @@ msgstr "Сервак"
msgid "Mount point"
msgstr "Кропка манціравання"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Опцыі"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Выдаліць"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Зроблена"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1136,17 +1142,17 @@ msgstr "Зроблена"
msgid "Error"
msgstr "Памылка"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr ""
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1157,33 +1163,33 @@ msgstr ""
msgid "Warning"
msgstr "Увага!"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Вы жадаеце выкарыстоўваць aboot?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Паслужнік: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Пункт манціравання:"
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Опцыі: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, fuzzy, c-format
msgid "Partitioning"
msgstr "Прынтэр"
@@ -1214,9 +1220,9 @@ msgstr "Выход"
msgid "Continue"
msgstr "Працягнуць"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Дапамога"
@@ -1244,63 +1250,63 @@ msgstr "Падрабязнасці"
msgid "No hard disk drives found"
msgstr "Вызначэнне жорсткага дыску"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Невядома"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "Выход"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Вокны"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Іншыя"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Пуста"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Тыпы файлавых сістэмаў:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Памеры якога раздзела вы жадаеце змяніць?"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Спачатку зрабіце ‟Unmount”"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Выкарыстоўвайце ‟%s” замест"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1349,7 +1355,7 @@ msgstr "Выйсці без запісу табліцы раздзелаў"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Ці жадаеце пратэсціраваць настройкі?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Каб мадыфікацыя табліцы раздзелаў здейснілася, патрэбна перазагрузка."
@@ -1626,7 +1632,7 @@ msgid "Where do you want to mount %s?"
msgstr "Куды вы жадаеце манціраваць прыладу %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Змяненне памераў"
@@ -1671,7 +1677,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2095,8 +2101,8 @@ msgstr "Змяніць тып раздзелу"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Адмена"
@@ -2186,7 +2192,7 @@ msgstr ""
"Памылка: для стварэння новых файлавых сістэмаў не знайдзены адпаведныя \n"
"прылады. Праверце абсталяванне для пошуку імавернай прычыны."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr ""
@@ -2381,7 +2387,7 @@ msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Не хапае месца ў буферы падкачкі (swap) для ўсталявання, павялічце яго."
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2392,7 +2398,7 @@ msgstr ""
"Для гэтага стварыце раздзел (альбо адзначце ўжо існуючы).\n"
"Потым абярыце ‟Кропка манціравання” і ўстанавіце яе ў ‛/’"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2403,42 +2409,42 @@ msgstr ""
"\n"
"Усё адно працягваць?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Выкарыстоўваць незанятую прастору"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Выкарыстоўваць існуючы раздзел"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Няма існуючых раздзелаў, якія можна выкарыстаць"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, fuzzy, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Выкарыстоўваць незанятую прастору на раздзеле Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Памеры якога раздзела вы жадаеце змяніць?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, fuzzy, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2448,12 +2454,12 @@ msgstr ""
"Ваш раздзел з Microsoft Windows® занадта фрагментаваны. \n"
"Рэкамендуем спачатку запусціць праграму ‟defrag”"
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2474,75 +2480,75 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Далей"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Прынтэр"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Якую прастору захаваць для Microsoft Windows®? раздзел %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Памер"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Вылічэнне межаў файлавай сістэмы Microsoft Windows®"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Аўтазмяненне памераў не атрымалася для раздзелу FAT %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Выдаліць Windows™"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "Сцёрці дадзеныя на ўсім дыску"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr "На які з маючыхся жорсткіх дыскаў Вы жадаеце ўсталяваць Linux?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Усе існуючыя раздзелы на дыску %s і дадзеныя на іх будуць страчаны"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, fuzzy, c-format
msgid "Custom disk partitioning"
msgstr "Вылічэнне межаў файлавай сістэмы Windows"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Выкарыстоўваць fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2551,42 +2557,42 @@ msgstr ""
"Вы можаце цяпер разбіць ваш дыск %s\n"
"Па заканчэнні не забудзьцеся захаваць змяненні, скарыстаўшы ‛w’"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Выход"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, fuzzy, c-format
msgid "I cannot find any room for installing"
msgstr "Дадаць раздзел немагчыма"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Майстар падрыхтоўкі раздзелаў DrakX знайшоў наступныя варыянты:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Падрыхтоўка разделаў не ўдалася: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, fuzzy, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
@@ -2623,22 +2629,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Пункт манціравання павінен пачынацца з /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ужо ёсць раздзел з пунктам манціравання %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2646,26 +2652,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2673,19 +2679,19 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2694,24 +2700,24 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Гэты каталог павінен знаходзіцца ўнутры каранёвай файлавай сістэмы"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:558
+#: fsedit.pm:562
#, fuzzy, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, fuzzy, c-format
msgid "Nothing to do"
msgstr "Нічога"
@@ -2721,238 +2727,238 @@ msgstr "Нічога"
msgid "SATA controllers"
msgstr "Кіраванне"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, fuzzy, c-format
msgid "RAID controllers"
msgstr "Кіраванне"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr ""
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "Рэжым прайгравання"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr ""
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, fuzzy, c-format
msgid "PCMCIA controllers"
msgstr "Кіраванне"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, fuzzy, c-format
msgid "SCSI controllers"
msgstr "Кіраванне"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr ""
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, fuzzy, c-format
msgid "USB ports"
msgstr "USB прылады"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr ""
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr ""
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Гнуткі дыск"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr ""
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Жорскі дыск"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr ""
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, fuzzy, c-format
msgid "CD/DVD burners"
msgstr "CDDB сервакі"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr ""
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, fuzzy, c-format
msgid "Tape"
msgstr "Тып"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr ""
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, fuzzy, c-format
msgid "Videocard"
msgstr "Відэа"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr ""
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, fuzzy, c-format
msgid "Other MultiMedia devices"
msgstr "Мульцімедыя"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, fuzzy, c-format
msgid "Soundcard"
msgstr "Гук"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr ""
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, fuzzy, c-format
msgid "Processors"
msgstr "Працэсар"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr ""
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, fuzzy, c-format
msgid "Ethernetcard"
msgstr "Іншае"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Мадэм"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr ""
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Памяць"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Прынтэр"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Джойсьцік"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Клавіятура"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Мыш"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, fuzzy, c-format
msgid "UPS"
msgstr "HFS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, fuzzy, c-format
msgid "Scanner"
msgstr "Прайгравальнік дыскаў"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr ""
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr ""
@@ -3174,19 +3180,19 @@ msgstr "Тып мышы: %s\n"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Ок"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Так"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3217,22 +3223,22 @@ msgstr "Скончыць"
msgid "Previous"
msgstr "прылада"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, fuzzy, c-format
msgid "No file chosen"
msgstr "абіральнік файла"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Назва \"/\" можа быць толькі каталёгам, а ня ключом"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such directory"
msgstr "Ня тэчка"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such file"
msgstr "Няма гэткага ключа '%s'\n"
@@ -4507,7 +4513,7 @@ msgstr "Замбія"
msgid "Zimbabwe"
msgstr "Зімбабве"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
@@ -5039,7 +5045,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5355,7 +5361,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6461,17 +6467,17 @@ msgstr "Рускі (фанетычны)"
msgid "Yugoslavia"
msgstr "Югаславія"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Гэта дакладна?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, fuzzy, c-format
msgid "You have chosen a file, not a directory"
msgstr "Няма такога файла ці тэчкі"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Інфармацыя"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index f16309bc6..2094b9253 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-07-05 06:47+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Bulgarian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -21,7 +21,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -30,12 +30,12 @@ msgstr ""
msgid "Please wait"
msgstr "Моля, изчакайте"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Инсталира се програма за начално зареждане"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,14 +46,14 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Инсталацията програмата за начално зареждане се провали. Появи се следната "
"грешка:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -68,218 +68,218 @@ msgstr ""
"\n"
"Кое дисково устройство ще ползвате за начално зареждане?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Инсталация на програма за начално зареждане"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Къде искате да инсталирате програмата за начално зареждане?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Първи сектор (MBR) на дисково устройство %s "
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Първи сектор на дисковото устройство (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Първия сектор на дисковия дял (PBS) с Mageia"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Запазване на дискета"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Пропусни"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Настройка на начина на стартиране"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Опции на програмата за начално зареждане"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Програма за начално зареждане"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Използвана програма за начално зареждане"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Устройство за зареждене"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Основни настойки"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Време за изчакване преди зареждане"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Включи ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Включи SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Включи APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Включи Local APIC"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Сигурност"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Парола"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Паролите не съвпадат"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Моля, опитайте отново"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Вие не можете да използвате парола включваща %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Парола (повтори)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Образ"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Коренов дял"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Параметри"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Xen параметри"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Видео режим"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Мрежов профил"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Име"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "По подразбиране"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Полето 'Име' не трябва да е празно"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Трябва да зададете обаз на ядрото"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Трябва да зададете коренов дял"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Това 'Име' вече се използва"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Какъв тип информация искате да прибавите"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Друга ОС (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Конфигуриране на програмата за начално зареждане"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -288,196 +288,196 @@ msgstr ""
"Това са записите в менюто за начално зареждане.\n"
"Можете да добавите още или да промените съществуващите."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "достъп до X програми"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "достъп до rpm инструменти"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "позволява \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "достъп до файлове за администриране"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "достъп до мрежови инструменти"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "достъп до инструменти за разработка"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(вече прибавих %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Моля, задайте потребителско име"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Това потребителско име е твърде дълго"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Това потребителско име е вече добавено"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Потребителски номер"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Номер на група"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s трябва да е число"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Управление на потребител"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Въведете потребител"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Икона"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Истинско име"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Потебителско име"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Обвивка"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Моля, изчакайте. Обновява се източник..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Автоматично влизане"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Мога да настроя компютъра ви за автоматично влизане в системата като някой "
"потребител."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Използвай тази характеристика"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Изберете подразбиращ се потребител:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Изберете графична среда за стартиране:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Бележки към версията"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Затвори"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Лицензионен договор"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Изход"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Приемате ли този лиценз ?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Приеми"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Откажи"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Моля, изберете език"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -485,87 +485,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Съвместимост с преди използващи се (различни от UTF-8) кодировки"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Всички езици"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Избор на език"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Страна / Регион"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Моля, изберете вашата държава"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Пълен списък на достръпните страни"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Други държави"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Разширени настройки"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr " Метод за въвеждане:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Няма"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Без споделяне"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Позволи на всички потребители"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Позволи на отделни потребители"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -582,7 +582,7 @@ msgstr ""
"\"Позволи на отделни потребители\" разрешава споделянето само на "
"потребителите, които са членове на групата \"fileshare\".\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -592,7 +592,7 @@ msgstr ""
"ограничено \n"
" приложима за Mac OS X и Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -602,7 +602,7 @@ msgstr ""
"повечето\n"
" съвременни Linux системи."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -610,12 +610,12 @@ msgstr ""
"Вие може да споделяте файлове използвайки NFS или SMB протоколи. \n"
"Моля, изберете кой от тях ще използвате."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Стартира userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -624,56 +624,56 @@ msgstr ""
"За споделянето на потребителски директории използва група \"fileshare\".\n"
"Може да използвате userdrake, за да добавите потребител към тази група."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"За да се активират направените промени е необходимо да излезете от текущата "
"сесия и отново да влезете"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Часова зона"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Коя е вашата времевата зона?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Дата, Часовник и Настройки на часова зона"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Кое е най-доброто време?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (хадруерният часовник е настроен по GMT)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (хадруерният часовник е настроен по локалното време)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP сървър"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматична синхронизация на времето (използва NTP)"
@@ -996,7 +996,7 @@ msgid "Domain Admin Password"
msgstr "Парола за администратор на домейн"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1036,12 +1036,12 @@ msgstr "GRUB с текстово меню"
msgid "not enough room in /boot"
msgstr "няма достатъчно място в /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Не можете да инсталирате програмата за начално зареждане на дяла %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1050,7 +1050,7 @@ msgstr ""
"Конфигурацията на програмата за начално зареждане трябва да се актуализира, "
"защото дисковите дялове бяха преномерирани"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1059,7 +1059,7 @@ msgstr ""
"Програмата за начално зареждане не може да бъде коректно инсталирана. Трябва "
"да стартирате режим rescue и да изберете \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Преинсталиране на програмата за начално зареждане"
@@ -1089,17 +1089,23 @@ msgstr "ГБ"
msgid "TB"
msgstr "ТБ"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d минути"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 минута"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d секунди"
@@ -1118,27 +1124,27 @@ msgstr ""
"предварително настроен като WebDAV сървър). Ако искате да добавите WebDAV\n"
"точка на монтиране, изберете \"Нов\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Нов"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Демонтирай"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Монтирай"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Сървър"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1146,25 +1152,25 @@ msgstr "Сървър"
msgid "Mount point"
msgstr "Точка на монтиране"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Опции"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Премахване"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Готово"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1180,17 +1186,17 @@ msgstr "Готово"
msgid "Error"
msgstr "Грешка"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Моля въведете WebDAV сървър URL"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL трябва да започва с http:// или https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1201,33 +1207,33 @@ msgstr "URL трябва да започва с http:// или https://"
msgid "Warning"
msgstr "Предупреждение"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr ""
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Сървър: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Точка на монтиране: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Опции: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Управление на дискови дялове"
@@ -1260,9 +1266,9 @@ msgstr "Изход"
msgid "Continue"
msgstr "Продължи"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Помощ"
@@ -1293,63 +1299,63 @@ msgstr "Подробности"
msgid "No hard disk drives found"
msgstr "Не е намерен твърд диск"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Неизвестен"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Друга"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Празен"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Видове файлови системи:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Този дисков дял е вече празен"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Първо използвайте 'Демонтирай'"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Вместо това използвайте ``%s'' (в експертен режим)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1398,7 +1404,7 @@ msgstr "Изход, без да запазване на таблицата на
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Искате ли да запазите направените промени в /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1688,7 +1694,7 @@ msgid "Where do you want to mount %s?"
msgstr "Къде искате да монтирате устройство %s ?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Промяна на големината"
@@ -1735,7 +1741,7 @@ msgstr "Минимален размер: %s МБ"
msgid "Maximum size: %s MB"
msgstr "Максимален размер: %s МБ "
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2168,8 +2174,8 @@ msgstr "Промяни типа"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Отказ"
@@ -2264,7 +2270,7 @@ msgstr ""
"създадени нови файлови системи. Моля проверете твърдия си диск си за "
"причината за този проблем."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Трябва да имате ESP FAT32 дял монтиран в /boot/EFI"
@@ -2466,7 +2472,7 @@ msgstr ""
"Няма достатъчно в swap дяла за приключване на инсталацията, моля, добавете "
"още"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2477,7 +2483,7 @@ msgstr ""
"Затова създайте дял (или изберете някой съществуващ).\n"
"После натиснете бутона ``Място на монтиране'' и задайте `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2488,42 +2494,42 @@ msgstr ""
"\n"
"Да продължа ли все пак ?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Използвай свободното място"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Няма достатъчно място за създаване на нов дял"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Изпозване на съществуващ дял"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Няма дял, който мога да използвам"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Изчислява свободното място на Microsoft Windows® дял"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Използвай свободното място от дяла с Microsoft Windows® "
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Кой дял желаете да промените?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2531,12 +2537,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2569,75 +2575,75 @@ msgstr ""
"Когато сте сигурни, натиснете %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Следващ"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Управление на дискови дялове"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Колко искате да оставите за windows? дял %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Размер"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Изчислявам границите на Microsoft Windows® файловата система"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Неуспешно преразделяне на FAT: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Няма FAT дялове за смяна на големината (или няма достаъчно място)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Премахни Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Изтрий и използвай целия диск"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "ВСИЧКИ съществуващи дялове и данните върху тях на %s ще бъдат загубени"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Клиентско разделяне на диска"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Използвай fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2646,42 +2652,42 @@ msgstr ""
"Сега можете да разделите %s.\n"
"Когато сте готови, не забравяйте да запишете използвайки `w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr ""
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Не мога да намеря никакво място за инсталация"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Помощникът за разделине на дялове на DrakX намери следните решения:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Неуспешно разделяне на: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Не можете да използвате JFS за дял по-малък от 16 МБ"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Не можете да инсталиране ReiserFS на дял по-малък от 32 МБ"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2726,22 +2732,22 @@ msgstr ""
"\n"
"Съгласни ли сте да загубите всички дялове?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Точките на монтиране трябва да започват с /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Точките на монтиране трябва да съдържат само букви и цифри"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Вече има дял монтиран на това място %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2749,26 +2755,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2776,20 +2782,20 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Вие не може да използвате криптирана файлова система за точка на монтиране %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2798,12 +2804,12 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Тази директория трябва да остане в рамките на root файловата система."
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2812,12 +2818,12 @@ msgstr ""
"Нуждаете се от истинска файлова система (ext2, reiserfs,xfs, или jfs) за "
"тази точка на монтиране\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Няма достатъчно място за автоматично разпределяне"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Няма нищо за правене"
@@ -2827,238 +2833,238 @@ msgstr "Няма нищо за правене"
msgid "SATA controllers"
msgstr "SATA контролери"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID контролери"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA контролери"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Картови четци:"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire контролери"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA контролери"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI контролери"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB контролери"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB портове"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus контролери"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Бриджове и системни контролери"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Флопи дисково устройство"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip устройство"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Твърд диск"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB устройства за съхранение на данни"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD записващи устройства"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Лента"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP контролери"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Видео карта"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB карта"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV тунер"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Други мултимедийни устройства"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Звукова карта"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "WEB камера"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Процесори"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN адаптери"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "USB звукови устройства"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Радио карта"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "ATM мрежова карта"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "WAN мрежова карта"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth устройства"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet карта"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Модем"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL адаптери"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Памет"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Принтер"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Игрови контролер"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Джойстик"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Клавиатура"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Таблет и сензорен екран"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Мишка"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Биометричен контрол"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Скенер"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Неизвестни/Други"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3282,19 +3288,19 @@ msgstr "Тип на тунер:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Готово"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Да"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3325,22 +3331,22 @@ msgstr "Край"
msgid "Previous"
msgstr "Предишен"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Не е избран файл"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Вие избрахте директория, а не файл"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Няма такава директория"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Няма такъв файл"
@@ -4619,7 +4625,7 @@ msgstr "Замбия"
msgid "Zimbabwe"
msgstr "Зимбабве"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Добре дошли в %s"
@@ -5242,9 +5248,9 @@ msgid "Allow direct root login."
msgstr "Позволи директно влизане на root."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr "Позволи"
#: security/help.pm:35
@@ -5590,9 +5596,9 @@ msgid "Direct root login"
msgstr ""
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
-msgstr ""
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
+msgstr "Позволи"
#: security/l10n.pm:20
#, c-format
@@ -6699,17 +6705,17 @@ msgstr "Руска Федерация"
msgid "Yugoslavia"
msgstr "Югославия"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Всичко правилно ли е ?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Трябва да изберете файл, а не директория."
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Информация"
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index 02cd21900..bd9d5628b 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX HEAD\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-03-19 23:18+0600\n"
"Last-Translator: Samia <mailsamia2001@yahoo.com>\n"
"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -26,12 +26,12 @@ msgstr ""
msgid "Please wait"
msgstr "অনুগ্রহ করে অপেক্ষা করুন"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "বুট লোডার ইনস্টল করা হচ্ছে"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,12 +46,12 @@ msgstr ""
"উইন্ডোজ সমস্যা।\n"
"নতুন একটি ভলিউম আই-ডি দেয়া হবে?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Bootloader ইনষ্টলেশন ব্যর্থ হয়েছে। এ সমস্ত ত্রুটি ঘটেছে:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -67,218 +67,218 @@ msgstr ""
"\n"
"আপনি কোন ড্রাইভ থেকে বুট করছেন?"
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "বুট লোডার ইনস্টল করা হচ্ছে"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "আপনি bootloader টি কোথায় ইনস্টল করতে চান?"
-#: any.pm:351
+#: any.pm:355
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "ড্রাইভের প্রথম সেক্টর (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "ড্রাইভের প্রথম সেক্টর (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "রুট পার্টিশনের প্রথম সেক্টর"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "ফ্লপি তে"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "উপেক্ষা"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "বুটের ধরণ কনফিগারেশন"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "বুটলোডারের আসল অপশনসমুহ"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "বুটলোডার"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "ব্যবহারের জন্য বুটলোডার"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "বুট ডিভাইস"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "স্বাভাবিক ইমেজ লোড করার আগে দেরী করো"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "ACPI এনেবল করো"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI এনেবল করো"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI এনেবল করো"
-#: any.pm:418
+#: any.pm:422
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI এনেবল করো"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "সিকিউরিটি"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "পাসওয়ার্ড"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "পাসওয়ার্ডটি মিলছে না"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "অনুগ্রহ করে আবার চেষ্ট করুন"
-#: any.pm:425
+#: any.pm:429
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "পাসওয়ার্ড (পুনরায়)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "ইমেজ"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "যুক্ত"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "ভিডিওর ধরণ"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "নেটওয়ার্ক প্রোফাইল"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "শিরোনাম"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "স্বাভাবিক"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "খালি শিরোনাম গ্রহণযোগ্য নয়"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "আপনাকে অবশ্যই একটি কার্নালের ইমেজ নির্ধারণ করে দিতে হবে"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "আপনাকে অবশ্যই একটি রুট পার্টিশন নির্ধারণ করে দিতে হবে"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "এই শিরোনামটি আগেই ব্যবহার হয়েছে"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "আপনি কি ধরণের এন্ট্রি যোগ করতে চান?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "লিনাক্স"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "অন্যান্য OS (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "বুটের ধরণ কনফিগারেশন"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -287,197 +287,197 @@ msgstr ""
"এপর্যন্ত আপনার বুটমেনুর এন্ট্রিগুলি এখানে।\n"
"আপনি অন্যান্য এন্ট্রি তৈরী করতে পারেন অথবা আগের এন্ট্রিগুলি পরিবর্তন করতে পারেন।"
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "X প্রোগ্রামসমূহে প্রবেশাধিকার"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "RPM টুলে প্রবেশাধিকার"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "\"su\" গ্রহন করো"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "এডমিনিষ্ট্রেশন সংক্রান্ত ফাইলে প্রবেশাধিকার"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "নেটওয়ার্ক টুলে প্রবেশাধিকার"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "compilation টুলে প্রবেশাধিকার"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s আগেই যোগ করা হয়েছে)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "অনুগ্রহ করে একটি উইজার নেম দিন"
-#: any.pm:830
+#: any.pm:875
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "ইউজারনেমে অবশ্যই ছোটহাতের অক্ষর, নম্বর \"-\" এবং \"_\" থাকতে হবে"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "ইউজারনেমটি অনেক বড়"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "এই ইউজারনেমটি এর আগেই যোগ করা হয়েছে"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ব্যবহারকারীর ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "দলের ID"
-#: any.pm:839
+#: any.pm:884
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "অপশন %s-কে অবশ্যই একটি সংখ্যা হতে হবে!"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "ব্যবহারকারীনাম"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "আ্যাডমিনিস্ট্রেটর (root) পাসওয়ার্ড সেট করুন"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"একটি ইউজার প্রবেশ করান\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "আইকন"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "আসল নাম"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "লগ-ইন নাম"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "শেল"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "মাধ্যম যোগ করা হচ্ছে, অনুগ্রহ করে অপেক্ষা করুন..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "সয়ংক্রিয় লগ-ইন"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"আমি আপনার কম্পিউটারকে সয়ংক্রিয়ভাবে একটি ইউজারকে লগইন করার জন্য সেট করতে পারি।"
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "এই সুবিধাটি কি আপনি ব্যবহার করতে চান?"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "স্বাভাবিক ব্যবহারকারীকে পছন্দ করুন:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "রান করার জন্য উইন্ডো ম্যানেজারকে পছন্দ করুন:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "সংস্করণ মন্তব্য"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "বন্ধ"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "লাইসেন্স এগ্রিমেন্ট"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "বাহির"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "আপনার কি আরও একটি আছে?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "গ্রহণ"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "অস্বীকার"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "ব্যবহার করার জন্য একটি ভাষা পছন্দ করুন"
-#: any.pm:1106
+#: any.pm:1151
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -488,87 +488,87 @@ msgstr ""
"আপনি যেই ভাষাটি ইনস্টল করতে চান তা পছন্দ করুন।\n"
"ইনস্টল শেষে রি-স্টার্ট করার পরে সেই ভাষাগুলি উপলব্ধ হবে।"
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "ম্যান্ড্রিব লিনাক্স (Mageia)"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "সমস্থ ভাষা"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "সমস্থ ভাষা"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "পছন্দনীয় ভাষা"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "দেশ / স্থান"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "অনুগ্রহ করে তোমার দেশ পছন্দ করো।"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "উপলব্ধ সমস্থ দেশের নাম এখানে রয়েছে"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "অন্যান্য দেশসমুহ"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "উন্নত"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "ইনপুট মাধ্যম:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "একটিও না"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "শেয়ারিং নেই"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "সব ব্যবহারকারীদের গ্রহণ করো"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "ব্যবস্থা"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -578,7 +578,7 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr "আপনি কি ব্যবহারকারীদের কিছু ডিরেক্টরি শেয়ার করতে দিতে চান?\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -586,7 +586,7 @@ msgid ""
msgstr ""
"NFS: ঐতিহ্যগত ইউনিক্স ফাইল শেয়ারিং সিস্টেম, যা ম্যাক এবং উইন্ডোজে স্বল্প সমর্থিত।"
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -595,7 +595,7 @@ msgstr ""
"SMB: উইন্ডোজ, ম্যাক ও-এস এক্স এবং অনেক আধুনিক লিনাক্স সিস্টেম কর্তৃক ব্যবহৃত ফাইল "
"শেয়ারিং সিস্টেম।"
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -603,12 +603,12 @@ msgstr ""
"আপনি NFS বা SMB ব্যবহার করে ফাইল পাঠাতে পারেন। যেটি আপনি ব্যবহার করতে চান "
"অনুগ্রহ করে নির্বাচন করুন।"
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "userdrake শুরু করো"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -617,54 +617,54 @@ msgstr ""
"প্রত্যেক ব্যবহারকারী গ্রুপের \"ফাইল ভাগাভাগি\" ভাগাভাগি করতে পারেন। \n"
"এই গ্রুপে একজণ ব্যবহারকারী যোগ করতে আপনি userdrake ব্যবহার করতে পারেন।"
-#: any.pm:1458
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "টাইমজোন"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "আপনার টাইমজোন কি?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
-#: any.pm:1528
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP সার্ভার"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "সয়ংক্রিয়ভাবে সময় মেলাও (NTP ব্যবহার করে)"
@@ -995,7 +995,7 @@ msgid "Domain Admin Password"
msgstr "ডোমেইন অ্যাডমিনের পাসওয়ার্ড"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1035,13 +1035,13 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "/boot -এ বেশী জায়গা নেই"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "আপনি %s পার্টিশনে বুটলোডার ইনস্টল করতে পারবেননা\n"
# renumber = রি-নাম্বার লিখলাম। আসলটা আমি জানিনা
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1049,7 +1049,7 @@ msgid ""
msgstr ""
"পার্টিশন রি-নাম্বার করার কারনে আপনার বুটলোডারের কনফিগারেশন অবশ্যই আপডেট করতে হবে"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1058,7 +1058,7 @@ msgstr ""
"বুটলোডার সঠিকভাবে ইনস্টল হতে পারবেনা। আপনাকে rescue বুট করতে হবে এবং \"%s\" "
"পছন্দ করতে হবে"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "বুট লোডার রি-ইনস্টল করো"
@@ -1088,17 +1088,23 @@ msgstr "জিবি"
msgid "TB"
msgstr "টিবি"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d মিনিট"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "১ মিনিট"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d সেকেন্ড"
@@ -1118,27 +1124,27 @@ msgstr ""
"হিসেবে কন্‌ফিগার করা)। যদি আপনি WebDAV মাউন্ট পয়েন্ত যুক্ত করতে চান, তবে \"নতুন\" "
"বেছে নিন।"
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "নতুন"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "আন-মাউন্ট"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "মাউন্ট"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "সার্ভার"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1146,25 +1152,25 @@ msgstr "সার্ভার"
msgid "Mount point"
msgstr "মাউন্ট পয়েন্ট"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "অপশন"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "মুছে ফেলো"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "হয়েছে"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1180,17 +1186,17 @@ msgstr "হয়েছে"
msgid "Error"
msgstr "ত্রুটি"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "অনুগ্রহ করে WebDAV সার্ভারের URL প্রবেশ করান"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL অবশ্যই http:// অথবা https:// দিয়ে শুরু করতে হবে"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1201,33 +1207,33 @@ msgstr "URL অবশ্যই http:// অথবা https:// দিয়ে শু
msgid "Warning"
msgstr "নোটিশ"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "আপনি কি এই বাটনে ক্লিক করতে চান?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "সার্ভার:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "মাউন্ট পয়েন্ট:"
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "অপশন: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "পার্টিশন করা হচ্ছে"
@@ -1258,9 +1264,9 @@ msgstr "বাহির"
msgid "Continue"
msgstr "অগ্রসর"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "সাহায্য"
@@ -1291,63 +1297,63 @@ msgstr "বিস্তারিত"
msgid "No hard disk drives found"
msgstr "কোন হার্ড ড্রাইভ পাওয়া যায়নি"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "অজানা"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "বাহির"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "সোয়াপ"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "উইন্ডোজ"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "অন্যান্য"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "শূণ্য"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "ফাইল সিস্টেমের ধরণ:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "এই পার্টিশনটি রি-সাইজ করার মত না"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "প্রথমে ``Unmount'' ব্যবহার করুন"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "পরিবর্তে ``%s'' ব্যবহার করুন"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1396,7 +1402,7 @@ msgstr "কোন পার্টিশন টেবিল না লিখে
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "আপনি /etc/fstab -এর পরিবর্তন সেভ করতে চান?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "পার্টিশন টেবিলের পরিবর্তনগুলি কার্যকর করবার জন্য আপনাকে রা-ষ্টার্ট করতে হবে"
@@ -1680,7 +1686,7 @@ msgid "Where do you want to mount %s?"
msgstr "আপনি কোথায় মাউন্ট করতে চান %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "আকার পরিবর্তন করা হচ্ছে"
@@ -1725,7 +1731,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, fuzzy, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2161,8 +2167,8 @@ msgstr "ধরণ বদল করো"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "বাতিল"
@@ -2254,7 +2260,7 @@ msgstr ""
"একটি ভুল হয়ে গেছে - কোন সঠিক যন্ত্র পাওয়া যায়নি যেখানে নতুন ফাইল সিস্টেম তৈরি করা "
"হবে। অনুগ্রহ করে এই সমস্যার কারণের জন্য আপনার হার্ডওয়্যার পরীক্ষা করুন"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "আপনার /boot/EFI -এ অবশ্যই একটি ESP FAT32 পার্টিশন থাকতে হবে"
@@ -2470,7 +2476,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "ইনস্টলেশন সম্পূর্ন হবার জন্য যথেষ্ট swap জায়গা নেই, অনুগ্রহ করে কিছু যোগ করুন"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2481,7 +2487,7 @@ msgstr ""
"সেকারণে, একটি পার্টিশন তৈরি করুন (অথবা ইতিমধ্যেই তৈরি একটিতে ক্লিক করুন)।\n"
"তারপর ``Mount point'' বেছে নিন এবং সেটাকে `/' তে সেট করুন"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2492,42 +2498,42 @@ msgstr ""
"\n"
"তবুও আগাবো?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "শুণ্য স্থান ব্যবহার করো"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "নতুন পার্টিশন তৈরী করার জন্য যথেষ্ট পরিমান খালি জায়গা নেই"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "আগের পার্টিশনগুলি ব্যবহার করো"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "ব্যবহারের জন্য এখানে উপস্থিত কোন পার্টিশন নেই"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "আপনার উইন্ডোজের পার্টিশনের সাইজ হিসেব করা হচ্ছে"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "উইন্ডোজ পার্টিশনের খালি জায়গা ব্যবহার করে"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "আপনি কোন পার্টিশন রি-সাইজ করতে চান?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, fuzzy, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2537,12 +2543,12 @@ msgstr ""
"আপনার উইন্ডোজের পার্টিশনটি প্রচন্ড অসম। অনুগ্রহ করে আপনার কম্পিউটারটি উইন্ডোজে রি-বুট "
"করে, ``defrag'' ইউটিলিটি চালান, পরে রি-ষ্টার্ট করে আবার মেনড্রক ইনস্টলেশন চালান।"
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2577,76 +2583,76 @@ msgstr ""
# পরবর্তি
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "পরবর্তী"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "পার্টিশন করা হচ্ছে"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "আপনি কোথায় উইন্ডোজের জন্য কোন সাইজটি রাখতে চান পার্টিশনসমূহ %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "মাপ"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "উইন্ডোজ পার্টিশন আকার পরিবর্তন করা হচ্ছে"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT আকার পরিবর্তন ব্যর্থ হয়েছে: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"রি-সাইজ করার জন্য কোন FAT পার্টিশন নেই (অথবা যথেষ্ট পারিমান ফাঁকা জায়গা নেই)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "উইন্ডোজ(TM) মুছে ফেলো"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "সম্পূর্ণ ডিস্ক মুছে ফেলো"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr "আপনার একের অধিক হার্ড ড্রাইভ আছে, আপনি কোনটাতে লিনাক্স ইনস্টল করতে চান?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s ড্রাইভে উপস্থিত সমস্থ ডাটা এবং পার্টিশন নষ্ট হয়ে যাবে"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "হাতে হাতে ডিস্ক পার্টিশন"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "fdisk ব্যবহার করো"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2655,42 +2661,42 @@ msgstr ""
"এখন আপনি %s-কে পার্টিশন করতে পারেন।\n"
"যখন হয়ে যাবে, তখন `w' চেপে সেভ করতে ভূলবেননা"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "বাহির"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "আমি ইনস্টল করার জন্য কোন জায়গা পাচ্ছিনা"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX পার্টিশন সহায়ক এই সমস্থ সমাধান পেয়েছে:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "পার্টিশনে ব্যার্থ: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "১৬ মেগাবাইটের চাইতে ছোট পার্টিশনে আপনি JFS ব্যবহার করতে পারবেন না"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "৩২ মেগাবাইটের চাইতে ছোট পার্টিশনে আপনি ReiserFS ব্যবহার করতে পারবেন না"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "১৬ মেগাবাইটের চাইতে ছোট পার্টিশনে আপনি JFS ব্যবহার করতে পারবেন না"
@@ -2734,23 +2740,23 @@ msgstr ""
"\n"
"আপনি কি সব পার্টিশন হারাতে রাজি?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "মাউন্ট পয়েন্টগুলি অবশ্যই / দিয়ে শুরু হতে হবে"
# * = alphanumerical = বাংলাটা মনে পড়ছেনা
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "মাউন্ট পয়েন্টগুলিতে শুধু * অক্ষর থাকবে"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "এই পার্টিশনটি আগে থেকেই %s মাউন্টপয়েন্ট নামে আছে\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2761,7 +2767,7 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2771,7 +2777,7 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:458
+#: fsedit.pm:461
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2781,12 +2787,12 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2797,19 +2803,19 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, fuzzy, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "আপনি LVM লজিকাল ভলিউমকে %s মাউন্ট পয়েন্ট হিসেবে ব্যবহার করতে পারবেননা"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2821,12 +2827,12 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "root ফাইল সিস্টেমের মধ্যে এই ডিরেক্টরি থাকা উচিত"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2835,12 +2841,12 @@ msgstr ""
"এই মাউন্ট পয়েন্টের জন্য আপনার একটি সঠিক ফাইল সিস্টেম (ext2/3/4, reiserfs, xfs, "
"বা jfs) প্রয়োজন\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "স্বয়ংক্রিয়-বন্টনের জন্য কোন খালি জায়গা নেই"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "কিছু করার নাই"
@@ -2850,238 +2856,238 @@ msgstr "কিছু করার নাই"
msgid "SATA controllers"
msgstr "SATA কন্ট্রলারসমূহ"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID কন্ট্রলারসমূহ"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA কন্ট্রলারসমূহ"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "কার্ড মডেল:"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire কন্ট্রলারসমূহ"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA কন্ট্রলারসমূহ"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI কন্ট্রলারসমূহ"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "ইউএসবি কন্ট্রলারসমূহ"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "ইউএসবি পোর্টসমূহ"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus কন্ট্রলারসমূহ"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "ব্রীজ এবং সিস্টেম কন্ট্রোলার সমূহ"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "ফ্লপি"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "জিপ"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "ডিস্ক"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "সিডিরম"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "সিডি/ডিভিডি রাইটিং সফ্টওয়্যার"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "ডিভিডি-রোম"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "টেপ"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP কন্ট্রোলার সমূহ"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "ভিডিওকার্ড"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "টিভিকার্ড"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "অন্যান্য মাল্টিমিডিয়া ডিভাইস সমূহ"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "সাউন্ডকার্ড"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "ওয়েব ক্যামেরা"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "প্রসেসর"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN এডোপ্টার সমূহ"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "ইথারনেটকার্ড"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "মডেম"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL এডোপ্টার সমূহ"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "মেমরি"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "প্রিন্টার"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "জয়ষ্টিক"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "কি-বোর্ড"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "মাউস"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "স্কেনার"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "অজানা/অন্যান্য"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "সিপিউ #"
@@ -3332,19 +3338,19 @@ msgstr "টিউনারের ধরণ:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "ঠিক আছে"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "হ্যাঁ"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3377,25 +3383,25 @@ msgid "Previous"
msgstr "পূর্ববর্তী"
# সাম
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "কোন ফাইল বেছে নেয়া হয়নি"
# সাম
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "আপনি একটি ডিরেক্টরি নির্বাচন করেছেন, ফাইল নয়"
# সাম
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "এই নামে কোন ডিরেক্টরি নেই"
# সাম
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "এই নামে কোন ফাইল নেই"
@@ -4678,7 +4684,7 @@ msgstr "জাম্বিয়া"
msgid "Zimbabwe"
msgstr "জিম্বাবুয়ে"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "%s -এ আপনাকে স্বাগতম"
@@ -5246,7 +5252,7 @@ msgstr "সরাসরি রুট অ্যাকাউন্টে লগ-
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"ডিসপ্লে ব্যবস্থাপকে ব্যবহারকারীদের তালিকা প্রদর্শন অনুমোদন/নিষিদ্ধ করো (কে.ডি.এম. "
"এবং জি.ডি.এম.)।"
@@ -5637,8 +5643,8 @@ msgid "Direct root login"
msgstr "সরাসরি রুট অ্যাকাউন্টে লগ-ইন"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
"ডিসপ্লে ব্যবস্থাপকে (কে.ডি.এম. ও জি.ডি.এম.) ব্যবহারকারীদের তালিকা প্রদর্শন করো"
@@ -6886,18 +6892,18 @@ msgstr "রুশ ফেডারেশন"
msgid "Yugoslavia"
msgstr "যুগোস্লাভিয়া"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "এটা কি সঠিক?"
# সাম
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "আপনি একটি ফাইল নির্বাচন করেছেন, ডিরেক্টরি নয়"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "তথ্য"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 008e58663..ea87ce8e3 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 10.2\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-14 01:09+0200\n"
"Last-Translator: Thierry Vignaud <thierry.vignaud.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1;plural=0\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -25,12 +25,12 @@ msgstr ""
msgid "Please wait"
msgstr "Gortozit mar plij"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "O staliañ ar c'harger loc'hañ"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -41,13 +41,13 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Staliadur ar c'harger loc'hañ zo sac'het. Degouezhet eo ar fazi a heul :"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -57,218 +57,218 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Staliadur ar c'harger loc'hañ"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e vennit staliañ ar c'harger loc'hañ ?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Rann gentañ (MBR) pladenn %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Rann gentañ ar bladenn (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Rann gentañ ar barzhadur kentañ"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "War bladennig"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Tremen e-biou"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Kefluniadur giz al loc'hañ"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Dibarzhioù pennañ ar c'harger loc'hañ"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Karger loc'hañ"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Karger loc'hañ da implijout"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Trobarzhell loc'hañ"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Dibarzhioù pennañ"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Bevaat ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Bevaat SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Bevaat APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Bevaat APIC lec'hel"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Diogelroez"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Tremenger"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "An tremegerioù ne glot ket"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Gellout a rit implij ur ger-tremen gant %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Skeudenn"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Gwrizienn"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Ouzhpennañ en diwezh"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Mod video"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Profil rouedad"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Skridennad"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Dre ziouer"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Berzet eo ar skridennadoù goullo"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Ret eo deoc'h kaout ur skeudenn kalon"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Ret eo deoc'h kaout ur parzhadur gwrizienn"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennañ ?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Reizhiadoù all (Windows ...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Kefluniadur al loc'hañ"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -277,47 +277,47 @@ msgstr ""
"Setu da heul an enmontoù liesseurt.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "Aotreañ « su »"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -326,149 +326,149 @@ msgstr ""
"An anv arveriad a zle krogiñ gant ul lizherenn munut ha war he lerc'h "
"lizherennoù munut, sifroù, `-' ha `_' hepken"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Re hir eo an anv arveriad-se"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID an arveriad"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID ar strollad"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "ret eo da %s bezañ un niver"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Merañ an arveriaded"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Termeniñ tremenger ar merour (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Skrivit anv un arveriad"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Arlun"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Anv gwirion"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Anv ereañ"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Gortozit mar plij, emaon oc'h ouzhpennañ ur media ..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Emereañ"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Gallout a ran kefluniañ hoc’h urzhiataer evit lañsañ X ent emgefreek gant un "
"arveriad."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Implij an arc'hwel-mañ"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Dibabit an arveriad dre ziouer :"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dibabit ar merour prenestrer da seveniñ :"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Cheñchamantoù"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Serriñ"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Emglev an aotre"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Kuitaat"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Hag e plij an aotre-mañ deoc'h ?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Plijout a ra din"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Ne blij ket din"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Dibabit ar yezh da implijout, mar plij"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -479,87 +479,87 @@ msgstr ""
" yezhoù all hag a vo hegerz goude staliañ (ur wech e vo bet adloc'het\n"
" ar reizhiad)"
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Liesyezh"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kodadur kozh (n'eo ket UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "An holl yezhoù"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Dibab ho yezh"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Bro / Rannvro"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Dibabit ho pro, mar plij"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Setu eo listenn leun ar broioù holl"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Broioù all"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Barrek"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Hentenn enkas :"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Hini ebet"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "N'eo ket lodañ"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Aotreañ pep arveriad"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personelañ"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -569,86 +569,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Lañsañ userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Takad-eur"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Kefluniadur an deiziad, an eurier hag an amzer"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Peseurt hini zo an amzer welloc'h ?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (war UTC eo lakaet hoc’h eurier periantel)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (war GMT eo lakaet hoc’h eurier periantel)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Servijer NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -971,7 +971,7 @@ msgid "Domain Admin Password"
msgstr "Tremenger merour an domani"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1011,12 +1011,12 @@ msgstr "GRUB gant meuziad skrid"
msgid "not enough room in /boot"
msgstr "n'eus ket a-walc'h egor e /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ne vennit ket staliañ ar c'harger loc'hañ war ur parzhadur %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1025,7 +1025,7 @@ msgstr ""
"Ret eo bremanaat kefluniadur ho karger loc'hañ peogwir e oa cheñchet niver "
"ar parzhiadurioù"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1034,7 +1034,7 @@ msgstr ""
"N'hell ket bet staliet ar c'harger loc'hañ. Dao eo deoc'h loc'hañ gant ar "
"bladenn skoazell ha dibab « %s »"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Staliañ ar c'harger loc'hañ c'hoazh"
@@ -1064,17 +1064,23 @@ msgstr "Go"
msgid "TB"
msgstr "To"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d munutennoù"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 munutenn"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d eilenn"
@@ -1088,27 +1094,27 @@ msgid ""
"points, select \"New\"."
msgstr ""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nevez"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Divarc'hañ"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Marc'hañ"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Servijer"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1116,25 +1122,25 @@ msgstr "Servijer"
msgid "Mount point"
msgstr "Poent marc'hañ"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Dibarzhioù"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Dilemel"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Graet"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1150,17 +1156,17 @@ msgstr "Graet"
msgid "Error"
msgstr "Fazi"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Skrivit URL ar servijer WebDAV mar plij"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Ezhomm en deus an URL da gregiñ gant http:// pe https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1171,33 +1177,33 @@ msgstr "Ezhomm en deus an URL da gregiñ gant http:// pe https://"
msgid "Warning"
msgstr "Hoc’h evezh"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Ha fellout a ra deoc'h da vat lemel ar poent marc'hañ-mañ ?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Servijer : "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Poent marc'hañ : "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Dibarzhioù : %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "O parzhañ"
@@ -1228,9 +1234,9 @@ msgstr "Kuitaat"
msgid "Continue"
msgstr "Kenderc'hel"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Skoazell"
@@ -1261,63 +1267,63 @@ msgstr "Munudoù"
msgid "No hard disk drives found"
msgstr "N'eus ket pladenn kavet ebet"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Anavez"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Disloañ"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "All"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Goullo"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Seurt ar reizhiadoù restroù :"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Goullo eo ar barzhadur-se c'hoazh"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Implijit « Divarc'hañ » da gentañ"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Grit kentoc'h gant « %s » (er mod mailh)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1366,7 +1372,7 @@ msgstr "Kuitaat hep skrivañ an daolenn barzhañ ?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Mennout a rit skrivañ kemmoù /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Ret eo deoc'h adloc'hañ evit ma talvezo kemmoù an daolenn barzhañ"
@@ -1643,7 +1649,7 @@ msgid "Where do you want to mount %s?"
msgstr "Pelec'h e vennit marc'hañ an %s ?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Oc'h adventañ"
@@ -1688,7 +1694,7 @@ msgstr "Ment izelañ : %s Mo"
msgid "Maximum size: %s MB"
msgstr "Ment uhelañ : %s Mo"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2118,8 +2124,8 @@ msgstr "Kemmañ seurt"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Nullañ"
@@ -2212,7 +2218,7 @@ msgstr ""
"krouiñ reizhiadoù restroù nevez warni. Gwiriit abeg ar gudenn-mañ en hoc’h "
"ardivinkaj mar plij "
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Ret eo deoc'h kaout ur parzhadur ESP FAT32 marc'het war /boot/EFI"
@@ -2407,7 +2413,7 @@ msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"N'eus ket a-walc'h a zisloañ evit peurstaliañ, kreskit anezhañ mar plij"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2418,7 +2424,7 @@ msgstr ""
"Evit se, krouit ur parzhadur (pe glikit ouzh unan a zo c'hoazh).\n"
"Da c'houde dibabit an ober « Poent marc'hañ » ha lakait anezhañ da `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2429,42 +2435,42 @@ msgstr ""
"\n"
"Fellout a ra deoc'h mont war-raok evelato ?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Implij an egor dieub"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "N'eus ket a-walc'h egor dieub evit parzhadurioù nevez"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Implijit ar parzhadurioù a zo dija"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "N'eus parzhadur da implij ebet"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "O jediñ ment ar barzhadur Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Implijit an egor dieub war ar barzhadur Microsoft Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Pe seurt parzhadur a vennit furmadiñ ?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2472,12 +2478,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2510,54 +2516,54 @@ msgstr ""
"Pa vezit sur, gwaskit « %s »"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "A heul"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "O parzhañ"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Peseurt ment e vennit chom evit Microsoft Windows® war ar barzhadur %s ?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Ment"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Oc'h adventañ ar barzhadur Microsoft Windows®"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Fazi en un adventañ ar barzhadur FAT : %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "N'eus ket ur barzhadur FAT d'adventañ (n'eus ket a-walc'h egor dieub)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Lemel Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Chetañ hag implij an holl planedenn"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2565,23 +2571,23 @@ msgid ""
msgstr ""
"Meur a bladenn hoc’h eus. Pehini hoc’h eus c'hoant da implij evit staliañ ?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Ar parzhadurioù HOLL o vezañ hag e vo kollet holl roadoù war ar bladenn %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Parzhadurioù diouzoc'h"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Implijit fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2590,42 +2596,42 @@ msgstr ""
"Gallout a rit bremañ parzhañ ho pladenn galet %s.\n"
"Pa 'z eo graet, na zisoñjit ket enrollañ dre implijout `w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "N'hellan ket kavout plas da staliañ"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Kinnig eo deoc'h gant ar skoazeller parzhadur DrakX :"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Setu ar pezh a zo war ho pladenn "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Fazi en ur parzhañ : %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "N'hellit ket implij JFS evit ar parzhadurioù bihanoc'h evel 16Mo"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "N'hellit ket implij ReiserFS evit ar parzhadurioù bihanoc'h evel 32Mo"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "N'hellit ket implij BTRFS evit ar parzhadurioù bihanoc'h evel 256Mo"
@@ -2670,22 +2676,22 @@ msgstr ""
"(%s eo ar fazi)\n"
"\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Poentoù marc'hañ a rank kregiñ gant /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Bez' ez eus ur parzhadur e boent marc'hañ %s endeo\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2696,7 +2702,7 @@ msgstr ""
"N'eus ket moaien da loc'hañ hep ur barzhadur /boot.\n"
"Bezit sur hoc’h eus ouzhpennet ur barzhadur /boot"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2706,7 +2712,7 @@ msgstr ""
"N'eus ket moaien da loc'hañ hep ur barzhadur /boot.\n"
"Bezit sur hoc’h eus ouzhpennet ur barzhadur /boot"
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2715,12 +2721,12 @@ msgstr ""
"Choazet hoc’h eus implij ur RAID software evit /boot.\n"
"N'eus ket moaien da loc'hañ hep ur barzhadur /boot."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2732,14 +2738,14 @@ msgstr ""
"N'eus ket moaien da loc'hañ hep ur barzhadur /boot.\n"
"Bezit sur hoc’h eus ouzhpennet ur barzhadur /boot"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"N'hell ket bet implijet ur reizhiad restroù enrineget evit ar poent marc'hañ "
"%s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2748,7 +2754,7 @@ msgstr ""
"Ne vennit ket implij al levrenn boellek LVM evit ar poent marc'hañ %s "
"peogwir e vez implijet meur a levrenn fizikel gantañ"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2760,12 +2766,12 @@ msgstr ""
"N'eus ket moaien da loc'hañ pa emañ al levrenn war meur a levrenn fizikel.\n"
"Mat vije deoc'h krouiñ ur barzhadur loc'hañ da gentañ"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ret eo d'ar renkell-mañ da vezañ er reizhiad restroù gwrizienn"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2774,12 +2780,12 @@ msgstr ""
"Ret eo da implij ur gwir reizhiad restroù (ext2/3/4, reiserfs, xfs, pe jfs) "
"evit ar poent marc'hañ-mañ\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "N'eus ket plas dieub a-walac'h"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Netra d'ober"
@@ -2789,238 +2795,238 @@ msgstr "Netra d'ober"
msgid "SATA controllers"
msgstr "Kartennoù SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "Kartennoù RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Kartennoù (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Lenneroù kartennoù"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Kartennoù Firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Kartennoù PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Kartennoù SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Kartennoù USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Porzhioù USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Kartennoù SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Pontoù ha kontrolleroù ar reizhiad"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Pladennig"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Pladenn"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, fuzzy, c-format
msgid "USB Mass Storage Devices"
msgstr "Trobarzhelloù kwelet USB"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Engraverioù CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Bandenn"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Kartennoù AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Kartenn video"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Kartenn DVB"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Kartenn skinwel"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Trobarzhelloù liesvedia all"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Kartenn son"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webkam"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Kewerierioù"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Kartennoù ISDN"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Trobarzhelloù kwelet USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Kartennoù radio"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Kartennoù rouedad ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Kartennoù rouedad WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Trobarzhelloù Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Kartenn rouedad"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Kartennoù ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Memor"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Moullerez"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Kartennoù lanker-c'hoari"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Lanker-c'hoari"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Stokellaoueg"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablezenn ha skramm stekiñ"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Logodenn"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Eiltreser"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Anavez/All"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "kewerier # "
@@ -3248,19 +3254,19 @@ msgstr "Seurt an tuner :"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Mat eo"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ya"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3291,22 +3297,22 @@ msgstr "Disoc'h"
msgid "Previous"
msgstr "Diaraog"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "N'eus restr dibabet ebet"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Dibabet 'teus ur renkell. N'eo ket ur restr"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Hevelep renkell ebet"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Hevelep restr ebet"
@@ -4585,7 +4591,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Degemer e %s"
@@ -5125,7 +5131,7 @@ msgstr "Bevaat dazont root war-eeun."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5441,7 +5447,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6545,17 +6551,17 @@ msgstr "Kevread rusianek"
msgid "Yugoslavia"
msgstr "Yougoslavia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Ha reizh eo ?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Dibabet 'teus ur restr. N'eo ket ur renkell"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Titouroù"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 82c73c92c..6475b0dc9 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bs\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2006-09-13 19:15+0200\n"
"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Molim sačekajte"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalacija bootloadera u toku"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -51,12 +51,12 @@ msgstr ""
"\n"
"Da li da podesim novi ID volumena?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -71,218 +71,218 @@ msgstr ""
"\n"
"Sa kojeg diska vršite boot?"
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Instalacija bootloadera u toku"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite smjestiti bootloader?"
-#: any.pm:351
+#: any.pm:355
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Prvi sektor diska (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor diska (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Prvi sektor root particije"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Na disketi"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Preskoči"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Boot uređaj"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Glavne opcije"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Pauza prije pokretanja izabrane opcije"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Uključi ACPI"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Uključi ACPI"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Uključi APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Uključi Local APIC"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sigurnost"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Šifra"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Šifre se ne poklapaju"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Molim pokušajte ponovo"
-#: any.pm:425
+#: any.pm:429
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Ne možete koristiti šifrovani datotečni sistem za tačku montiranja %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Šifra (ponovo)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Xen append"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Video režim"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Mrežni profil"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Oznaka"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Default"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Morate navesti image kernela"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Morate navesti root particiju"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Ova oznaka je već u upotrebi"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu opcije želite dodati?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Ostali OSi (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguracija stila boota"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -291,196 +291,196 @@ msgstr ""
"Ovo su trenutne opcije u vašem boot meniju.\n"
"Možete dodati nove ili promijeniti postojeće."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "pristup mrežnim alatima"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "pristup alatima za kompajliranje"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Molim navedite korisničko ime"
-#: any.pm:830
+#: any.pm:875
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Korisničko ime je predugačko"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Ovo korisničko ime je već dodano"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Korisnički ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Grupni ID"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "Opcija %s mora biti broj"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s mora biti veće od 1000. Svejedno prihvati?"
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "Korisničko ime"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Podesite administratorsku (root) šifru"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Unesite korisnika\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Pravo ime"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Korisničko ime"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Molim sačekajte, dodajem medije..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mogu podesiti vaš računar da automatski prijavi jednog korisnika."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Koristi ovu mogućnost"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Napomene izdanja"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Zatvori"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Licencni ugovor"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Izlaz"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Imate li neki drugi?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Prihvatam"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Ne prihvatam"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Molim izaberite jezik koji ćete koristiti"
-#: any.pm:1106
+#: any.pm:1151
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -491,87 +491,87 @@ msgstr ""
"želite instalirati. Oni će biti dostupni kada se završi vaša\n"
"instalacija i restartujete vaš sistem."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Višejezična podrška"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kompatibilnost sa starim (ne-UTF8) kodiranjem"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Svi jezici"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Izbor jezika"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Država / Oblast"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Molim izaberite vašu državu"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ovdje je puna lista svih dostupnih država"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Ostale države"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Više opcija"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Metod unosa:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Ništa"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Vlastito"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -589,7 +589,7 @@ msgstr ""
"\"Izaberi korisnike\" vam omogućuje da podesite ovu opciju zasebno za svakog "
"korisnika.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -598,7 +598,7 @@ msgstr ""
"NFS: tradicionalni Unix sistem za dijeljenje datoteka, koji ima slabiju "
"podršku na Macintoshu i Windowsu."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -607,7 +607,7 @@ msgstr ""
"SMB: sistem za dijeljenje datoteka koji koristi Windows, Mac OS X i većina "
"modernih Linux sistema."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -615,12 +615,12 @@ msgstr ""
"Možete eksportovati koristeći NFS ili Sambu. Molim izaberite sistem koji "
"želite koristiti."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -629,7 +629,7 @@ msgstr ""
"Dijeljenje na nivou korisnika koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: any.pm:1458
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -638,49 +638,49 @@ msgstr ""
"Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na "
"snagu"
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na "
"snagu"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Vremenska zona"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Postavke datuma, sata i vremenske zone"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Koje je vrijeme tačnije?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardverski sat podešen na UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardverski sat podešen na lokalno vrijeme)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP server"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
@@ -1013,7 +1013,7 @@ msgid "Domain Admin Password"
msgstr "Administratorska šifra domena"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1053,12 +1053,12 @@ msgstr "GRUB sa tekstualnim menijem"
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1067,7 +1067,7 @@ msgstr ""
"Konfiguracija vašeg bootloadera mora biti ažurirana pošto su particije "
"renumerisane"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1076,7 +1076,7 @@ msgstr ""
"Ne mogu ispravno instalirati bootloader. Morate pokrenuti \"rescue\" sistem "
"i izabrati \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstalacija bootloadera"
@@ -1106,17 +1106,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minuta"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minuta"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d sekundi"
@@ -1134,27 +1140,27 @@ msgstr ""
"je web server podešen kao WebDAV server). Ako želite dodati WebDAV\n"
"tačke montiranja, izaberite \"Novi\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Novi"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Demontiraj"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Montiraj"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Server"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1162,25 +1168,25 @@ msgstr "Server"
msgid "Mount point"
msgstr "Tačka montiranja"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opcije"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Pobriši"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Gotovo"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1196,17 +1202,17 @@ msgstr "Gotovo"
msgid "Error"
msgstr "Greška"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Molim unesite URL WebDAV servera"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL mora počinjati sa http:// ili https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1217,33 +1223,33 @@ msgstr "URL mora počinjati sa http:// ili https://"
msgid "Warning"
msgstr "Upozorenje"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Da li želite kliknuti na ovo dugme?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Server:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Tačka montiranja: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Particioniranje"
@@ -1274,9 +1280,9 @@ msgstr "Izlaz"
msgid "Continue"
msgstr "Nastavak"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Pomoć"
@@ -1307,63 +1313,63 @@ msgstr "Detalji"
msgid "No hard disk drives found"
msgstr "Nije pronađen nijedan hard disk"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Nepoznat"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "Izlaz"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Ostalo"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Prazno"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Tipovi file sistema:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Ova particija je već prazna"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Najprije koristite \"Demontiraj\""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Koristi \"%s\" umjesto toga"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1412,7 +1418,7 @@ msgstr "Izlazite bez pisanja tabele particija?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Želite li spasiti izmjene u /etc/fstab ?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
@@ -1698,7 +1704,7 @@ msgid "Where do you want to mount %s?"
msgstr "Gdje želite montirati uređaj %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Mijenjam veličinu"
@@ -1744,7 +1750,7 @@ msgstr "Minimalna veličina: %s MB"
msgid "Maximum size: %s MB"
msgstr "Maksimalna veličina: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, fuzzy, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2194,8 +2200,8 @@ msgstr "Promijeni tip"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Odustani"
@@ -2288,7 +2294,7 @@ msgstr ""
"kreirati novi file sistemi. Molim provjerite vaš hardware i pronađite uzrok "
"greške"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Morate imati ESP FAT32 particiju montiranu na /boot/EFI"
@@ -2499,7 +2505,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nemam dovoljno swap prostora da dovršim instalaciju, molim dodajte još"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2510,7 +2516,7 @@ msgstr ""
"Za ovo, napravite jednu particiju (ili kliknite na neku od postojećih).\n"
"Zatim izaberite opciju \"Tačka montiranja\" i unesite vrijednost \"/\""
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2521,42 +2527,42 @@ msgstr ""
"\n"
"Da li da nastavim?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Koristi postojeću particiju"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Nemate nijednu postojeću particiju za upotrebu"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Izračunavam veličinu Microsoft Windows® particije"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Koristi slobodan prostor na Microsoft Windows® particiji"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji želite promijeniti veličinu?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2567,12 +2573,12 @@ msgstr ""
"restartujte vaš računar pod Microsoft Windows®, pokrenite program \"defrag\","
"zatim ponovo pokrenite %s instalaciju."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2607,56 +2613,56 @@ msgstr ""
"Kada ste sigurni, kliknite na \"%s\"."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Dalje"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Particioniranje"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Koju veličinu želite da sačuvate za Microsoft Windows® na particiji %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Veličina"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Smanjujem Microsoft Windows® particiju"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Smanjivanje FAT particije nije uspjelo: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Ne postoji nijedna FAT particija za promjenu veličine (ili nije ostalo "
"dovoljno prostora)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Ukloni Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Pobriši čitav disk"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2664,23 +2670,23 @@ msgid ""
msgstr ""
"Imate više od jednog hard diska. Na koji od njih želite instalirati Linux?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Ručno particioniranje diska"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2689,42 +2695,42 @@ msgstr ""
"Sada možete particionirati %s.\n"
"Kada završite, ne zaboravite spasiti naredbom 'w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Izlaz"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Ne mogu naći dovoljno prostora za instalaciju"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Particioni čarobnjak je našao sljedeća rješenja:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje nije uspjelo: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Ne možete koristiti JFS za particije manje od 16MB"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Ne možete koristiti ReiserFS za particije manje od 32MB"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "Ne možete koristiti JFS za particije manje od 16MB"
@@ -2768,22 +2774,22 @@ msgstr ""
"\n"
"Slažete li se sa gubitkom svih particija?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju počinjati sa /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Tačka montiranja se treba sastojati samo od brojeva i slova"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa tačkom montiranja %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2794,7 +2800,7 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Molim kasnije dodajte /boot particiju"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2804,7 +2810,7 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Molim kasnije dodajte /boot particiju"
-#: fsedit.pm:458
+#: fsedit.pm:461
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2814,12 +2820,12 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Molim kasnije dodajte /boot particiju"
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2830,12 +2836,12 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Molim kasnije dodajte /boot particiju"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Ne možete koristiti šifrovani datotečni sistem za tačku montiranja %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2844,7 +2850,7 @@ msgstr ""
"Ne možete koristiti LVM logički volumen za tačku montiranja %s pošto on "
"obuhvata fizičke volumene"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2857,12 +2863,12 @@ msgstr ""
"prostire preko više fizičkih volumena.\n"
"Trebali biste najprije napraviti /boot particiju"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2871,12 +2877,12 @@ msgstr ""
"Potreban vam je pravi file sistem (ext2/3/4, reiserfs, xfs ili jfs) za ovu "
"tačku montiranja\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nemam šta da radim"
@@ -2886,238 +2892,238 @@ msgstr "Nemam šta da radim"
msgid "SATA controllers"
msgstr "SATA kontroleri"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID kontroleri"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA kontroleri"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "Model kartice:"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire kontroleri"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA kontroleri"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI kontroleri"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB kontroleri"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB portovi"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus kontroleri"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Mostovi (bridges) i sistemski kontroleri"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disketa"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Hard Disk"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB uređaji za smještaj podataka"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD pržilica"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Traka"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP kontroleri"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Video kartica"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB kartica"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV kartica"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Drugi multimedijalni uređaj"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Zvučna kartica"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Web kamera"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Procesori"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN adapteri"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "USB zvučni uređaji"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Radio kartice"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "ATM mrežne kartice"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "WAN mrežne kartice"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth uređaji"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet kartica"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL adapteri"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Memorija"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Štampač"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Game port kontroleri"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Joystick"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Tastatura"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet i ekran osjetljiv na dodir"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Miš"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Skener"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Nepoznat/Ostali"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3367,19 +3373,19 @@ msgstr "Vrsta tunera:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "U redu"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Da"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3410,22 +3416,22 @@ msgstr "Kraj"
msgid "Previous"
msgstr "Nazad"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Nije izabrana datoteka"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Izabrali ste direktorij, a ne datoteku"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Nema tog direktorija"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Nema te datoteke"
@@ -4707,7 +4713,7 @@ msgstr "Zambija"
msgid "Zimbabwe"
msgstr "Zimbabve"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
@@ -5359,7 +5365,7 @@ msgstr "Dozvoli/zabrani direktan root login."
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Dozvoli/zabrani listu korisnika sistema na display manager-ima (sddm i gdm)."
@@ -5735,8 +5741,8 @@ msgid "Direct root login"
msgstr "Direktna root prijava"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Izlistaj korisnike na display manager-ima (sddm i gdm)"
#: security/l10n.pm:20
@@ -6944,17 +6950,17 @@ msgstr "Ruska Federacija"
msgid "Yugoslavia"
msgstr "Jugoslavija"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Izabrali ste datoteku, a ne direktorij"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Info"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index c20cf267e..14b3a4689 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-12-05 16:11+0000\n"
"Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>\n"
"Language-Team: Catalan (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -27,12 +27,12 @@ msgstr ""
msgid "Please wait"
msgstr "Espereu si us plau"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instal·lació del gestor d'arrencada en curs"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -49,14 +49,14 @@ msgstr ""
"\n"
"Voleu assignar un nou id. de volum?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Ha fallat la instal·lació del gestor d'arrencada. S'ha produït l'error "
"següent:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -71,218 +71,218 @@ msgstr ""
"\n"
"En quina unitat arrenqueu?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Instal·lació del gestor d'arrencada"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "On voleu instal·lar el gestor d'arrencada?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primer sector (MBR) del disc %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primer sector de la unitat (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Primer sector de la partició de root"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "En el disquet"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Omet"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuració del tipus d'arrencada"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Opcions principals del gestor d'arrencada"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Gestor d'arrencada"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Gestor d'arrencada a utilitzar"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Opcions principals"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Habilita ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Habilita SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Habilita APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Habilita APIC local"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Seguretat"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contrasenya"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "No podeu fer servir una contrasenya amb %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Imatge"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Arrel"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Afegeix"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Cal una contrasenya per a arrencar"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Mode de vídeo"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Perfil de xarxa"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predeterminat"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Heu d'especificar una imatge del nucli"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Heu d'especificar una partició arrel"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Aquesta etiqueta ja està en ús"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Un altre SO (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuració del gestor d'arrencada"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -291,47 +291,47 @@ msgstr ""
"Aquestes són les diferents entrades en el menú d'arrencada.\n"
"Podeu afegir-ne més o canviar les existents."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "accés a programes X"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "accés a les eines rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "permet «su»"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "accés a fitxers administratius"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "accés a les eines de xarxa"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "accés a les eines de compilació"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Si us plau, introduïu un nom d'usuari"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -340,149 +340,149 @@ msgstr ""
"El nom d'usuari ha de començar amb una lletra minúscula seguida només per "
"lletres minúscules, nombres, «-» i «_»"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "El nom d'usuari és massa llarg"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID d'usuari"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID de grup"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s ha de ser un número"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s hauria de ser superior a 1000. Continuar tot i això?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Gestió d'usuaris"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Habilita el compte del convidat"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Estableix la contrasenya de l'administrador (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Introduïu un usuari"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Icona"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Nom real"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Nom d'accés"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Si us plau espereu, s'estan afegint els suports..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Entrada automàtica"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Puc configurar el vostre ordinador de manera que entri automàticament amb un "
"nom d'usuari."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Utilitza aquesta característica"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per defecte:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Notes de versió"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Tanca"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Acord de llicència"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Surt"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Accepteu aquesta llicència?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Accepta"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Rebutja"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Si us plau, trieu un idioma per utilitzar"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -493,87 +493,87 @@ msgstr ""
"els idiomes que voleu instal·lar. Estaran disponibles\n"
"quan la instal·lació hagi acabat i reinicieu l'ordinador."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Múltiples idiomes"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Selecciona els idiomes addicionals"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Compatibilitat amb codificació antiga (no UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Tots els idiomes"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Tria d'idioma"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "País / Regió"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Si us plau, seleccioneu el vostre país"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aquesta és la llista completa de països"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Altres països"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avançat"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Mètode d'entrada:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Cap"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "No es comparteix"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permet tots els usuaris"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalitzada"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -588,7 +588,7 @@ msgstr ""
"\n"
"«Personalitzat» permet configurar cada usuari per separat.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -597,7 +597,7 @@ msgstr ""
"NFS: el sistema de compartició de fitxers tradicional d'Unix, amb menys "
"suport a Mac i Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -606,18 +606,18 @@ msgstr ""
"SMB: un sistema de compartició de fitxers usat per Windows, Mac OS X i "
"bastants sistemes Linux moderns."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Podeu exportar utilitzant NFS o SMB. Seleccioneu quin voleu utilitzar."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Executa userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -626,7 +626,7 @@ msgstr ""
"La compartició per usuari utilitza el grup «fileshare».\n"
"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -635,47 +635,47 @@ msgstr ""
"Heu de sortir i tornar a entrar perquè els canvis siguin efectius. Premeu "
"«D'acord» per a sortir ara mateix."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Heu de sortir i tornar a entrar per tal que els canvis tinguin efecte"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Fus horari"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "En quina zona horària us trobeu?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Ajusts de la data, del rellotge i del fus horari"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Quina és la millor hora?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (el rellotge de maquinari està establert a UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (el rellotge de maquinari està establert a hora local)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronització automàtica de l'hora (mitjançant NTP)"
@@ -1012,7 +1012,7 @@ msgid "Domain Admin Password"
msgstr "Contrasenya de l'administrador del domini"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1052,12 +1052,12 @@ msgstr "GRUB amb menú de text"
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "No podeu instal·lar el gestor d'arrencada a una partició %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1066,7 +1066,7 @@ msgstr ""
"La configuració del vostre gestor d'arrencada s'ha d'actualitzar, ja que la "
"partició ha estat renumerada"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1075,7 +1075,7 @@ msgstr ""
"El gestor d'arrencada no s'ha pogut instal·lar correctament. Heu d'arrencar "
"amb l'opció de rescat i escollir «%s»"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstal·la el gestor d'arrencada"
@@ -1105,17 +1105,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minuts"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minut"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d segons"
@@ -1134,27 +1140,27 @@ msgstr ""
"que el servidor web està configurat com a servidor WebDAV). Si voleu afegir\n"
"punts de muntatge WebDAV, seleccioneu «Nou»."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nou"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Desmunta"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Munta"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Servidor"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1162,25 +1168,25 @@ msgstr "Servidor"
msgid "Mount point"
msgstr "Punt de muntatge"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opcions"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Elimina"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fet"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1196,17 +1202,17 @@ msgstr "Fet"
msgid "Error"
msgstr "Error"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Si us plau, introduïu l'URL del servidor WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "L'URL ha de començar per http:// o https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1217,33 +1223,33 @@ msgstr "L'URL ha de començar per http:// o https://"
msgid "Warning"
msgstr "Advertència"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Esteu segur que voleu esborrar aquest punt de muntatge?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Servidor: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Particionament"
@@ -1276,9 +1282,9 @@ msgstr "Surt"
msgid "Continue"
msgstr "Continua"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Ajuda"
@@ -1309,63 +1315,63 @@ msgstr "Detalls"
msgid "No hard disk drives found"
msgstr "No s'ha trobat cap disc dur!"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Desconegut"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Intercanvi"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Altres"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Buit"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "La partició ja està buida"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Utilitzeu primer «Unmount»"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Utilitza «%s» com a alternativa (en mode expert)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1414,7 +1420,7 @@ msgstr "Voleu sortir sense escriure la taula de particions?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Voleu desar les modificacions a /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1699,7 +1705,7 @@ msgid "Where do you want to mount %s?"
msgstr "On voleu muntar %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "S'està canviant la mida"
@@ -1745,7 +1751,7 @@ msgstr "Mida mínima: %s MB"
msgid "Maximum size: %s MB"
msgstr "Mida màxima: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2190,8 +2196,8 @@ msgstr "Canvia el tipus"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Cancel·la"
@@ -2286,7 +2292,7 @@ msgstr ""
"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
"problema"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Heu de tenir una partició ESP FAT32 muntada en /boot/EFI"
@@ -2500,7 +2506,7 @@ msgstr ""
"No hi ha prou espai d'intercanvi per completar la instal·lació; si us plau, "
"afegiu-ne"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2511,7 +2517,7 @@ msgstr ""
"Per fer-ho, creeu una partició (o feu clic a una d'existent).\n"
"Després, trieu l'acció «Punt de muntatge» i doneu-li el valor '/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2522,42 +2528,42 @@ msgstr ""
"\n"
"Voleu continuar igualment?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Utilitza l'espai lliure"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Utilitza les particions existents"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "No hi ha cap partició que es pugui utilitzar"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "S'està calculant la mida de la partició de Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Utilitza l'espai lliure en una partició Microsoft Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "A quina partició voleu canviar-li la mida?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2568,12 +2574,12 @@ msgstr ""
"reinicieu l'ordinador sota Microsoft Windows® i executeu l'eina «defrag». "
"Llavors, torneu a començar la instal·lació del %s."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2609,55 +2615,55 @@ msgstr ""
"Quan estigueu segur, premeu %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Següent"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Particionament"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Quina mida voleu deixar per a la partició de Microsoft Windows® partició %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Mida"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "S'està redimensionant la partició de Microsoft Windows®"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ha fallat el redimensionament de la FAT: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"No hi ha cap partició FAT a la qual canviar la mida (o no queda prou espai)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Elimina el Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Esborra i utilitza tot el disc"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2665,23 +2671,23 @@ msgid ""
msgstr ""
"Teniu més d'una unitat de disc. Quina voleu que l'instal·lador faci servir?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Particionament personalitzat de disc"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Utilitza fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2690,43 +2696,43 @@ msgstr ""
"Ara podeu fer les particions a %s.\n"
"Quan acabeu, no oblideu desar-les utilitzant 'w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "No es pot trobar espai per a la instal·lació"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"L'auxiliar de particionament del DrakX ha trobat les solucions següents:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Aquest és el contingut del disc dur "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ha fallat el particionament: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "No podeu utilitzar btrfs per a les particions inferiors als 256 MB"
@@ -2773,22 +2779,22 @@ msgstr ""
"\n"
"Esteu d'acord en perdre totes les particions?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de començar amb una /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Els punts de muntatge només poden contenir caràcters alfanumèrics"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una partició amb el punt de muntatge %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2799,7 +2805,7 @@ msgstr ""
"No hi ha cap gestor d'arrencada que sigui capaç de gestionar-ho.\n"
"Assegureu-vos d'afegir una partició /boot separada."
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2808,7 +2814,7 @@ msgstr ""
"Versió de metadades no suportada per a una partició d'arrencada. Assegureu-"
"vos d'afegir una partició /boot separada."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2817,12 +2823,12 @@ msgstr ""
"Heu seleccionat una partició RAID per programari com a /boot.\n"
"No hi ha cap gestor d'arrencada que sigui capaç de gestionar-ho."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Versió de metadades no suportada per a una partició d'arrencada."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2833,13 +2839,13 @@ msgstr ""
"No hi ha cap gestor d'arrencada que sigui capaç de gestionar-ho.\n"
"Assegureu-vos d'afegir una partició /boot separada."
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"No podeu utilitzar un sistema de fitxers xifrat per al punt de muntatge %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2848,7 +2854,7 @@ msgstr ""
"No podeu utilitzar el volm lògic de LVM per al punt de muntatge %s, ja que "
"abasta els volums físics"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2857,12 +2863,12 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers arrel"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2871,12 +2877,12 @@ msgstr ""
"Necessiteu un sistema de fitxers real (ext2/3/4, reiserfs, xfs o jfs) per a "
"aquest punt de muntatge\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "No hi ha prou espai per a l'assignació automàtica"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Res a fer"
@@ -2886,238 +2892,238 @@ msgstr "Res a fer"
msgid "SATA controllers"
msgstr "Controladors SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "Controladors RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Controladors (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Lectors de targetes"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Controladors Firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Controladors PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Controladors SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Controladors USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Ports USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Controladors SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Ponts i controladors del sistema"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disquet"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Disc"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Dispositius d'emmagatzematge massiu USB"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CD-ROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Gravadors de CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Cinta"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Controladors AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Targeta de vídeo"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Targeta DVB"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Targeta de TV"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Altres dispositius multimèdia"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Targeta de so"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Processadors"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Adaptadors XDSI"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Dispositius de so USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Targetes de ràdio"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Targetes de xarxa ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Targetes de xarxa WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Dispositius Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Targeta de xarxa"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Mòdem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Adaptadors ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Memòria"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Impressora"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Ports de controladors per jocs"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Palanca de jocs"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Teclat"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tauleta i pantalla tàctil"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Ratolí"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometria"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "SAI"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Escàner"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Desconegut/Altres"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "CPU #"
@@ -3369,19 +3375,19 @@ msgstr "Tipus de sintonitzador:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "D'acord"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Sí"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3412,22 +3418,22 @@ msgstr "Fi"
msgid "Previous"
msgstr "Anterior"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Cap fitxer escollit"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Heu escollit un directori, no un fitxer"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "No és un directori"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "No hi ha fitxer"
@@ -4709,7 +4715,7 @@ msgstr "Zàmbia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
@@ -5267,10 +5273,10 @@ msgid "Allow direct root login."
msgstr "Permet la connexió directa de l'usuari primari."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
-msgstr ""
+"Allow the list of users on the system on display managers (kdm and gdm)."
+msgstr "Llista els usuaris als gestors de pantalla (sddm i gdm)"
#: security/help.pm:35
#, c-format
@@ -5629,8 +5635,8 @@ msgid "Direct root login"
msgstr "Entrada directa com a superusuari"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Llista els usuaris als gestors de pantalla (sddm i gdm)"
#: security/l10n.pm:20
@@ -6832,17 +6838,17 @@ msgstr "Rússia"
msgid "Yugoslavia"
msgstr "Iugoslàvia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Això és correcte?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Heu escollit un fitxer, no un directori"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Informació"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 41b238d53..fe8b07222 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-06-02 05:00+0000\n"
"Last-Translator: Jiří Vírava <appukonrad@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/mageia/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Prosím počkejte"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Probíhá instalace zaváděcího programu"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -51,12 +51,12 @@ msgstr ""
"\n"
"Přiřadit nové ID svazku?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalace zaváděcího programu selhala. Stala se tato chyba:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -71,218 +71,218 @@ msgstr ""
"\n"
"Z jakého disku startujete systém?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Instalace zaváděcího programu"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zaváděcí program?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "První sektor (MBR) disku %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "První sektor disku (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "První sektor kořenového oddílu"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Na disketu"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Přeskočit"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Nastavení stylu zavádění"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Základní nastavení zaváděcího programu"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Zaváděcí program"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Zaváděcí program"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Startovací zařízení"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Hlavní volby"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Prodleva před zavedením výchozího obrazu"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Povolit ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Povolit SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Povolit APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Povolit lokální APIC"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Bezpečnost"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Heslo"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Hesla nejsou shodná"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Zkuste to znovu, prosím"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nemůžete použít heslo s %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Heslo (podruhé)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Obraz (image)"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Kořenový (root)"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Připojit"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Připojit Xen"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Vyžaduje pro zavedení heslo"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Video režim"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Síťový profil"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Značka"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Výchozí"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Prázdná značka není povolena"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Musíte zadat soubor s jádrem"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Musíte zadat kořenový oddíl"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Tato značka se již používá"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Jaký typ záznamu chcete přidat?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Jiný systém (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Nastavení zaváděcího programu"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -291,47 +291,47 @@ msgstr ""
"Zde jsou záznamy z vaší zaváděcí nabídky.\n"
"Můžete přidat další nebo změnit stávající."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "přístup k programům v X prostředí"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "přístup k rpm nástrojům"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "povolit \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "přístup k administrativním souborům"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "přístup k síťovým nástrojům"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "přístup k nástrojům pro kompilaci"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(už byl přidán %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Prosím zadejte uživatelské jméno"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -340,148 +340,148 @@ msgstr ""
"Uživatelské jméno musí začínat malým písmenem a pokračovat pouze malými "
"písmeny, číslicemi nebo znaky „-” a „_”"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Toto uživatelské jméno je příliš dlouhé"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Toto uživatelské jméno už bylo přidáno"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID uživatele"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID skupiny"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s musí být číslo"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s by mělo být vyšší než 1000. Přesto použít?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Správa uživatelů"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Povolit účet hosta"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Heslo správce (uživatele root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Zadejte uživatele"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Skutečné jméno"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Přihlašovací jméno"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Prosím počkejte, přidávají se zdroje..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatické přihlášení"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Lze nastavit váš počítač tak, aby automaticky přihlásil vybraného uživatele."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Použít tuto vlastnost"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Zvolte standardního uživatele:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vyberte si, který správce oken má být spouštěn:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Poznámky k vydání"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Zavřít"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Souhlas s licencí"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Konec"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Přijímáte tuto licenci?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Přijmout"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Odmítnout"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Prosím zvolte si jazyk, který chcete používat"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -492,87 +492,87 @@ msgstr ""
"chcete nainstalovat podporu. Tyto budou dostupné po dokončení\n"
"instalace a restartu systému."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Více jazyků"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Vybrat další jazyky"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Stará (ne UTF-8) kódování pro kompatibilitu"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Všechny jazyky"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Výběr jazyka"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Země"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Vyberte si, prosím, svoji zem"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Zde je úplný seznam dostupných zemí"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Jiné země"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Rozšíření"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Vstupní metoda:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Žádné"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Nesdílet"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Povolit všem uživatelům"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Vlastní"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -588,7 +588,7 @@ msgstr ""
"\n"
"Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -597,7 +597,7 @@ msgstr ""
"NFS: tradiční systém pro sdílení souborů v prostředí Unix, s menší podporou "
"operačních systémů Mac a Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -606,7 +606,7 @@ msgstr ""
"SMB: systém pro sdílení souborů používaný ve Windows, MacOS X a mnohými "
"moderními Linuxovými systémy."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -614,12 +614,12 @@ msgstr ""
"Nyní lze provést export přes protokol NFS nebo SMB. Vyberte, prosím, který "
"chcete použít."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Spustit UserDrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -628,7 +628,7 @@ msgstr ""
"Sdílení mezi uživateli používá skupinu \"fileshare\". \n"
"Uživatele lze do této skupiny přidat pomocí nástroje UserDrake."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -637,47 +637,47 @@ msgstr ""
"Aby se změny projevily, je nutné se odhlásit a opět přihlásit. Stisknutím OK "
"se ihned odhlásíte."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Aby se změna projevila, je nutné se odhlásit a opět přihlásit"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Časová zóna"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Jaké je vaše časové pásmo?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Nastavení data, hodin a časové zóny"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Jaké vedení času je nejvhodnější?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardwarové hodiny nastaveny na UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardwarové hodiny nastaveny na místní čas)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP Server"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatická synchronizace času (pomocí NTP)"
@@ -1016,7 +1016,7 @@ msgid "Domain Admin Password"
msgstr "Heslo Správce domény"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1056,12 +1056,12 @@ msgstr "GRUB s textovou nabídkou"
msgid "not enough room in /boot"
msgstr "není dost místa v adresáři /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Na oddíl %s nelze instalovat zavaděč\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1070,7 +1070,7 @@ msgstr ""
"Nastavení vašeho zavaděče musí být aktualizováno, protože se změnilo pořadí "
"oddílů na disku"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1079,7 +1079,7 @@ msgstr ""
"Zavaděč se nepodařilo řádně nainstalovat. Spusťte systém v záchranném režimu "
"a zvolte \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Znovu instalovat zaváděcí program"
@@ -1109,17 +1109,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minut(y)"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minuta"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d sekund"
@@ -1138,27 +1144,27 @@ msgstr ""
"nastaven jako WebDAV server). Pokud chcete přidat WebDAV připojení, vyberte\n"
"položku \"Nový\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nový"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Odpojit"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Připojit"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Server"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1166,25 +1172,25 @@ msgstr "Server"
msgid "Mount point"
msgstr "Přípojný bod"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Volby"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Odebrat"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Hotovo"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1200,17 +1206,17 @@ msgstr "Hotovo"
msgid "Error"
msgstr "Chyba"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Zadejte, prosím, URL serveru WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL musí začínat znaky http:// nebo https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1221,33 +1227,33 @@ msgstr "URL musí začínat znaky http:// nebo https://"
msgid "Warning"
msgstr "Varování"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Chcete opravdu smazat tento přípojný bod?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Adresář připojení (přípojný bod): "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Volby: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Rozdělení disku"
@@ -1278,9 +1284,9 @@ msgstr "Konec"
msgid "Continue"
msgstr "Pokračovat"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Nápověda"
@@ -1312,63 +1318,63 @@ msgstr "Podrobnosti"
msgid "No hard disk drives found"
msgstr "Nebyly nalezeny žádné pevné disky"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Neznámý"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Odkládací (swap)"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Další"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Prázdný"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Souborové systémy:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Tento oddíl je již prázdný"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Nejprve použijte ''Odpojit''"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Místo toho použijte ''%s'' (v expertním režimu)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1417,7 +1423,7 @@ msgstr "Chcete skončit bez zapsání do tabulky oddílů?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Chcete uložit změny v /etc/fstab?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Aby se změny v tabulce oddílů projevily, restartujte počítač"
@@ -1700,7 +1706,7 @@ msgid "Where do you want to mount %s?"
msgstr "Kam chcete připojit %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Mění se velikost"
@@ -1745,7 +1751,7 @@ msgstr "Nejmenší velikost: %s MB"
msgid "Maximum size: %s MB"
msgstr "Největší velikost: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2189,8 +2195,8 @@ msgstr "Změnit typ"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Zrušit"
@@ -2283,7 +2289,7 @@ msgstr ""
"vytvořit nové souborové systémy. Zkontrolujte, prosím, technické vybavení "
"počítače"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Musíte mít ESP FAT32 oddíl připojený na /boot/EFI"
@@ -2493,7 +2499,7 @@ msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Není dostatek odkládacího prostoru k instalaci, prosím, přidejte nějaký"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2504,7 +2510,7 @@ msgstr ""
"K jeho nastavení vytvořte oddíl (nebo vyberte oddíl stávající), vyberte "
"možnost Mount point (adresář připojení) a zvolte \"/\""
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2515,42 +2521,42 @@ msgstr ""
"\n"
"Chcete přesto pokračovat?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Použít volné místo"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Není dostatek místa pro vytvoření nových diskových oddílů"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Použít existující oddíly"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Není zde žádný existující oddíl k použití"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Počítá se volné místo na oddílu Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Použít volné místo na oddílu Microsoft Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Na kterém oddílu chcete změnit velikost?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2561,12 +2567,12 @@ msgstr ""
"váš počítač do Microsoft Windows® a použijte nástroj \"defrag\". Poté "
"spusťte znovu instalaci %s."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr "Nepodařilo se najít oddíl pro změnu velikosti (%d možnosti)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2601,79 +2607,79 @@ msgstr ""
"Až si budete jistí, že chcete pokračovat, stiskněte %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Další"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Rozdělení disku"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Jakou velikost oddílu chcete nechat pro Microsoft Windows® na diskovém "
"oddílu %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Velikost"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Mění se velikost oddílu s Microsoft Windows®"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Změna FAT oddílu neuspěla: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Nejsou zde žádné FAT oddíly, které by bylo možné změnit (nebo není dostatek "
"místa)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Odstranit Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Smazat a použít celý disk"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr "Máte více než jeden pevný disk. Který chcete k instalaci použít?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "VŠECHNY diskové oddíly a data na disku %s budou zrušeny"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Vlastní rozdělení disku"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Použít fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2682,42 +2688,42 @@ msgstr ""
"Nyní můžete rozdělit váš pevný disk %s.\n"
"Až skončíte, nezapomeňte uložit změny pomocí 'w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Nebylo nalezeno dostatek místa pro instalaci"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Průvodce oddíly DrakX našel následující řešení rozdělení disku:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Zde je obsah vašeho disku "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Vytváření diskových oddílů selhalo: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Pro oddíl menší než 16MB nelze použít JFS"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Pro oddíl menší než 32MB nelze použít ReiserFS"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "Pro oddíly menší než 256MB nelze použít Btrfs"
@@ -2760,22 +2766,22 @@ msgstr ""
"\n"
"Chcete přijít o všechny současně existující oddíly?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Přípojné body musí začínat '/'"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Název přípojného bodu může obsahovat pouze písmena a číslice"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Oddíl s přípojným bodem %s už existuje\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2786,7 +2792,7 @@ msgstr ""
"Žádný zavaděč neumí zavést systém, pakliže nemáte oddělený oddíl\n"
"/boot. Prosím, ujistěte se, že máte oddělený oddíl /boot."
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2795,7 +2801,7 @@ msgstr ""
"Tato verze popisných dat (metadat) není kompatibilní se stávajícím zaváděcím "
"oddílem. Prosím, ujistěte se, že máte oddělený oddíl /boot."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2804,12 +2810,12 @@ msgstr ""
"Zvolili jste softwarový RAID oddíl jako zaváděcí oddíl /boot.\n"
"S tím se není schopný vypořádat žádný zaváděcí program."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Verze popisných dat (metadat) není podporovaná jako zaváděcí oddíl."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2820,13 +2826,13 @@ msgstr ""
"Žádný zavaděč neumí zavést systém, pakliže nemáte oddělený oddíl\n"
"/boot. Prosím, ujistěte se, že máte oddělený oddíl /boot."
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Pro přípojný bod (adresář připojení) %s nemůžete použít šifrovaný oddíl"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2835,7 +2841,7 @@ msgstr ""
"Pro přípojný bod (adresář připojení) %s nemůžete použít oddíl na LVM, "
"jelikož tento zahrnuje fyzických částí (PV)"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2847,12 +2853,12 @@ msgstr ""
"částmi (PV). Žádný zavaděč neumí zavést systém, pakliže nemáte \n"
"oddělený oddíl /boot. Prosím ujistěte se, že máte oddělený oddíl /boot."
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Tento adresář musí kromě kořenového souborového systému zůstat"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2861,12 +2867,12 @@ msgstr ""
"Pro tento přípojný bod potřebujete opravdový souborový systém (ext2/ext3, "
"reiserFS, XFS nebo JFS)\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Pro automatické rozdělení disku není dostatek místa"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nic nedělat"
@@ -2876,238 +2882,238 @@ msgstr "Nic nedělat"
msgid "SATA controllers"
msgstr "SATA řadiče"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID řadiče"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA řadiče"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Čtečky karet"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire řadiče"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA řadiče"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI řadiče"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB řadiče"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB porty"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus řadiče"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Systémové řadiče a můstky"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disketa"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Pevný disk"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Úložná zařízení USB"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD vypalovačky"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Páska"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP řadiče"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Grafická karta"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB karta"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV karta"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Další multimediální zařízení"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Zvuková karta"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webová kamera"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Procesory"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Adaptéry ISDN"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Zvuková zařízení USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Rádio karty"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Síťové karty ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Síťové karty WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Zařízení Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernetová karta"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Adaptéry ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Paměť"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Tiskárna"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Game port řadiče"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Joystick"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Klávesnice"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet a dotyková obrazovka"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Myš"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometrie"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Skener"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Neznámý/Jiný"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu #"
@@ -3413,19 +3419,19 @@ msgstr "Typ tuneru:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Ok"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ano"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3456,22 +3462,22 @@ msgstr "Ukončit"
msgid "Previous"
msgstr "Zpět"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Nezvolen žádný soubor"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Vybrali jste adresář, ne soubor"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Adresář neexistuje"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Soubor neexistuje"
@@ -4753,7 +4759,7 @@ msgstr "Zambie"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Vítá vás %s"
@@ -5364,9 +5370,9 @@ msgid "Allow direct root login."
msgstr "Povolit přímé přihlášení uživatele root."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Povolit výpis uživatelů systému ve správcích přihlášení (sddm nebo gdm)."
@@ -5740,8 +5746,8 @@ msgid "Direct root login"
msgstr "Přímé přihlášení uživatele root"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Povolit výpis uživatelů ve správcích přihlášení (sddm nebo gdm)"
#: security/l10n.pm:20
@@ -6964,17 +6970,17 @@ msgstr "Ruská federace"
msgid "Yugoslavia"
msgstr "Jugoslávie"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Je to správně?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Vybrali jste soubor, ne adresář"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Informace"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 2638ed798..b82edbfca 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-12-26 16:09+0000\n"
"Last-Translator: ciaran\n"
"Language-Team: Welsh (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
"11) ? 2 : 3;\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Aros..."
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Wrthi'n gosod cychwynnwr"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -49,12 +49,12 @@ msgstr ""
"\n"
"Neilltuo enw Cyfrol newydd?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Methodd gosod cychwynnwr. Digwyddodd y gwall canlynol:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -69,218 +69,218 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Gosod Cychwynnwr"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Lle rydych chi eisiau gosod y cychwynnwr?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Adran gyntaf (MBR) o ddisg %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Adran gyntaf o'r disg (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Adran gyntaf o'r rhaniad gwraidd"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Ar Ddisg Meddal"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Hepgor"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Prif ddewisiadau'r cychwynnwr"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Cychwynnwr"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Dewis cychwynnwr"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Prif ddewisiadau"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Galluogi ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Galluogi SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Galluogi APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Galluogi APIC Lleol"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Diogelwch"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Cyfrinair"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cyd-fynd"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nid oes modd defnyddio cyfrinair gyda %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Delwedd"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Gwraidd"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Atodi"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Atodiad Xen"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Modd fideo"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Proffil rhwydwaith"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Rhagosodedig"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Nid yw label wag yn cael ei chaniatáu"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Rhaid enwi delwedd cnewyllyn"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Rhaid pennu rhaniad gwraidd"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Systemau Gweithredu Eraill (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Ffurfweddu'r Cychwynnwr"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -289,194 +289,194 @@ msgstr ""
"Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "caniatáu \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "mynediad i offer rhwydwaith"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "mynediad i offer crynhoad"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Enw Defnyddiwr"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Enw Grŵp"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "Rhaid i %s fod yn rhif!"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "Dylai %s fod dros 1000. Parhau beth bynnag?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Rheoli defnyddiwr"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Gosod cyfrinair gweinyddwr (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Rhowch enw defnyddiwr"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Eicon"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Enw cywir"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Enw mewngofnodi"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Cragen"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Arhoswch, ychwanegu cyfrwng..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Awto mewngofnodi"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mewngofnodi'n awtomatig ar gyfer un defnyddiwr."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Defnyddiwch y nodwedd"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i redeg:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Nodiadau'r fersiwn"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Cau"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Cytundeb trwyddedu"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Gadael"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "A ydych chi'n derbyn y drwydded hon?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Derbyn"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Gwrthod"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Dewiswch iaith i'w defnyddio"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -484,87 +484,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Hen Amgodiad (nid utf-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Pob iaith"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Dewis iaith"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Gwlad / Ardal"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Dewiswch eich gwlad"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Dyma restr lawn o'r gwledydd sydd ar gael"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Gwledydd eraill"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Uwch"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Dull mewnbwn:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Dim"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Peidio rhannu"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Arddull"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -579,7 +579,7 @@ msgstr ""
"\n"
"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -588,7 +588,7 @@ msgstr ""
"NFS: system rhannu ffeiliau traddodiadol Unix, sydd â llai o gefnogaeth ar "
"Mac a Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -597,19 +597,19 @@ msgstr ""
"SMB: system rhannu ffeiliau sy'n cael ei ddefnyddio yn Windows, Mac OSX a "
"nifer o systemau Linux diweddar."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Gallwch allforio gan ddefnyddio NFS neu SMB. Pa un hoffech chi ei ddefnyddio?"
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -618,7 +618,7 @@ msgstr ""
"Mae'r rhannu yn ôl defnyddiwr yn defnyddio grŵp \"rhannu ffeiliau\" .\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grŵp. "
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -627,47 +627,47 @@ msgstr ""
"Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd. Cliciwch Iawn i "
"allgofnodi nawr."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd."
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Cylchfa amser"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Gosodiadau Dyddiad Cloc a Chylchedd Amser"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Beth yw'r amser gorau?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (cloc caledwedd wedi ei osod i UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (cloc caledwedd wedi ei osod i'r amser lleol)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Gweinydd NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
@@ -1002,7 +1002,7 @@ msgid "Domain Admin Password"
msgstr "Cyfrinair Gweinyddol y Parth"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1042,12 +1042,12 @@ msgstr "GRUB gyda dewislen testun"
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y cychwynnwr ar raniad %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1056,7 +1056,7 @@ msgstr ""
"Rhaid i ffurfweddiad eich cychwynnwr gael ei ddiweddaru am i'r rhaniadau "
"gael eu hail rifo."
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1065,7 +1065,7 @@ msgstr ""
"Methu gosod eich cychwynnwr yn iawn, Rhaid defnyddio achub cychwyn a dewis "
"\"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Ail osod Cychwynnwr"
@@ -1095,17 +1095,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d munud"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 munud"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d eiliad"
@@ -1123,27 +1129,27 @@ msgstr ""
"ffurfweddi fel gweinydd WebDAV). Os hoffech ychwanegu pwyntiau\n"
"arosod WebDAV, dewiswch \"Newydd\""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Newydd"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Dadarosod"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Arosod"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Gweinydd"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1151,25 +1157,25 @@ msgstr "Gweinydd"
msgid "Mount point"
msgstr "Pwynt arosod"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Dewisiadau"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Tynnu"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Gorffen"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1185,17 +1191,17 @@ msgstr "Gorffen"
msgid "Error"
msgstr "Gwall"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Rhowch URL gweinydd WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1206,33 +1212,33 @@ msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
msgid "Warning"
msgstr "Rhybudd"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Ydych chi eisiau dileu'r pwynt arosod?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Gweinydd:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Pwynt arosod:"
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Creu rhaniadau"
@@ -1264,9 +1270,9 @@ msgstr "Gadael"
msgid "Continue"
msgstr "Parhau"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Cymorth"
@@ -1297,63 +1303,63 @@ msgstr "Manylion"
msgid "No hard disk drives found"
msgstr "Heb ganfod gyrwyr caled"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Anhysbys"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Arall"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Gwag"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Mathau o system ffeiliau:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Mae'r rhaniad eisoes yn wag"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Defnyddiwch \"Dadarosod\" yn gyntaf"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Defnyddiwch \"%s\" yn lle hynny (modd arbenigwr)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1402,7 +1408,7 @@ msgstr "Gorffen heb ysgrifennu'r tabl rhaniadau?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1689,7 +1695,7 @@ msgid "Where do you want to mount %s?"
msgstr "Lle'r ydych am arosod %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Newid maint"
@@ -1736,7 +1742,7 @@ msgstr "Lleiafswm maint: %s MB"
msgid "Maximum size: %s MB"
msgstr "Uchawfswm maint : %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2183,8 +2189,8 @@ msgstr "Newid y math"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Diddymu"
@@ -2277,7 +2283,7 @@ msgstr ""
"Digwyddodd gwall - heb ganfod unrhyw ddyfeisiau dilys er mwyn creu system "
"ffeil arnynt. Gwiriwch eich caledwedd am reswm dros y gwall."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Rhaid cael rhaniad ESP FAT32 wedi ei arosod yn /boot/EFI"
@@ -2490,7 +2496,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Dim digon o le cyfnewid i gyflawni'r gosod, ychwanegwch"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2501,7 +2507,7 @@ msgstr ""
"Ar gyfer gwneud hyn , crëwch raniad (neu cliciwch ar un cyfredol).\n"
"Yna dewiswch weithred ``Pwynt arosod'' a'i osod i `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2512,42 +2518,42 @@ msgstr ""
"\n"
"Parhau beth bynnag?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Defnyddio'r gwagle"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nid oes digon o le ar gyfer dynodi rhaniadau newydd"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Defnyddio'r rhaniadau presennol"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Nid oes rhaniad presennol ar gael"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Mesur maint rhaniad Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Defnyddio'r gwagle ar raniad Microsoft Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Pa raniad hoffech newid ei faint?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2558,12 +2564,12 @@ msgstr ""
"cyfrifiadur yn Microsoft Windows®, a rhedeg y rhaglen `defrag'', yna "
"ailgychwyn gosod %s."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2599,76 +2605,76 @@ msgstr ""
"When sure, press %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Nesaf"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Creu rhaniadau"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Pa faint o le ydych am ei gadw ar gyfer Microsoft Windows® ar rhaniad %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Maint"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Newid maint rhaniad Microsoft Windows®"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Methodd newid maint FAT %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Nid oes rhaint FAT i newid ei faint (neu does dim digon o le)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Tynnu Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Dileu a defnyddio'r ddisg gyfan"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Bydd POB rhaniad presennol a'u data'n cael eu colli ar yrrwr %si"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Rhannu disg arbenigol"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Defnyddiwch fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2677,42 +2683,42 @@ msgstr ""
"Gallwch nawr rannu %s.\n"
"Ar ôl gorffen, peidiwch anghofio ei gadw dan ddefnyddio 'w'."
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr ""
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Nid oes lle ar gyfer gosod"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Mae dewin rhannu DrakX wedi canfod yr atebion canlynol:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Methodd creu'r rhaniad: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar raniadau llai na 16MB"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2755,22 +2761,22 @@ msgstr ""
"\n"
"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Rhaid i bwyntiau arosod gynnwys / arweiniol"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Dylai enw'r pwyntiau arosod gynnwys llythrennau a rhifau'n unig"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mae yna eisoes raniad gyda phwynt arosod %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2778,26 +2784,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2805,12 +2811,12 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Nid oes modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt arosod %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2819,7 +2825,7 @@ msgstr ""
"Does dim modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt arosod %s am ei "
"fod ar draws cyfrolau ffisegol."
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2828,12 +2834,12 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dylai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2842,12 +2848,12 @@ msgstr ""
"Mae angen gwir system ffeilio (ext2, reiserfs, xfs, neu jfs)) ar gyfer y "
"pwynt arosod\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nid oes digon o le i ddynodi'n awtomatig"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Dim i'w wneud"
@@ -2857,238 +2863,238 @@ msgstr "Dim i'w wneud"
msgid "SATA controllers"
msgstr "Rheolyddion SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "Rheolyddion RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Rheolyddion (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Darllenydd cerdyn"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Rheolyddion firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Rheolyddion PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Rheolyddion SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Rheolyddion USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Pyrth USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Rheolyddion SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Rheolyddion pontydd a system"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disg Meddal"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Disg"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Dyfeisiau Storio Crynswth USB"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Llosgwyr CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Tâp"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Rheolyddion AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Cerdyn fideo"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Cerdyn DVB"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Cerdyn Teledu"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Dyfeisiau aml-gyfrwng eraill"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Cerdyn sain"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Camera Gwe"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Prosesyddion"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Addaswyr ISDN"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Dyfeisiau sain USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Cardiau radio"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Cardiau rhwydwaith ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Cardiau rhwydwaith WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Dyfeisiau Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Cerdyn Ethernet"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Addaswyr ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Cof"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Argraffydd"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Rheolyddion porth gemau"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Ffon hud"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Bysellfwrdd"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tabled a sgrin cyffwrdd"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Llygoden"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometreg"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Sganiwr"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Anhysbys/Eraill"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3331,19 +3337,19 @@ msgstr "Math o diwniwr:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Iawn"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Iawn"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3374,22 +3380,22 @@ msgstr "Gorffen"
msgid "Previous"
msgstr "Blaenorol"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Heb ddewis ffeil"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Rydych wedi dewis cyfeiriadur, nid ffeil"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Dim cyfeiriadur o'r fath ar gael"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Dim ffeil o'r fath ar gael"
@@ -4671,7 +4677,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
@@ -5310,7 +5316,7 @@ msgstr "Caniatáu mewngofnodi gwraidd uniongyrchol."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5681,7 +5687,7 @@ msgstr "Mewngofnodi gwraidd uniongyrchol"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6878,17 +6884,17 @@ msgstr "Cyfundeb Rwsia"
msgid "Yugoslavia"
msgstr "Iwgoslafia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Ydi hyn yn gywir?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Rydych wedi dewis ffeil, nid cyfeiriadur"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Gwybodaeth"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 0da8023a5..c893f854c 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-11-17 14:32+0000\n"
"Last-Translator: Carl Andersen <carl@blue-dane.org>\n"
"Language-Team: Danish (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -20,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -29,12 +29,12 @@ msgstr ""
msgid "Please wait"
msgstr "Vent venligst"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation af systemopstarteren er i gang"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -51,12 +51,12 @@ msgstr ""
"\n"
"Tildel en ny Volumen-ID?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Installation af opstarter mislykkedes. Den følgende fejl opstod:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -71,218 +71,218 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Installation af systemopstarter"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du placere opstartsprogrammet?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Første sektor (MBR) på drev %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Første sektor på disken (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Første sektor af rodpartitionen"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "På diskette"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Spring over"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguration af opstartsudseende"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Systemopstarterens hovedindstillinger"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Systemopstarter"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Systemopstarter der skal bruges"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Opstartsenhed"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Hovedvalg"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Ventetid før opstart af forvalgt styresystem"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Aktivér ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Aktivér SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Aktivér APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Aktivér lokal APIC"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sikkerhed"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Adgangskode"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Prøv igen"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Du kan ikke bruge en adgangskode med %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Adgangskode (igen)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Billede"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Rod"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Vedhæft"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Xen-tilføjning"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Kræver adgangskode for at starte op"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Videoindstilling"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Netværksprofil"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Mærkat"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Tom mærkat er ikke tilladt"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Du skal angive en kerne-fil"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Du skal angive en root-partition"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Denne mærkat er allerede brugt"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type ønsker du at tilføje"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Andet styresystem (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguration af opstarter"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -291,47 +291,47 @@ msgstr ""
"Her er følgende typer indgange.\n"
"Du kan tilføje flere eller ændre de eksisterende."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "adgang til rpm-værktøjer"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "adgang til netværksværktøjer"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "adgang til oversættelsesværktøjer"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilføjet %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -340,148 +340,148 @@ msgstr ""
"Brugernavnet skal starte et lille bogstav, efterfulgt kun af små bogstaver, "
"tal, `-' og `_'"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Dette brugernavn eksisterer allerede"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Bruger-id"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Gruppe-id"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s skal være et tal"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s burde være over 1000. Acceptér alligevel?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Administration af brugere"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Aktivér kontoen guest"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Sæt administrator (root) adgangskode"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Indtast en bruger"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Ikon"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Rigtige navn"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Logindnavn"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Skal"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Vent venligst, tilføjer medie..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger på."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Brug denne facilitet"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Vælg den forvalgte bruger:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vælg den vindueshåndtering du ønsker at benytte:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Udgivelsesnoter"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Luk"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Licensaftale"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Afslut"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Accepterer du denne licens?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Acceptér"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Nægt"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Vælg det sprog, der skal bruges"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -492,87 +492,87 @@ msgstr ""
"de sprog, du ønsker at installere. De vil være tilgængelige\n"
"når installationen er færdig, og du genstarter dit system."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Flere sprog"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Vælg flere sprog"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Gammel kompatibilitetskoding (ikke UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Alle sprog"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Sprogvalg"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Land / Region"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Vælg dit land"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Her er den komplette liste over tilgængelige lande"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Andre lande"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avanceret"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Indtastningsmetode:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Ingen"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Ingen fildeling"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Tilpasset"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -586,7 +586,7 @@ msgstr ""
"Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke på "
"'Fildeling' i konqueror og nautilus.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -595,7 +595,7 @@ msgstr ""
"NFS: det traditionlle Unix fildelingssystem, med mindre funktionalitet på "
"Mac og Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -604,18 +604,18 @@ msgstr ""
"SMB: et fildelingssystem brugt på Windows, Mac OS X og mange moderne Linux-"
"systemer."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Du kan eksportere med NFS eller SMB. Hvilken vil du bruge"
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -624,7 +624,7 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilføje en bruger til denne gruppe."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -633,47 +633,47 @@ msgstr ""
"Du skal logge ud og ind igen for at ændringerne skal gælde. Tryk O.k. for at "
"logge ud nu."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Du skal logge ud og ind igen for at ændringerne skal gælde"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Tidszone"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dato-, klokke- og tidszoneopsætning"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Hvad er den bedste tid?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (Maskin-ur sat til UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (Maskin-ur sat til lokal tid)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP-server"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)"
@@ -1014,7 +1014,7 @@ msgid "Domain Admin Password"
msgstr "Adgangskode for domæneadministrator"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1054,12 +1054,12 @@ msgstr "GRUB med tekstmenu"
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlæseren på en %s-partition\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1068,7 +1068,7 @@ msgstr ""
"Din opstartsindlæserkonfiguration behøver at opdateres da rækkefølgen på "
"dine partitioner er blevet ændret"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1077,7 +1077,7 @@ msgstr ""
"Opstartsindlæseren kan ikke blive installeret korrekt. Du skal lave "
"nødopstart og vælge \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Geninstallér systemopstarter"
@@ -1107,17 +1107,23 @@ msgstr "Gb"
msgid "TB"
msgstr "Tb"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minutter"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minut"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d sekunder"
@@ -1136,27 +1142,27 @@ msgstr ""
"som en WebDAV-server). Hvis du ønsker at tilføje WebDAV-monteringspunkter,\n"
"så vælg \"Ny\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Ny"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Afmontér"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Montér"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Server"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1164,25 +1170,25 @@ msgstr "Server"
msgid "Mount point"
msgstr "Monteringssti"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Valg"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Fjern"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Færdig"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1198,17 +1204,17 @@ msgstr "Færdig"
msgid "Error"
msgstr "Fejl"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Indtast LRL for WebDAV-serveren"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL'en skal begynde med http:// eller https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1219,33 +1225,33 @@ msgstr "URL'en skal begynde med http:// eller https://"
msgid "Warning"
msgstr "Advarsel"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Er du sikker på at du ønsker at slette dette monteringspunkt?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Monteringssti: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Opdeling af disk"
@@ -1276,9 +1282,9 @@ msgstr "Afslut"
msgid "Continue"
msgstr "Fortsæt"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Hjælp"
@@ -1309,63 +1315,63 @@ msgstr "Detaljer"
msgid "No hard disk drives found"
msgstr "Ingen diskdrev fundet"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Ukendt"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Andet"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Tom"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Filsystems-typer:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Denne partition er allerede tom"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Benyt ``Afmontér'' først"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Benyt ``%s'' i stedet (i eksperttilstand)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1414,7 +1420,7 @@ msgstr "Afslut uden at skrive partitionstabellen?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Ønsker du at gemme /etc/fstab-ændringerne?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Du skal genstarte for at aktivere ændringerne i partitionstabellen"
@@ -1699,7 +1705,7 @@ msgid "Where do you want to mount %s?"
msgstr "Hvor ønsker du at montere %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Ændrer størrelsen"
@@ -1746,7 +1752,7 @@ msgstr "Minimumsstørrelse: %s MB"
msgid "Maximum size: %s MB"
msgstr "Maksimumsstørrelse: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2192,8 +2198,8 @@ msgstr "Skift type"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Annullér"
@@ -2286,7 +2292,7 @@ msgstr ""
"der kan oprettes nye filsystemer. Undersøg din maskine for at finde årsagen "
"til problemet"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Du skal have en ESP FAT32-partition monteret under /boot/EFI"
@@ -2495,7 +2501,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ikke nok swap-plads til at gennemføre installationen, tilføj mere"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2506,7 +2512,7 @@ msgstr ""
"vælg en eksisterende).\n"
"Vælg så kommandoen \"Monterings-sti\" og sæt den til `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2517,42 +2523,42 @@ msgstr ""
"\n"
"Fortsæt alligevel?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Brug fri plads"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Ikke nok fri plads til at tildele nye partitioner"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Brug eksisterende partition"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Der er ingen eksisterende partition der kan bruges"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Beregner størrelsen på Microsoft Windows®-partitionen"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Brug den frie plads på en Microsoft Windows ® partition"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Hvilken partition ønsker du at ændre størrelse på?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2563,13 +2569,13 @@ msgstr ""
"under Microsoft Windows®, og kør ``defrag'' værktøj, derefter genstart %s "
"installation."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
"Det lykkedes ikke at finde partitionen at ændre størrelsen på (%d valg)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2604,56 +2610,56 @@ msgstr ""
"Tryk på %s, hvis du er helt sikker."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Næste"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Opdeling af disk"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Hvilken størrelse ønsker du at at beholde Microsoft Windows® på partition %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Størrelse"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Udregner Microsoft Windows®-filsystemets grænser"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT størrelsesændring mislykkedes: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Der er ingen FAT-partitioner at ændre størrelse på (eller ikke nok plads "
"tilbage)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Fjern Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Slet hele disken og brug den"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2662,22 +2668,22 @@ msgstr ""
"Du har mere end en harddisk, hvilken ønsker du installationsprogrammet skal "
"bruge?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle eksisterende partitioner og deres data vil gå tabt på drev %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Brugerdefineret disk-opdeling"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Brug fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2686,42 +2692,42 @@ msgstr ""
"Du kan nu partitionere %s.\n"
"Når du er færdig, så husk at gemme med 'w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Kan ikke finde plads til installering"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX partitionerings-vejlederen fandt de følgende løsninger:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Her er indholdet af dit diskdrev "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partitionering mislykkedes: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Du kan ikke bruge JFS på partitioner mindre end 16Mb"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Du kan ikke bruge ReiserFS på partitioner mindre end 32Mb"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "Du kan ikke bruge btrfs partitioner på mindre end 256MB"
@@ -2764,22 +2770,22 @@ msgstr ""
"\n"
"Er du indforstået med at ødelægge alle partitionerne?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Monteringsstier skal begynde med /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Monteringspunkter bør kun indeholde bogstaver og tal"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Der findes allerede en partition med monterings-sti %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2790,7 +2796,7 @@ msgstr ""
"Ingen bootloader er i stand til at håndtere dette uden en / boot-partition\n"
"Sørg for at tilføje en separat / boot-partition"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2799,7 +2805,7 @@ msgstr ""
"Metadata-version ikke understøttes for en boot-partition. Sørg for at "
"tilføje en separat / boot-partition."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2808,12 +2814,12 @@ msgstr ""
"Du har valgt en programmeret RAID-partition som /boot (/).\n"
"Ingen systemopstarter kan håndtere dette."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Metadata-version ikke understøttet for en opstarts-partition (/boot)."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2824,12 +2830,12 @@ msgstr ""
"Ingen bootloader er i stand til at håndtere dette uden en / boot-partition.\n"
"Sørg for at tilføje en separat / boot-partition"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2838,7 +2844,7 @@ msgstr ""
"Du kan ikke bruge LVM Logisk Volumen for monteringspunkt %s da det "
"indeholder fysiske volumener"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2851,12 +2857,12 @@ msgstr ""
"spænder flere fysiske Logisk Volumen.\n"
"Du bør oprette en separat / boot-partition først"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dette katalog bør ligge på rod-filsystemet"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2865,12 +2871,12 @@ msgstr ""
"Du skal have et rigtigt filsystem (ext2/3/4, reiserfs, xfs eller jfs) til "
"dette monteringspunkt\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Ingenting at lave"
@@ -2880,238 +2886,238 @@ msgstr "Ingenting at lave"
msgid "SATA controllers"
msgstr "SATA-kontrolkort"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID-kontrolkort"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA kontrolkort"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Kortlæsere"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-kontrolkort"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-kontrolkort"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-kontrolkort"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB-kontrolkort"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB porte"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-kontrollers"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Broer og system-kontrolkort"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Diskette"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Hard Disk"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB-lagerenheder"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "cd-rom"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD-brændere"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Bånd"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP-kontrolkort"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Videokort"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB-kort"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV-kort"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Andre multimedie-enheder"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Lydkort"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Processorer"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN-kort"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "USB-lydenheder"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Radiokort"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "ATM-netværkskort"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "WAN-netværkskort"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth-enheder"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet-kort"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL-kort"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Hukommelse"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Printer"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Spilport-kontrollere"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Joystick"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Tastatur"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet og touchscreen"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Mus"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometri"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Skanner"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Ukendt|andre"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu-nummer "
@@ -3424,19 +3430,19 @@ msgstr "Tuner-type:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "O.k."
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ja"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3467,22 +3473,22 @@ msgstr "Afslut"
msgid "Previous"
msgstr "Forrige"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Ingen fil valgt"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Du har valgt et katalog, ikke en fil"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Ikke noget katalog"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Ikke nogen fil"
@@ -4764,7 +4770,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
@@ -5393,9 +5399,9 @@ msgid "Allow direct root login."
msgstr "Tillad direkte root-logind."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Tillad listen af brugere på systemet på skærmhåndteringer (sddm og gdm)."
@@ -5770,8 +5776,8 @@ msgid "Direct root login"
msgstr "Direkte logind som root"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "List brugere på skærmhåndteringer (sddm og gdm)."
#: security/l10n.pm:20
@@ -6993,17 +6999,17 @@ msgstr "Russiske føderation"
msgid "Yugoslavia"
msgstr "Jugoslavien"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Er dette korrekt?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Du har valgt en fil, ikke et katalog"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Info"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 3a1af6bad..b53b933de 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:01+0000\n"
"Last-Translator: psyca\n"
"Language-Team: German (http://www.transifex.com/projects/p/mageia/language/"
@@ -23,7 +23,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -32,12 +32,12 @@ msgstr ""
msgid "Please wait"
msgstr "Bitte warten"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation des Bootloaders ..."
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -54,14 +54,14 @@ msgstr ""
"\n"
"Neue Datenträger-ID zuweisen?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Die Installation des Betriebssytemstarters schlug fehl. Folgender Fehler "
"trat auf:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -77,218 +77,218 @@ msgstr ""
"\n"
"Von welchem Laufwerk booten Sie?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Installation des Bootloaders"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Wo soll der Bootloader installiert werden?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Erster Sektor der %s Platte (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Erster Sektor der Platte (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Erster Sektor der Root-Partition"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Auf Diskette"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Überspringen"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguration der Boot-Einstellungen"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Hauptoptionen des Bootloaders"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Zu verwendender Bootloader"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Boot-Gerät"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Hauptoptionen"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Wartezeit vor dem Starten des Standard-Betriebssystems"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "ACPI aktivieren"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "SMP aktivieren"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "APIC aktivieren"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Lokales APIC aktivieren"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sicherheit"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Passwort"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Die Passwörter stimmen nicht überein"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Sie können kein Passwort mit %s benutzen"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Passwort (erneut)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Abbild"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Hinzufügen / Erweitern"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Xen hinzufügen"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Benötigt Passwort zum Booten"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Video-Modus"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Init-RamDisk"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Netzwerk Profil"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Bezeichnung"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Leere Einträge sind nicht erlaubt"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Sie müssen ein Kernel-Image angeben"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Sie müssen die Root-Partition festlegen"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufügen?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Anderes OS (Windows ...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguration des Bootloaders"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -297,47 +297,47 @@ msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie können weitere hinzufügen oder existierende ändern."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "Zugriff auf Netzwerk-Werkzeuge"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "Zugriff auf Kompilier-Werkzeuge"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefügt)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Bitte geben Sie einen Benutzernamen an"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -346,149 +346,149 @@ msgstr ""
"Der Benutzername muss mit einem Kleinbuchstaben beginnen und sollte nur aus "
"Kleinbuchstaben, Ziffern, „-“ und „_“ bestehen."
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Dieser Benutzername ist zu lang"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Dieser Benutzername existiert bereits"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Benutzer-ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Gruppen-ID"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s muss eine Zahl sein"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s sollte größer als 1000 sein. Trotzdem akzeptieren?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Benutzerverwaltung"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Den Gastzugang aktivieren"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Administratorpasswort setzen"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Benutzer einrichten"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Symbol"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Vollständiger Name"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Benutzername"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Bitte warten, füge Medien hinzu ..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatisch anmelden"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Ich kann Ihren Computer so einrichten, dass ein Benutzer automatisch "
"angemeldet wird."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Diese Möglichkeit nutzen"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Versionshinweise"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Schließen"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Lizenzvereinbarung"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Verlassen"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Akzeptieren Sie diese Lizenz?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Akzeptieren"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Ablehnen"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Bitte wählen Sie die zu verwendende Sprache"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -500,87 +500,87 @@ msgstr ""
"sein,\n"
"wenn Ihre Installation beendet ist und Sie das System neu starten."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Mehrere Sprachen"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Wählen Sie zusätzliche Sprachen aus"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Alte (nicht UTF-8) Kodierung"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Alle Sprachen"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Sprachauswahl"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Staat / Region"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Bitte wählen Sie Ihr Land"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier ist die komplette Liste aller Länder"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Andere Länder"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Fortgeschritten"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Eingabe-Methode:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Keine"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Keine Freigaben"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Benutzerdefiniert"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -595,7 +595,7 @@ msgstr ""
"\n"
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Benutzer vornehmen.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -604,7 +604,7 @@ msgstr ""
"NFS: das traditionelle Unix-Dateisystem für Freigaben im Netz, mit weniger "
"Unterstützung für Mac und Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -613,7 +613,7 @@ msgstr ""
"SMB: ein Dateisystem für Freigaben im Netz von Windows, Mac OS X und vielen "
"modernen Linux-Systemen verwendet"
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -621,12 +621,12 @@ msgstr ""
"Sie können die Dateien mittels SMB oder NFS anbieten. Welche Variante wollen "
"Sie verwenden?"
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "UserDrake starten"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -635,7 +635,7 @@ msgstr ""
"Die Freigaben zwischen Benutzern regelt die Gruppe „fileshare“. \n"
"Sie können UserDrake verwenden, um Benutzer in diese Gruppe aufzunehmen."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -644,49 +644,49 @@ msgstr ""
"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam "
"werden. Klicken Sie auf OK, um sich nun abzumelden."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam "
"werden"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Zeitzone"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Datum, Zeit und Zeitzonen Einstellungen"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Welches ist die beste Zeit?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (Hardware Uhr gestellt auf GMT)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (Hardware Uhr gestellt auf Ortszeit)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP-Server"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
@@ -1029,7 +1029,7 @@ msgid "Domain Admin Password"
msgstr "Passwort des Domänen-Administrators"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1069,12 +1069,12 @@ msgstr "GRUB mit Textmenü"
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Sie können den Bootloader nicht auf einer %s-Partition installieren.\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1083,7 +1083,7 @@ msgstr ""
"Ihre Bootloaderkonfiguration muss geändert werden, da sich Ihre "
"Partitionsnummerierung geändert hat"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1092,7 +1092,7 @@ msgstr ""
"Der Bootloader kann nicht richtig installiert werden. Sie müssen ins "
"Rettungssystem booten und „%s“ wählen"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Bootloader neu installieren"
@@ -1122,17 +1122,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d Minuten"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 Minute"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d Sekunden"
@@ -1151,27 +1157,27 @@ msgstr ""
"Falls Sie Einhängepunkte für WebDAV hinzufügen wollen, wählen Sie\n"
"„Neu“."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Neu"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Aushängen"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Einhängen"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Server"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1179,25 +1185,25 @@ msgstr "Server"
msgid "Mount point"
msgstr "Einhängepunkt"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Optionen"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Entfernen"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fertig"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1213,17 +1219,17 @@ msgstr "Fertig"
msgid "Error"
msgstr "Fehler"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Bitte geben Sie die WebDAV-Server-URL an"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1234,33 +1240,33 @@ msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"
msgid "Warning"
msgstr "Warnung"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Sind Sie sicher, dass Sie diesen Mountpunkt löschen wollen?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Einhängepunkt: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Optionen: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Partitionierung"
@@ -1293,9 +1299,9 @@ msgstr "Verlassen"
msgid "Continue"
msgstr "Fortfahren"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Hilfe"
@@ -1326,63 +1332,63 @@ msgstr "Details"
msgid "No hard disk drives found"
msgstr "Keine Festplattenlaufwerke gefunden"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Unbekannt"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Andere"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Leer"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Dateisystemtypen:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Diese Partition ist bereits leer"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Verwenden Sie erst „Aushängen“"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Verwenden Sie „%s“ stattdessen (im Expertenmodus)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1431,7 +1437,7 @@ msgstr "Beenden ohne die Partitionstabelle zu speichern?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Wollen Sie die Änderungen in /etc/fstab speichern?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1721,7 +1727,7 @@ msgid "Where do you want to mount %s?"
msgstr "Wo wollen Sie „%s“ einhängen?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Größe ändern"
@@ -1768,7 +1774,7 @@ msgstr "Minimale Größe: %s MB"
msgid "Maximum size: %s MB"
msgstr "Maximale Größe: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2221,8 +2227,8 @@ msgstr "Typ ändern"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Abbrechen"
@@ -2316,7 +2322,7 @@ msgstr ""
"das Dateisystem erstellt werden kann. Bitte überprüfen Sie die Hardware, um "
"den Grund für diesen Fehler zu finden."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "In /boot/EFI muss eine ESP FAT32-Partition eingebunden sein"
@@ -2539,7 +2545,7 @@ msgstr ""
"Nicht genug Swap-Speicher um die Installation auszuführen, bitte fügen Sie "
"mehr Swap-Speicher hinzu"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2552,7 +2558,7 @@ msgstr ""
"Danach wählen Sie die Aktion „Einhängepunkt“ und setzen die Einstellung dort "
"auf „/“"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2563,43 +2569,43 @@ msgstr ""
"\n"
"Wollen Sie fortfahren?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Verwende freien Platz"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nicht genug freier Platz, um die neue Partition hinzuzufügen"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Bestehende Partitionen"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Es gibt keine existierende Partition, die verwendet werden können."
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Die Größe der Microsoft Windows®-Partition berechnen"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr ""
"Den freien Speicherplatz auf der Microsoft Windows® Partition verwenden"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Bei welcher Partition wollen Sie die Größe ändern?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2610,14 +2616,14 @@ msgstr ""
"Sie Ihren Computer zuerst unter Microsoft Windows(R) und führen Sie das "
"„defrag“-Programm aus, dann starten Sie die %s-Installation neu."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
"Die Partition, bei der die Größe geändert werden soll, wurde nicht gefunden "
"(%d Auswahlmöglichkeiten)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2655,39 +2661,39 @@ msgstr ""
"Falls dies der Fall ist, können Sie mit %s fortfahren."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Weiter"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Partitionierung"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Wieviel Platz benötigen Sie noch für Microsoft Windows® auf Partition %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Größe"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Größe der Microsoft Windows®-Partition wird geändert"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-Größenanpassung schlug fehl: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
@@ -2695,17 +2701,17 @@ msgstr ""
"(möglicherweise haben Sie auch einfach nur nicht mehr genügend\n"
"freien Speicher)."
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Entferne Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Komplette Platte löschen und freien Platz benutzen"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2714,24 +2720,24 @@ msgstr ""
"Sie verfügen über mehr als eine Festplatte, welche soll vom "
"Installationsprogramm benutzt werden?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SÄMTLICHE existierende Partitionen samt der darauf befindlichen Daten \n"
"auf Laufwerk %s gehen dabei verloren"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Benutzerdefinierte Partitionierung"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Verwende fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2741,44 +2747,44 @@ msgstr ""
"Vergessen Sie nicht die Einstellungen mittels „w“ zu speichern, \n"
"sobald Sie fertig sind."
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Es kann kein Platz für die Installation gefunden werden."
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Der DrakX-Partitionierungsassistent fand folgende Lösungen:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Hier sehen Sie den Inhalt ihres Festplattenlaufwerkes "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partitionierunsgfehler: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
"Sie können JFS nicht für Partitionen nutzen, die kleiner als 16 MB sind."
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Sie können ReiserFS nicht für Partitionen nutzen, die kleiner als 32 MB sind."
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2825,24 +2831,24 @@ msgstr ""
"\n"
"Sind Sie mit dem Verlust aller Partitionen einverstanden?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Einhängepunkte müssen mit einem / beginnen."
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
"Einhängepunkte sollten nur Buchstaben, Ziffern und den Unterstrich "
"unterhalten"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Es gibt bereits eine Partition, mit dem Einhängepunkt %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2853,7 +2859,7 @@ msgstr ""
"Kein Bootloader kann diese ohne eine /boot Partition handhaben.\n"
"Stellen Sie sicher, dass Sie eine separate /boot Partition angelegt haben."
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2862,7 +2868,7 @@ msgstr ""
"Die Metadaten-Version wird für eine Boot-Partition nicht unterstützt. Fügen "
"Sie eine separate /boot-Partition hinzu."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2871,12 +2877,12 @@ msgstr ""
"Sie haben eine Software-RAID-Partition als /boot-Partition ausgewählt. Kein "
"Bootloader kann damit umgehen. "
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Die Metadaten-Version wird für eine Boot-Partition nicht unterstützt."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2887,13 +2893,13 @@ msgstr ""
"Kein Bootloader kann diese ohne eine /boot-Partition handhaben.\n"
"Stellen Sie sicher, dass Sie eine separate /boot-Partition angelegt haben."
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Sie können kein verschlüsseltes Dateisystem als Einhängepunkt %s verwenden."
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2902,7 +2908,7 @@ msgstr ""
"Sie können kein Logisches Volumen (LVM) für den Einhängepunkt %s verwenden, "
"da es mehrere physiklische Geräte umspannt"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2915,12 +2921,12 @@ msgstr ""
"Geräte umspannt.\n"
"Sie sollten eine separate /boot-Partition erzeugen."
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dieses Verzeichnis muss innerhalb des Wurzelverzeichnisses bleiben"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2929,12 +2935,12 @@ msgstr ""
"Sie benötigen ein echtes GNU/Linux-Dateisystem (ext2/3/4, reiserfs, xfs oder "
"jfs) für diesen Einhängepunkt.\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nicht genug freier Platz, um eine Partition anzulegen."
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nichts zu tun."
@@ -2944,238 +2950,238 @@ msgstr "Nichts zu tun."
msgid "SATA controllers"
msgstr "SATA-Controller"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID-Controller"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA-Controller"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Kartenlesegerät"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-Controller"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-Controller"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-Controller"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB-Controller"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB-Ports"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-Controller"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Brücken und System-Controller"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Diskettenlaufwerk"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "ZIP"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Festplatte"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB-Massenspeicher-Geräte"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CD-ROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD-Brenner"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Bandlaufwerk"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP-Controller"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Videokarten"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB-Karte"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV-Karten"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Andere Multimedia-Geräte"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Soundkarte"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Prozessoren"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN Adapter"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "USB-Sound-Geräte"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Radiokarten"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "ATM-Netzwerkkarten"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "WAN-Netzwerkkarten"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth-Geräte"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Netzwerkkarte"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL Adapter"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Speicher"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Drucker"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Gameport-Controller"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Joystick"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Tastatur"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet und Touchscreen"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Maus"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometrie"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "USV"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Scanner"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Unbekannt/Andere"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "CPU #"
@@ -3481,19 +3487,19 @@ msgstr "Tunertyp:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "OK"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ja"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3524,22 +3530,22 @@ msgstr "Assistent beenden"
msgid "Previous"
msgstr "Zurück"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Keine Datei ausgewählt"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Sie haben ein Verzeichnis ausgewählt, keine Datei"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Das Verzeichnis existiert nicht"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Die Datei existiert nicht"
@@ -4820,7 +4826,7 @@ msgstr "Sambia"
msgid "Zimbabwe"
msgstr "Simbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"
@@ -5476,9 +5482,9 @@ msgid "Allow direct root login."
msgstr "Erlaube die direkte Root-Anmeldung."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Erlaube die Liste der Benutzer dieses Rechner im Displaymanager (sddm und "
"gdm)."
@@ -5862,8 +5868,8 @@ msgid "Direct root login"
msgstr "Direkte Root-Anmeldung"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Benutzer in den Display-Managern auflisten (sddm und gdm)"
#: security/l10n.pm:20
@@ -7131,17 +7137,17 @@ msgstr "Russische Föderation"
msgid "Yugoslavia"
msgstr "Jugoslawien"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Ist dies richtig?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Sie haben eine Datei ausgewählt, kein Verzeichnis"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Info"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 1d4cec67c..2eac10d22 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-23 08:54+0200\n"
"Last-Translator: Dimitrios Glentadakis <dglent@free.fr>\n"
"Language-Team: Greek <i18n-el@ml.mageia.org>\n"
@@ -22,7 +22,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"X-Generator: Lokalize 1.5\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -31,12 +31,12 @@ msgstr ""
msgid "Please wait"
msgstr "Παρακαλώ περιμένετε"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Γίνεται εγκατάσταση του προγράμματος εκκίνησης του υπολογιστή"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -55,14 +55,14 @@ msgstr ""
"\n"
"Να γίνει ανάθεση μιας νέα Ταυτότητας Τόμου;"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Η εγκατάσταση του προγράμματος εκκίνησης απέτυχε. Παρουσιάστηκε το ακόλουθο "
"σφάλμα:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -77,220 +77,220 @@ msgstr ""
"\n"
"Ποιος είναι ο δίσκος εκκίνησης;"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Εγκατάσταση του προγράμματος εκκίνησης"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Πού θέλετε να εγκαταστήσετε το πρόγραμμα εκκίνησης;"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Πρώτος τομέας (MBR) του δίσκου %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Πρώτος τομέας του δίσκου (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Πρώτος τομέας της κατάτμησης root"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Στη δισκέτα"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Παράλειψη"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Ρύθμιση του στυλ εκκίνησης"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Κύριες επιλογές του προγράμματος εκκίνησης"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Πρόγραμμα εκκίνησης"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Χρήση του προγράμματος εκκίνησης"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Συσκευή εκκίνησης"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Κύριες επιλογές"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr ""
"Καθυστέρηση πριν την εκκίνηση\n"
"της προεπιλεγμένης εικόνας"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Ενεργοποίηση του ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Ενεργοποίηση του SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Ενεργοποίηση του APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Ενεργοποίηση του τοπικού APIC"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Ασφάλεια"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Κωδικός πρόσβασης"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Παρακαλώ προσπαθήστε ξανά"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Δεν μπορείτε να χρησιμοποιήσετε έναν κωδικό πρόσβασης με %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Κωδικός πρόσβασης (ξανά)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Εικόνα"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Κατάτμηση root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Επιλογές περασμένες στον πυρήνα"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Επιλογές Xen περασμένες στον πυρήνα"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Απαιτείται ένας κωδικός πρόσβασης για την εκκίνηση"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Λειτουργία βίντεο"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Προφίλ δικτύου"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Ετικέτα"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Προκαθορισμένο"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Δεν επιτρέπεται μια κενή ετικέτα"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Πρέπει να ορίσετε μια εικόνα πυρήνα"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Πρέπει να ορίσετε μια κατάτμηση root"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Αυτή η ετικέτα χρησιμοποιείται ήδη"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Τι τύπου σύστημα θέλετε να προσθέσετε;"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Άλλο λειτουργικό (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Ρύθμιση του προγράμματος εκκίνησης"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -299,47 +299,47 @@ msgstr ""
"Ορίστε οι καταχωρήσεις στο μενού εκκίνησης.\n"
"Μπορείτε να προσθέσετε κι άλλες ή να αλλάξετε τις υπάρχουσες."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "πρόσβαση σε προγράμματα γραφικού περιβάλλοντος"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "πρόσβαση σε εργαλεία rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "επιτρέπεται η «su»"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "πρόσβαση σε αρχεία διαχείρισης"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "πρόσβαση σε εργαλεία δικτύου"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "πρόσβαση σε εργαλεία σύνθεσης"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s έχει ήδη προστεθεί)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Παρακαλώ εισάγετε ένα όνομα χρήστη"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -348,149 +348,149 @@ msgstr ""
"Το όνομα χρήστη πρέπει να αρχίζει με πεζό γράμμα και τα γράμματα που "
"ακολουθούν να είναι επίσης πεζά, αριθμοί, «-» και «_»"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Αυτό το όνομα χρήστη είναι πολύ μακρύ"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Αυτό το όνομα χρήστη έχει ήδη προστεθεί"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Αναγνωριστικό χρήστη"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Αναγνωριστικό ομάδας"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "Το %s πρέπει να είναι αριθμός"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
"Το %s πρέπει να είναι μεγαλύτερο ή ίσο του 1000. Αποδοχή έτσι κι αλλιώς;"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Διαχείριση χρηστών"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Ενεργοποίηση του λογαριασμού επισκέπτη "
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Ορίστε τον κωδικό πρόσβασης του διαχειριστή (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Εισάγετε ένα χρήστη"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Εικονίδιο"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Πραγματικό όνομα"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Όνομα χρήστη"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Κέλυφος"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Παρακαλώ περιμένετε, προσθήκη μέσου..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Αυτόματη σύνδεση"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Μπορώ να ρυθμίσω το σύστημά σας έτσι ώστε να συνδέει αυτόματα ένα χρήστη."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Χρήση αυτού του χαρακτηριστικού"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Επιλέξτε τον προκαθορισμένο χρήστη:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Επιλέξτε το διαχειριστή παραθύρων που θέλετε να χρησιμοποιήσετε:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Σημειώσεις έκδοσης"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Κλείσιμο"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Άδεια χρήσης"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Έξοδος"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Αποδέχεστε αυτήν την άδεια ;"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Αποδοχή"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Άρνηση"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Παρακαλώ επιλέξτε τη γλώσσα"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -501,87 +501,87 @@ msgstr ""
"τις γλώσσες που επιθυμείτε να εγκαταστήσετε. Θα είναι διαθέσιμες\n"
"μετά την ολοκλήρωση της εγκατάστασης και την επανεκκίνηση του υπολογιστή."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Πολλαπλές γλώσσες"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Επιλογή επιπλέον γλωσσών"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Κωδικοποίηση παλιάς συμβατότητας (μη UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Όλες οι γλώσσες"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Επιλογή γλώσσας"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Χώρα / Περιοχή"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Παρακαλώ επιλέξτε τη χώρα σας"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Αυτή είναι η πλήρης λίστα των διαθέσιμων χωρών"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Άλλες χώρες"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Για προχωρημένους"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Μέθοδος εισαγωγής:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Κανένα"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Χωρίς κοινή χρήση"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Επιτρέπεται για όλους τους χρήστες"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Προσαρμοσμένο"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -596,7 +596,7 @@ msgstr ""
"\n"
"Το \"Προσαρμοσμένο\" επιτρέπει την ανά χρήστη ρύθμιση.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -605,7 +605,7 @@ msgstr ""
"NFS: το παραδοσιακό σύστημα κοινής χρήσης του Unix, με περιορισμένη "
"υποστήριξη για Mac και Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -614,7 +614,7 @@ msgstr ""
"SMB: ένα σύστημα κοινής χρήσης, που χρησιμοποιείται από τα Windows, από το "
"Mac OS X και από πολλά μοντέρνα συστήματα Linux."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -622,12 +622,12 @@ msgstr ""
"Μπορείτε να κάνετε εξαγωγή με τη χρήση NFS ή SMB. Παρακαλώ επιλέξτε ποιο θα "
"θέλατε να χρησιμοποιήσετε."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Εκκίνηση του userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -637,7 +637,7 @@ msgstr ""
"Μπορείτε να προσθέσετε ένα χρήστη σε αυτήν την ομάδα χρησιμοποιώντας το "
"userdrake."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -646,49 +646,49 @@ msgstr ""
"Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να "
"επανασυνδεθείτε. Πατήστε «Εντάξει» για να αποσυνδεθείτε τώρα."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να "
"επανασυνδεθείτε."
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Ωρολογιακή ζώνη"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Ποια είναι η ζώνη ώρας σας;"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Ρυθμίσεις της ημερομηνίας, της ώρας και της ωρολογιακής ζώνης"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Ποια είναι η σωστή ώρα;"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί σε UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί στην τοπική ώρα)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Εξυπηρετητής NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Αυτόματος συγχρονισμός της ώρας (μέσω NTP)"
@@ -1032,7 +1032,7 @@ msgid "Domain Admin Password"
msgstr "Κωδικός πρόσβασης του διαχειριστή τομέα"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1072,13 +1072,13 @@ msgstr "GRUB με μενού κειμένου"
msgid "not enough room in /boot"
msgstr "δεν υπάρχει αρκετός χώρος στο /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
"Δεν μπορείτε να εγκαταστήσετε το πρόγραμμα εκκίνησης σε μια κατάτμηση %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1087,7 +1087,7 @@ msgstr ""
"Η ρύθμιση του προγράμματος εκκίνησης πρέπει να ενημερωθεί επειδή κάποιες "
"κατατμήσεις έχουν επαναριθμηθεί"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1097,7 +1097,7 @@ msgstr ""
"εκκινήσετε το CD-ROM της εγκατάστασης με την επιλογή «διάσωση» και να "
"επιλέξετε «%s»"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Επανεγκατάσταση του προγράμματος εκκίνησης"
@@ -1127,17 +1127,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d λεπτά"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 λεπτό"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d δευτερόλεπτα"
@@ -1158,27 +1164,27 @@ msgstr ""
"θέλετε να προσθέσετε\n"
"σημεία προσάρτησης WebDAV επιλέξτε «Νέο»."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Νέο"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Αποπροσάρτηση"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Προσάρτηση"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Εξυπηρετητής"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1186,25 +1192,25 @@ msgstr "Εξυπηρετητής"
msgid "Mount point"
msgstr "Σημείο προσάρτησης"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Επιλογές"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Αφαίρεση"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Έγινε"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1220,17 +1226,17 @@ msgstr "Έγινε"
msgid "Error"
msgstr "Σφάλμα"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Παρακαλώ εισάγετε την διεύθυνση του εξυπηρετητή WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Η διεύθυνση πρέπει να ξεκινά με http:// ή https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1241,33 +1247,33 @@ msgstr "Η διεύθυνση πρέπει να ξεκινά με http:// ή htt
msgid "Warning"
msgstr "Προσοχή"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Επιθυμείτε σίγουρα τη διαγραφή αυτού του σημείου προσάρτησης;"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Εξυπηρετητής:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Σημείο προσάρτησης: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Επιλογές: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Διαμερισμός"
@@ -1300,9 +1306,9 @@ msgstr "Έξοδος"
msgid "Continue"
msgstr "Συνέχεια"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Βοήθεια"
@@ -1333,63 +1339,63 @@ msgstr "Λεπτομέρειες"
msgid "No hard disk drives found"
msgstr "Δεν βρέθηκαν σκληροί δίσκοι"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Άγνωστο"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows "
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Άλλο"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Κενό"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Τύποι συστημάτων αρχείων:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Αυτή η κατάτμηση είναι ήδη κενή"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Κάντε πρώτα «Αποπροσάρτηση»"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Αντί αυτού χρησιμοποιήστε «%s» (σε λειτουργία έμπειρου χρήστη)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1438,7 +1444,7 @@ msgstr "Έξοδος χωρίς εγγραφή του πίνακα κατατμ
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Θέλετε να αποθηκεύσετε τις αλλαγές του /etc/fstab;"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1727,7 +1733,7 @@ msgid "Where do you want to mount %s?"
msgstr "Πού θέλετε να προσαρτήσετε το %s;"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Αλλαγή μεγέθους"
@@ -1775,7 +1781,7 @@ msgstr "Ελάχιστο μέγεθος: %s MB"
msgid "Maximum size: %s MB"
msgstr "Μέγιστο μέγεθος: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2226,8 +2232,8 @@ msgstr "Αλλαγή του τύπου"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Ακύρωση"
@@ -2320,7 +2326,7 @@ msgstr ""
"δημιουργία νέων συστημάτων αρχείων. Παρακαλώ ελέγξτε το υλικό σας για την "
"αιτία αυτού του προβλήματος"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Πρέπει να έχετε μια κατάτμηση ESP FAT32 προσαρτημένη στο /boot/EFI"
@@ -2543,7 +2549,7 @@ msgstr ""
"Δεν υπάρχει αρκετός χώρος swap για την ολοκλήρωση της εγκατάστασης, παρακαλώ "
"προσθέστε τον"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2554,7 +2560,7 @@ msgstr ""
"Γι' αυτό, δημιουργήστε πρώτα μία κατάτμηση (ή επέλεξε μια ήδη υπάρχουσα).\n"
"Έπειτα επιλέξτε την ενέργεια «Σημείο προσάρτησης» και επιλέξτε «/»"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2565,42 +2571,42 @@ msgstr ""
"\n"
"Συνέχεια ούτως ή άλλως;"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Χρήση του ελεύθερου χώρου"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Δεν υπάρχει αρκετός ελεύθερος χώρος για δημιουργία νέων κατατμήσεων"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Χρησιμοποιήστε τις υπάρχουσες κατατμήσεις"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Καμιά υπάρχουσα κατάτμηση προς χρήση"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Υπολογίζεται το μέγεθος της κατάτμησης των Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Χρήση του ελεύθερου χώρου σε μια κατάτμηση Microsoft Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Ποιας κατάτμησης θέλετε να αλλάξετε το μέγεθος;"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2611,12 +2617,12 @@ msgstr ""
"Παρακαλώ επανεκκινήστε τον υπολογιστή σας σε Microsoft Windows®, εκτελέστε "
"το εργαλείο ανασυγκρότησης, και έπειτα επανεκκινήστε την εγκατάσταση της %s."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr "Αποτυχία εύρεσης της κατάτμησης για αλλαγή του μεγέθους (%d επιλογές)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2654,56 +2660,56 @@ msgstr ""
"Εάν είστε σίγουρος/η, πάτησε %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Επόμενο"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Τμηματοποίηση"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Τι μέγεθος θέλετε να διαθέσετε για τα Microsoft Windows® στην κατάτμηση %s;"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Μέγεθος"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Αλλαγή μεγέθους της κατάτμησης Microsoft Windows® σε εξέλιξη"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Η αλλαγή μεγέθους της κατάτμησης FAT απέτυχε: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Δεν υπάρχει κατάτμηση FAT για να γίνει αλλαγή μεγέθους (ή δεν υπάρχει "
"αρκετός διαθέσιμος χώρος)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Αφαίρεση των Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Διαγραφή και χρήση ολόκληρου του δίσκου"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2712,23 +2718,23 @@ msgstr ""
"Έχετε περισσότερους από έναν δίσκους, ποιόν θέλετε να χρησιμοποιήσει ο "
"εγκαταστάτης;"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"ΟΛΕΣ οι υπάρχουσες κατατμήσεις και τα δεδομένα τους στον δίσκο %s θα χαθούν"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Προσαρμοσμένη κατάτμηση του δίσκου"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Χρήση fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2738,45 +2744,45 @@ msgstr ""
"Όταν θα έχετε τελειώσει, μην ξεχάσετε να αποθηκεύσετε τις τροποποιήσεις "
"πατώντας στο πλήκτρο «w»"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Δεν μπορώ να βρω διαθέσιμο χώρο για την εγκατάσταση"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ο οδηγός κατάτμησης DrakX βρήκε τις παρακάτω λύσεις:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Εδώ είναι το περιεχόμενο του δίσκου σας"
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Η κατάτμηση απέτυχε: %s "
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε το JFS για κατατμήσεις μικρότερες από 16MB"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε το ReiserFS για κατατμήσεις μικρότερες από "
"32MB"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2822,23 +2828,23 @@ msgstr ""
"\n"
"Συμφωνείτε να διαγραφούν όλες οι κατατμήσεις;\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Τα σημεία προσάρτησης πρέπει να ξεκινούν με /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
"Τα σημεία προσάρτησης θα πρέπει να περιέχουν μόνο αλφαριθμητικούς χαρακτήρες"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Υπάρχει ήδη μία κατάτμηση με το σημείο προσάρτησης %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2851,7 +2857,7 @@ msgstr ""
"κατάτμηση /boot.\n"
"Παρακαλώ σιγουρευτείτε για την προσθήκη μιας κατάτμησης /boot"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2860,7 +2866,7 @@ msgstr ""
"Η έκδοση μεταδεδομένων δεν υποστηρίζεται για μια κατάτμηση εκκίνησης. "
"Παρακαλώ βεβαιωθείτε για την προσθήκη μιας κατάτμησης /boot."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2869,12 +2875,12 @@ msgstr ""
"Έχετε επιλέξει μια κατάτμηση με RAID λογισμικού ως /boot.\n"
"Κανένα πρόγραμμα εκκίνησης δεν υποστηρίζει αυτή τη διαμόρφωση."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Η έκδοση μεταδεδομενων δεν υποστηρίζεται για μια κατάτμηση εκκίνησης."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2886,14 +2892,14 @@ msgstr ""
"κατάτμηση /boot.\n"
"Παρακαλώ βεβαιωθείτε για την προσθήκη μιας ξεχωριστής κατάτμησης /boot"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε ένα κρυπτογραφημένο σύστημα αρχείων για το "
"σημείο προσάρτησης %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2902,7 +2908,7 @@ msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε το φυσικό τομέα LVM ως σημείο προσάρτησης %s "
"καθώς είναι διαχωρισμένο σε περισσότερους φυσικούς τόμους"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2915,12 +2921,12 @@ msgstr ""
"διαχωρισμένος σε περισσότερους φυσικούς τόμους.\n"
"Πρέπει πρώτα να δημιουργήσετε μια ξεχωριστή κατάτμηση /boot."
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Αυτός ο κατάλογος πρέπει να παραμείνει στη ριζική κατάτμηση"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2929,14 +2935,14 @@ msgstr ""
"Χρειάζεστε ένα πραγματικό σύστημα αρχείων (ext2/3/4, reiserfs, xfs, ή jfs) "
"για αυτό το σημείο προσάρτησης\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
"Δεν υπάρχει αρκετός ελεύθερος χώρος για την αυτόματη δημιουργία νέων "
"κατατμήσεων"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Καμία ενέργεια προς εκτέλεση"
@@ -2946,238 +2952,238 @@ msgstr "Καμία ενέργεια προς εκτέλεση"
msgid "SATA controllers"
msgstr "Ελεγκτές SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "Ελεγκτές RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Ελεγκτές (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Αναγνώστες καρτών"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Ελεγκτές Firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Ελεγκτές PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Ελεγκτές SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Ελεγκτές USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Θύρες USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Ελεγκτές SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Γέφυρες και ελεγκτές συστήματος"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Δισκέτα"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Σκληρός δίσκος"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB συσκευές μαζικής αποθήκευσης"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Συσκευές εγγραφής CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Μαγνητοταινία"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Ελεγκτές AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Κάρτα γραφικών"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Κάρτα DVB"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Κάρτα TV"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Άλλα συσκευές Πολυμέσων"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Κάρτα ήχου"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Κάμερα"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Επεξεργαστές"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Κάρτες ISDN"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Συσκευές ήχου USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Κάρτες ραδιοφώνου"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Κάρτες δικτύου ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Κάρτες δικτύου WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Συσκευές Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Κάρτα ethernet"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Μόντεμ"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Μόντεμ ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Μνήμη"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Εκτυπωτής"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Ελεγκτές χειριστηρίων"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Χειριστήριο"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Πληκτρολόγιο"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Ταμπλέτες και οθόνες αφής"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Ποντίκι"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Βιομετρία"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Σαρωτής"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Άγνωστα/Άλλα"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "επεξεργαστής # "
@@ -3236,7 +3242,7 @@ msgstr ""
msgid "Sound configuration"
msgstr "Ρύθμιση του ήχου"
-#. -PO: here the first %s is either "ALSA",
+#. -PO: here the first %s is either "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:167
@@ -3490,19 +3496,19 @@ msgstr "Τύπος δέκτη:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Εντάξει"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ναι"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3533,22 +3539,22 @@ msgstr "Τέλος"
msgid "Previous"
msgstr "Προηγούμενο"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Δεν έχει επιλέγει κάποιο αρχείο"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Έχετε επιλέξει έναν κατάλογο, όχι ένα αρχείο"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Δεν υπάρχει τέτοιος κατάλογος"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Δεν υπάρχει τέτοιο αρχείο"
@@ -4831,7 +4837,7 @@ msgstr "Ζάμπια"
msgid "Zimbabwe"
msgstr "Ζιμπάμπουε"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Καλώς ήλθατε στο %s"
@@ -5508,9 +5514,9 @@ msgid "Allow direct root login."
msgstr "Να επιτρέπεται η απευθείας σύνδεση υπερχρήστη."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Να επιτρέπεται η προβολή της λίστας με τους χρήστες, στους διαχειριστές "
"σύνδεσης (sddm και gdm)."
@@ -5895,8 +5901,8 @@ msgid "Direct root login"
msgstr "Άμεση σύνδεση root"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Εμφάνιση των χρηστών στους διαχειριστές σύνδεσης (sddm και gdm)"
#: security/l10n.pm:20
@@ -7163,17 +7169,17 @@ msgstr "Ρωσική Ομοσπονδία"
msgid "Yugoslavia"
msgstr "Γιουγκοσλαβία"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Σωστό;"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Έχετε επιλέξει ένα αρχείο, όχι έναν κατάλογο"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Πληροφορίες"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index a46c5b591..b2986f9c8 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:01+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/mageia/"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -27,12 +27,12 @@ msgstr ""
msgid "Please wait"
msgstr "Bonvole atendu"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr ""
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -43,12 +43,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalado de startŝargilo malsukcesis. La sekvanta eraro okazis:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -63,218 +63,218 @@ msgstr ""
"\n"
"En kiu drajvo vi startigas?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr ""
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kie vi deziras instali la startŝargilon?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Unu sektoro de drajvo (ĈefStartRikordo)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Unua sektoro de radika subdisko"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Sur disketo"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Ellasu"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr ""
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Startŝargilo ĉefaj opcioj"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Startŝargilo"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Startŝargilo por uzi"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Starta aparato"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Ĉefaj opcioj"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo antaŭ starti defaŭltan sistemon"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Ebligu ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr ""
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr ""
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sekureco"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasvorto"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasvorto (denove)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Kerna bildo"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Radiko"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Alfiksu"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Grafika reĝimo"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etikedo"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Defaŭlta"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Malplena etikedo ne estas permesata"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Vi devas decidi pri kerno-bildo"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Vi devas difini radikan (root) subdiskon"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Ĉi tiu etikedo estas jam uzata"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linukso"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -283,194 +283,194 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "aliro al X-programoj"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "aliro al rpm-iloj"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "permesu \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "aliro al administraj dosieroj"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "aliro al retiloj"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "aliro al kompililoj"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Ĉi tiu salutnomo estas tro longa"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Ĉi tiu salutnomo estas jam aldonita"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Uzula ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Grupa ID"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Enigo de uzulo (Enter a user)"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Piktogramo"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Vera nomo"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Ŝelo"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Bonvole atendu, mi aldonas datumportilon..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Aŭtomata-enregistrado"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mi povas konfiguri vian komputilon por aŭtomate enirigi unu uzulon"
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Elektu la defaŭltan uzulon:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanĉi:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Publikig-notoj"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Malfermu"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Licenca kontrakto"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Ĉesu"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Akceptu"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Malakceptu"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Bonvole elektu lingvon por uzi"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -478,87 +478,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Ĉiuj lingvoj"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr ""
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Lando"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Bonvole elektu vian landon"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Jen la kompleta listo de atingeblaj landoj"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr ""
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Progresinta"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Neniom"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Ne kundivido"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permesu ĉiujn uzulojn"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Akomodata"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -574,86 +574,86 @@ msgstr ""
"\n"
"\"Custum\" ebligas per-uzulan.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Vi povas eksporti uzante NFS aŭ SMB. Bonvole elektu kiun vi ŝatus uzi."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Lanĉu userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Horzono"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP Servilo"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Auxtomata hor-sinkronizado (uzante NTP) "
@@ -977,7 +977,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1017,26 +1017,26 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "mankas sufiĉe da spaco en /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Vi ne povas instali la startŝargilon en %s-subdiskon\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1066,17 +1066,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minutoj"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minuto"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d sekundoj"
@@ -1095,27 +1101,27 @@ msgstr ""
"konfigurita kiel WebDAV-servilo). Se vi deziras aldoni WebDAF-kroĉpunktojn,\n"
"elektu \"New\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nova"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Malmuntu"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Muntu"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Servilo"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1123,25 +1129,25 @@ msgstr "Servilo"
msgid "Mount point"
msgstr "Surmetingo"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opcioj"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Forigu"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Finata"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1157,17 +1163,17 @@ msgstr "Finata"
msgid "Error"
msgstr "Eraro"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Bonvole entajpu la servilan URL de la WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "La URL devas komenci per http:// aŭ https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1178,33 +1184,33 @@ msgstr "La URL devas komenci per http:// aŭ https://"
msgid "Warning"
msgstr "Averto"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr ""
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Servilo:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Surmetingo: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Opcioj: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Subdiskigante"
@@ -1235,9 +1241,9 @@ msgstr "Eliro"
msgid "Continue"
msgstr "Ĉu mi devus daŭri?"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Helpo"
@@ -1268,63 +1274,63 @@ msgstr "Detaloj"
msgid "No hard disk drives found"
msgstr "Neniaj durdiskoj trovitaj"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Nekonata"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Interŝanĝa"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Vindozo"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Alia"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Malplena"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Specoj de dosiersistemoj:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr ""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Uzu ``Malmuntu'' antaŭe"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr ""
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1373,7 +1379,7 @@ msgstr "Ĉu eliru sen skribi la subdisktabelon?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Ĉu vi deziras konservi la modifojn en /etc/fstab?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Vi bezonas restarti por la ŝanĝoj al la subdisktabelo efektivigi"
@@ -1658,7 +1664,7 @@ msgid "Where do you want to mount %s?"
msgstr "Kie vi deziras kroĉi aparaton %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Regrandecigas"
@@ -1705,7 +1711,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2138,8 +2144,8 @@ msgstr "Ŝanĝu specon"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Nuligu"
@@ -2232,7 +2238,7 @@ msgstr ""
"novajn dosiersistemojn. Bonvolu kontroli vian ekipaĵon por la kaŭzo de ĉi "
"tiu problemo."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Vi devas havi ESP FAT32-subdiskon en /boot/EFI"
@@ -2428,7 +2434,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nesufiĉa interŝanĝospaco por plenumi instalado, bonvolu aldoni iom"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2439,7 +2445,7 @@ msgstr ""
"Por ĉi tiu, kreu subdiskon (aŭ klaku estantan).\n"
"Sekve elektu la agon \"Surmetingo\" kaj faru ĝin '/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2450,42 +2456,42 @@ msgstr ""
"\n"
"Ĉu vi deziras daŭri tamen?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Uzu liberan spacon"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Mankas sufiĉan da libera spaco por disponigi novajn subdiskojn"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Uzu ekzistantajn subdiskojn"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Ne ekzistas subdiskojn por uzi"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Kalkulante la liberan spacon sur la Vindoza subdisko"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Kiun subdiskon vi deziras regrandecigi?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2493,12 +2499,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2519,78 +2525,78 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Sekvanta"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr ""
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Kiun grandecon vi deziras teni por Vindozo subdisko: %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Grandeco"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Kalkulas Vindozajn dosiersistemajn limojn"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Regrandeciĝo de FAT malsukcesis: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Ne ekzistas FAT-a subdisko por regrandecigi\n"
"(aŭ ne estas sufiĉe da spaco)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Forigu Vindozon"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr ""
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Ĉiuj ekzistantaj subdiskoj kaj iliaj datenoj estos perdata sur drajvo %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "subdiskigo"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Uzu fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2599,42 +2605,42 @@ msgstr ""
"Nun vi povas dispartigi %s.\n"
"Kiam vi finiĝos, ne forgesu savi kun `w'."
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr ""
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Mi ne trovas spacon por instali"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "La Dispartigsorĉilo de DrakX trovis ĉi tiujn solvojn:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Dispartigado malsukcesis: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Vi ne povas uzi JFS por subdisko pli malgranda ol 16MB"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2678,22 +2684,22 @@ msgstr ""
"\n"
"Ĉu vi konsentas perdi ĉiujn subdiskojn?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Surmetingoj devas komenci kun antaŭa /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Surmetingoj devas enteni nur alfanumerajn signojn"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jam estas subdisko kun surmetingo ĉe %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2701,26 +2707,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2728,19 +2734,19 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Vi ne povas uzi kriptan dosiersistemon por surmetingo %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2749,12 +2755,12 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ĉi tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2763,12 +2769,12 @@ msgstr ""
"Vi bezonas veran dosiersistemon (ext2, reiserfs, xfs aŭ jfs) por tiu "
"surmetingo\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ne sufiĉe da libera spaco por aŭtomate disponigi novajn subdiskojn"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr ""
@@ -2778,238 +2784,238 @@ msgstr ""
msgid "SATA controllers"
msgstr "SATA-kontroliloj"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID-kontroliloj"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA-kontroliloj"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr ""
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-kontroliloj"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-kontroliloj"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-kontroliloj"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB-kontroliloj"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr ""
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-kontroliloj"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Pont- kaj sistem-kontroliloj"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disketo"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Disko"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "KDROMO"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "KD/DVD-skribiloj"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Bendo"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP-kontroliloj"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Videocard"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Tvcard"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Alia bildson-aparatoj"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Sonorokarto"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Procesiloj"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr ""
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet-karto"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modemo"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr ""
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Memoro"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Printilo"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Ludbastono"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Klavaro"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Muso"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "skanilo"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Nekonata/Aliaj"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3231,19 +3237,19 @@ msgstr ""
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Jeso"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Jes"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3274,22 +3280,22 @@ msgstr "Finu"
msgid "Previous"
msgstr "Antaŭa"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr ""
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr ""
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr ""
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Ne ekzistas tia dosiero"
@@ -4564,7 +4570,7 @@ msgstr "Zambio"
msgid "Zimbabwe"
msgstr "Zimbabvo"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Bonvenon al %s"
@@ -5111,7 +5117,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5427,7 +5433,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6565,17 +6571,17 @@ msgstr "Rusujo"
msgid "Yugoslavia"
msgstr "Jugoslavio"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Ĉu tio ĉi pravas?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Informo"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 0f25aac7d..5d2643798 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:01+0000\n"
"Last-Translator: Egoitz Rodriguez Obieta <egoitzro@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mageia/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Espere, por favor"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalación del cargador de arranque en progreso"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -50,13 +50,13 @@ msgstr ""
"\n"
"¿Asignar un nuevo ID de Volumen?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Falló la instalación del cargador de arranque. Ocurrió el siguiente error:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -71,218 +71,218 @@ msgstr ""
"\n"
"¿Desde qué disco arranca?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Instalación del cargador de arranque"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "¿Dónde quiere instalar el cargador de arranque?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primer sector (MBR) del disco %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primer sector del disco (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Primer sector de la partición raíz"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "En disquete"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Omitir"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuración del estilo de arranque"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Opciones principales del cargador de arranque"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Cargador de arranque"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Cargador de arranque a usar"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Dispositivo de arranque"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Opciones principales"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Demora antes de arrancar la imagen predeterminada"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Habilitar ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Habilitar SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Habilitar APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Habilitar APIC local"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Seguridad"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contraseña"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Las contraseñas no coinciden"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Vuelva a intentarlo, por favor"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "No puede usar una contraseña con %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contraseña (de nuevo)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Imagen"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Raíz"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Añadir"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Añadir Xen"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Requiere contraseña para iniciar"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Modo de vídeo"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Perfil de red"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Por defecto"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "No se admite una etiqueta vacía"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Debe especificar una imagen del núcleo"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Debe especificar una partición raíz"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta ya está en uso"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "¿Qué tipo de entrada desea añadir?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Otro SO (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuración del cargador de arranque"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -291,47 +291,47 @@ msgstr ""
"Aquí están las diferentes entradas.\n"
"Puede añadir otras o cambiar las que ya existen."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "acceso a programas X"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "acceso a herramientas rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "acceso a archivos administrativos"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "acceso a herramientas de red"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "acceso a herramientas de compilación"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s ya fue añadido)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Introduzca el nombre de usuario"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -340,149 +340,149 @@ msgstr ""
"El nombre de usuario (login) debe comenzar con una letra minúscula seguida "
"sólo letras minúsculas, números, `-' y `_'"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "El nombre de usuario es muy largo"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Este nombre de usuario ya fue añadido"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID de usuario"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID de grupo"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "¡%s debe ser un número!"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s debería ser superior a 1000. ¿Aceptarlo igual?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Administración de usuarios"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Habilitar cuenta de invitado"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Introduzca contraseña del administrador (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Ingrese un usuario"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Icono"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Nombre y apellidos"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Nombre de conexión"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Por favor espere, agregando soportes..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Conexión automática"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Puedo configurar su computadora para que entre automáticamente con un "
"usuario."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Utilizar esa característica"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Elija el usuario predeterminado:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Elija el gestor de ventanas a ejecutar:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Notas de versión"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Cerrar"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Acuerdo de licencia"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Salir"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "¿Acepta esta licencia?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Aceptar"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Rechazar"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Por favor, elija el idioma a usar"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -493,87 +493,87 @@ msgstr ""
"los idiomas que desea instalar. Estarán disponibles\n"
"cuando la instalación esté completa y reinicie el sistema."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Múltiples idiomas"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Seleccionar idiomas adicionales"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codificación (no UTF-8) para compatibilidad antigua"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Todos los idiomas"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Selección del idioma"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "País / Región"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Seleccione su país, por favor"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aquí tiene la lista completa de países disponibles"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Otros países"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avanzada"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Método de entrada:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Ninguno"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "No compartir"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permitir a todos los usuarios"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalizada"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -588,7 +588,7 @@ msgstr ""
"\n"
"\"Personalizada\" permite una granularidad por usuario.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -597,7 +597,7 @@ msgstr ""
"NFS: sistema tradicional Unix para compartir archivos, con menos soporte en "
"Mac y Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -606,19 +606,19 @@ msgstr ""
"SMB: sistema para compartir archivos usado por Windows, Mac OS X y muchos "
"sistemas Linux modernos."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Puede exportar usando NFS o SMB. Por favor, elija el que desea utilizar."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Lanzar UserDrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -627,7 +627,7 @@ msgstr ""
"Los recursos compartidos por usuario utilizan el grupo \"fileshare\". \n"
"Puede utilizar UserDrake para añadir un usuario a este grupo."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -636,48 +636,48 @@ msgstr ""
"Debe desconectarse y volver a conectarse para que los cambios tengan efecto. "
"Pulse OK para conectarse ahora."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Debe desconectarse y volver a conectarse para que los cambios tengan efecto"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Huso horario"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "¿Cuál es su huso horario?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Configuración de la fecha, hora y huso horario"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "¿Cuál es la mejor hora?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (reloj interno puesto en hora UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (reloj interno puesto en hora local)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización automática de hora (usando NTP)"
@@ -1020,7 +1020,7 @@ msgid "Domain Admin Password"
msgstr "Contraseña del Administrador del Dominio"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1060,12 +1060,12 @@ msgstr "GRUB con menú de texto"
msgid "not enough room in /boot"
msgstr "no hay espacio suficiente en /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "No puede instalar el cargador de arranque en una partición %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1074,7 +1074,7 @@ msgstr ""
"Se debe actualizar la configuración de su cargador de arranque debido a que "
"cambió el número de la partición"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1083,7 +1083,7 @@ msgstr ""
"No se puede instalar correctamente el cargador de arranque. Debe arrancar "
"con rescate y elegir \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Volver a instalar cargador de arranque"
@@ -1113,17 +1113,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minutos"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minuto"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d segundos"
@@ -1142,27 +1148,27 @@ msgstr ""
"el servidor web está configurado como servidor WebDAV). Si desea añadir\n"
"puntos de montaje WebDAV, seleccione \"Nuevo\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nuevo"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Desmontar"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Montar"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Servidor"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1170,25 +1176,25 @@ msgstr "Servidor"
msgid "Mount point"
msgstr "Punto de montaje"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opciones"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Quitar"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Hecho"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1204,17 +1210,17 @@ msgstr "Hecho"
msgid "Error"
msgstr "Error"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Por favor, ingrese la URL del servidor WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "La URL debería empezar con http:// o https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1225,33 +1231,33 @@ msgstr "La URL debería empezar con http:// o https://"
msgid "Warning"
msgstr "Advertencia"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "¿Está seguro de que desea eliminar este punto de montaje?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Servidor: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Punto de montaje: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Opciones: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Particionando"
@@ -1284,9 +1290,9 @@ msgstr "Salir"
msgid "Continue"
msgstr "Continuar"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Ayuda"
@@ -1317,63 +1323,63 @@ msgstr "Detalles"
msgid "No hard disk drives found"
msgstr "¡No se encontraron discos rígidos!"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Desconocido"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Intercambio"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Otros"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Vacío"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Tipos de sistemas de archivos:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Esta partición ya está vacía"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Use \"Desmontar\" primero"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Usar \"%s\" en su lugar (en modo experto)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1422,7 +1428,7 @@ msgstr "¿Salir del programa sin grabar la tabla de particiones?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "¿Desea guardar las modificaciones en /etc/fstab?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1709,7 +1715,7 @@ msgid "Where do you want to mount %s?"
msgstr "¿Dónde desea montar a %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Cambiando tamaño"
@@ -1755,7 +1761,7 @@ msgstr "Tamaño mínimo: %s MB"
msgid "Maximum size: %s MB"
msgstr "Tamaño máximo: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2202,8 +2208,8 @@ msgstr "Cambiar tipo"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Cancelar"
@@ -2298,7 +2304,7 @@ msgstr ""
"nuevos sistemas de archivos. Por favor, verifique su equipo para saber la "
"razón de este fallo"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Debe tener una partición ESP FAT32 montada en /boot/EFI"
@@ -2518,7 +2524,7 @@ msgstr ""
"Espacio de intercambio insuficiente para completar la instalación, añada un "
"poco más"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2529,7 +2535,7 @@ msgstr ""
"Para ello, cree una partición (o haga clic sobre una que ya existe).\n"
"Luego elija la acción \"Punto de montaje\" y defínalo como '/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2540,42 +2546,42 @@ msgstr ""
"\n"
"¿Desea continuar de todas formas?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Usar el espacio libre"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "No hay espacio libre suficiente para asignar las particiones nuevas"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Usar la partición existente"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "No hay ninguna partición existente para usar"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Calculando el espacio de la partición Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Usar el espacio libre de una partición Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "¿A qué partición desea cambiarle el tamaño?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2586,12 +2592,12 @@ msgstr ""
"computador bajo Microsoft Windows®, ejecute la utilidad ``defrag'',luego "
"reinicie la instalación %s."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr "No se pudo encontrar la partición para cambiar el tamaño (%d opciones)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2627,55 +2633,55 @@ msgstr ""
"Cuando esté seguro, pulse sobre %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Siguiente"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Particionando"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"¿Qué tamaño desea conservar para Microsoft Windows® en la partición %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Tamaño"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Cambiando tamaño a partición Microsoft Windows®"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Falló el redimensionado de la FAT: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"No hay particiones FAT para redimensionar (o no queda espacio suficiente)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Quitar Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Borrar y usar el disco entero"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2684,22 +2690,22 @@ msgstr ""
"Usted tiene más de una unidad de disco duro, ¿cuál quiere que use el "
"instalador?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Se perderán TODAS las particiones y sus datos en la unidad %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Particionamiento de disco personalizado"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Usar fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2708,43 +2714,43 @@ msgstr ""
"Ahora puede particionar %s.\n"
"Cuando haya terminado, no se olvide de guardar usando 'w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "No se puede encontrar nada de espacio para instalar"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"El asistente de particionamiento de DrakX encontró las siguientes soluciones:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Éste es el contenido de su disco"
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Falló el particionamiento: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "No se puede usar JFS para particiones menores de 32MB"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "No se puede usar ReiserFS para particiones menores de 32MB"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "No se puede usar Btfrs para particiones más pequeñas de 256 MB"
@@ -2790,22 +2796,22 @@ msgstr ""
"\n"
"¿Está de acuerdo en perder todas las particiones?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Los puntos de montaje deben comenzar con una /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Los puntos de montaje deberían contener sólo caracteres alfanuméricos"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ya existe una partición con el punto de montaje %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2817,7 +2823,7 @@ msgstr ""
"boot.\n"
"Por favor, asegúrese de añadir una partición /boot"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2826,7 +2832,7 @@ msgstr ""
"Versión de metadatos no soportada para una partición de arranque. Por favor "
"asegúrese de agregar una partición /boot separada."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2835,13 +2841,13 @@ msgstr ""
"Eligió una partición RAID en software como /boot.\n"
"Ningún cargador de arranque es capaz de manejar esto."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
"La versión de meta datos no está soportada para una partición de arranque."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2852,13 +2858,13 @@ msgstr ""
"Ningún cargador de arranque puede manejar esto sin una partición raíz.\n"
"Por favor asegúrese de agregar una partición /boot separada"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"No puede usar un sistema de archivos cifrado para el punto de montaje %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2867,7 +2873,7 @@ msgstr ""
"No puede usar un Volumen Lógico LVM para el punto de montaje %s ya que cubre "
"varios volúmenes físicos"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2880,12 +2886,12 @@ msgstr ""
"volúmenes físicos.\n"
"Debe primero crear una partición /boot separada"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio debería permanecer dentro del sistema de archivos raíz"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2894,12 +2900,12 @@ msgstr ""
"Necesita un sistema de archivos verdadero (ext2/3/4, reiserfs, xfs o jfs) "
"para este punto de montaje\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "No hay espacio libre suficiente para la asignación automática"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nada para hacer"
@@ -2909,238 +2915,238 @@ msgstr "Nada para hacer"
msgid "SATA controllers"
msgstr "Controladoras SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "Controladoras RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Controladores (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Lectores de tarjetas"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Controladores Firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Controladores PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Controladores SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Controladores USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Puertos USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Controladores SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Puentes y controladores del sistema"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disquete"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Disco"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Dispositivos de almacenamiento USB"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CD-ROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Grabadoras de CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Cinta"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Controladoras AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Tarjeta de vídeo"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Tarjeta DVB"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Tarjeta de TV"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Otros dispositivos multimedios"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Tarjeta de sonido"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Cámara web"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Procesadores"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Adaptadores RDSI"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Dispositivos de sonido USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Tarjetas de radio"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Tarjetas de red ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Tarjetas de red WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Dispositivos Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Tarjeta Ethernet"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Módem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Adaptadores ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Memoria"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Impresora"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Controladores de juegos"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Joystick"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Teclado"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tableta y touchscreen"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Ratón"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometría"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Escáner"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Desconocido/Otros"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu #"
@@ -3445,19 +3451,19 @@ msgstr "Tipo de sintonizador :"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Aceptar"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Sí"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3488,22 +3494,22 @@ msgstr "Finalizar"
msgid "Previous"
msgstr "Anterior"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "No se ha especificado ningún archivo"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Ha especificado un directorio, no un archivo"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "No existe ese directorio"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "No existe ese archivo"
@@ -4785,7 +4791,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbaue"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenido a %s"
@@ -5452,9 +5458,9 @@ msgid "Allow direct root login."
msgstr "Permitir conexión directa del administrador del sistema."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Permitir la lista de usuarios del sistema en administradores de conexión "
"(sddm y gdm)."
@@ -5839,9 +5845,10 @@ msgid "Direct root login"
msgstr "Conexión directa del administrador del sistema"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
-msgstr "Listar usuarios del sistema en administradores de conexión (sddm y gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
+msgstr ""
+"Listar usuarios del sistema en administradores de conexión (sddm y gdm)"
#: security/l10n.pm:20
#, c-format
@@ -7100,17 +7107,17 @@ msgstr "Federación Rusa"
msgid "Yugoslavia"
msgstr "Yugoslavia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "¿Es correcto?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Ha especificado un archivo, no un directorio"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Información"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index a3b95257f..09d676661 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-08-06 16:39+0300\n"
"Last-Translator: Marek Laane <qiilaq69@gmail.com>\n"
"Language-Team: Estonian <i18n-et@ml.mageia.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -27,12 +27,12 @@ msgstr ""
msgid "Please wait"
msgstr "Palun oodake"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Paigaldatakse alglaadurit..."
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -49,12 +49,12 @@ msgstr ""
"\n"
"Kas anda kettale uus ID?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Alglaaduri paigaldamine nurjus. Tekkis järgmine viga:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -69,218 +69,218 @@ msgstr ""
"\n"
"Milliselt kettalt Te alglaadimise sooritate?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Alglaaduri paigaldamine"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kuhu soovite alglaaduri paigaldada?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Ketta %s algusesse (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Ketta algusesse (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Juurpartitsiooni algusesse"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Disketil"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Jäta vahele"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Alglaaduri stiil"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Alglaaduri põhiseadistused"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Alglaadur"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Eelistatav alglaadur"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Alglaadimisseade"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Põhivalikud"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Ooteaeg alglaadimisel"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "ACPI lubamine"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "SMP lubamine"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "APIC lubamine"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Kohaliku APIC lubamine"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Turvalisus"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Parool"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Paroolid ei klapi"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Palun proovige veel"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "%s puhul ei saa parooli kasutada"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Parool (uuesti)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Laadefail"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Juurpartitsioon"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Lisaargumendid"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Xen'i lisaargument"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Alglaadimiseks on vajalik parool"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Ekraanilahutus"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Võrguprofiil"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Nimi"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Vaikimisi"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Nimi ei tohi puududa"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Teil peab olema kerneli laadepilt"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Teil peab olema juurpartitsioon"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Selline nimi on juba kasutusel"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Millist kirjet soovite lisada?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Muu OS (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Alglaaduri seadistamine"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -289,47 +289,47 @@ msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te võite neid lisada ning olemasolevaid muuta."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "ligipääs X'i rakendustele"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "ligipääs rpm-tööriistadele"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "\"su\" lubamine"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "ligipääs administreerimisfailidele"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "ligipääs võrgutööriistadele"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "ligipääs kompileerimistööriistadele"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Palun andke kasutajanimi"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -338,148 +338,148 @@ msgstr ""
"Kasutajanimi peab algama väiketähega ja tohib sisaldada ainult väikesi "
"tähti, arve ning märke \"-\" ja \"_\""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "See kasutajanimi on liiga pikk"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "See kasutajanimi on juba lisatud"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Kasutaja ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Grupi ID"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s peab olema arv"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s peab olema suurem kui 1000. Kas ikkagi lisada?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Kasutajate haldamine"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Külaliskonto (guest) lubamine"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Administraatori (root) parool"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Kasutaja lisamine"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Ikoon"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Pärisnimi"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Kasutajatunnus"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Palun oodake, lisatakse andmekandja..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automaatne sisselogimine"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Teie arvutis saab määrata kasutaja, kel on lubatud automaatselt sisse logida."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Selle võimaluse lubamine"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Valige kasutaja:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Valige käivitatav aknahaldur:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Info väljalaske kohta"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Sulge"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Lõppkasutaja litsentsileping"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Välju"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Kas olete selle litsentsiga nõus?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Nõustun"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Keeldun"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Valige palun kasutatav keel"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -491,87 +491,87 @@ msgstr ""
"Need muutuvad kasutatavaks, kui olete paigaldamise\n"
"lõpetanud ja süsteemi taaskäivitanud."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Mitme keele valimine"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Lisakeelte valimine"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Varasemaga ühilduv kodeering (mitte-UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Kõik keeled"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Keelevalik"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Riik / Piirkond"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Palun valige oma riik"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "See on kõigi riikide täielik nimekiri"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Muud riigid"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Edasijõudnuile"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Sisestusmeetod:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Puudub"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Jagamiseta"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Lubatud kõigile kasutajatele"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Kohandatud"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -586,7 +586,7 @@ msgstr ""
"\n"
"\"Kohandatud\" lubab määrata seda kasutajate kaupa.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -595,7 +595,7 @@ msgstr ""
"NFS: UNIX-i traditsiooniline failijagamissüsteem, mida Mac ja Windows eriti "
"ei toeta."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -604,18 +604,18 @@ msgstr ""
"SMB: failijagamissüsteem, mida toetavad Windows, Mac OS X ja enamik moodsaid "
"Linuxi süsteeme."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Eksportida saab NFS või SMB abil. Palun valige, kumba kasutada."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake käivitamine"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -624,7 +624,7 @@ msgstr ""
"Kasutaja kaupa jagamise lubamine rakendab gruppi \"fileshare\". \n"
"Sellesse gruppi kasutajate lisamiseks saab tarvitada userdraket."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -633,47 +633,47 @@ msgstr ""
"Muudatuste rakendamiseks tuleb end uuesti sisse logida. Vajutage "
"väljalogimiseks OK."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Muudatuste rakendamiseks tuleb end uuesti sisse logida"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Ajavöönd"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Millises ajavöötmes asute?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Kuupäeva, kellaaja ja ajavööndi seadistamine"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Milline on korrektne aeg?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (arvuti sisekell on seatud GMT ajale)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (arvuti sisekell on seatud kohalikule ajale)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP server"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Aja automaatne sünkroniseerimine (NTP abil)"
@@ -1010,7 +1010,7 @@ msgid "Domain Admin Password"
msgstr "Domeeni administraatori parool"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1050,19 +1050,19 @@ msgstr "GRUB tekstirežiimis"
msgid "not enough room in /boot"
msgstr "/boot on liiga täis"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Alglaadurit ei saa paigaldada %s partitsioonile\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "Alglaaduri seadistust tuleb uuendada, sest partitsioon on ümber seatud"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1071,7 +1071,7 @@ msgstr ""
"Alglaadurit ei saa korrektselt paigaldada. Peate tegema taaskäivituse "
"päästerežiimi (rescue) ja valima \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Alglaaduri taaspaigaldamine"
@@ -1101,17 +1101,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minutit"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minut"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d sekundit"
@@ -1129,27 +1135,27 @@ msgstr ""
"veebiserver on seadistatud WebDAV-serverina). Kui soovite lisada\n"
"WebDAVi haakepunkte, klõpsake nupule \"Uus\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Uus"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Lahuta"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Haagi"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Server"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1157,25 +1163,25 @@ msgstr "Server"
msgid "Mount point"
msgstr "Haakepunkt"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Eelistused"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Eemalda"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Tehtud"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1191,17 +1197,17 @@ msgstr "Tehtud"
msgid "Error"
msgstr "Viga"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Palun sisestage WebDAV-serveri URL"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL peab algama kas http:// või https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1212,33 +1218,33 @@ msgstr "URL peab algama kas http:// või https://"
msgid "Warning"
msgstr "Hoiatus"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Kas tõesti kustutada see haakepunkt?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Haakepunkt: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Eelistused: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Kõvaketta jagamine"
@@ -1269,9 +1275,9 @@ msgstr "Välju"
msgid "Continue"
msgstr "Jätka"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Abi"
@@ -1303,63 +1309,63 @@ msgstr "Üksikasjad"
msgid "No hard disk drives found"
msgstr "Kõvakettaid ei leitud"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Tundmatu"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Saaleala"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Muu"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Tühi"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Failisüsteemi tüübid: "
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "See partitsioon on juba tühi"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Valige enne \"Lahuta\""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Valige pigem \"%s\" (ekspertrežiimis)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1408,7 +1414,7 @@ msgstr "Kas väljuda partitsioonitabelit salvestamata?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Kas salvestada /etc/fstab muudatused?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Partitsioonitabeli muudatuste rakendamiseks on vajalik taaskäivitamine"
@@ -1692,7 +1698,7 @@ msgid "Where do you want to mount %s?"
msgstr "Kuhu soovite haakida %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Muudetakse suurust"
@@ -1737,7 +1743,7 @@ msgstr "Min. suurus: %s MB"
msgid "Maximum size: %s MB"
msgstr "Maks. suurus: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2180,8 +2186,8 @@ msgstr "Muuda tüüpi"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Loobu"
@@ -2273,7 +2279,7 @@ msgstr ""
"Tekkis viga: failisüsteemi loomiseks ei leitud ühtki seadet. Palun "
"kontrollige oma riistvara."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Teil peab olema ESP FAT32-partitsioon haagitud asukohas /boot/EFI"
@@ -2484,7 +2490,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Saaleala on paigaldamiseks liiga väike, palun suurendage seda"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2495,7 +2501,7 @@ msgstr ""
"Selleks looge partitsioon (või klõpsake olemasoleval).\n"
"Seejärel valige \"Haakepunkt\" ja määrake selleks \"/\"."
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2506,42 +2512,42 @@ msgstr ""
"\n"
"Kas ikkagi jätkata?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Vaba ruumi kasutamine"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Olemasolevate partitsioonide kasutamine"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Kasutatavat partitsiooni ei leitud"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Vaba ruumi arvutamine Microsoft Windows® partitsioonil"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Vaba ruumi kasutamine Microsoft Windows® partitsioonil"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Millist partitsiooni soovite muuta?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2552,12 +2558,12 @@ msgstr ""
"arvutile uus alglaadimine, käivitage Microsoft Windows® ja seejärel utiliit "
"\"defrag\" ning tulge siis %s paigaldamise juurde tagasi."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr "Ei leitud partitsiooni, mille suurust muuta (%d valikut)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2593,53 +2599,53 @@ msgstr ""
"Kui olete oma otsuses kindel, klõpsake nupule \"%s\"."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Edasi"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Kõvaketta jagamine"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Kui palju ruumi jätta Microsoft Windows® jaoks partitsioonil %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Suurus"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Arvutatakse Microsoft Windows® failisüsteemi piire"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-i suuruse muutmine nurjus: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Sobivat FAT-partitsiooni ei leitud (ei ole piisavalt ruumi)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Microsoft Windows® eemaldamine"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Kogu ketta tühjendamine ja kasutamine"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2647,22 +2653,22 @@ msgid ""
msgstr ""
"Teil on rohkem kui üks kõvaketas. Millist peaks paigaldusprogramm kasutama?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Kettal %s hävivad KÕIK partitsioonid ja andmed"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Ketta jagamine oma tahtmist mööda"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Fdisk'i kasutamine"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2671,42 +2677,42 @@ msgstr ""
"Nüüd saate jagada %s kõvaketta\n"
"Kui olete valmis, salvestage käsuga \"w\""
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Paigaldamiseks ei paista ruumi olevat"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX kettajagamise nõustaja leidis sellised lahendused:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Partitsioonide jaotus Teie kettal "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ketta jagamine nurjus: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "JFS-i ei saa kasutada väiksemate kui 16 MB partitsioonide puhul"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS-i ei saa kasutada väiksemate kui 32 MB partitsioonide puhul"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "Btrfs-i ei saa kasutada väiksemate kui 256 MB partitsioonide puhul"
@@ -2749,22 +2755,22 @@ msgstr ""
"\n"
"Kas olete nõus kaotama kõik partitsioonid?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Haakepunktid peavad algama kaldkriipsuga (/)"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Haakepunkti nimi tohib sisaldada vaid tähti ja numbreid"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Haakepunktile %s on juba partitsioon määratud\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2775,7 +2781,7 @@ msgstr ""
"Ükski alglaadur ei suuda seda kasutusele võtta ilma /boot partitsioonita.\n"
"Palun lisage kindlasti eraldi /boot partitsioon"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2784,7 +2790,7 @@ msgstr ""
"Alglaadimispartitsiooni poolt toetamata metaandmete versioon. Palun lisage "
"kindlasti eraldi /boot partitsioon."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2793,13 +2799,13 @@ msgstr ""
"Olete valinud alglaadimispartitsiooniks (/boot) tarkvaralise RAID-i.\n"
"Seda ei suuda käsitleda ükski alglaadur."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
"Metaandmete versioon ei ole alglaadimispartitsiooni (/boot) puhul toetatud."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2810,12 +2816,12 @@ msgstr ""
"Ükski alglaadur ei suuda seda kasutusele võtta ilma /boot partitsioonita.\n"
"Palun lisage kindlasti eraldi /boot partitsioon"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Haakepunktis %s ei saa kasutada krüptitud failisüsteemi"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2824,7 +2830,7 @@ msgstr ""
"Haakepunktis %s ei saa kasutada LVM loogilist ketast, sest see hõlmab mitut "
"füüsilist ketast"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2837,12 +2843,12 @@ msgstr ""
"ketast.\n"
"Teil tuleks kõigepealt luua eraldi /boot partitsioon"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "See kataloog peab jääma kokku juurfailisüsteemiga"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2851,12 +2857,12 @@ msgstr ""
"See haakepunkt vajab tõelist (ext2/3/4, reiserfs, xfs või jfs) "
"failisüsteemi\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ei ole piisavalt ruumi automaatpaigutuseks"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Pole midagi teha"
@@ -2866,238 +2872,238 @@ msgstr "Pole midagi teha"
msgid "SATA controllers"
msgstr "SATA kontrollerid"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID kontrollerid"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA kontrollerid"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Kaardilugejad"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "FireWire kontrollerid"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA kontrollerid"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI kontrollerid"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB kontrollerid"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB pordid"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus kontrollerid"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Sillad ja kontrollerid"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Diskett"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Kõvaketas"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB-salvestusseadmed"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CD-lugeja"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD-kirjutid"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-lugeja"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Lint"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP kontrollerid"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Videokaart"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB-kaart"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV-kaart"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Muud multimeediaseadmed"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Helikaart"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Veebikaamera"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Protsessorid"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN-kaardid"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "USB-heliseadmed"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Raadiokaardid"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "ATM-võrgukaardid"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "WAN-võrgukaardid"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetoothi seadmed"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Võrgukaart"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL-kaardid"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Mälu"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Printer"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Mängupordi kontrollerid"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Juhtkang"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Klaviatuur"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tahvelarvuti ja puuteekraan"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Hiir"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biomeetria"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Skanner"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Tundmatu/Muu"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3156,7 +3162,7 @@ msgstr ""
msgid "Sound configuration"
msgstr "Heliseadistused"
-#. -PO: here the first %s is either "ALSA",
+#. -PO: here the first %s is either "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:167
@@ -3404,19 +3410,19 @@ msgstr "Tuuneri tüüp:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Olgu"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Jah"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3447,22 +3453,22 @@ msgstr "Lõpeta"
msgid "Previous"
msgstr "Tagasi"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Ühtegi faili pole valitud"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Valisite kataloogi, mitte faili"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Sellist kataloogi pole"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Sellist faili pole"
@@ -4744,7 +4750,7 @@ msgstr "Sambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "See ongi %s"
@@ -5385,9 +5391,9 @@ msgid "Allow direct root login."
msgstr "Administraatori vahetu sisselogimise lubamine."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr "Kasutajate nimekirja lubamine kuvahalduritel (sddm ja gdm)."
#: security/help.pm:35
@@ -5757,8 +5763,8 @@ msgid "Direct root login"
msgstr "Administraatori otsesisselogimine"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Kasutajate nimekirja lubamine kuvahalduritel (sddm ja gdm)"
#: security/l10n.pm:20
@@ -6969,17 +6975,17 @@ msgstr "Venemaa Föderatsioon"
msgid "Yugoslavia"
msgstr "Jugoslaavia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Kas see on sobiv?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Valisite faili, mitte kataloogi"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Info"
@@ -6997,4 +7003,3 @@ msgstr ""
#, c-format
msgid "Installation failed"
msgstr "Paigaldamine nurjus"
-
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 781dad6b0..3aa96092e 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -11,19 +11,19 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 13:53+0100\n"
"Last-Translator: Egoitz Rodriguez Obieta <egoitzro@gmail.com>\n"
"Language-Team: Basque (http://www.transifex.com/projects/p/mageia/language/"
"eu/)\n"
+"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.6.9\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -32,12 +32,12 @@ msgstr ""
msgid "Please wait"
msgstr "Itxoin mesedez"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Abio zamatzailearen instalaketa egiten ari da"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -55,12 +55,12 @@ msgstr ""
"\n"
"Bolumen ID berria ezarri nahi duzu?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Abio zamatzailearen instalaketak huts egin du. Akats hau gertatu da:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -75,218 +75,218 @@ msgstr ""
"\n"
"Zein unitatetik abiatzen duzu?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Abio zamatzailearen instalaketa"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Non instalatu nahi duzu abio zamatzailea?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "%s unitatearen lehen sektorea (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Unitatearen lehen sektorea (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Erro partizioko lehen sektorea"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Disketean"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Utzi"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Abio tankera konfiguraketa"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Abio kargatzailearen aukera nagusiak"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Abio zamatzailea"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Erabili beharreko abio zamatzailea"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Abio gailua"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Aukera nagusiak"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Imajina lehenetsia abiarazi arteko denbora"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Gaitu ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Gaitu SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Gaitu APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Gaitu bertako APIC"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Segurtasuna"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasahitza"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Pasahitzak ez datoz bat"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Saiatu berriro"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Ezin duzu %s-rekin pasahitz bat erabili"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasahitza (berriro)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Imajina"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Erroa"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Erantsi"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Xen erantsi"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Abiarazteko pasahitza behar da"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Bideo modua"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Sare profila"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiketa"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Lehenetsia"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Ez da etiketa hutsik onartzen"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Nukleo-imajina bat zehaztu behar duzu"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Erroko partizio bat zehaztu behar duzu"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Etiketa hau jadanik erabili da"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Zer sarrera-mota gehitu nahi duzu?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Beste SE bat (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Abio zamatzailearen konfiguraketa"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -295,47 +295,47 @@ msgstr ""
"Hona hemen abioko menuko orain arteko sarrerak.\n"
"Sarrera gehgiago sor ditzakezu, edo lehendik daudenak aldatu."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "X programen atzipena"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "rpm tresnen atzipena"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "onartu \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "administrazio-fitxategien atzipena"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "sare-tresnen atzipena"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "konpilazio-tresnen atzipena"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s jadanik gehituta)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Eman erabiltzaile-izen bat"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -344,147 +344,147 @@ msgstr ""
"Erabiltzaile izena letra minuskulaz hasi behar da eta jarraian soilik letra "
"minuskulak, zenbakiak, `-' eta `_' izan ditzake"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Erabiltzaile-izena luzeegia da"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Erabiltzaile-izen hau gehituta dago jadanik"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Erabiltzaile ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Talde ID"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s zenbakia izan behar da"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s 1000 gainetik egon behar luke. Onartu hala ere?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Erabiltzaile kudeaketa"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Gaitu gonbidatuaren kontua"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Ezarri administratzaile (root) pasahitza"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Sartu erabiltzaile bat"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Ikonoa"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Benetako izena"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Saioa hasteko izena"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Itxoin mesedez, euskarria eransten..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatikoki hasi saioa"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Ordenagailua konfigura dezaket automatikoki erabiltzaile bat sartzeko."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Ezaugarri hau erabili"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Aukeratu erabiltzaile lehenetsia:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Askapen Oharrak"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Itxi"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Lizentzia-kontratua"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Irten"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Lizentzia hau onartzen duzu ?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Onartu"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Ezetsi"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Aukeratu erabiltzeko hizkuntza bat"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -495,87 +495,87 @@ msgstr ""
"instalatu nahi dituzun hizkuntzak. Instalazioa osatzean eta\n"
"sistema berrabiaraztean, erabilgarri egongo dira."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Hizkuntz anitzak"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Aukeratu Hizkuntza Gehigarriak"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kodeketa bateragarritasun zaharra (ez UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Hizkuntza guztiak"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Hizkuntza aukera"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Estatua / Eskualdea"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Aukeratu zure herrialdea edo estatua"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hona hemen herrialde erabilgarri guztien zerrenda"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Beste Herrialde batzuk"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Aurreratua"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Sarrera metodoa:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Bat ere ez"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Ez partekatu"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Eman baimena erabiltzaile guztiei"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Pertsonalizatua"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -591,7 +591,7 @@ msgstr ""
"\"Pertsonalizatu\" erabiltzaile batzuei partekatzea ahalbidetzeko erabiltzen "
"da.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -600,7 +600,7 @@ msgstr ""
"NFS: usadioz Unixen fitxategiak elkarbanatzeko sistema, Mac eta Windowsen "
"euskarri gutxiago duena."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -609,18 +609,18 @@ msgstr ""
"SMB: fitxategiak elkarbanatzeko sistema, Windows, Mac OS X eta gaur egungo "
"hainbat Linux sistemek erabiltzen dutena."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "NFS edo SMB-rekin esporta dezakezu. Hautatu zein erabili nahi duzun."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Abiarazi userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -630,7 +630,7 @@ msgstr ""
"taldea erabiltzen du. \n"
"Userdrake erabil dezakezu talde honetan erabiltzaileak gehitzeko."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -639,48 +639,48 @@ msgstr ""
"Saioa amaitu eta berriro hasi behar duzu aldaketek eragina izan dezaten. "
"Sakatu Ados saioa orain amaitzeko."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Saioa amaitu eta berriro hasi behar duzu aldaketek eragina izan dezaten"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Ordu-eremua"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Zein da zure ordu-eremua?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Data, ordulari eta ordu gune ezarpenak"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Zein da ordu onena?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardware ordularia UTC-ra ezarria)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardware ordularia bertako ordura ezarria)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP Zerbitzaria"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"
@@ -1023,9 +1023,8 @@ msgstr "Domeinu-administratzailearen erabiltzaile-izena"
msgid "Domain Admin Password"
msgstr "Domeinu-administratzailearen pasahitza"
-#. -PO: these messages will be displayed at boot time in the BIOS, use only
-#. ASCII (7bit)
-#: bootloader.pm:1112
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1065,12 +1064,12 @@ msgstr "GRUB testu menuarekin"
msgid "not enough room in /boot"
msgstr "ez dago nahikoa leku /boot-en"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Abioko kargatzailea ezin da instalatu %s partizio batean\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1079,7 +1078,7 @@ msgstr ""
"Abioko kargatzailearen konfigurazioa eguneratu egin behar da, partizioa "
"berriro zenbakitu delako"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1088,7 +1087,7 @@ msgstr ""
"Abioko kargatzailea ezin da behar bezala instalatu. Berrabiarazi "
"berreskuratzea, eta hautatu \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Berriro instalatu abioko kargatzailea"
@@ -1118,17 +1117,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minutu"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "minutu bat"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d segundo"
@@ -1146,27 +1151,27 @@ msgstr ""
"bat da (web zerbitzaria WebDAV zerbitzari gisa konfiguratuta badago).\n"
"WebDAV muntaia-puntuak eransteko, hautatu \"Berria\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Berria"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Desmuntatu"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Muntatu"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Zerbitzaria"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1174,25 +1179,25 @@ msgstr "Zerbitzaria"
msgid "Mount point"
msgstr "Muntatze-puntua"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Aukerak"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Kendu"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Eginda"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1208,17 +1213,17 @@ msgstr "Eginda"
msgid "Error"
msgstr "Errorea"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Sartu WebDAV zerbitzariaren URLa"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URLak honela hasi behar du: http:// edo https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1229,33 +1234,33 @@ msgstr "URLak honela hasi behar du: http:// edo https://"
msgid "Warning"
msgstr "Kontuz"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Ziur zaude muntaia puntu hau ezabatu nahi duzu?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Zerbitzaria: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Muntatze-puntua: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Aukerak: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Partizioa egiten"
@@ -1288,9 +1293,9 @@ msgstr "Irten"
msgid "Continue"
msgstr "Jarraitu"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Laguntza"
@@ -1321,63 +1326,63 @@ msgstr "Xehetasunak"
msgid "No hard disk drives found"
msgstr "Ez da disko zurrunik aurkitu"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Ezezaguna"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Bestelakoak"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Hutsik"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Fitxategi-sistemen motak:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Partizio hau dagoeneko hutsik dago"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Erabili ``Desmuntatu'' lehendabizi"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Horren ordez erabili ``%s'' (aditu moduan)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1426,7 +1431,7 @@ msgstr "Partizio-taula idatzi gabe irten?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "/etc/fstab aldaketak gorde nahi dituzu?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1710,7 +1715,7 @@ msgid "Where do you want to mount %s?"
msgstr "Non muntatu nahi duzu %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Tamaina aldatzen"
@@ -1756,7 +1761,7 @@ msgstr "Gutxieneko neurria: %s MB"
msgid "Maximum size: %s MB"
msgstr "Geihenezko neurria: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2204,8 +2209,8 @@ msgstr "Aldatu mota"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Utzi"
@@ -2296,7 +2301,7 @@ msgstr ""
"Errorea gertatu da - ez da fitxategi-sistema berriak sortzeko gailu "
"baliozkorik aurkitu. Aztertu zure hardwarea arazo honen arrazoia bilatzeko"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "ESP FAT32 partizio bat eduki behar duzu /boot/EFI-n muntatuta"
@@ -2511,7 +2516,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ez dago nahikoa swap instalazioa burutzeko, gehitu egin beharko duzu"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2522,7 +2527,7 @@ msgstr ""
"Horretarako, sortu partizio bat (edo egin klik lehendik dagoen batean).\n"
"Gero aukeratu ``Muntatze-puntua'' ekintza eta ezarri `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2533,42 +2538,42 @@ msgstr ""
"\n"
"Jarraitu hala ere?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Erabili leku librea"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Ez dago partizio berriak esleitzeko adina leku"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Lehendik dauden partizioak erabili"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Ez dago erabiltzeko moduko partiziorik"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Microsoft Windows®-en partizioaren tamaina kalkulatzen"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Erabili Microsoft Windows® partizio baten leku askea"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Zein partiziori aldatu nahi diozu tamaina?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2579,12 +2584,12 @@ msgstr ""
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the %s installation."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr "Ezin izan da partizioa aurkitu tamaina aldatzeko (%d aukerak)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2619,77 +2624,76 @@ msgstr ""
"\n"
"Ziur bazaude, sakatu '%s'."
-#. -PO: keep the double empty lines between sections, this is formatted a la
-#. LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Hurrengoa"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Zatikatzen"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Zein tamaina utzi nahi duzu Microsoft Windows®-entzat %s partizioan?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Tamaina"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Microsoft Windows® partizioaren tamaina aldatzen"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT tamaina aldatzeak huts egin du: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Ez dago FAT partiziorik tamainaz aldatzeko (edo ez dago nahikoa leku)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Kendu Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Ezabatu eta erabili disko osoa"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr "Disko gogor bat baino gehiago baduzu, zeinetan instalatuko duzu?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s unitatean dauden partizio eta datu GUZTIAK galdu egingo dira"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Disko-partizio pertsonalizatua"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Erabili fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2698,42 +2702,42 @@ msgstr ""
"Orain egin dezakezu %s partizioa.\n"
"Egin ondoren, ez ahaztu `w' erabiliz gordetzea"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Ezin dut instalatzeko lekurik aurkitu"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Partizio-morroiak irtenbide hauek aurkitu ditu:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Hemen dago zure disko unitatearen edukia"
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partizioak huts egin du: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Ezin da JFS erabili 16MB baino gutxiagoko partizioetarako"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Ezin da ReiserFS erabili 32MB baino gutxiagoko partizioetarako"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "Ezin duzu btrfs erabili 256MB baino gutxiakoko partizioentzat"
@@ -2777,22 +2781,22 @@ msgstr ""
"\n"
"Ados zaude partizio guztiak galtzearekin?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Muntatze-puntuek / batez hasi behar dute"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Muntatze-puntuek karaktere alfanumerikoak bakarrik izan ditzakete"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jadanik badago %s muntatze-puntua duen partizio bat\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2804,7 +2808,7 @@ msgstr ""
"dezakeenik.\n"
"Beraz, kontuan izan /boot partizioa gehitu behar duzula"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2813,7 +2817,7 @@ msgstr ""
"Metadatu bertsio ez onartua abio partizio batentzako. Mesedez ziurtatu /boot "
"partizio bat eransteaz."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2822,12 +2826,12 @@ msgstr ""
"Software RAID partizio bat hautatu duzu /boot gisa.\n"
"Ez dago abio zamatzailerik hau egiteko gauza denik."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Metadatu bertsio ez onartua abio partizio batentzako."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2838,12 +2842,12 @@ msgstr ""
"Ez dago abio kargatzailerik /boot partiziorik gabe hau erabili dezakeenik.\n"
"Mesedez erantsi ezazu /boot partizio bat"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Ezin da fitxategi-sistema enkriptatua erabili %s muntatze-punturako"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2852,7 +2856,7 @@ msgstr ""
"Ezin duzu LVM Bolumen Logikoa erabili %s muntaia puntuarentzako bolumen "
"fisikoak hedatzen dituelako"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2865,12 +2869,12 @@ msgstr ""
"hedatzen dituenean.\n"
"/boot partizio bat sortu beharko zenuke lehenengo"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Direktorio honek erroko fitxategi-sisteman egon behar du"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2879,12 +2883,12 @@ msgstr ""
"Egiazko fitxategi-sistema (ext2/3/4, reiserfs, xfs, edo jfs) behar duzu "
"muntatze-puntu honetarako\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ez dago nahikoa leku libre auto-esleitzeko"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Ez dago zer eginik"
@@ -2894,238 +2898,238 @@ msgstr "Ez dago zer eginik"
msgid "SATA controllers"
msgstr "SATA kontroladoreak"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID kontroladoreak"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA kontroladoreak"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Txartela irakurleak"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire kontroladoreak"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA kontroladoreak"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI kontroladoreak"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB kontroladoreak"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB portuak"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus kontroladoreak"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Zubiak eta sistema-kontroladoreak"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disketea"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Diskoa"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB biltegiratze gailuak"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CD-ROMa"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD grabagailuak"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROMa"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Zinta"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP kontroladoreak"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Bideo-txartela"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB txartela"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Telebista-txartela"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Multimediako beste gailu batzuk"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Soinu-txartela"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Web kamera"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Prozesatzaileak"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN moldagailuak"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "USB soinu gailuak"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Irrati txartelak"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "ATM sare txartelak"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "WAN sare txartelak"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth gailuak"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet txartela"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modema"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL moldagailuak"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Memoria"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Inprimagailua"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Joku ataka kontrolatzaileak"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Kontrol-palanka"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Teklatua"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tabletak eta ukipen-pantailak"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Sagua"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometria"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Eskanerra"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Ezezaguna/Beste batzuk"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "puz zk. "
@@ -3184,7 +3188,7 @@ msgstr ""
msgid "Sound configuration"
msgstr "Soinu-konfigurazioa"
-#. -PO: here the first %s is either "ALSA",
+#. -PO: here the first %s is either "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:167
@@ -3244,8 +3248,7 @@ msgstr "Kontrolatzailea:"
msgid "Sound troubleshooting"
msgstr "Soinu-arazoak konpontzea"
-#. -PO: keep the double empty lines between sections, this is formatted a la
-#. LaTeX
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:209
#, c-format
msgid ""
@@ -3372,8 +3375,7 @@ msgstr "Edozein kontrolatzaile hartuko dut"
msgid "Choosing an arbitrary driver"
msgstr "Kontrolatzaile arbitrario bat aukeratzen"
-#. -PO: keep the double empty lines between sections, this is formatted a la
-#. LaTeX
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:261
#, c-format
msgid ""
@@ -3435,19 +3437,19 @@ msgstr "Sintonizadore-mota:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Ados"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Bai"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3478,22 +3480,22 @@ msgstr "Amaitu"
msgid "Previous"
msgstr "Aurrekoa"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Ez da fitxategirik hautatu"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Direktorio bat hautatu duzu, ez fitxategi bat"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Ez dago horrelako direktoriorik"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Ez dago horrelako fitxategirik"
@@ -4775,7 +4777,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbawe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Ongi etorri %s(e)ra"
@@ -4884,8 +4886,7 @@ msgstr ""
msgid "2. Limited Warranty"
msgstr "2. Garantia mugatua"
-#. -PO: keep the double empty lines between sections, this is formatted a la
-#. LaTeX
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:44
#, c-format
msgid ""
@@ -5396,8 +5397,7 @@ msgstr "Onartu icmp echo"
msgid "Allow autologin."
msgstr "Onartu saio-hasiera automatikoa."
-#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as
-#. "ALL" is
+#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
#: security/help.pm:21
#, c-format
msgid ""
@@ -5429,11 +5429,12 @@ msgid "Allow direct root login."
msgstr "Onartu root gisa zuzenean saioa hastea."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
-"Erabiltzaile zerrenda saio kudeatzaileetan (sddm eta gdm) agertu dadin onartu."
+"Erabiltzaile zerrenda saio kudeatzaileetan (sddm eta gdm) agertu dadin "
+"onartu."
#: security/help.pm:35
#, c-format
@@ -5476,8 +5477,7 @@ msgstr ""
"Bezeroak 6000 tcp atakako X zerbitzarira konektatzeko baimenduta dauden\n"
"ala ez zehazten du argumentuak."
-#. -PO: here "ALL", "Local" and "None" are values in a pull-down menu;
-#. translate them the same as they're
+#. -PO: here "ALL", "Local" and "None" are values in a pull-down menu; translate them the same as they're
#: security/help.pm:53
#, c-format
msgid ""
@@ -5817,8 +5817,8 @@ msgid "Direct root login"
msgstr "root-aren zuzeneko saio-hastea"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Erabiltzaileen zerrenda bistaratze-kudeatzaileetan (sddm eta gdm)"
#: security/l10n.pm:20
@@ -6100,8 +6100,7 @@ msgstr "DrakSec-en Oinarrizko Aukerak"
msgid "Please choose the desired security level"
msgstr "Aukeratu segurtasun-maila"
-#. -PO: this string is used to properly format "<security level>: <level
-#. description>"
+#. -PO: this string is used to properly format "<security level>: <level description>"
#: security/level.pm:70
#, c-format
msgid "%s: %s"
@@ -7056,17 +7055,17 @@ msgstr "Errusiar Federakundea"
msgid "Yugoslavia"
msgstr "Jugoslavia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Zuzena da?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Fitxategi bat hautatu duzu, ez direktorio bat"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Informazioa"
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index a69919f09..0a645394e 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-07-05 06:47+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Persian (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -26,12 +26,12 @@ msgstr ""
msgid "Please wait"
msgstr "لطفاً صبر کنید"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "نصب بارگذارآغازگر در پیشروی است"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -48,12 +48,12 @@ msgstr ""
"\n"
"شناسه‌ی جدید حجم گذارده شود؟ "
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "نصب بارگذار آغازگر شکست خورد. خطای بدنبال آمده رخ داد:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -68,218 +68,218 @@ msgstr ""
"\n"
"شما از روی کدام دستگاه آغازگری می‌کنید؟"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr ""
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "کجا می‌خواهید بارگذارآغازگر را نصب کنید؟"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "اولین بند گرداننده (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "اولین بند قسمت‌بندی ریشه"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "بر دیسکچه"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "پرش"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "پیکربندی سبک آغازگری"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "گزینه‌های اصلی بارگذارآغازگری"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "بارگذار آغازگر"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "بارگذارآغازگری برای استفاده"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "دستگاه آغازگری"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "تأخیر قبل از آغازگری تصویر پیش‌فرض"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "بکار انداختن ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr ""
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr ""
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "امنیت"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "گذرواژه"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "گذرواژه‌ها مطابقت نمی‌کنند"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "لطفاً دوباره امتحان کنید"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "گذرواژه (دوباره)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "تصویر"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "ریشه"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "پیوست به انتها"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "حالت ویدیوئی"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "نمایه‌ی شبکه"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "برچسب"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "پیش‌فرض"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "برچسب خالی اجازه داده نمی‌شود"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "تصویر هسته‌ایی را باید مشخص کنید"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "قسمت‌بندی ریشه‌ایی را باید مشخص کنید"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "این جدول از قبل مورد استفاده است"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "چه نوع از ورودیی را می‌خواهید اضافه کنید؟"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "لینوکس"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "سیستم عامل دیگر (ویندوز...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -288,194 +288,194 @@ msgstr ""
"اینها فعلاً ورودی‌های منوی آغازگری شما هستند.\n"
"می‌توانید ورودی‌های بیشتری را ایجاد کرده یا ورودی‌های موجود را تغییر دهید."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "دستیابی به برنامه‌های X"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "دستیابی به ابزارهای rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "اجازه دادن به \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "دستیابی به پرونده‌های مدیریت"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "دستیابی به ابزارهای شبکه"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "دستیابی به ابزارهای کمپایل کردن"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s از قبل اضافه شده است)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "لطفاً نام کاربریی را بدهید"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "نام کاربر بسیار طولانی است"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "این نام کاربر از قبل اضافه شده است"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "شناسه‌ی کاربر"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "شناسه‌ی گروه"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "تعیین گذرواژه‌ی مدیر"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "شمایل"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "نام واقعی"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "نام ثبت‌ورود"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "پوسته"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "لطفا صبر کنید، در حال افزودن رسانه..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "ثبت‌ورود خودکار"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "می‌توانم رایانه‌اتان را برای ثبت‌ورود خودکار یک کاربر برپاسازی کنم."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "انتخاب کردن کاربر پیش‌فرض:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "انتخاب کردن مدیر پنجره‌ی برای اجرا:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "یادداشتهای پخش"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "بستن"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "توافق‌نامه‌ی مجوز"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "ترک"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "پذیرش"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "امتناع"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "لطفاً زبان برای استفاده را انتخاب کنید"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -483,87 +483,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "ماندریبا لینوکس"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "همه‌ی زبان‌ها"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "گزینش زبان"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "کشور / منطقه"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "لطفاً کشور خود را انتخاب کنید"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "این لیست کامل کشورهای در دسترس می‌باشد"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "کشورهای دیگر"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "پیشرفته"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "روش درونداد:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "هيچکدام"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "بدون اشتراک"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "اجازه دادن به تمام کاربرها"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "سفارشی"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -578,7 +578,7 @@ msgstr ""
"\n"
"\"سفارشی\" اجازه‌ی هر-کاربر تکی را می‌دهد.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -586,7 +586,7 @@ msgid ""
msgstr ""
"NFS: سیستم سنتی اشتراک پرونده یونیکس، با پشتیبانی کمتر بر Mac و ویندوز."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -595,7 +595,7 @@ msgstr ""
"SMB: سیستم اشتراک پرونده که بوسیله ویندوز، Mac OS X و بسیاری از سیستم‌‌های "
"مدرن لینوکس استفاده می‌گردد."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -603,12 +603,12 @@ msgstr ""
"می‌توانید با استفاده از NFS یا SMB صادر کنید. لطفاً آن را که می‌خواهید استفاده "
"کنید را انتخاب کنید."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "راه‌اندازی userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -617,54 +617,54 @@ msgstr ""
"اشتراک هر-کاربر از گروه \"fileshare\" استفاده می‌کند. \n"
"برای افزودن کاربری به این گروه می‌توانید از userdrake استفاده کنید."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "باید ثبت خروج کرده و باز برگردید برای اینکه تغییرات تأثیر کنند"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "زمان منطقه‌ای"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "منطقه‌ی زمانی شما کدام است؟"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "کارگزار NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "هم‌گاه‌سازی خودکار زمان (با استفاده از NTP)"
@@ -995,7 +995,7 @@ msgid "Domain Admin Password"
msgstr "گذرواژه‌ی مدیریت دامنه"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1035,12 +1035,12 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "فضای کافی در شاخه‌ی /boot وجود ندارد"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "نمی‌توانید بارگذارآغازگر را بر یک قسمت‌بندی %s نصب کنید\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1049,7 +1049,7 @@ msgstr ""
"پیکربندی بارگذار آغازگر باید بروزسازی شود برای اینکه قسمت‌بندی شماره‌گذاری "
"مجدد گردیده است"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1058,7 +1058,7 @@ msgstr ""
"بارگذار آغازگر نمی‌تواند بدرستی نصب گردد. شما باید با گزینه‌ی نجات آغازگری "
"کرده و \"%s\" را انتخاب کنید"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "نصب-مجدد بارگذار آغازگر"
@@ -1088,17 +1088,23 @@ msgstr "گیگابایت"
msgid "TB"
msgstr "ترابایت"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d دقیقه"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "۱ دقیقه"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d ثانیه"
@@ -1118,27 +1124,27 @@ msgstr ""
"سوار\n"
" WebDAV هستید، \"جدید\" را انتخاب کنید."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "جدید"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "پیاده کردن"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "سوار کردن"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "کارگزار"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1146,25 +1152,25 @@ msgstr "کارگزار"
msgid "Mount point"
msgstr "نقطه‌ی سوارکردن"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "گزینه‌ها"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "برداشتن"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "انجام شد"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1180,17 +1186,17 @@ msgstr "انجام شد"
msgid "Error"
msgstr "خطا"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "لطفاً آدرس اینترنتی کارگزار WebDAV را وارد کنید"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "نشانی اینترنتی باید با http:// یا https:// شروع گردد"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1201,33 +1207,33 @@ msgstr "نشانی اینترنتی باید با http:// یا https:// شروع
msgid "Warning"
msgstr "هشدار"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr ""
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "کارگزار‌: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "نقطه‌ی سوارسازی: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "گزینه‌ها: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "قسمت‌بندی"
@@ -1258,9 +1264,9 @@ msgstr "خروج"
msgid "Continue"
msgstr "ادامه"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "راهنما"
@@ -1291,63 +1297,63 @@ msgstr "جزئیات"
msgid "No hard disk drives found"
msgstr "هیچ دیسک سختی یافت نشد"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "نامعلوم"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "حافظه‌ی مبادله"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "ویندوز"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "دیگری"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "خالی"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "انواع سیستم‌های پرونده:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr ""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "نخست از ``Unmount'' استفاده کنید"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr ""
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1396,7 +1402,7 @@ msgstr "ترک کردن بدون نوشتن جدول قسمت‌بندی؟"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "آیا می خواهید پیرایشگری‌های /etc/fstab را ذخیره کنید؟"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "برای تأثیر یافتن پیرایشگری جدول قسمت‌بندی احتیاج به آغازگری مجدد دارید"
@@ -1680,7 +1686,7 @@ msgid "Where do you want to mount %s?"
msgstr "در کجا می‌خواهید %s را سوار کنید؟"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "تغییر اندازه"
@@ -1727,7 +1733,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2162,8 +2168,8 @@ msgstr "تغییر نوع"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "لغو"
@@ -2255,7 +2261,7 @@ msgstr ""
"خطائی رخ داد - هیچ دستگاه معتبری یافت نشد که بر آن سیستم‌های پرونده ایجاد "
"گردد. لطفاً سخت‌افزار خود را برای یافتن علت این اشکال بررسی کنید."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "شما باید یک قسمت‌بندی ESP FAT32 سوار شده در /boot/EFI داشته باشید"
@@ -2463,7 +2469,7 @@ msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"فضای کافی حافظه‌ی مبادله برای تکمیل نصب وجود ندارد، لطفاً مقداری اضافه کنید"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2474,7 +2480,7 @@ msgstr ""
"برای این کار،یک قسمت‌بندی ایجاد کنید (یا روی یک قسمت‌بندی موجود کلیک کنید).\n"
"سپس ``نقطه‌ی سوارسازی'' را انتخاب کرده و آن را به `/' تغییر دهید"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2485,42 +2491,42 @@ msgstr ""
"\n"
"در هر حال ادامه می‌دهید؟"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "استفاده از فضای آزاد"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "فضای آزاد کافی برای جای دادن قسمت‌بندهای جدید وجود ندارد"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "استفاده از قسمت‌بندی‌های موجود"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "قسمت‌بندیی برای استفاده وجود ندارد"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "حساب کردن اندازه‌ی قسمت‌بندی ویندوز"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "کدام قسمت‌بندی را می‌خواهید تغییر اندازه دهید؟"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2528,12 +2534,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2569,76 +2575,76 @@ msgstr ""
"وقتی مطمئن شدید، %s را فشار دهید."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "بعدی"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr ""
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "چه اندازه‌ای را می‌خواهید برای ویندوز نگهدارید قسمت‌بندی %s؟"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "اندازه"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "تغییر اندازه‌ی قسمت‌بندی ویندوز"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "تغییر اندازه FAT شکست خورد: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"هیچ قسمت‌بندی FAT برای تغییر اندازه وجود ندارد (یا فضای کافی آزاد باقی نمانده)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "برداشتن Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr ""
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "همه‌ی قسمت‌بندی‌ها و داده‌های آنها بر دستگاه %s از دست خواهند رفت"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "قسمت‌بندی اختصاصی دیسک"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "استفاده از fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2647,43 +2653,43 @@ msgstr ""
"اکنون می‌توانید %s را قسمت‌بندی کنید.\n"
"وقتی آن را انجام دادید، فراموش نکنید که آن را با `w' ذخیره کنید"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr ""
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "نمی‌توانم هیچ فضائی را برای نصب پیدا کنم"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "جادوگر قسمت‌بندی درایک‌ایکس راه حل‌های بدنبال آمده را یافت:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "قسمت‌بندی ناموفق بود: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "نمی‌توانید از JFS برای قسمت‌بندی‌های کوچکتر از ۱۶ مگابایت استفاده کنید"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
"نمی‌توانید از ReiserFS برای قسمت‌بندی‌های کوچکتر از ۳۲ مگابایت استفاده کنید"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2727,22 +2733,22 @@ msgstr ""
"\n"
"آیا موافق به از دست دادن تمام قسمت‌بندی‌ها می‌باشید؟\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "نقاط سوارسازی باید با یک / شروع شوند"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "نقاط سوارسازی فقط باید حاوی نویسه‌های الفبا باشند"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "قسمت‌بندیی با نقطه‌ی سوارسازی %s از قبل وجود دارد\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2750,26 +2756,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2777,20 +2783,20 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"نمی‌توانید از سیستم پرونده‌ی رمزگذاری شده برای نقطه سوارسازی %s استفاده کنید"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2799,12 +2805,12 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "این شاخه باید درون سیستم پرونده‌ی ریشه باقی بماند"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2813,12 +2819,12 @@ msgstr ""
"شما به یک سیستم پرونده‌ی واقعی (ext2/3/4, reiserfs, xfs, یا jfs) برای این "
"نقطه سوارسازی احتیاج دارید\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "فضای آزاد کافی برای جاسازی-خودکار وجود ندارد"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "کاری برای انجام نیست"
@@ -2828,238 +2834,238 @@ msgstr "کاری برای انجام نیست"
msgid "SATA controllers"
msgstr "کنترل‌گر‌های SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "کنترل‌گر‌های RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "کنترل‌گر‌های (E)IDE/ATA "
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr ""
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "کنترل‌گر‌های Firewire "
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "کنترل‌گر‌های PCMCIA "
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "کنترل‌گر‌های SCSI "
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "کنترل‌گر‌های USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "درگاه‌های USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "کنترل‌گر‌های SMBus "
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "پل‌ها وکنترل‌گر‌های سیستم"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "دیسکچه"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "زیپ"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "دیسک"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "سی‌دی‌رم"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "نگارشگرهای سی‌دی/دی‌وی‌دی"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "دی‌وی‌دی-رم"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "نوار"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "کنترل‌گر‌های AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "کارت ویدیو"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "کارت‌تلویزیون"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "دیگر دستگاه‌های چندرسانه‌ای"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "کارت صوت"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "دوربین وب"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "پردازنده‌ها"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "سازوارگرهای ISDN "
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "کارت ایثرنت"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "مودم"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "سازوارگرهای ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "حافظه"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "چاپگر"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Joystick"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "صفحه‌کلید"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "موشی"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "پویشگر"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "ناشناس/دیگران"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3302,19 +3308,19 @@ msgstr "نوع گیرنده:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "تأیید"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "بله"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3345,22 +3351,22 @@ msgstr "پایان"
msgid "Previous"
msgstr "پیشین"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "هیچ پرونده‌ای انتخاب نشده است"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "شما یک شاخه را انتخاب کرده‌اید، نه یک پرونده را"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "چنین شاخه‌ای نیست"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "چنین پرونده‌ای نیست"
@@ -4642,7 +4648,7 @@ msgstr "زامبیا"
msgid "Zimbabwe"
msgstr "زیمبابوه"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "به %s خوش آمدید"
@@ -5241,10 +5247,10 @@ msgid "Allow direct root login."
msgstr ""
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
-msgstr ""
+"Allow the list of users on the system on display managers (kdm and gdm)."
+msgstr "فهرست کاربران بر مدیران نمایش (sddm and gdm)"
#: security/help.pm:35
#, c-format
@@ -5585,8 +5591,8 @@ msgid "Direct root login"
msgstr "ثبت‌ورود مستقیم مدیر"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "فهرست کاربران بر مدیران نمایش (sddm and gdm)"
#: security/l10n.pm:20
@@ -6761,17 +6767,17 @@ msgstr "فدراسیون روسیه"
msgid "Yugoslavia"
msgstr "یوگوسلاوی"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "آیا این درست است؟"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "شما پرونده‌ای را انتخاب کرده‌اید، نه یک شاخه را"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "اطلاعات"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index a3d22b601..85fdf340e 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -16,7 +16,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX-fi\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2011-08-08 22:43+0300\n"
"Last-Translator: Jani Välimaa <wally@mageia.org>\n"
"Language-Team: Finnish <mageia-i18n@mageia.org>\n"
@@ -26,7 +26,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -35,12 +35,12 @@ msgstr ""
msgid "Please wait"
msgstr "Odota hetki"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Käyttöjärjestelmän lataimen asennus käynnissä"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -58,12 +58,12 @@ msgstr ""
"\n"
"Määritetäänkö uusi Volume ID?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Käynnistyslataimen asennus epäonnistui. Tapahtui seuraava virhe:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -78,218 +78,218 @@ msgstr ""
"\n"
"Miltä kiintolevyltä käynnistys tapahtuu?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Käynnistyslataimen asennus"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Minne käyttöjärjestelmän latain asennetaan?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Kiintolevyn %s käynnistyssektorille (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Kiintolevyn käynnistyssektorille (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Juuriosion ensimmäiselle sektorille"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Levykkeelle"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Ohita"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Käynnistystavan asetukset"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Käynnistyslataimen asetukset"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Käynnistyslatain"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Käytettävä käynnistyslatain"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Käynnistyslaite"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Asetukset"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Viive ennen oletusjärjestelmän käynnistystä"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Ota ACPI käyttöön"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Ota moniprosessorituki käyttöön"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Ota APIC käyttöön"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Ota paikallinen APIC käyttöön"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Tietoturva"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Salasana"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Salasanat eivät täsmää"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Yritä uudelleen"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Et voi käyttää salasanaa %s kanssa"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Kuva"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Juuri"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Lisäys"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Xen-lisäys"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Käynnistys vaati salasanan"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Näyttötila"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Verkkoprofiili"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Nimi"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Oletus"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Tyhjää nimiä ei sallita"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Sinun täytyy määritellä ydin"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Sinun täytyy määritellä juuriosio"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Nimi on jo käytössä"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Minkä tyyppisen tietueen haluat lisätä?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Muu käyttöjärjestelmä (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Käynnistyslataimen asetukset"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -298,47 +298,47 @@ msgstr ""
"Tämän hetkiset käynnistysvalikon tietueet.\n"
"Voit lisätä uusia tai muuttaa olemassa olevia."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "Oikeudet X-ohjelmiin"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "Oikeudet RPM-työkaluihin"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "Salli \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "Oikeudet ylläpidollisiin tiedostoihin"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "Oikeudet verkkotyökaluihin"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "Oikeudet ohjelmointityökaluihin"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(lisätty jo: %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Anna käyttäjätunnus"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -346,148 +346,148 @@ msgid ""
msgstr ""
"Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita ja merkit - ja _"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Käyttäjätunnus on liian pitkä"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Käyttäjätunnus on jo olemassa"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Käyttäjän tunnistenumero (UID)"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Ryhmän tunnistenumero (GID)"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s pitää olla luku"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s pitäisi olla suurempi kuin 1000. Jatka silti?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Käyttäjien hallinta"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Aktivoi vierastili"
# Asennuksen sivuvalikko
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Aseta pääkäyttäjän (root) salasana"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Lisää käyttäjä"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Kuvake"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Oikea nimi"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Käyttäjätunnus"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Komentotulkki"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Odota, lisätään lähteitä..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automaattinen kirjautuminen"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Yksi käyttäjä voidaan asettaa kirjautumaan sisään automaattisesti."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Käytä automaattista kirjautumista"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Valitse oletuskäyttäjä:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Valitse käytettävä ikkunointijärjestelmä:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Julkaisutiedote"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Sulje"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Käyttöoikeussopimus"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Lopeta"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Hyväksy käyttöoikeussopimus?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Hyväksy"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Kieltäydy"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Valitse käytettävä kieli"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -498,89 +498,89 @@ msgstr ""
"kielet. Kielet ovat käytettävissä asennuksen ja koneen\n"
"uudelleenkäynnistämisen jälkeen."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Asenna useita kieliä"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Vanhempi ei-UTF-8-merkistö"
# Asennuksen sivuvalikko
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Kaikki kielet"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Kielivalinta"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Maa / alue"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Valitse maa, jossa olet"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Lista kaikista käytettävissä olevista maista"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Muut maat"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Lisäasetukset"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Syöttömenetelmä:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Ei mitään"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Ei jaettu"
# Asennuksen sivuvalikko
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Salli kaikille käyttäjille"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Mukautettu"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -595,7 +595,7 @@ msgstr ""
"\n"
"\"Mukautettu\" sallii käyttäjäkohtaiset oikeudet.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -604,7 +604,7 @@ msgstr ""
"NFS: perinteinen Unix-tiedostonjakojärjestelmä, jota Mac ja Windows tukevat "
"huonosti."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -613,7 +613,7 @@ msgstr ""
"SMB: tiedostonjakojärjestelmä, jota käyttävät Windows, Mac OS X ja monet "
"nykyaikaiset Linux-järjestelmät."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -621,12 +621,12 @@ msgstr ""
"Tiedostoja voidaan jakaa sekä NFS:llä että Samballa. Valitse kumpaa "
"käytetään."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Käynnistä Userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -635,7 +635,7 @@ msgstr ""
"Käyttäjäkohtainen jako käyttää ryhmää \"fileshare\".\n"
"Käyttäjä voidaan lisätä ryhmään Userdrake:n avulla."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -644,47 +644,47 @@ msgstr ""
"Muutosten ottaminen käyttöön vaatii uloskirjautumisen. Valitse OK "
"kirjautuaksesi ulos."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Muutosten ottaminen käyttöön vaatii uloskirjautumisen."
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Aikavyöhyke"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Valitse järjestelmän aikavyöhyke"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Päivämäärän, kellonajan ja aikavyöhykkeen asetukset"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Valitse aika, joka on lähimpänä oikeata aikaa"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (laitteistokello UTC-ajassa)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (laitteistokello paikallisessa ajassa)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP-palvelin"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automaattinen kellon tahdistus NTP:n avulla"
@@ -1036,7 +1036,7 @@ msgstr "Toimialueen pääkäyttäjän salasana"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1076,12 +1076,12 @@ msgstr "GRUB tekstipohjaisella valikolla"
msgid "not enough room in /boot"
msgstr "/boot-osiolla tai -hakemistossa ei ole tarpeeksi vapaata tilaa"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Käyttöjärjestelmän lataajaa ei voida asentaa osiolle %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1090,7 +1090,7 @@ msgstr ""
"Käynnistyslataimen asetukset pitää päivittää, koska levyosiot on numeroitu "
"uudelleen"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1100,7 +1100,7 @@ msgstr ""
"rescue-tilaan ja valita \"%s\""
# Asennuksen sivuvalikko
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Asenna käynnistyslatain uudelleen"
@@ -1130,17 +1130,23 @@ msgstr "Gt"
msgid "TB"
msgstr "Tt"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minuuttia"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minuutti"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d sekuntia"
@@ -1159,27 +1165,27 @@ msgstr ""
"että WWW-palvelimeen on asennettu WebDAV-tuki). Jos haluat lisätä WebDAV\n"
"-liitoskohdan, valitse \"Uusi\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Uusi"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Irrota"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Liitä"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Palvelin"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1187,25 +1193,25 @@ msgstr "Palvelin"
msgid "Mount point"
msgstr "Liitospiste"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Valinnat"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Poista"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Valmis"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1221,17 +1227,17 @@ msgstr "Valmis"
msgid "Error"
msgstr "Virhe"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Anna WebDAV-palvelimen osoite (URL)"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Osoitteen tulee alkaa etuliitteellä http:// tai https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1242,33 +1248,33 @@ msgstr "Osoitteen tulee alkaa etuliitteellä http:// tai https://"
msgid "Warning"
msgstr "Varoitus"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Haluatko varmasti poistaa liitospisteen?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Palvelin: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Liitospiste: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Vaihtoehdot: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Osiointi"
@@ -1301,9 +1307,9 @@ msgstr "Poistu"
msgid "Continue"
msgstr "Jatka"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Ohje"
@@ -1334,63 +1340,63 @@ msgstr "Yksityiskohdat"
msgid "No hard disk drives found"
msgstr "Yhtään kiintolevyä ei löytynyt"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Tuntematon"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Sivutus"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Muut"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Tyhjä"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Tiedostojärjestelmät:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Osio on jo tyhjä"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Käytä ensin komentoa \"Irrota\""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Käytä sen sijaan sovellusta %s (asiantuntijatilassa)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1439,7 +1445,7 @@ msgstr "Lopeta kirjoittamatta osiotaulua?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Tallennetaanko muutokset tiedostoon /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1726,7 +1732,7 @@ msgid "Where do you want to mount %s?"
msgstr "Minne laite %s liitetään?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Muutetaan kokoa"
@@ -1772,7 +1778,7 @@ msgstr "Minimikoko: %s Mt"
msgid "Maximum size: %s MB"
msgstr "Maksimikoko: %s Mt"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2222,8 +2228,8 @@ msgstr "Muuta tyyppiä"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Peruuta"
@@ -2313,7 +2319,7 @@ msgstr ""
"Tapahtui virhe - ei löytynyt yhtään laitetta, jolle voisi luoda uuden "
"tiedostojärjestelmän. Tarkista laitteisto ongelman varalta."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Hakemistoon /boot/EFI tulee olla liitettynä ESP FAT32-osio"
@@ -2527,7 +2533,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Sivutustilaa ei ole riittävästi, suurenna sitä"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2538,7 +2544,7 @@ msgstr ""
"Luo osio sitä varten (tai napsauta olemassa olevaa),\n"
"valitse \"Liitospiste\" ja aseta sille arvoksi \"/\"."
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2549,42 +2555,42 @@ msgstr ""
"\n"
"Jatka joka tapauksessa?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Käytä tyhjää tilaa"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Tilaa ei ole tarpeeksi uusien osioiden luomiseksi"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Käytä olemassa olevia osioita"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Ei olemassa olevaa osiota käytettäväksi"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Lasketaan Microsoft Windows®-osion kokoa"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Käytä Microsoft Windows®-osion tyhjää tilaa"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Valitse osio, jonka kokoa muutetaan"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2595,12 +2601,12 @@ msgstr ""
"Windowsiin ja suorita \"Levyn eheytys\" ja aloita %sin asennus sen jälkeen "
"uudestaan."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2637,55 +2643,55 @@ msgstr ""
"Kun olet varma, paina %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Seuraava"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Osiointi"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Kuinka paljon Microsoft Windows®:lle jätetään tilaa osiolle %s?"
# mat
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Koko"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Muutetaan Microsoft Windows®-osion kokoa"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-tiedostojärjestelmän koon muuttaminen epäonnistui: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Muutettavaa FAT-osiota ei löydy (tai osiolla ei ole tarpeeksi vapaata tilaa)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Poista Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Tyhjennä ja käytä koko levy"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2695,23 +2701,23 @@ msgstr ""
"Linux asennetaan."
# mat
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"KAIKKI olemassa olevat osiot ja niissä olevat tiedot tuhoutuvat levyltä %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Mukautettu levyn osiointi"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Käytä fdisk:iä"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2720,43 +2726,43 @@ msgstr ""
"Kiintolevy %s voidaan nyt osioida.\n"
"Älä unohda tallentaa asetuksia näppäimellä \"w\"."
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Asennukselle ei löydy tarpeeksi vapaata tilaa"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Osiointivelho löysi seuraavat vaihtoehdot:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Kiintolevyn sisältö"
# mat
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Osiointi epäonnistui: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "JFS-tiedostojärjestelmää ei voida käyttää alle 16 Mt osioilla"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS-tiedostojärjestelmää ei voida käyttää alle 32 Mt osioilla"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "JFS-tiedostojärjestelmää ei voida käyttää alle 16 Mt osioilla"
@@ -2799,23 +2805,23 @@ msgstr ""
"\n"
"Poistetaanko kaikki virheelliset osiot?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Liitospisteiden tulee alkaa /-merkillä."
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Liitospisteet saavat sisältää vain kirjaimia ja numeroita"
# mat
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "On jo olemassa osio, jonka liitospiste on %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2826,7 +2832,7 @@ msgstr ""
"Käynnistyslataimet eivät osaa käsitellä tätä ilman /boot-osiota.\n"
"Muista luoda erillinen /boot-osio."
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2835,7 +2841,7 @@ msgstr ""
"Metadatan versio ei ole tuettu käynnistysosioksi. Muista luoda erillinen /"
"boot-osio."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2844,12 +2850,12 @@ msgstr ""
"Ohjelmallinen RAID-osio on valittu /boot osioksi.\n"
"Käynnistyslataimet eivät osaa käsitellä tätä."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Metadatan versio ei ole tuettu käynnistysosioksi."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2860,12 +2866,12 @@ msgstr ""
"osaa käsitellä salattua juuriosiota ilman /boot-osiota.\n"
"Muista luoda erillinen /boot-osio."
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Salattua tiedostojärjestelmää ei voi käyttää liitospisteelle %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2874,7 +2880,7 @@ msgstr ""
"LVM:n loogista taltiota ei voi käyttää liitospisteessä %s, koska se ylittää "
"fyysiset taltiot"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2887,12 +2893,12 @@ msgstr ""
"fyysiselle levylle.\n"
"Erillinen /boot-osio tulisi luoda."
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Tämän hakemiston pitäisi olla juuritiedostojärjestelmässä"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2901,12 +2907,12 @@ msgstr ""
"Tarvotaan \"oikea\" tiedostojärjestelmä (ext2/ext3/ext4, ReiserFS, XFS tai "
"JFS) tälle liitospisteelle.\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Vapaa tila ei riitä automaattiseen varaukseen"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Ei suoritettavia toimenpiteitä"
@@ -2916,238 +2922,238 @@ msgstr "Ei suoritettavia toimenpiteitä"
msgid "SATA controllers"
msgstr "SATA-ohjaimet"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID-ohjaimet"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA-ohjaimet"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Kortinlukijat"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "FireWire-ohjaimet"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-ohjaimet"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-ohjaimet"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB-ohjaimet"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB-portit"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-ohjaimet"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Sillat ja järjestelmäohjaimet"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Levyke"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Kiintolevy"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB-massamuistit"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CD-ROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Polttavat CD/DVD-asemat"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Nauha"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP-näytönohjaimet"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Näytönohjain"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Digi-TV-kortti"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV-kortti"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Muut multimedialaitteet"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Äänikortti"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Web-kamera"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Prosessorit"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN-sovittimet"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "USB-äänikortit"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Radiokortit"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "ATM-verkkokortit"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "WAN-verkkokortit"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth-laitteet"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Verkkokortti"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modeemi"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL-sovittimet"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Muisti"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Tulostin"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Peliportin ohjain"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Peliohjain"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Näppäimistö"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Kosketusnäytöt"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Hiiri"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometria"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Kuvanlukija"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Tuntematon/Muut"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "CPU # "
@@ -3398,19 +3404,19 @@ msgstr "Vastaanottimen tyyppi:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "OK"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Kyllä"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3441,22 +3447,22 @@ msgstr "Valmis"
msgid "Previous"
msgstr "Edellinen"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Tiedostoa ei valittu"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Valittiin hakemisto, ei tiedostoa"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Hakemistoa ei ole olemassa"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Tiedostoa ei ole olemassa"
@@ -4739,7 +4745,7 @@ msgid "Zimbabwe"
msgstr "Zimbabwe"
# mat
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Tervetuloa %s:n"
@@ -5503,9 +5509,9 @@ msgid "Allow direct root login."
msgstr "Salli pääkäyttäjän kirjautuminen paikallisesti."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr "Salli käyttäjien listaus kirjautumisikkunassa (SDDM ja GDM)."
#: security/help.pm:35
@@ -5880,8 +5886,8 @@ msgid "Direct root login"
msgstr "Salli pääkäyttäjän paikallinen kirjautuminen."
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Näytä lista käyttäjistä näytönhallinnassa (SDDM ja GDM)."
#: security/l10n.pm:20
@@ -7108,17 +7114,17 @@ msgstr "Venäjä"
msgid "Yugoslavia"
msgstr "Jugoslavia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Onko tämä oikein?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Valittiin tiedosto, ei hakemistoa."
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Tietoja"
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index 02052f7e3..9dfe5259f 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -14,7 +14,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-04-13 17:22+0000\n"
"Last-Translator: Eric Barbero <dune06@free.fr>\n"
"Language-Team: French (http://www.transifex.com/projects/p/mageia/language/"
@@ -25,7 +25,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -34,12 +34,12 @@ msgstr ""
msgid "Please wait"
msgstr "Veuillez patienter"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation du programme d'amorçage en cours"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -57,13 +57,13 @@ msgstr ""
"\n"
"Voulez-vous assigner un nouvel identifiant de volume ?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"L'installation du programme d'amorçage a échoué pour la raison suivante :"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -78,218 +78,218 @@ msgstr ""
"\n"
"Sur quel disque amorcez-vous ?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Installation du programme d'amorçage"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Où désirez-vous installer le programme d'amorçage ?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Premier secteur (MBR) du disque %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Premier secteur du disque (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Premier secteur de la partition racine"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Sur disquette"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Passer"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuration du style de démarrage"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Principales options du programme d'amorçage"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Programme d'amorçage"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Programme d'amorçage à utiliser"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Périphérique d'amorçage"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Options principales"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Délai avant l'activation du choix par défaut"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Activer l'ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Activer le SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Activer l'APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Activer l'APIC local"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sécurité"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Mot de passe"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Les mots de passe ne sont pas identiques"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Veuillez réessayer"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Vous ne pouvez pas utiliser de mot de passe avec %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Mot de passe (vérification)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Partition racine"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Options passées au noyau"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Options Xen passées au noyau"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Nécessite un mot de passe pour le démarrage"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Mode vidéo"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Fichier RamDisk"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Profil réseau"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Choix par défaut"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Un label vide n'est pas autorisé"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Vous devez spécifier l'image noyau désirée"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Vous devez spécifier une partition racine"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Ce label est déjà utilisé"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Quel type de système souhaitez-vous ajouter ?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Autre système (Windows, etc.)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuration du programme d'amorçage"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -298,47 +298,47 @@ msgstr ""
"Voici les différentes entrées.\n"
"Vous pouvez en ajouter de nouvelles ou modifier les entrées existantes."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "accès aux programmes graphiques"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "accès aux outils rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "autoriser « su »"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "accès aux fichiers d'administration"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "accès aux outils réseaux"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "accès aux outils de compilation"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "Utilisateur(s) existant(s) : %s"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Veuillez taper un nom d'utilisateur"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -347,147 +347,147 @@ msgstr ""
"Le nom d'utilisateur doit commencer par une minuscule suivie seulement de "
"minuscules, de nombres, de « - » et « _ »"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Ce nom d'utilisateur est trop long"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Ce nom d'utilisateur est déjà utilisé"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Identifiant de l'utilisateur"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Identifiant du groupe"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s doit être un nombre"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s devrait être supérieur ou égal à 1000. Accepter quand même ?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Gestion des utilisateurs"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Activer le compte Invité"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Définissez le mot de passe administrateur (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Tapez un nom d'utilisateur"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Icône"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Nom et prénom"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Identifiant de connexion"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Interpréteur"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Veuillez patienter, ajout du média…"
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Connexion automatique"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Connexion automatique d'un utilisateur au démarrage."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Utiliser cette fonctionnalité"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Choisissez l'utilisateur par défaut :"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Choisissez l'environnement graphique :"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Notes de version"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Fermer"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Licence"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Quitter"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Acceptez-vous cette licence ?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Accepter"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Refuser"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Choisissez la langue à utiliser"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -498,87 +498,87 @@ msgstr ""
"les langages que vous souhaitez installer. Ils seront disponibles\n"
"quand votre installation sera terminée et que vous aurez redémarré."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Multilingue"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Sélectionner des langues supplémentaires"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Compatibilité encodage ancien (non UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Toutes les langues"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Choix de la langue"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Pays / Région"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Veuillez choisir votre pays"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Voici la liste complète des pays disponibles"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Autres Pays"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avancé"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Méthode d'entrée :"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Aucun"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Pas de partage"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Autoriser tous les utilisateurs"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personnalisé"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -594,7 +594,7 @@ msgstr ""
"\n"
"« Personnalisée » permet d'autoriser le partage pour certains utilisateurs.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -603,7 +603,7 @@ msgstr ""
"NFS : le système de partage de fichiers traditionnel d'UNIX, moins supporté "
"sur les systèmes Mac et Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -612,19 +612,19 @@ msgstr ""
"SMB : un système de partage de fichiers utilisé par Windows, Mac OS X et de "
"nombreux systèmes Linux modernes."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Souhaitez-vous partager par NFS (protocole Unix) ou SMB (protocole Windows) ?"
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Lancer Userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -634,7 +634,7 @@ msgstr ""
"cet utilisateur dans le groupe « fileshare ».\n"
"Ceci peut se faire grâce au programme « Userdrake »."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -644,49 +644,49 @@ msgstr ""
"les changements en considération. Cliquez sur « OK » pour vous déconnecter "
"maintenant."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Vous devez vous déconnecter puis vous connecter à nouveau afin de prendre "
"les changements en considération"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Fuseau horaire"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Quel est votre fuseau horaire ?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Réglages de la date, de l'heure et du fuseau horaire"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Quelle est l'heure correcte ?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (horloge système réglée sur le temps universel - UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (horloge système réglée sur l'heure locale)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Serveur NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Synchronisation automatique de l'horloge (via NTP)"
@@ -1026,7 +1026,7 @@ msgid "Domain Admin Password"
msgstr "Mot de passe de l'administrateur du domaine"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1066,13 +1066,13 @@ msgstr "GRUB en mode texte"
msgid "not enough room in /boot"
msgstr "il n'y a pas assez de place dans le dossier /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
"Vous ne pouvez pas installer le chargeur d'amorçage sur une partition %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1081,7 +1081,7 @@ msgstr ""
"La configuration de votre programme d'amorçage doit être mise à jour car les "
"partitions ont été renumérotées"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1090,7 +1090,7 @@ msgstr ""
"Le chargeur d'amorçage ne peut pas être installé correctement. Vous devez "
"redémarrer en mode secours et choisir « %s »"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Réinstaller le programme d'amorçage"
@@ -1120,17 +1120,23 @@ msgstr "Gio"
msgid "TB"
msgstr "Tio"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minutes"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minute"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d secondes"
@@ -1150,27 +1156,27 @@ msgstr ""
"ajouter\n"
"des points de montage WebDAV, choisissez « Nouveau »."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nouveau"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Démonter"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Monter"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Serveur"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1178,25 +1184,25 @@ msgstr "Serveur"
msgid "Mount point"
msgstr "Point de montage"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Options"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Enlever"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Terminé"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1212,17 +1218,17 @@ msgstr "Terminé"
msgid "Error"
msgstr "Erreur"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Entrez l'adresse du serveur WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "L'URL doit commencer par http:// ou https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1233,33 +1239,33 @@ msgstr "L'URL doit commencer par http:// ou https://"
msgid "Warning"
msgstr "Attention"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Êtes-vous sûr de vouloir effacer ce point de montage ?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Serveur : "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Point de montage : "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Options : %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Partitionnement"
@@ -1294,9 +1300,9 @@ msgstr "Quitter"
msgid "Continue"
msgstr "Continuer"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Aide"
@@ -1327,63 +1333,63 @@ msgstr "Détails"
msgid "No hard disk drives found"
msgstr "Aucun disque dur trouvé"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Inconnu"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Autre"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Vide"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Types des systèmes de fichiers :"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Cette partition est déjà vide"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Cliquez d'abord sur « Démonter »"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Utilisez plutôt « %s » (en mode expert)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1432,7 +1438,7 @@ msgstr "Désirez-vous réellement quitter sans écrire la table des partitions 
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Désirez vous enregistrer les modifications dans /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1720,7 +1726,7 @@ msgid "Where do you want to mount %s?"
msgstr "Où désirez-vous monter %s ?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Redimensionnement"
@@ -1767,7 +1773,7 @@ msgstr "Taille minimale : %s Mio"
msgid "Maximum size: %s MB"
msgstr "Taille maximale : %s Mio"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2218,8 +2224,8 @@ msgstr "Changer le type"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Annuler"
@@ -2313,7 +2319,7 @@ msgstr ""
"Une erreur est survenue : aucun périphérique valide n'a été trouvé pour\n"
"créer de nouvelles partitions. Veuillez vérifier votre matériel."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Vous devez disposer d'une partition ESP FAT32 montée en /boot/EFI"
@@ -2532,7 +2538,7 @@ msgstr ""
"La partition d'échange (swap) est insuffisante pour achever l'installation, "
"veuillez en ajouter."
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2543,7 +2549,7 @@ msgstr ""
"Pour cela, créez une partition (ou cliquez sur une existante).\n"
"Puis choisissez « Point de montage » et sélectionnez « / »"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2554,42 +2560,42 @@ msgstr ""
"\n"
"Continuer malgré tout ?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Utiliser l'espace disponible"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Pas assez d'espace libre pour créer de nouvelles partitions"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Utiliser les partitions existantes"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Il n'y a pas de partition existante à utiliser"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Calcul de la taille de la partition Microsoft Windows® en cours"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Utiliser l'espace libre sur une partition Microsoft Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Quelle partition souhaitez-vous redimensionner ?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2600,12 +2606,12 @@ msgstr ""
"l'ordinateur sous Microsoft Windows®, lancez l'utilitaire "
"« defragmentation », puis redémarrez l'installation de %s."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr "Impossible de trouver la partition à redimensionner (%d choix)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2641,56 +2647,56 @@ msgstr ""
"Si vous êtes sûr de vous, cliquez sur %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Suivant"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Partitionnement"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Quelle taille désirez-vous allouer à Microsoft Windows® sur la partition %s ?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Taille"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Redimensionnement de la partition Microsoft Windows® en cours"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Erreur lors du redimensionnement de la partition FAT : %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Il n'y a aucune partition FAT à redimensionner (ou trop peu d'espace est "
"disponible)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Enlever Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Effacer et utiliser le disque tout entier"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2699,24 +2705,24 @@ msgstr ""
"Vous avez plusieurs disques durs, lequel choisissez vous pour "
"l'installation ?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"TOUTES les partitions existantes et toutes les données présentes sur\n"
"le disque %s seront perdues"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Partitionnement de disque personnalisé"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Utiliser fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2727,44 +2733,44 @@ msgstr ""
"Lorsque vous aurez terminé, n'oubliez pas d'enregistrer vos\n"
"modifications en appuyant sur la touche « w »."
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Pas de place pour l'installation"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "L'assistant de partitionnement a trouvé les solutions suivantes :"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Voici le contenu de votre disque "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Échec du partitionnement : %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
"Vous ne pouvez pas utiliser JFS pour des partitions inférieures à 16Mio"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Vous ne pouvez pas utiliser ReiserFS pour des partitions inférieures à 32Mio"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2812,24 +2818,24 @@ msgstr ""
"\n"
"Etes vous d'accord pour perdre toutes les partitions ?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Les points de montage doivent commencer par /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
"Les points de montage doivent contenir uniquement des caractères "
"alphanumériques"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Le point de montage %s est déjà utilisé\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2841,7 +2847,7 @@ msgstr ""
"boot.\n"
"Veuillez ajouter une partition /boot séparée"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2850,7 +2856,7 @@ msgstr ""
"Version des méta-données non supportée pour une partition d'amorçage. "
"Veuillez ajouter une partition /boot séparée"
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2859,12 +2865,12 @@ msgstr ""
"Vous avez sélectionné une partition RAID logiciel comme /boot.\n"
"Aucun chargeur de démarrage ne peut le prendre en charge."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Version des méta-données non supportée pour une partition d'amorçage."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2876,14 +2882,14 @@ msgstr ""
"boot.\n"
"Veuillez ajouter une partition /boot séparée"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Vous ne pouvez pas utiliser un système de fichiers crypté comme point de "
"montage %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2892,7 +2898,7 @@ msgstr ""
"Vous ne pouvez pas utiliser le volume logique (Logical Volume) LVM comme "
"point de montage %s car il recouvre des volumes physiques"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2905,12 +2911,12 @@ msgstr ""
"recouvre des volumes physiques.\n"
"Veuillez d'abord ajouter une partition /boot séparée"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ce dossier doit rester dans la partition racine"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2919,12 +2925,12 @@ msgstr ""
"Vous avez besoin d'un vrai système de fichiers (ext2/3/4, reiserfs, xfs, ou "
"jfs) pour ce point de montage\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Pas assez d'espace libre pour le partitionnement automatique"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Rien à faire"
@@ -2934,238 +2940,238 @@ msgstr "Rien à faire"
msgid "SATA controllers"
msgstr "Contrôleurs SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "Contrôleurs RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Contrôleurs (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Lecteurs de carte"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Contrôleurs Firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Contrôleurs PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Contrôleurs SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Contrôleurs USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Ports USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Contrôleurs SMB"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Ponts et contrôleurs système"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Lecteurs de disquette"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Lecteurs Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Disques"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Périphériques de stockage de masse USB"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CD-ROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Graveurs CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Bande"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Contrôleurs AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Carte vidéo"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Carte DVB"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Carte TV"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Autres périphériques multimédia"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Carte son"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Processeurs"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Cartes RNIS"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Périphériques audio USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Cartes radio"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Cartes réseau ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Cartes réseau WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Périphériques Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Carte Ethernet"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Modems ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Mémoire"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Imprimante"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Contrôleurs manette de jeu"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Manette de jeu"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Clavier"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablettes et écrans tactiles"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Souris"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biométrie"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "Alimentation sans interruption (UPS)"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Scanner"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Inconnus/Autres"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "processeur n°"
@@ -3474,19 +3480,19 @@ msgstr "Type de tuner :"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Ok"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Oui"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3517,22 +3523,22 @@ msgstr "Terminer"
msgid "Previous"
msgstr "Précédent"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Aucun fichier choisi"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Vous devez spécifier un fichier, pas un répertoire"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Aucun répertoire de ce nom"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Aucun fichier de ce nom"
@@ -4814,7 +4820,7 @@ msgstr "Zambie"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenue sur %s"
@@ -5460,9 +5466,9 @@ msgid "Allow direct root login."
msgstr "Permettre la connexion directe en tant que root."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Permettre la liste des utilisateurs du système sur les gestionnaires de "
"connexion (sddm et gdm)."
@@ -5849,8 +5855,8 @@ msgid "Direct root login"
msgstr "Connexion root directe"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
"Lister les utilisateurs dans les gestionnaires de connexion (sddm et gdm)"
@@ -7122,17 +7128,17 @@ msgstr "Fédération russe"
msgid "Yugoslavia"
msgstr "Yougoslavie"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Est-ce correct ?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Vous devez spécifier un fichier, pas un répertoire"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Information"
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index dc6ba2e67..ca898ee0e 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2004-06-28 17:41+0200\n"
"Last-Translator: Andrea Gracco <graccoandrea@tin.it>\n"
"Language-Team: furlan <gft@freelists.org>\n"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -24,12 +24,12 @@ msgstr ""
msgid "Please wait"
msgstr "Par plasè, spiete"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr ""
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -40,12 +40,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -55,414 +55,414 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Instalazion LILO/grub"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: any.pm:351
+#: any.pm:355
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Prin setôr dal disc (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prin setôr dal disc (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Prin setôr de partizion lidrie"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Su dischet"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Salte"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Configurazion dal stîl di inviament"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr ""
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr ""
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr ""
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Dispositîf di inviament"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Ritart prin di inviâ le imagjin predefinide"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Abilite ACPI"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Abilite ACPI"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Abilite ACPI"
-#: any.pm:418
+#: any.pm:422
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Abilite ACPI"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sigurece"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Password"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Le password no corispuint"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Par plasè torne a provâ"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Password (ancjemò)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Imagjin"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Lidrie"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Modalitât video"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, fuzzy, c-format
msgid "Network profile"
msgstr "Gnûf profîl..."
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etichete"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predefinît"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Etichete vueide no permitude"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Tu âs di specificâ une imagjin kernel"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Tu âs di specificâ une partizion lidrie"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Le etichete e je dizà in vore"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Cuâle sorte di vôs vuelistu zontâ?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, fuzzy, c-format
msgid "Other OS (Windows...)"
msgstr "Altri sisteme operatîf (windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Configurazion dal stîl di inviament"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "acès ai programs X"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "acès ai imprescj rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "permèt \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "acès ai file di aministrazion"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "acès ai imprescj di rêt"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "acès ai imprescj di compilazion"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(dizà zontât %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Par plasè, insede un non utent"
-#: any.pm:830
+#: any.pm:875
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Il non utent al à di vê dome letaris minusculis, numars , `-' e `_'"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Il non utent al è masse lunc"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Il non utent al è stât dizà zontât"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID Utent"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID Grop"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "Non utent"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Insede un utent\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Icone"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Non reâl"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Par plasè spiete, atualizazion des fonts in vore..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Acès automatic"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "O pues impostâ il to computer par fâ acedi automatichementri un utent."
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Vuelistu doprâ cheste fature?"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Sielç un utent predefinît:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Sielç il gjestôr grafic di doprâ:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Par plasè sielç"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Siere"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Jessî"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr ""
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr ""
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Par plasè sielç une lenghe di doprâ"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -470,87 +470,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Dutis les lenghis"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Dutis les lenghis"
-#: any.pm:1142
+#: any.pm:1187
#, fuzzy, c-format
msgid "Language choice"
msgstr "Lenghis"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Nazion / Regjon"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Par plasè sielç le to nazion"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Cheste e je le liste complete di dutis les nazions disponibilis"
-#: any.pm:1200
+#: any.pm:1245
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Un altri"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr ""
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Nissun"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Nissune condivision"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permet ducj i utents"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalizât"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -560,86 +560,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Invie userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr ""
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr ""
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Server NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -962,7 +962,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -997,26 +997,26 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "no son a vonde stanziis in /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1046,17 +1046,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minûts"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minût"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d seconts"
@@ -1070,27 +1076,27 @@ msgid ""
"points, select \"New\"."
msgstr ""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Gnûf"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Dismonte"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Monte"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Server"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1098,25 +1104,25 @@ msgstr "Server"
msgid "Mount point"
msgstr "Pont di mount"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opzions"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Rimôf"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fat"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1132,17 +1138,17 @@ msgstr "Fat"
msgid "Error"
msgstr "Fal"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Par plasè insede il recapit dal server WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1153,33 +1159,33 @@ msgstr ""
msgid "Warning"
msgstr "Avertence"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr ""
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Pont di mount: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Opzions: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr ""
@@ -1210,9 +1216,9 @@ msgstr "Jessì"
msgid "Continue"
msgstr "Continue"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Jutori"
@@ -1240,63 +1246,63 @@ msgstr ""
msgid "No hard disk drives found"
msgstr ""
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr ""
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "Jessì"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Altri"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Vueit"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Sorte di filesystem:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "No rivi a cambiâ le dimension di cheste dimension"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Dopre ``Unmount'' prin"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Dopre ``%s''invezit"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1345,7 +1351,7 @@ msgstr "Jessî cence scrivi te tabele des partizions?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Vuelistu salvâ les modifichis a /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1623,7 +1629,7 @@ msgid "Where do you want to mount %s?"
msgstr "Dulà vuelistu montâ %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "O cambii le dimension"
@@ -1669,7 +1675,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2096,8 +2102,8 @@ msgstr ""
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Scancele"
@@ -2187,7 +2193,7 @@ msgid ""
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr ""
@@ -2381,7 +2387,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2389,7 +2395,7 @@ msgid ""
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2397,42 +2403,42 @@ msgid ""
"Continue anyway?"
msgstr ""
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, fuzzy, c-format
msgid "Use free space"
msgstr "Dopre par loopback"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, fuzzy, c-format
msgid "Use existing partitions"
msgstr "Sielç une partizion"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, fuzzy, c-format
msgid "There is no existing partition to use"
msgstr "O cîr di recuperâ le tabele des partizions"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, fuzzy, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Prin setôr de partizion lidrie"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Prin setôr de partizion lidrie"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, fuzzy, c-format
msgid "Which partition do you want to resize?"
msgstr "Ce âstu voe di fâ?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2440,12 +2446,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2466,118 +2472,118 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Prossim"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Sorte di tabele des partizions: %s\n"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Prin setôr de partizion lidrie"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Dimension"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr ""
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Rimôf Windows™"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr ""
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, fuzzy, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Dopo vê cambiât le dimension %s, ducj i dâts de partizion e vignaran pierdûts"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, fuzzy, c-format
msgid "Custom disk partitioning"
msgstr "Sielç une partizion"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, fuzzy, c-format
msgid "Use fdisk"
msgstr "ID Utent"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Jessì"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, fuzzy, c-format
msgid "I cannot find any room for installing"
msgstr "No rivi a zontâ altris partizions"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, fuzzy, c-format
msgid "Partitioning failed: %s"
msgstr "Sorte di tabele des partizions: %s\n"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2614,22 +2620,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2637,26 +2643,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2664,19 +2670,19 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2685,24 +2691,24 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nuie ce fâ"
@@ -2712,238 +2718,238 @@ msgstr "Nuie ce fâ"
msgid "SATA controllers"
msgstr ""
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr ""
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr ""
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr ""
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr ""
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr ""
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr ""
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr ""
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr ""
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr ""
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr ""
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Floppy"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr ""
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr ""
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr ""
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr ""
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr ""
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr ""
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr ""
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr ""
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr ""
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr ""
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr ""
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr ""
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr ""
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr ""
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr ""
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, fuzzy, c-format
msgid "Memory"
msgstr "Di plui"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr ""
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr ""
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Tastiere"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Surie"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr ""
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr ""
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr ""
@@ -3165,19 +3171,19 @@ msgstr ""
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Va ben"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Si"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3208,22 +3214,22 @@ msgstr "Finìs"
msgid "Previous"
msgstr "Precedent"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, fuzzy, c-format
msgid "No file chosen"
msgstr "Nissune icone"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Cartele Home no disponibile."
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such directory"
msgstr "Cartele locâl"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such file"
msgstr "File locâi"
@@ -4498,7 +4504,7 @@ msgstr "Zambie"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Benvignût su %s"
@@ -5017,7 +5023,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5333,7 +5339,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6361,17 +6367,17 @@ msgstr "Federazion Russe"
msgid "Yugoslavia"
msgstr "Jugoslavie"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr ""
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr ""
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index a7d250251..e7a438ad7 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-09-12 18:04+0200\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Irish <ga@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -22,12 +22,12 @@ msgstr ""
msgid "Please wait"
msgstr "Fan tamall"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Tá an clár dúisithe á shuiteáil"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -38,12 +38,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -53,416 +53,416 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Tá an clár dúisithe á shuiteáil"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr ""
-#: any.pm:355
+#: any.pm:359
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Níl aon ranna agat!"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Ar dhiosca flapach"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Scipeáil"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Cumraíocht Stíl Tosnú"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Príomhroghanna bootáil"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Clár dúisithe"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Ríomhchlar Tosnaithe a úsáid "
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Gaireas bootáil"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr ""
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Cumasaigh ACPI"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Cumasaigh ACPI"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Cumasaigh ACPI"
-#: any.pm:418
+#: any.pm:422
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Cumasaigh ACPI"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Slándáil"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasfhocal"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Ní mar a chéile na pasfhocail"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Aththrialaigh"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasfhocal (arís)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Iomha"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Mód fís"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Próifíl líonra"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Lipéad"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Gnáth"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Níl ceadaigh an lipéad folamh ann"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Is gá íomhá eithne a shonrú"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Ní mór rann fréamhach"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Cén sort iontráil a suimigh do?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "CO Eile (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Cumraíocht Stíl Tosnú"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr ""
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr ""
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Tá an ainm úsáideora ró-fhada"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID Úsáideoir"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID Grupa"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "Ainm úsáideora"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Socraigh pasfhocal root"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Dealbh"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Fíor ainm"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Ainm logála isteach:"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Blaosc"
-#: any.pm:925
+#: any.pm:970
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr ""
"Fan tamall\n"
"Checking dependencies"
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Uath-Logann"
-#: any.pm:959
+#: any.pm:1004
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "An mian leat an gné seo a úsáid?"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Roghnagih an úsáidoer gneás:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Roghnaigh an Bainistéoir Fhuinneoga a úsásd:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Fan tamall"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Dún"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Ceadúnas"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Éalaigh"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "An bhfuil ceann eile agat?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Aontaigh"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Tarrtháil"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Roghnaigh teanga le húsáid, le do thoil"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -470,87 +470,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Gach teanga"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Gach teanga"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Rogha teanga"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Tír / Réigiún"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Roghnaigh do thír, le do thoil"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1200
+#: any.pm:1245
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Eile"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Réamhioaíocht"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Neamhní"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Gan roinnt"
-#: any.pm:1294
+#: any.pm:1339
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Suimigh úsáideoir"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Socraithe"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -560,86 +560,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Am Críos"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Cén ceann do chrois ama?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: any.pm:1528
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Freastalaí NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -962,7 +962,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -997,26 +997,26 @@ msgstr ""
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Ath-shuiteáil an clár dúisithe"
@@ -1046,17 +1046,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d noiméaid"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 noiméad"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d siocand"
@@ -1070,27 +1076,27 @@ msgid ""
"points, select \"New\"."
msgstr ""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nua"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Dífheistigh"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Feistigh"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Freastalaí"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1098,25 +1104,25 @@ msgstr "Freastalaí"
msgid "Mount point"
msgstr "Pointe feistithe"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Roghnachais"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Bain"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Críochnithe"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1132,17 +1138,17 @@ msgstr "Críochnithe"
msgid "Error"
msgstr "Earráid"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, fuzzy, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Teastáil an luchóg, le do thoil"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1153,33 +1159,33 @@ msgstr ""
msgid "Warning"
msgstr "Rabhadh"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Céard a theastaíonn uait a dhéanamh?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Freastalaí:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Pointe feistithe:"
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Roghnachais: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, fuzzy, c-format
msgid "Partitioning"
msgstr "Printéir"
@@ -1210,9 +1216,9 @@ msgstr "Scoir"
msgid "Continue"
msgstr "Lean"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "C_úidiú"
@@ -1243,63 +1249,63 @@ msgstr "Sonraí"
msgid "No hard disk drives found"
msgstr "Níor aimsíodh cruadhiosca ar bith"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Anaithnid"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "Scoir"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Malairte"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Fuinneoga"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Eile"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Folamh"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Cineál córais-comhadlanna"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Ní féidir an rann seo a athmhéadú"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Úsáid \"Dífheistigh\" ar dtús"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr ""
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1348,7 +1354,7 @@ msgstr "Éalaigh gan an clár-ranna a scríobh?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1624,7 +1630,7 @@ msgid "Where do you want to mount %s?"
msgstr "Céard a theastaíonn uait a dhéanamh?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Ag athméadú"
@@ -1669,7 +1675,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2092,8 +2098,8 @@ msgstr "Athraigh cineál"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Cealaigh"
@@ -2184,7 +2190,7 @@ msgstr ""
"nua a cruthu. Ba chóir duit do chuid crua-earraí a seiceáil le cúis an fadhb "
"a aimsiú"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr ""
@@ -2378,7 +2384,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nil dothain spas malartu chun insealbhu, chuir leis an spas"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2386,7 +2392,7 @@ msgid ""
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2397,42 +2403,42 @@ msgstr ""
"\n"
"x1Lean ar aghaidh ar aon nós?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Úsáid spás saor"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, fuzzy, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Ag aistriú na gcomhad go dtí an rann nua"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, fuzzy, c-format
msgid "Use existing partitions"
msgstr "Ag feistiú an rainn %s"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, fuzzy, c-format
msgid "There is no existing partition to use"
msgstr "Ag iarraidh an clár-ranna a tarrtháil"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, fuzzy, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Cruthaigh rann nua"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Úsáid an spás saor ar an rann Windows"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, fuzzy, c-format
msgid "Which partition do you want to resize?"
msgstr "Cén tescán ag a dteastaíonn uait é a bhogadh?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2440,12 +2446,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2466,117 +2472,117 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Teacs"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Printéir"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Cén tescán ag a dteastaíonn uait é a bhogadh?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Méid"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, fuzzy, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Ag ríomhadh teorainn na córais-comhadlanna FAT"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Theip ar uathathmhéadú FAT: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Dealaigh Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "Glan diosca ina iomlán"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Rannú diosca saincheaptha"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Úsáid fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Scoir"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, fuzzy, c-format
msgid "I cannot find any room for installing"
msgstr "Ní féidir liom rann eile a cur isteach"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Theip ar rannú: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2615,22 +2621,22 @@ msgstr ""
"Ni féidir liom an tábla rainn a léamh, tá máchaillí ann :(\n"
"Leanfaidh mé orm ag cealú droch rainn"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Caithfidh pointí feistithe tosú le /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2638,26 +2644,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2665,19 +2671,19 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2686,24 +2692,24 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Faic le déanamh"
@@ -2713,238 +2719,238 @@ msgstr "Faic le déanamh"
msgid "SATA controllers"
msgstr "Rialaitheoirí SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "Rialaitheoirí RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Rialaitheoirí (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "Cuimhne Charta (DMA)"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Rialaitheoirí Firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Rialaitheoirí PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Rialaitheoirí SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Rialaitheoirí USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Poirt USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Rialaitheoirí SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr ""
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Flapach"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Diosca"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr ""
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Téip"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Rialaitheoirí AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Cárta Físe"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Cárta Teilifíse"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Gaireais Ilmheánacha Eile"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Cárta Fuaime"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Ceamara Gréasáin"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr ""
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, fuzzy, c-format
msgid "ISDN adapters"
msgstr "Carta ISDN"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Cárta Ethernet"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Móideim"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr ""
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Cuimhne"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Printéir"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Luamhán Stiúrtha"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Eocharclár"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Luchóg"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "Soláthar Cumhachta Dobhriste"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Scanóir"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Anaithnid/Eile"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "LAP # "
@@ -3166,19 +3172,19 @@ msgstr "Athraigh cineál ranna"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Ceart go Leor"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Tá"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3209,22 +3215,22 @@ msgstr "Criochnaigh"
msgid "Previous"
msgstr "feist"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, fuzzy, c-format
msgid "No file chosen"
msgstr "dealbh an comhad"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr ""
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such directory"
msgstr "Níl aon filltéan ann"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Níl a leithéid de chomhad ann"
@@ -4538,7 +4544,7 @@ msgstr "An tSaimbia"
msgid "Zimbabwe"
msgstr "An tSiombáib"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Fáilte go %s"
@@ -5057,7 +5063,7 @@ msgstr "Scríos Printéir"
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5373,7 +5379,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6401,17 +6407,17 @@ msgstr "Cónaidhm na Rúise"
msgid "Yugoslavia"
msgstr "An Iúgslaiv"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "An bhfuil seo ceart?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Eolas"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index c8ede80f2..bd5ad7aee 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Galician (http://www.transifex.com/projects/p/mageia/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Agarde"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalando o cargador de arrinque"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -50,12 +50,12 @@ msgstr ""
"\n"
"Desexa asignar un novo ID de Volume?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "A instalación do cargador de arrinque fallou. Ocorreu o seguinte erro:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -70,218 +70,218 @@ msgstr ""
"\n"
"¿Dende qué unidade está arrincando?"