aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/phpbb/db/migration/helper.php32
-rw-r--r--phpBB/phpbb/db/migration/tool/config.php5
-rw-r--r--phpBB/phpbb/db/migration/tool/config_text.php5
-rw-r--r--phpBB/phpbb/db/migration/tool/module.php5
-rw-r--r--phpBB/phpbb/db/migration/tool/permission.php5
-rw-r--r--phpBB/phpbb/db/migrator.php23
6 files changed, 63 insertions, 12 deletions
diff --git a/phpBB/phpbb/db/migration/helper.php b/phpBB/phpbb/db/migration/helper.php
index e40deeb37b..bce2efff51 100644
--- a/phpBB/phpbb/db/migration/helper.php
+++ b/phpBB/phpbb/db/migration/helper.php
@@ -81,4 +81,36 @@ class helper
return $steps;
}
+
+ /**
+ * Reverse the update steps from an array of data changes
+ *
+ * 'If' statements and custom methods will be skipped, for all
+ * other calls the reverse method of the tool class will be called
+ *
+ * @param array $steps Update changes from migration
+ *
+ * @return array
+ */
+ public function reverse_update_data($steps)
+ {
+ $reversed_array = array();
+
+ foreach ($steps as $step)
+ {
+ $parts = explode('.', $step[0]);
+ $parameters = $step[1];
+
+ $class = $parts[0];
+ $method = isset($parts[1]) ? $parts[1] : false;
+
+ if ($class !== 'if' && $class !== 'custom')
+ {
+ array_unshift($parameters, $method);
+ $reversed_array[] = array($class . '.reverse', $parameters);
+ }
+ }
+
+ return array_reverse($reversed_array);
+ }
}
diff --git a/phpBB/phpbb/db/migration/tool/config.php b/phpBB/phpbb/db/migration/tool/config.php
index f93e7118c4..2a76409db5 100644
--- a/phpBB/phpbb/db/migration/tool/config.php
+++ b/phpBB/phpbb/db/migration/tool/config.php
@@ -150,6 +150,11 @@ class config implements \phpbb\db\migration\tool\tool_interface
$arguments[0],
);
break;
+
+ case 'reverse':
+ // It's like double negative
+ $call = array_shift($arguments);
+ break;
}
if ($call)
diff --git a/phpBB/phpbb/db/migration/tool/config_text.php b/phpBB/phpbb/db/migration/tool/config_text.php
index bf8ac55023..21b8a8b3a0 100644
--- a/phpBB/phpbb/db/migration/tool/config_text.php
+++ b/phpBB/phpbb/db/migration/tool/config_text.php
@@ -115,6 +115,11 @@ class config_text implements \phpbb\db\migration\tool\tool_interface
$arguments[] = '';
}
break;
+
+ case 'reverse':
+ // It's like double negative
+ $call = array_shift($arguments);
+ break;
}
if ($call)
diff --git a/phpBB/phpbb/db/migration/tool/module.php b/phpBB/phpbb/db/migration/tool/module.php
index 035625b095..a6baf40dc1 100644
--- a/phpBB/phpbb/db/migration/tool/module.php
+++ b/phpBB/phpbb/db/migration/tool/module.php
@@ -454,6 +454,11 @@ class module implements \phpbb\db\migration\tool\tool_interface
case 'remove':
$call = 'add';
break;
+
+ case 'reverse':
+ // It's like double negative
+ $call = array_shift($arguments);
+ break;
}
if ($call)
diff --git a/phpBB/phpbb/db/migration/tool/permission.php b/phpBB/phpbb/db/migration/tool/permission.php
index ceff6d7d5a..3a1e2e344b 100644
--- a/phpBB/phpbb/db/migration/tool/permission.php
+++ b/phpBB/phpbb/db/migration/tool/permission.php
@@ -637,6 +637,11 @@ class permission implements \phpbb\db\migration\tool\tool_interface
$arguments[0],
);
break;
+
+ case 'reverse':
+ // It's like double negative
+ $call = array_shift($arguments);
+ break;
}
if ($call)
diff --git a/phpBB/phpbb/db/migrator.php b/phpBB/phpbb/db/migrator.php
index 739959d7b7..3e69d9613e 100644
--- a/phpBB/phpbb/db/migrator.php
+++ b/phpBB/phpbb/db/migrator.php
@@ -423,19 +423,11 @@ class migrator
if ($state['migration_data_done'])
{
- if ($state['migration_data_state'] !== 'revert_data')
- {
- $result = $this->process_data_step($migration->update_data(), $state['migration_data_state'], true);
-
- $state['migration_data_state'] = ($result === true) ? 'revert_data' : $result;
- }
- else
- {
- $result = $this->process_data_step($migration->revert_data(), '', false);
+ $steps = array_merge($this->helper->reverse_update_data($migration->update_data()), $migration->revert_data());
+ $result = $this->process_data_step($steps, $state['migration_data_state']);
- $state['migration_data_state'] = ($result === true) ? '' : $result;
- $state['migration_data_done'] = ($result === true) ? false : true;
- }
+ $state['migration_data_state'] = ($result === true) ? '' : $result;
+ $state['migration_data_done'] = ($result === true) ? false : true;
$this->set_migration_state($name, $state);
}
@@ -596,6 +588,13 @@ class migrator
throw new \phpbb\db\migration\exception('MIGRATION_INVALID_DATA_MISSING_STEP', $step);
}
+ if ($reverse)
+ {
+ // We might get unexpected results when trying
+ // to revert this, so just avoid it
+ return false;
+ }
+
$condition = $parameters[0];
if (!$condition)
> -rw-r--r--perl-install/share/po/de.po255
-rw-r--r--perl-install/share/po/el.po255
-rw-r--r--perl-install/share/po/eo.po255
-rw-r--r--perl-install/share/po/es.po255
-rw-r--r--perl-install/share/po/et.po255
-rw-r--r--perl-install/share/po/eu.po255
-rw-r--r--perl-install/share/po/fa.po255
-rw-r--r--perl-install/share/po/fi.po255
-rw-r--r--perl-install/share/po/fr.po255
-rw-r--r--perl-install/share/po/fur.po255
-rw-r--r--perl-install/share/po/ga.po255
-rw-r--r--perl-install/share/po/gl.po255
-rw-r--r--perl-install/share/po/he.po255
-rw-r--r--perl-install/share/po/hi.po255
-rw-r--r--perl-install/share/po/hr.po255
-rw-r--r--perl-install/share/po/hu.po255
-rw-r--r--perl-install/share/po/hy.po255
-rw-r--r--perl-install/share/po/id.po255
-rw-r--r--perl-install/share/po/is.po255
-rw-r--r--perl-install/share/po/it.po255
-rw-r--r--perl-install/share/po/ja.po255
-rw-r--r--perl-install/share/po/ka.po255
-rw-r--r--perl-install/share/po/ko.po255
-rw-r--r--perl-install/share/po/ku.po255
-rw-r--r--perl-install/share/po/ky.po255
-rw-r--r--perl-install/share/po/libDrakX.pot255
-rw-r--r--perl-install/share/po/lo.po255
-rw-r--r--perl-install/share/po/lt.po255
-rw-r--r--perl-install/share/po/ltg.po255
-rw-r--r--perl-install/share/po/lv.po255
-rw-r--r--perl-install/share/po/mk.po255
-rw-r--r--perl-install/share/po/mn.po255
-rw-r--r--perl-install/share/po/mr.po255
-rw-r--r--perl-install/share/po/ms.po255
-rw-r--r--perl-install/share/po/mt.po255
-rw-r--r--perl-install/share/po/nb.po255
-rw-r--r--perl-install/share/po/nl.po255
-rw-r--r--perl-install/share/po/nn.po255
-rw-r--r--perl-install/share/po/pa_IN.po255
-rw-r--r--perl-install/share/po/pl.po255
-rw-r--r--perl-install/share/po/pt.po255
-rw-r--r--perl-install/share/po/pt_BR.po255
-rw-r--r--perl-install/share/po/ro.po255
-rw-r--r--perl-install/share/po/ru.po255
-rw-r--r--perl-install/share/po/sc.po255
-rw-r--r--perl-install/share/po/sk.po255
-rw-r--r--perl-install/share/po/sl.po255
-rw-r--r--perl-install/share/po/sq.po255
-rw-r--r--perl-install/share/po/sr.po255
-rw-r--r--perl-install/share/po/sr@Latn.po255
-rw-r--r--perl-install/share/po/sv.po255
-rw-r--r--perl-install/share/po/ta.po255
-rw-r--r--perl-install/share/po/tg.po255
-rw-r--r--perl-install/share/po/th.po255
-rw-r--r--perl-install/share/po/tl.po255
-rw-r--r--perl-install/share/po/tr.po255
-rw-r--r--perl-install/share/po/uk.po273
-rw-r--r--perl-install/share/po/uz.po255
-rw-r--r--perl-install/share/po/uz@cyrillic.po255
-rw-r--r--perl-install/share/po/vi.po255
-rw-r--r--perl-install/share/po/wa.po255
-rw-r--r--perl-install/share/po/xh.po255
-rw-r--r--perl-install/share/po/zh_CN.po255
-rw-r--r--perl-install/share/po/zh_TW.po255
-rw-r--r--perl-install/share/po/zu.po255
79 files changed, 10279 insertions, 9884 deletions
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index fc75e33f0..0887db741 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2019-06-27 17:59+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: Afrikaans (http://www.transifex.com/MageiaLinux/mageia/"
@@ -20,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -165,7 +165,7 @@ msgstr "Aktiveer plaaslike APIC"
msgid "Security"
msgstr "Sekuriteit"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -186,112 +186,117 @@ msgstr "Probeer asb. weer"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Naam"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Aanlas"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Videomodus"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Beeld"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "'Root'"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Netwerkprofiel"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Verstek"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Leë etiket word nie toegelaat nie"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "U moet 'n kernel-beeld spesifiseer"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "U moet 'n 'root'-partisie spesifiseer"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Hierdie etiket is reeds in gebruik"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Ander bedryfstelsel (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -300,12 +305,12 @@ msgstr ""
"Hier is die huidige inskrywings.\n"
"U kan nog byvoeg of bestaandes wysig."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "Moenie Esp of MBR aanraak nie"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -317,19 +322,19 @@ msgstr "Moenie Esp of MBR aanraak nie"
msgid "Warning"
msgstr "Waarskuwing"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -339,199 +344,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "toegang na X-programme"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "toegang tot rpm-nutsprogramme"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "laat \"su\" toe"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "toegang tot administratiewe lêers"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "toegang na netwerk-nutsprogramme"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "toegang na kompilasie-gereedskap"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikernaam"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Hierdie naam is te lank"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Hierdie gebruikernaam bestaan reeds"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Gebruiker-ID"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Groep-ID"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s moet 'n getal wees"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s moet groter as 1000 wees. In elk geval aanvaar?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Gebruikerbestuur"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Aktiveer rekening vir gaste"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Stel administrateurwagwoord (root)"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Gee 'n gebruiker"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Ikoon"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Regte naam"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Aanmeldnaam"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Dop"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Addisionele groepe"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Net ’n oomblik, media word bygevoeg..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Outoaanmelding"
-#: any.pm:1182
+#: any.pm:1187
#, 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 aan te meld."
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Gebruik hierdie funksionaliteit"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Kies die verstekgebruiker:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Vrystellingsnotas"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Sluit af"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Lisensieooreenkoms"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Verlaat"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Aanvaar u hierdie lisensie?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Aanvaar"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Weier"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Kies asb. 'n taal om te gebruik"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -539,87 +544,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Alle tale"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Taalkeuse"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Land / Omgewing"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Kies asseblief u land"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier is die volle lys van beskikbare lande"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Ander lande"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Gevorderd"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Geen"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Geen deling"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Laat alle gebruikers toe"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Aangepaste"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -634,32 +639,32 @@ msgstr ""
"\n"
"\"Aangepaste\" laat toe vir per-gebruiker verstellings.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, 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:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Loods userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -669,54 +674,54 @@ msgstr ""
"U kan van 'userdrake' gebruik maak om gebruikers by heirdie\n"
"groep te voeg."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Tydsone"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP-bediener"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Outo-tydsinkronisasie met NTP"
@@ -1039,7 +1044,7 @@ msgid "Domain Admin Password"
msgstr "Domein-administrarteur se Wagwoord"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1054,47 +1059,47 @@ msgstr ""
"vir die verstekopsie.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO met tekskieskaart"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr ""
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1103,7 +1108,7 @@ msgstr ""
"U herlaaistelsel se konfigurasie moet opgedateer word omdat 'n partisie se "
"nommer verander het"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1112,7 +1117,7 @@ msgstr ""
"Die herlaaistelsel kan nie korrek geïnstalleer word nie. U moet in redding-"
"modus laai, kies dan \"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Herinstalleer herlaaistelsel"
@@ -1232,7 +1237,7 @@ msgstr "Klaar"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2682,7 +2687,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, 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"
@@ -2766,7 +2771,7 @@ msgstr "bediener"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2784,22 +2789,22 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Hegpunte kan slegs alfa-numeriese karakters bevat"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2807,29 +2812,29 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lêergids moet altyd in die wortellêerstelsel bly"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, 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:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie vir outo-toekenning beskikbaar nie"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Niks om te doen nie"
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index 467ebb925..9827bd613 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2019-04-16 15:43+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Amharic (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -157,7 +157,7 @@ msgstr ""
msgid "Security"
msgstr "ደህንነት"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -178,124 +178,129 @@ msgstr "እባክዎ እንደገና ይሞክሩ"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "ሚስጢራዊ ቃል (እንደገና)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "መለያ"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "የቪዲዮ አሰራር ዘዴ"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "ምስል"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "ቀዳሚ"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr ""
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr ""
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "ሊኑክስ"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, 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:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -307,19 +312,19 @@ msgstr ""
msgid "Warning"
msgstr "ማስጠንቀቂያ"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -329,199 +334,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "የX ፕሮግራሞች ማሳያ"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "ፍቀድ \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s በፊት ተጨምሯል)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "እባክዎ የተጠቃሚ ስም ይስጡ"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "የተጠቃሚ ስሙ በጣም ረጅም ነው"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "ይህ የተጠቃሚ ስም በፊትም ነበር"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "የተጠቃሚ መለያ ቁጥር"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "የብድን መለያ ቁጥር"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "ምልክት"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "እውነተኛ ስም"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "ሼል"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr ""
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "ቀዳሚ ተጠቃሚ ይምረጡ:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "ዝጋ"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "ውጣ"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "ተቀበል"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "አትቀበል"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "እባክዎ መጠቀሚያ ቋንቋ ይምረጡ።"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -529,87 +534,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "ሁሉንም ቋንቋዎች"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr ""
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "ሀገር / አካባቢ"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "እባክዎ ሀገሮን ይምረጡ።"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "እዚህ ያሉት ሀገሮች ሙሉ ዝርዝር ይገኛል"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr ""
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "ጠላቂ"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "ምንም"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "መጋራት የለም"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "ለሁሉም ተጠቃሚዎች ፍቀድ"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "ምርጫ"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -619,86 +624,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "userdrake አስጀምር"
-#: any.pm:1590
+#: any.pm:1596
#, 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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "የሰአት ክልል"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "የሰአት ክልሎት የትኛው ነው?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP ሰርቨር"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1021,7 +1026,7 @@ msgid "Domain Admin Password"
msgstr "የዶሜን አስተዳዳሪ ሚስጢራዊ ቃል"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1031,61 +1036,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO ከጽሁፍ መዘርዝር ጋር"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 ከጽሁፍ መዘርዝር ጋር"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB ከጽሁፍ መዘርዝር ጋር"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "በ/boot ውስጥ በቂ ቦታ የለም"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "አስጀማሪውን እንደገና ይትከሉ"
@@ -1200,7 +1205,7 @@ msgstr "ጨርሷል"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2587,7 +2592,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2669,7 +2674,7 @@ msgstr "ሰርቨር"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2681,22 +2686,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2704,29 +2709,29 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "የሚሰራ ነገር የለም"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index b8b85dd1a..f277dc17a 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Arabic (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -17,7 +17,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:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -167,7 +167,7 @@ msgstr ""
msgid "Security"
msgstr "الأمن"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -188,112 +188,117 @@ msgstr "الرجاء المحاولة مجدداً"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "كلمة المرور (مجدداً)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "تسمية"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "إلحاق"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "وضعية الفيديو"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "صورة"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "الجذر"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "سجلّ إعداد الشبكة "
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "افتراضي"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "لا يُسمح بالتسميات الفارغة"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "يجب تحديد صورة النواة"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "يجب تحديد تجزيء جذر"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "هذه التسمية مستخدمة مسبقا"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل المُراد إضافته؟"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "لينكس"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "نظام تشغيل آخر (ويندوز...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -302,12 +307,12 @@ msgstr ""
"هذه هي المدخلات المختلفة في قائمة الإقلاع حتى الآن.\n"
"يمكنك إضافة مدخلات أخرى أو تغيير الموجودة."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -319,19 +324,19 @@ msgstr ""
msgid "Warning"
msgstr "تحذير"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -341,199 +346,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "الوصول إلى برامج X"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "الوصول إلى أدوات rpm"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "السماح بـ\"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "الوصول إلى ملفات الإدارة"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "الوصول إلى أدوات الشبكة"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "الوصول إلى أدوات التجميع"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(تمت إضافة %s مسبقا)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "الرجاء إعطاء اسم مستخدم"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "اسم المستخدم طويل جداً"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "هوية المستخدم"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "هوية المجموعة"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "ضع كلمة مرور المستخدم الجذر"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "أيقونة"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "اسم الدخول"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "الصدفة"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "انتظر من فضلك، جاري إضافة الوسائط..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "تسجيل دخول آلي"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "يمكن إعداد جهازك لتسجيل الدخول آلياً لمستخدم معين."
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "اختيار المستخدم الافتراضي:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "اختيار مدير النوافذ الذي سيتم تشغيله:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "ملاحظات الإصدار"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "إغلاق"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "اتفاقية الترخيص"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "خروج"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "قبول"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "رفض"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "الرجاء اختيار لغة لاستخدامها"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -541,87 +546,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "ماجيّا"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "كل اللغات"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "خيار اللغة"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "الدولة / الإقليم"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "الرجاء اختيار الدولة"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "هذه قائمة كاملة بكل الدول المتوفرة"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "دول أخرى"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "متقدم"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "طريقة الإدخال:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "لاشيء"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "لا مشاركة"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "السماح لكل المستخدمين"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "مخصّص"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -636,14 +641,14 @@ msgstr ""
"\n"
"\"مخصص\" يسمح لك بعمل إعدادات خاص لكل مستخدم.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr "NFS: نظام تقسيم ملفّات يونكس التّقليدي، بدعم أقلّ على ماك و ويندوز."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -652,18 +657,18 @@ msgstr ""
"SMB: نظام تقسيم ملفّات مستعمل من قبل ويندوز، ماك OS X و العديد من أنظمة لينكس "
"الحديثة."
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "يمكنك التّصدير باستعمال NFS أو SMB. الرجاء اختيار أيّهما تريد استعماله."
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "تشغيل userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -672,54 +677,54 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "تحتاج أن تقوم بالخروج والعودة مجدّداً حتى يسري مفعول التّغييرات"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "المنطقة الزمنية"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "ما هي منطقتك الزمنية؟"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "إعدادات التاريخ ، الساعة و المنطقة الزمنية"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "خادم NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "تزامن وقت آلي (باستخدام NTP)"
@@ -1048,7 +1053,7 @@ msgid "Domain Admin Password"
msgstr "كلمة المرور لمدير النطاق"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1063,54 +1068,54 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO مع قائمة نصية"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 مع قائمة نصية"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB مع قائمة نصية"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, fuzzy, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux مع قائمة نصية"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "لا توجد مساحة كافية في /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "تهيئة محمّل الإقلاع يجب أن يحدّث لأنّ التجزيء تمّ إعادة ترقيمه"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1119,7 +1124,7 @@ msgstr ""
"لا يمكن تثبيت محمّل الإقلاع بشكل صحيح. يجب أن تقوم بإقلاع الإنقاذ وتختار \"%s"
"\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "إعادة تثبيت مُحمِّل الإقلاع"
@@ -1238,7 +1243,7 @@ msgstr "تم"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2681,7 +2686,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "كل التجزيئات و بياناتها ستضيع من على السواقة %s"
@@ -2765,7 +2770,7 @@ msgstr "خادم"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2783,22 +2788,22 @@ msgstr ""
"\n"
"هل أنت موافق على خسارة كل التجزيئات؟\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "يجب أن تبدأ أماكن التركيب بالعلامة /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "أماكن التركيب يجب أن تحتوي فقط على الحروف و/أو الآرقام"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "هناك تجزيء مع مكان التركيب %s مسبقاً\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2806,17 +2811,17 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "هذا الدليل يجب أن يكون في نظام الملفات الجذري"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2825,12 +2830,12 @@ msgstr ""
"تحتاج إلى نظام ملفات حقيقي (ext2/ext3، resierfs، xfs، أو jfs) لمكان التركيب "
"هذه\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "لا توجد مساحة كافية للتحديد الآلي"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "لا شيء لعمله"
diff --git a/perl-install/share/po/ast.po b/perl-install/share/po/ast.po
index 6b0fcd880..58a9477d6 100644
--- a/perl-install/share/po/ast.po
+++ b/perl-install/share/po/ast.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-11-06 22:50+0000\n"
"Last-Translator: enolp <enolp@softastur.org>\n"
"Language-Team: Asturian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -159,7 +159,7 @@ msgstr ""
msgid "Security"
msgstr "Seguranza"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -180,124 +180,129 @@ msgstr "Volvi tentalo"
msgid "You cannot use a password with %s"
msgstr "Nun pues usar una contraseña con %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr ""
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr ""
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr ""
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr ""
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr ""
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr ""
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr ""
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta yá s'usó"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr ""
-#: any.pm:682
+#: any.pm:687
#, 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:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "Nun tocar l'ESP o'l MBR"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -309,19 +314,19 @@ msgstr "Nun tocar l'ESP o'l MBR"
msgid "Warning"
msgstr "Alvertencia"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Buscar otros sistemes operativos"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -331,199 +336,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "accesu a los programes de X"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "accesu a les ferramientes de RPM"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "permite «su»"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "accesu a los ficheros alministrativos"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "accesu a les ferramientes de rede"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "accesu a les ferramientes de compilación"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr ""
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr ""
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr ""
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr ""
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "ID d'usuariu"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "ID"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s ha ser un númberu"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Contraseña del alministrador"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Introducción d'un usuariu"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Iconu"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Nome real"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Nome d'usuariu"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Grupos adicionales:"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Espera mentanto s'amiesta'l mediu…"
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr ""
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Zarrar"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Colar"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "¿Quies aceutar esta llicencia?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Aceutar"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Refugar"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Escueyi la llingua a usar"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -531,87 +536,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Toles llingües"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr ""
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr ""
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr ""
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr ""
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avanzaes"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr ""
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr ""
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr ""
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr ""
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -621,39 +626,39 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1590
+#: any.pm:1596
#, 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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -662,47 +667,47 @@ msgstr ""
"Precises reaniciar la sesión pa que los cambeos faigan efeutu. Primi Aceutar "
"pa facelo agora."
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Precises reaniciar la sesión pa que los cambeos faigan efeutu."
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Fusu horariu"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "¿En qué fusu horariu tas?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Axustes del reló, fusu horariu y la data"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr ""
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización automática de la hora (col usu de NTP)"
@@ -1025,7 +1030,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1040,61 +1045,61 @@ msgstr ""
"espera a qu'arrinque'l predetermináu.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 con menú gráficu"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr ""
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menú gráficu"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd con menú gráficu"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1209,7 +1214,7 @@ msgstr ""
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2605,7 +2610,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2688,7 +2693,7 @@ msgstr ""
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2700,22 +2705,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2723,29 +2728,29 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr ""
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index d1fe2de51..82a314ead 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2019-04-16 15:43+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Azerbaijani (http://www.transifex.com/MageiaLinux/mageia/"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -162,7 +162,7 @@ msgstr ""
msgid "Security"
msgstr "Təhlükəsizlik"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -183,112 +183,117 @@ msgstr "Xahiş edirik, təkrar sınayın"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Şifrə (təkrar)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiket"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Sonuna əlavə et"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Video modu"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Əks"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Kök"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Şəbəkə profili"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Ön Qurğulu"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Boş etiket qəbul edilmir"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Çəyirdək əksini bildirməlisiniz"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Kök bölməsini bildirməlisiniz"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Bu etiket onsuzda istifadə edilib"
-#: any.pm:621
+#: any.pm:626
#, 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:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linuks"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Digər ƏS (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -297,12 +302,12 @@ 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:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -314,19 +319,19 @@ msgstr ""
msgid "Warning"
msgstr "Xəbərdarlıq"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -336,200 +341,200 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "X proqramlarına yetişmə icazəsi"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "rpm vasitələrinə yetişmə"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "\"su\" icazəsi ver"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "idarəvi fayllara yetişmə"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "şəbəkə vasitələrinə yetişmə"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "dərləmə vasitələrinə yetişmə"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Xahiş edirik, bir istifadəçi adı alın"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "İstifadəçi adı çox uzundur"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Bu istifadəçi adı onsuzda əlavə edilib"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "İstifadəçi ID'si"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Qrup ID'si"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Timsal"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Həqiqi ad"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Giriş adı"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Qabıq"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr ""
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "İşlətmək istədiyiniz pəncərə idarəçisini seçin:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Bağla"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Lisenziya razılığı"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Çıx"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Qəbul Et"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Rədd Et"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Xahiş edirik, istifadə ediləcək dili seçin"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -537,87 +542,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Bütün dillər"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Dil seçkisi"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Ölkə / Bölgə"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Xahiş edirik, ölkənizi seçin"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Bütün mövcud ölkələrinn siyahısı"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Diqər Ölkələr"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Ətraflı"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Giriş yöntəmi:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Heç biri"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Bölüşmə yoxdur"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Bütün istifadəçilərə icazə ver"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Xüsusi"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -634,21 +639,21 @@ msgstr ""
"\"Xüsusi\" seçənəyi, hər istifadəçiyə fərqli icazə vermək üçün istifadə "
"edilir.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -656,12 +661,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:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake-ni başlat"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -671,55 +676,55 @@ msgstr ""
"Bu qrupa istifadəçiləri əlavə etmək üçün userdrake'dən istifadə edə "
"bilərsiniz. "
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Vaxt Zolağı"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Vaxt zolağınız hansıdır?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP Verici"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Avtomatik vaxt sinxronizasiyası (NTP vasitəsiylə)"
@@ -1042,7 +1047,7 @@ msgid "Domain Admin Password"
msgstr "Domen İdarəçi Şifrəsi"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1052,61 +1057,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "Mətn menyulu LILO"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "Mətn menyulu GRUB2"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "Mətn menyulu GRUB"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Sistem Yükləyicisini Yenidən Qur"
@@ -1225,7 +1230,7 @@ msgstr "Qurtardı"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2676,7 +2681,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, 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"
@@ -2760,7 +2765,7 @@ msgstr "verici"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2779,22 +2784,22 @@ msgstr ""
"\n"
"Bütün bölmələri itirmək işinizə gəlir?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, 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:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2802,18 +2807,18 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, 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:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2822,12 +2827,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:548
+#: 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:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Ediləcək heçnə yoxdur"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index c3c180370..e5516c13c 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2019-04-16 15:44+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Belarusian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -20,7 +20,7 @@ msgstr ""
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
"%100>=11 && n%100<=14)? 2 : 3);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -160,7 +160,7 @@ msgstr ""
msgid "Security"
msgstr "Бясьпека"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -181,112 +181,117 @@ msgstr "Паспрабуйце яшчэ раз"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Паўтарыце пароль"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Метка"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Далучыць"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Відэа-рэжым"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Вобраз"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Па дамаўленню"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Пустая метка не дазваляецца"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Гэтая метка ўжо выкарыстоўваецца"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Які тып пункта жадаеце дадаць?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Іншая АС (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -295,12 +300,12 @@ msgstr ""
"У меню маюцца наступныя пункты.\n"
"Вы можаце дадаць яшчэ, альбо змяніць існуючыя."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -312,19 +317,19 @@ msgstr ""
msgid "Warning"
msgstr "Увага!"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -334,199 +339,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(ужо дададзена %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Калі ласка, увядзіце імя карыстальніку"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr ""
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Гэта імя карыстальніку ўжо дададзена"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "ID карыстальніка"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "ID групы"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Піктаграма"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Уласнае імя"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Абалонка:"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr ""
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Аўтаматычны ўваход у сістэму"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Абярыце асноўнага карыстальніка:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Абярыце мэнэджар вокнаў:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Зачыніць"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Ліцэнзійная дамова"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Выхад"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Прыняць"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Адказаць"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr ""
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -534,87 +539,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr ""
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr ""
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr ""
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr ""
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr ""
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Адмысловае"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Нічога"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr ""
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr ""
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Па выбару"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -624,86 +629,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1590
+#: any.pm:1596
#, 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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr ""
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Які ваш часавы пояс?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr ""
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1027,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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1037,61 +1042,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr ""
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "Не хапае дыскавай прасторы ў /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1206,7 +1211,7 @@ msgstr "Зроблена"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2607,7 +2612,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Усе існуючыя раздзелы на дыску %s і дадзеныя на іх будуць страчаны"
@@ -2691,7 +2696,7 @@ msgstr "сэервер"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2703,22 +2708,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Пункт манціравання павінен пачынацца з /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ужо ёсць раздзел з пунктам манціравання %s\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2726,29 +2731,29 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Гэты каталог павінен знаходзіцца ўнутры каранёвай файлавай сістэмы"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr ""
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 022aef6dc..cb11d319e 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: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2016-04-16 21:43+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:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -168,7 +168,7 @@ msgstr "Включи Local APIC"
msgid "Security"
msgstr "Сигурност"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -189,112 +189,117 @@ msgstr "Моля, опитайте отново"
msgid "You cannot use a password with %s"
msgstr "Вие не можете да използвате парола включваща %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Парола (повтори)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Конфигуриране на програмата за начално зареждане"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Име"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Параметри"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Видео режим"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Образ"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Коренов дял"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Xen параметри"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Мрежов профил"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "По подразбиране"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Полето 'Име' не трябва да е празно"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Трябва да зададете обаз на ядрото"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Трябва да зададете коренов дял"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Това 'Име' вече се използва"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Какъв тип информация искате да прибавите"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Друга ОС (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -303,12 +308,12 @@ msgstr ""
"Това са записите в менюто за начално зареждане.\n"
"Можете да добавите още или да промените съществуващите."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -320,19 +325,19 @@ msgstr ""
msgid "Warning"
msgstr "Предупреждение"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -342,201 +347,201 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "достъп до X програми"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "достъп до rpm инструменти"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "позволява \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "достъп до файлове за администриране"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "достъп до мрежови инструменти"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "достъп до инструменти за разработка"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(вече прибавих %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Моля, задайте потребителско име"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Това потребителско име е твърде дълго"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Това потребителско име е вече добавено"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Потребителски номер"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Номер на група"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s трябва да е число"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Управление на потребител"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Въведете потребител"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Икона"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Истинско име"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Потебителско име"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Обвивка"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Моля, изчакайте. Обновява се източник..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Автоматично влизане"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Мога да настроя компютъра ви за автоматично влизане в системата като някой "
"потребител."
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Използвай тази характеристика"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Изберете подразбиращ се потребител:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Изберете графична среда за стартиране:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Бележки към версията"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Затвори"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Лицензионен договор"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Изход"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Приемате ли този лиценз ?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Приеми"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Откажи"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Моля, изберете език"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -544,87 +549,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Съвместимост с преди използващи се (различни от UTF-8) кодировки"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Всички езици"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Избор на език"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Страна / Регион"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Моля, изберете вашата държава"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Пълен списък на достръпните страни"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Други държави"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Разширени настройки"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr " Метод за въвеждане:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Няма"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Без споделяне"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Позволи на всички потребители"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Позволи на отделни потребители"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -641,7 +646,7 @@ msgstr ""
"\"Позволи на отделни потребители\" разрешава споделянето само на "
"потребителите, които са членове на групата \"fileshare\".\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -651,7 +656,7 @@ msgstr ""
"ограничено \n"
" приложима за Mac OS X и Windows."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -661,7 +666,7 @@ msgstr ""
"повечето\n"
" съвременни Linux системи."
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -669,12 +674,12 @@ msgstr ""
"Вие може да споделяте файлове използвайки NFS или SMB протоколи. \n"
"Моля, изберете кой от тях ще използвате."
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Стартира userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -683,56 +688,56 @@ msgstr ""
"За споделянето на потребителски директории използва група \"fileshare\".\n"
"Може да използвате userdrake, за да добавите потребител към тази група."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"За да се активират направените промени е необходимо да излезете от текущата "
"сесия и отново да влезете"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Часова зона"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Коя е вашата времевата зона?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Дата, Часовник и Настройки на часова зона"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Кое е най-доброто време?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (хадруерният часовник е настроен по GMT)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (хадруерният часовник е настроен по локалното време)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP сървър"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматична синхронизация на времето (използва NTP)"
@@ -1055,7 +1060,7 @@ msgid "Domain Admin Password"
msgstr "Парола за администратор на домейн"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1070,47 +1075,47 @@ msgstr ""
"изчакайте да се зареди избраната по подразбиране.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO с текстово меню"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 в графично меню"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 с текстово меню"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB в графично меню"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB с текстово меню"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, fuzzy, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd в графично меню"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, fuzzy, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux с текстово меню"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "няма достатъчно място в /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1119,7 +1124,7 @@ msgstr ""
"Конфигурацията на програмата за начално зареждане трябва да се актуализира, "
"защото дисковите дялове бяха преномерирани"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1128,7 +1133,7 @@ msgstr ""
"Програмата за начално зареждане не може да бъде коректно инсталирана. Трябва "
"да стартирате режим rescue и да изберете \"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Преинсталиране на програмата за начално зареждане"
@@ -1248,7 +1253,7 @@ msgstr "Готово"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2703,7 +2708,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "ВСИЧКИ съществуващи дялове и данните върху тях на %s ще бъдат загубени"
@@ -2787,7 +2792,7 @@ msgstr "сървър"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "BIOS софтуерен RAID е открит на дискове %s. Да го активирам ли?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2807,22 +2812,22 @@ msgstr ""
"\n"
"Съгласни ли сте да загубите всички дялове?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Точките на монтиране трябва да започват с /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Точките на монтиране трябва да съдържат само букви и цифри"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Вече има дял монтиран на това място %s\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2830,18 +2835,18 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Вие не може да използвате криптирана файлова система за точка на монтиране %s"
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Тази директория трябва да остане в рамките на root файловата система."
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2850,12 +2855,12 @@ msgstr ""
"Нуждаете се от истинска файлова система (ext2, reiserfs,xfs, или jfs) за "
"тази точка на монтиране\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Няма достатъчно място за автоматично разпределяне"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Няма нищо за правене"
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index 976cdad5b..6bfc0bc56 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2016-05-07 07:34+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Bengali (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -21,7 +21,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -171,7 +171,7 @@ msgstr ""
msgid "Security"
msgstr "সিকিউরিটি"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -192,112 +192,117 @@ msgstr "অনুগ্রহ করে আবার চেষ্ট করু
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "পাসওয়ার্ড (পুনরায়)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "শিরোনাম"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "যুক্ত"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "ভিডিওর ধরণ"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "ইমেজ"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "নেটওয়ার্ক প্রোফাইল"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "স্বাভাবিক"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "খালি শিরোনাম গ্রহণযোগ্য নয়"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "আপনাকে অবশ্যই একটি কার্নালের ইমেজ নির্ধারণ করে দিতে হবে"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "আপনাকে অবশ্যই একটি রুট পার্টিশন নির্ধারণ করে দিতে হবে"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "এই শিরোনামটি আগেই ব্যবহার হয়েছে"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "আপনি কি ধরণের এন্ট্রি যোগ করতে চান?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "লিনাক্স"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "অন্যান্য OS (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -306,12 +311,12 @@ msgstr ""
"এপর্যন্ত আপনার বুটমেনুর এন্ট্রিগুলি এখানে।\n"
"আপনি অন্যান্য এন্ট্রি তৈরী করতে পারেন অথবা আগের এন্ট্রিগুলি পরিবর্তন করতে পারেন।"
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -323,19 +328,19 @@ msgstr ""
msgid "Warning"
msgstr "নোটিশ"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -345,200 +350,200 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "X প্রোগ্রামসমূহে প্রবেশাধিকার"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "RPM টুলে প্রবেশাধিকার"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "\"su\" গ্রহন করো"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "এডমিনিষ্ট্রেশন সংক্রান্ত ফাইলে প্রবেশাধিকার"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "নেটওয়ার্ক টুলে প্রবেশাধিকার"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "compilation টুলে প্রবেশাধিকার"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s আগেই যোগ করা হয়েছে)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "অনুগ্রহ করে একটি উইজার নেম দিন"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "ইউজারনেমটি অনেক বড়"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "এই ইউজারনেমটি এর আগেই যোগ করা হয়েছে"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "ব্যবহারকারীর ID"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "দলের ID"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "আ্যাডমিনিস্ট্রেটর (root) পাসওয়ার্ড সেট করুন"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "আইকন"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "আসল নাম"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "লগ-ইন নাম"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "শেল"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "মাধ্যম যোগ করা হচ্ছে, অনুগ্রহ করে অপেক্ষা করুন..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "সয়ংক্রিয় লগ-ইন"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"আমি আপনার কম্পিউটারকে সয়ংক্রিয়ভাবে একটি ইউজারকে লগইন করার জন্য সেট করতে পারি।"
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "স্বাভাবিক ব্যবহারকারীকে পছন্দ করুন:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "রান করার জন্য উইন্ডো ম্যানেজারকে পছন্দ করুন:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "সংস্করণ মন্তব্য"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "বন্ধ"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "লাইসেন্স এগ্রিমেন্ট"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "বাহির"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "গ্রহণ"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "অস্বীকার"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "ব্যবহার করার জন্য একটি ভাষা পছন্দ করুন"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -546,87 +551,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "ম্যান্ড্রিব লিনাক্স (Mageia)"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "সমস্থ ভাষা"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "পছন্দনীয় ভাষা"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "দেশ / স্থান"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "অনুগ্রহ করে তোমার দেশ পছন্দ করো।"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "উপলব্ধ সমস্থ দেশের নাম এখানে রয়েছে"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "অন্যান্য দেশসমুহ"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "উন্নত"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "ইনপুট মাধ্যম:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "একটিও না"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "শেয়ারিং নেই"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "সব ব্যবহারকারীদের গ্রহণ করো"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "ব্যবস্থা"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -636,7 +641,7 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr "আপনি কি ব্যবহারকারীদের কিছু ডিরেক্টরি শেয়ার করতে দিতে চান?\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -644,7 +649,7 @@ msgid ""
msgstr ""
"NFS: ঐতিহ্যগত ইউনিক্স ফাইল শেয়ারিং সিস্টেম, যা ম্যাক এবং উইন্ডোজে স্বল্প সমর্থিত।"
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -653,7 +658,7 @@ msgstr ""
"SMB: উইন্ডোজ, ম্যাক ও-এস এক্স এবং অনেক আধুনিক লিনাক্স সিস্টেম কর্তৃক ব্যবহৃত ফাইল "
"শেয়ারিং সিস্টেম।"
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -661,12 +666,12 @@ msgstr ""
"আপনি NFS বা SMB ব্যবহার করে ফাইল পাঠাতে পারেন। যেটি আপনি ব্যবহার করতে চান "
"অনুগ্রহ করে নির্বাচন করুন।"
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "userdrake শুরু করো"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -675,54 +680,54 @@ msgstr ""
"প্রত্যেক ব্যবহারকারী গ্রুপের \"ফাইল ভাগাভাগি\" ভাগাভাগি করতে পারেন। \n"
"এই গ্রুপে একজণ ব্যবহারকারী যোগ করতে আপনি userdrake ব্যবহার করতে পারেন।"
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "টাইমজোন"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "আপনার টাইমজোন কি?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP সার্ভার"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "সয়ংক্রিয়ভাবে সময় মেলাও (NTP ব্যবহার করে)"
@@ -1052,7 +1057,7 @@ msgid "Domain Admin Password"
msgstr "ডোমেইন অ্যাডমিনের পাসওয়ার্ড"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1067,47 +1072,47 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "টেক্সট মেনুর সাথে LILO"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "টেক্সট মেনুর সাথে GRUB2"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "টেক্সট মেনুর সাথে GRUB"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, fuzzy, c-format
msgid "rEFInd with graphical menu"
msgstr "টেক্সট মেনুর সাথে rEFInd"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, fuzzy, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "টেক্সট মেনুর সাথে U-Boot/Extlinux"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "/boot -এ বেশী জায়গা নেই"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1115,7 +1120,7 @@ msgid ""
msgstr ""
"পার্টিশন রি-নাম্বার করার কারনে আপনার বুটলোডারের কনফিগারেশন অবশ্যই আপডেট করতে হবে"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1124,7 +1129,7 @@ msgstr ""
"বুটলোডার সঠিকভাবে ইনস্টল হতে পারবেনা। আপনাকে rescue বুট করতে হবে এবং \"%s\" "
"পছন্দ করতে হবে"
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "বুট লোডার রি-ইনস্টল করো"
@@ -1245,7 +1250,7 @@ msgstr "হয়েছে"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2693,7 +2698,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s ড্রাইভে উপস্থিত সমস্থ ডাটা এবং পার্টিশন নষ্ট হয়ে যাবে"
@@ -2777,7 +2782,7 @@ msgstr "সার্ভার"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2796,22 +2801,22 @@ msgstr ""
"\n"
"আপনি কি সব পার্টিশন হারাতে রাজি?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "মাউন্ট পয়েন্টগুলি অবশ্যই / দিয়ে শুরু হতে হবে"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "মাউন্ট পয়েন্টগুলিতে শুধু * অক্ষর থাকবে"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "এই পার্টিশনটি আগে থেকেই %s মাউন্টপয়েন্ট নামে আছে\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2819,17 +2824,17 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন"
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "root ফাইল সিস্টেমের মধ্যে এই ডিরেক্টরি থাকা উচিত"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2838,12 +2843,12 @@ msgstr ""
"এই মাউন্ট পয়েন্টের জন্য আপনার একটি সঠিক ফাইল সিস্টেম (ext2/3/4, reiserfs, xfs, "
"বা jfs) প্রয়োজন\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "স্বয়ংক্রিয়-বন্টনের জন্য কোন খালি জায়গা নেই"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "কিছু করার নাই"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index a0267ee51..78517f58c 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: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2018-11-27 15:58+0100\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:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -157,7 +157,7 @@ msgstr "Bevaat APIC lec'hel"
msgid "Security"
msgstr "Diogelroez"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -178,112 +178,117 @@ msgstr "Klaskit adarre mar plij"
msgid "You cannot use a password with %s"
msgstr "Gellout a rit implij ur ger-tremen gant %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Kefluniadur al loc'hañ"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr "Staliañ pe bremanaat rEFInd er barzhadur ESP"
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr "Staliañ e /EFI/BOOT (skor lem/laka pe hent-tro evit BIOSoù zo)"
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Skridennad"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Ouzhpennañ en diwezh"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Mod video"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Skeudenn"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Gwrizienn"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Dibaboù Xen"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Tremenger evit loc'hañ"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Profil rouedad"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Dre ziouer"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Berzet eo ar skridennadoù goullo"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Ret eo deoc'h kaout ur skeudenn kalon"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Ret eo deoc'h kaout ur parzhadur gwrizienn"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennañ ?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Reizhiadoù all (Windows ...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -292,12 +297,12 @@ msgstr ""
"Setu da heul an enmontoù liesseurt.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "Arrabit cheñchet en ESP pe ar MBR"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -309,19 +314,19 @@ msgstr "Arrabit cheñchet en ESP pe ar MBR"
msgid "Warning"
msgstr "Hoc’h evezh"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Klask ar reizhiadoù all"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -331,47 +336,47 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "Aotreañ « su »"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -380,154 +385,154 @@ msgstr ""
"An anv arveriad a zle krogiñ gant ul lizherenn munut ha war he lerc'h "
"lizherennoù munut, sifroù, `-' ha `_' hepken"
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Re hir eo an anv arveriad-se"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "ID an arveriad"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "ID ar strollad"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "ret eo da %s bezañ un niver"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Merañ an arveriaded"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Termeniñ tremenger ar merour (root)"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Skrivit anv un arveriad"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Arlun"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Anv gwirion"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Anv ereañ"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Stroladoù ouzhpenn :"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Gortozit mar plij, emaon oc'h ouzhpennañ ur media ..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Emereañ"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Implij an arc'hwel-mañ"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Dibabit an arveriad dre ziouer :"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dibabit ar merour prenestrer da seveniñ :"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Cheñchamantoù"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Serriñ"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Emglev an aotre"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Kuitaat"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Hag e plij an aotre-mañ deoc'h ?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Plijout a ra din"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Ne blij ket din"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Dibabit ar yezh da implijout, mar plij"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -538,87 +543,87 @@ msgstr ""
" yezhoù all hag a vo hegerz goude staliañ (ur wech e vo bet adloc'het\n"
" ar reizhiad)"
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Liesyezh"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "Dibab yezhoù ouzhpenn"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kodadur kozh (n'eo ket UTF-8)"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "An holl yezhoù"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Dibab ho yezh"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Bro / Rannvro"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Dibabit ho pro, mar plij"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Setu eo listenn leun ar broioù holl"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Broioù all"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Barrek"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Hentenn enkas :"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Hini ebet"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "N'eo ket lodañ"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Aotreañ pep arveriad"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Personelañ"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -628,86 +633,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Lañsañ userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, 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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Takad-eur"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Kefluniadur an deiziad, an eurier hag an amzer"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Peseurt hini zo an amzer welloc'h ?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (war UTC eo lakaet hoc’h eurier periantel)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (war GMT eo lakaet hoc’h eurier periantel)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "Servijer NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1030,7 +1035,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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1045,47 +1050,47 @@ msgstr ""
"gortozit \n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO gant meuziad skrid"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 gant meuziad grafek"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 gant meuziad skrid"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB gant meuziad grafek"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB gant meuziad skrid"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd gant meuziad grafek"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux gant meuziad skrid"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "n'eus ket a-walc'h egor e /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1094,7 +1099,7 @@ msgstr ""
"Ret eo bremanaat kefluniadur ho karger loc'hañ peogwir e oa cheñchet niver "
"ar parzhiadurioù"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1103,7 +1108,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:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Staliañ ar c'harger loc'hañ c'hoazh"
@@ -1218,7 +1223,7 @@ msgstr "Graet"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2646,7 +2651,7 @@ msgid ""
msgstr ""
"Meur a bladenn hoc’h eus. Pehini hoc’h eus c'hoant da implij evit staliañ ?"
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2731,7 +2736,7 @@ msgstr "servijer"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2751,22 +2756,22 @@ msgstr ""
"(%s eo ar fazi)\n"
"\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Poentoù marc'hañ a rank kregiñ gant /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2778,19 +2783,19 @@ msgstr ""
"N'eus ket moaien da loc'hañ hep ur barzhadur /boot.\n"
"Bezit sur hoc’h eus ouzhpennet ur barzhadur /boot"
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, 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:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2799,12 +2804,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:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "N'eus ket plas dieub a-walac'h"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Netra d'ober"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index b78fa072a..57b7960c0 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2019-04-16 15:44+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Bosnian (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -18,7 +18,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -170,7 +170,7 @@ msgstr "Uključi Local APIC"
msgid "Security"
msgstr "Sigurnost"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -191,112 +191,117 @@ msgstr "Molim pokušajte ponovo"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Šifra (ponovo)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Oznaka"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Video režim"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Xen append"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Mrežni profil"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Default"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Morate navesti image kernela"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Morate navesti root particiju"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Ova oznaka je već u upotrebi"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu opcije želite dodati?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Ostali OSi (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -305,12 +310,12 @@ msgstr ""
"Ovo su trenutne opcije u vašem boot meniju.\n"
"Možete dodati nove ili promijeniti postojeće."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -322,19 +327,19 @@ msgstr ""
msgid "Warning"
msgstr "Upozorenje"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -344,199 +349,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "pristup mrežnim alatima"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "pristup alatima za kompajliranje"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Molim navedite korisničko ime"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Korisničko ime je predugačko"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Ovo korisničko ime je već dodano"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Korisnički ID"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Grupni ID"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "Opcija %s mora biti broj"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s mora biti veće od 1000. Svejedno prihvati?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Podesite administratorsku (root) šifru"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Pravo ime"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Korisničko ime"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Molim sačekajte, dodajem medije..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Koristi ovu mogućnost"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Napomene izdanja"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Zatvori"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Licencni ugovor"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Izlaz"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Prihvatam"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Ne prihvatam"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Molim izaberite jezik koji ćete koristiti"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -544,87 +549,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kompatibilnost sa starim (ne-UTF8) kodiranjem"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Svi jezici"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Izbor jezika"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Država / Oblast"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Molim izaberite vašu državu"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ovdje je puna lista svih dostupnih država"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Ostale države"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Više opcija"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Metod unosa:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Ništa"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Vlastito"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -642,7 +647,7 @@ msgstr ""
"\"Izaberi korisnike\" vam omogućuje da podesite ovu opciju zasebno za svakog "
"korisnika.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -651,7 +656,7 @@ msgstr ""
"NFS: tradicionalni Unix sistem za dijeljenje datoteka, koji ima slabiju "
"podršku na Macintoshu i Windowsu."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -660,7 +665,7 @@ msgstr ""
"SMB: sistem za dijeljenje datoteka koji koristi Windows, Mac OS X i većina "
"modernih Linux sistema."
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -668,12 +673,12 @@ msgstr ""
"Možete eksportovati koristeći NFS ili Sambu. Molim izaberite sistem koji "
"želite koristiti."
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -682,56 +687,56 @@ msgstr ""
"Dijeljenje na nivou korisnika koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Vremenska zona"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Postavke datuma, sata i vremenske zone"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Koje je vrijeme tačnije?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardverski sat podešen na UTC)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardverski sat podešen na lokalno vrijeme)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP server"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
@@ -1064,7 +1069,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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1079,47 +1084,47 @@ msgstr ""
"sacekajte da se pokrene podrazumjevani OS.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 sa grafičkim menijem"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 sa tekstualnim menijem"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB sa grafičkim menijem"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB sa tekstualnim menijem"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1128,7 +1133,7 @@ msgstr ""
"Konfiguracija vašeg bootloadera mora biti ažurirana pošto su particije "
"renumerisane"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1137,7 +1142,7 @@ msgstr ""
"Ne mogu ispravno instalirati bootloader. Morate pokrenuti \"rescue\" sistem "
"i izabrati \"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstalacija bootloadera"
@@ -1256,7 +1261,7 @@ msgstr "Gotovo"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2731,7 +2736,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2816,7 +2821,7 @@ msgstr "server"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "BIOS softverski RAID je pronađen na diskovima %s. Da ga aktiviram?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2835,22 +2840,22 @@ msgstr ""
"\n"
"Slažete li se sa gubitkom svih particija?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju počinjati sa /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Tačka montiranja se treba sastojati samo od brojeva i slova"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2858,17 +2863,17 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2877,12 +2882,12 @@ msgstr ""
"Potreban vam je pravi file sistem (ext2/3/4, reiserfs, xfs ili jfs) za ovu "
"tačku montiranja\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nemam šta da radim"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 4fae341d2..47b655938 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-10-05 18:26+0000\n"
"Last-Translator: Davidmp <medipas@gmail.com>\n"
"Language-Team: Catalan (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -22,7 +22,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -175,7 +175,7 @@ msgstr "Habilita APIC local"
msgid "Security"
msgstr "Seguretat"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -196,114 +196,119 @@ msgstr "Si us plau, torneu-ho a intentar"
msgid "You cannot use a password with %s"
msgstr "No podeu utilitzar una contrasenya amb %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuració del gestor d'arrencada"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr "Instal·la o actualitza el rEFInd a la partició EFI del sistema"
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
"Instal·la'l a /EFI/BOOT (dispositiu extraïble o solució temporal per a "
"alguns BIOS)"
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Afegeix"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Mode de vídeo"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Imatge"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Arrel"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Annex Xen"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Cal una contrasenya per a arrencar"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Perfil de xarxa"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predeterminat"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Heu d'especificar una imatge de kernel"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Heu d'especificar una partició arrel"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Aquesta etiqueta ja està en ús"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Un altre SO (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -312,12 +317,12 @@ msgstr ""
"Aquestes són les diferents entrades en el menú d'arrencada.\n"
"Podeu afegir-ne més o canviar les existents."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "No toquis l'ESP o l'MBR"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -329,7 +334,7 @@ msgstr "No toquis l'ESP o l'MBR"
msgid "Warning"
msgstr "Advertència"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
@@ -338,12 +343,12 @@ msgstr ""
"Si no s'instal·la a l'MBR o l'ESP vol dir que la instal·lació no és "
"arrencable si no és que s'encadeni des d'un altre sistema operatiu!"
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Comprova si hi ha altres sistemes operatius"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -358,47 +363,47 @@ msgstr ""
"altres sistemes operatius del menú d'arrencada del grub2, però reduirà el "
"temps necessari per instal·lar les actualitzacions del nucli."
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "accés als programes de les X"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "accés a les eines rpm"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "permet «su»"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "accés als fitxers administratius"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "accés a les eines de xarxa"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "accés a les eines de compilació"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Introduïu un nom d'usuari"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -407,154 +412,154 @@ 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:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "El nom d'usuari és massa llarg"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Id. d'usuari"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Id. de grup"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s ha de ser un número"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s hauria de ser superior a 1000. Continuar tot i això?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Gestió d'usuaris"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Habilita el compte de convidat"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Establiu la contrasenya de l'administrador (root)"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Introduïu un usuari"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Icona"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Nom real"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Nom d'accés"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Grups extres:"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Espereu, si us plau; s'estan afegint els mitjans..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Entrada automàtica"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Puc configurar el vostre ordinador perquè entri automàticament amb un nom "
"d'usuari."
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Utilitza aquesta característica"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per defecte:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Notes de la versió"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Tanca"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Acord de llicència"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Surt"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Accepteu aquesta llicència?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Accepta"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Rebutja"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Trieu la llengua que voleu utilitzar"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -565,87 +570,87 @@ msgstr ""
"les que voleu instal·lar. Estaran disponibles quan\n"
"la instal·lació hagi acabat i reinicieu l'ordinador."
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Llengües diverses"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "Seleccioneu les llengües addicionals"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Compatibilitat amb la codificació antiga (no UTF-8)"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Totes les llengües"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Tria de llengua"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "País / Regió"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Seleccioneu el vostre país"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aquesta és la llista completa de països"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Altres països"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avançat"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Mètode d'entrada:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Cap"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "No es comparteix"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Permet tots els usuaris"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Personalitzat"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -660,7 +665,7 @@ msgstr ""
"\n"
"«Personalitzat» permet configurar cada usuari per separat.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -669,7 +674,7 @@ msgstr ""
"NFS: el sistema de compartició de fitxers tradicional d'Unix, amb menys "
"compatibilitat a Mac i Windows."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -678,18 +683,18 @@ msgstr ""
"SMB: un sistema de compartició de fitxers utilitzat per Windows, Mac OS X i "
"molts sistemes Linux moderns."
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Podeu exportar mitjançant NFS o SMB. Seleccioneu quin voleu utilitzar."
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Executa userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -698,7 +703,7 @@ msgstr ""
"La compartició en funció de l'usuari utilitza el grup «fileshare».\n"
"Podeu utilitzar userdrake per afegir un usuari a aquest grup."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -707,47 +712,47 @@ msgstr ""
"Heu de sortir i tornar a entrar perquè els canvis tinguin efecte. Premeu "
"«D'acord» per a sortir ara mateix."
-#: any.pm:1701
+#: any.pm:1707
#, 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 perquè els canvis tinguin efecte"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Zona horària"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "En quina zona horària us trobeu?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Paràmetres de la data, del rellotge i de la zona horària"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Quina és la millor hora?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (el rellotge de maquinari està establert a UTC)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (el rellotge de maquinari està establert a hora local)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronització automàtica de l'hora (mitjançant NTP)"
@@ -1090,7 +1095,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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1105,47 +1110,47 @@ msgstr ""
"per arrencar en el sistema operatiu predeterminat.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO amb menú de text"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 amb menú gràfic"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 amb menú de text"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB amb menú gràfic"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB amb menú de text"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd amb menú gràfic"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot / Extlinux amb menú de text"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1154,7 +1159,7 @@ msgstr ""
"La configuració del vostre gestor d'arrencada s'ha d'actualitzar, ja que la "
"partició ha estat renumerada"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1163,7 +1168,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:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstal·la el gestor d'arrencada"
@@ -1283,7 +1288,7 @@ msgstr "Fet"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2777,7 +2782,7 @@ msgid ""
msgstr ""
"Teniu més d'una unitat de disc. Quina voleu que l'instal·lador faci servir?"
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2864,7 +2869,7 @@ msgstr ""
"S'ha detectat que el BIOS permet RAID per programari en els discs %s. Ho "
"voleu activar?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2884,22 +2889,22 @@ msgstr ""
"\n"
"Esteu d'acord a perdre totes les particions?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de començar amb una /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, 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:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2910,18 +2915,18 @@ 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:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, 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:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2930,12 +2935,12 @@ msgstr ""
"Necessiteu un sistema de fitxers real (ext2/3/4, reiserfs, xfs o jfs) per a "
"aquest punt de muntatge\n"
-#: fsedit.pm:548
+#: 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:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Res a fer"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index a2c549a03..f9f82f921 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-09-29 07:43+0000\n"
"Last-Translator: fri\n"
"Language-Team: Czech (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -21,7 +21,7 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -173,7 +173,7 @@ msgstr "Povolit lokální APIC"
msgid "Security"
msgstr "Bezpečnost"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -194,113 +194,118 @@ msgstr "Zkuste to znovu, prosím"
msgid "You cannot use a password with %s"
msgstr "Nemůžete použít heslo s %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Heslo (podruhé)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Nastavení zaváděcího programu"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr "Instalovat nebo aktualizovat rEFInd do systémového oddílu EFI"
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
"Instalovat /EFI/BOOT (odstranitelné zařízení nebo řešení pro některé BIOSy)"
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Značka"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Připojit"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Video režim"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Obraz (image)"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Kořenový (root)"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Připojit Xen"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Vyžaduje pro zavedení heslo"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Síťový profil"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Výchozí"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Prázdná značka není povolena"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Musíte zadat soubor s jádrem"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Musíte zadat kořenový oddíl"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Tato značka se již používá"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Jaký typ záznamu chcete přidat?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Jiný systém (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -309,12 +314,12 @@ 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:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "Nesahat na ESP nebo MBR"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -326,7 +331,7 @@ msgstr "Nesahat na ESP nebo MBR"
msgid "Warning"
msgstr "Varování"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
@@ -335,12 +340,12 @@ msgstr ""
"Neinstalovat na ESP nebo MBR znamená, že instalace není zaváděcí, doku není "
"řetězec nahrán z jiného OS!"
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Vyzkoušet cizí OS"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -350,47 +355,47 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "přístup k programům v X prostředí"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "přístup k rpm nástrojům"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "povolit \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "přístup k administrativním souborům"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "přístup k síťovým nástrojům"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "přístup k nástrojům pro kompilaci"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(už byl přidán %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Prosím zadejte uživatelské jméno"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -399,153 +404,153 @@ 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:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Toto uživatelské jméno je příliš dlouhé"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Toto uživatelské jméno už bylo přidáno"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "ID uživatele"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "ID skupiny"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s musí být číslo"
-#: any.pm:1037
+#: any.pm:1042
#, 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:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Správa uživatelů"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Povolit účet hosta"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Heslo správce (uživatele root)"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Zadejte uživatele"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Skutečné jméno"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Přihlašovací jméno"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Další skupiny:"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Prosím počkejte, přidávají se zdroje..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatické přihlášení"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Použít tuto vlastnost"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Zvolte standardního uživatele:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vyberte si, který správce oken má být spouštěn:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Poznámky k vydání"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Zavřít"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Souhlas s licencí"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Konec"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Přijímáte tuto licenci?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Přijmout"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Odmítnout"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Prosím zvolte si jazyk, který chcete používat"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -556,87 +561,87 @@ msgstr ""
"chcete nainstalovat podporu. Tyto budou dostupné po dokončení\n"
"instalace a restartu systému."
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Více jazyků"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "Vybrat další jazyky"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Stará (ne UTF-8) kódování pro kompatibilitu"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Všechny jazyky"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Výběr jazyka"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Země"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Vyberte si, prosím, svoji zem"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Zde je úplný seznam dostupných zemí"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Jiné země"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Rozšíření"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Vstupní metoda:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Žádné"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Nesdílet"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Povolit všem uživatelům"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Vlastní"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -652,7 +657,7 @@ msgstr ""
"\n"
"Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -661,7 +666,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:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -670,7 +675,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:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -678,12 +683,12 @@ msgstr ""
"Nyní lze provést export přes protokol NFS nebo SMB. Vyberte, prosím, který "
"chcete použít."
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Spustit UserDrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -692,7 +697,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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -701,47 +706,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:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Časová zóna"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Jaké je vaše časové pásmo?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Nastavení data, hodin a časové zóny"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Jaké vedení času je nejvhodnější?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardwarové hodiny nastaveny na UTC)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardwarové hodiny nastaveny na místní čas)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP Server"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatická synchronizace času (pomocí NTP)"
@@ -1080,7 +1085,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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1095,47 +1100,47 @@ msgstr ""
"vyčkejte na automatické zavedení.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO s textovou nabídkou"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 s grafickou nabídkou"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 s textovou nabídkou"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB s grafickou nabídkou"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB s textovou nabídkou"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd s grafickým menu"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux s textovým menu"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "není dost místa v adresáři /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1144,7 +1149,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:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1153,7 +1158,7 @@ msgstr ""
"Zavaděč se nepodařilo řádně nainstalovat. Spusťte systém v záchranném režimu "
"a zvolte \"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Znovu instalovat zaváděcí program"
@@ -1273,7 +1278,7 @@ msgstr "Hotovo"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2746,7 +2751,7 @@ msgid ""
"to use?"
msgstr "Máte více než jeden pevný disk. Který chcete k instalaci použít?"
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, 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 ztraceny"
@@ -2830,7 +2835,7 @@ msgstr "server"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "Na discích %s byl nalezen softwarový RAID řízený BIOSem. Zapnout?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2848,22 +2853,22 @@ msgstr ""
"\n"
"Chcete přijít o všechny současně existující oddíly?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Přípojné body musí začínat '/'"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, 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:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2874,18 +2879,18 @@ 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:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, 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:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2894,12 +2899,12 @@ msgstr ""
"Pro tento přípojný bod potřebujete opravdový souborový systém (ext2/ext3, "
"reiserFS, XFS nebo JFS)\n"
-#: fsedit.pm:548
+#: 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:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nic nedělat"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 9998f7600..7e833b85c 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: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2018-01-07 21:25+0100\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\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:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -169,7 +169,7 @@ msgstr "Galluogi APIC lleol"
msgid "Security"
msgstr "Diogelwch"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -190,112 +190,117 @@ msgstr "Ceisiwch eto"
msgid "You cannot use a password with %s"
msgstr "Nid oes modd defnyddio cyfrinair gyda %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Ffurfweddu'r Cychwynnwr"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Atodi"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Modd fideo"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Delwedd"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Gwraidd"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Atodiad Xen"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Proffil rhwydwaith"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Rhagosodedig"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Ni chaniateir label wag"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Rhaid enwi delwedd cnewyllyn"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Rhaid pennu rhaniad gwraidd"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Systemau Gweithredu Eraill (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -304,12 +309,12 @@ 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:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -321,19 +326,19 @@ msgstr ""
msgid "Warning"
msgstr "Rhybudd"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -343,199 +348,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "caniatáu \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "mynediad i offer rhwydwaith"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "mynediad i offer crynhoad"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Enw Defnyddiwr"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Enw Grŵp"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "Rhaid i %s fod yn rhif!"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "Dylai %s fod dros 1000. Parhau beth bynnag?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Rheoli defnyddiwr"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Galluogi cyfrif gwadd"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Gosod cyfrinair gweinyddwr (root)"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Rhowch enw defnyddiwr"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Eicon"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Enw cywir"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Enw mewngofnodi"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Cragen"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Arhoswch, ychwanegu cyfrwng..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Awto mewngofnodi"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Defnyddiwch y nodwedd"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i redeg:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Nodiadau'r fersiwn"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Cau"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Cytundeb trwyddedu"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Gadael"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Ydych chi'n derbyn y drwydded hon?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Derbyn"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Gwrthod"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Dewiswch iaith i'w defnyddio"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -546,87 +551,87 @@ msgstr ""
"yr ieithoedd yr hoffech chi eu gosod. Byddant ar gael\n"
"ar ôl i chi ailgychwyn y system wedi i'r gosod gwblhau."
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Hen Amgodiad (nid utf-8)"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Pob iaith"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Dewis iaith"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Gwlad / Ardal"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Dewiswch eich gwlad"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Dyma restr lawn o'r gwledydd sydd ar gael"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Gwledydd eraill"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Uwch"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Dull mewnbwn:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Dim"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Peidio rhannu"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Addasedig"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -641,7 +646,7 @@ msgstr ""
"\n"
"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -650,7 +655,7 @@ msgstr ""
"NFS: system rhannu ffeiliau traddodiadol Unix, sydd â llai o gefnogaeth ar "
"Mac a Windows."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -659,19 +664,19 @@ msgstr ""
"SMB: system rhannu ffeiliau sy'n cael ei ddefnyddio yn Windows, Mac OSX a "
"nifer o systemau Linux diweddar."
-#: any.pm:1560
+#: any.pm:1566
#, 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:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -680,7 +685,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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -689,47 +694,47 @@ msgstr ""
"Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd. Cliciwch Iawn i "
"allgofnodi nawr."
-#: any.pm:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Cylchfa amser"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Gosodiadau Dyddiad Cloc a Chylchedd Amser"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Beth yw'r amser gorau?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (cloc caledwedd wedi ei osod i UTC)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (cloc caledwedd wedi ei osod i'r amser lleol)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "Gweinydd NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
@@ -1064,7 +1069,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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1079,47 +1084,47 @@ msgstr ""
"aros am y cychwyn rhagosodedig\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO gyda dewislen testun"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 gyda dewislen raffigol"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 gyda dewislen testun"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB gyda dewislen raffigol"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB gyda dewislen testun"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, fuzzy, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd gyda dewislen raffigol"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, fuzzy, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux gyda dewislen testun"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1128,7 +1133,7 @@ msgstr ""
"Rhaid i ffurfweddiad eich cychwynnwr gael ei ddiweddaru am i'r rhaniadau "
"gael eu hail rifo."
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1137,7 +1142,7 @@ msgstr ""
"Methu gosod eich cychwynnwr yn iawn, Rhaid defnyddio achub cychwyn a dewis "
"\"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Ail osod Cychwynnwr"
@@ -1256,7 +1261,7 @@ msgstr "Gorffen"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2738,7 +2743,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, 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"
@@ -2822,7 +2827,7 @@ msgstr "Gweinydd"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "Mae meddalwedd BIOS RAID wedi ei ganfod ar ddisgiau %s. Gweithredu?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2840,22 +2845,22 @@ msgstr ""
"\n"
"Ydych chi'n fodlon colli'r holl raniadau?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Rhaid i bwyntiau arosod gynnwys / arweiniol"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Dylai enw'r pwyntiau arosod gynnwys llythrennau a rhifau'n unig"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2863,17 +2868,17 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dylai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2882,12 +2887,12 @@ msgstr ""
"Mae angen gwir system ffeilio (ext2, reiserfs, xfs, neu jfs)) ar gyfer y "
"pwynt arosod\n"
-#: fsedit.pm:548
+#: 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:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Dim i'w wneud"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index ee4c128b8..f10057929 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2018-11-04 20:04+0000\n"
"Last-Translator: scootergrisen\n"
"Language-Team: Danish (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -23,7 +23,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -174,7 +174,7 @@ msgstr "Aktivér lokal APIC"
msgid "Security"
msgstr "Sikkerhed"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -195,112 +195,117 @@ msgstr "Prøv igen"
msgid "You cannot use a password with %s"
msgstr "Du kan ikke bruge en adgangskode med %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Adgangskode (igen)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguration af opstarter"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr "Installér eller opdatér rEFInd i EFI-systempartitionen"
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, fuzzy, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr "Installer i /EFI/BOOT (alternativ løsning til nogle BIOS'er)"
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Mærkat"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Vedhæft"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Videoindstilling"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Billede"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Rod"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Xen-tilføjning"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Kræver adgangskode for at starte op"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Netværksprofil"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Tom mærkat er ikke tilladt"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Du skal angive en kerne-fil"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Du skal angive en root-partition"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Denne mærkat er allerede brugt"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type ønsker du at tilføje?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Andet styresystem (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -309,12 +314,12 @@ msgstr ""
"Her er følgende typer indgange.\n"
"Du kan tilføje flere eller ændre de eksisterende."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "Rør ikke ESP eller MBR"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -326,7 +331,7 @@ msgstr "Rør ikke ESP eller MBR"
msgid "Warning"
msgstr "Advarsel"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
@@ -335,12 +340,12 @@ msgstr ""
"Ikke installeret på ESP eller MBR betyder at installationen ikke er bootbar "
"medmindre den kædeindlæses fra et andet OS!"
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Sondring af fremmede OS"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -350,47 +355,47 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "adgang til rpm-værktøjer"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "adgang til netværksværktøjer"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "adgang til oversættelsesværktøjer"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilføjet %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -399,153 +404,153 @@ msgstr ""
"Brugernavnet skal starte et lille bogstav, efterfulgt kun af små bogstaver, "
"tal, `-' og `_'"
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Dette brugernavn findes allerede"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Bruger-id"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Gruppe-id"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s skal være et tal"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s burde være over 1000. Acceptér alligevel?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Administration af brugere"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Aktivér gæstekonto"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Sæt administrator (root) adgangskode"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Indtast en bruger"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Ikon"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Rigtige navn"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Loginnavn"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Skal"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Ekstra grupper:"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Vent venligst, tilføjer medie..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatisk login"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Brug denne facilitet"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Vælg den forvalgte bruger:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vælg den vindueshåndtering du vil køre:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Udgivelsesnoter"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Luk"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Licensaftale"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Afslut"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Accepterer du denne licens?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Acceptér"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Afvis"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Vælg det sprog, der skal bruges"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -556,87 +561,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:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Flere sprog"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "Vælg flere sprog"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Gammel kompatibilitetskoding (ikke UTF-8)"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Alle sprog"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Sprogvalg"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Land / Region"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Vælg dit land"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Her er den komplette liste over tilgængelige lande"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Andre lande"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avanceret"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Indtastningsmetode:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Ingen"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Ingen fildeling"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Tilpasset"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -650,7 +655,7 @@ msgstr ""
"Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke på "
"'Fildeling' i konqueror og nautilus.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -659,7 +664,7 @@ msgstr ""
"NFS: det traditionlle Unix fildelingssystem, med mindre funktionalitet på "
"Mac og Windows."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -668,18 +673,18 @@ msgstr ""
"SMB: et fildelingssystem brugt på Windows, Mac OS X og mange moderne Linux-"
"systemer."
-#: any.pm:1560
+#: any.pm:1566
#, 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:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -688,7 +693,7 @@ msgstr ""
"Deling per bruger, bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilføje en bruger til denne gruppe."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -697,47 +702,47 @@ msgstr ""
"Du skal logge ud og ind igen for at ændringerne skal gælde. Tryk på OK for "
"at logge ud nu."
-#: any.pm:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Tidszone"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dato-, ur- og tidszoneopsætning"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Hvilken tid er bedst?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardware-ur sat til UTC)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardware-ur sat til lokal tid)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP-server"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)"
@@ -1077,7 +1082,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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1092,47 +1097,47 @@ msgstr ""
"vent på at starte standardsystemet.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO med tekstmenu"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 med grafisk menu"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 med tekstmenu"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB med grafisk menu"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB med tekstmenu"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd med grafisk menu"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux med tekstmenu"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1141,7 +1146,7 @@ msgstr ""
"Din opstartsindlæserkonfiguration behøver at opdateres da rækkefølgen på "
"dine partitioner er blevet ændret"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1150,7 +1155,7 @@ msgstr ""
"Opstartsindlæseren kan ikke blive installeret korrekt. Du skal lave "
"nødopstart og vælge \"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Geninstallér systemopstarter"
@@ -1270,7 +1275,7 @@ msgstr "Færdig"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2751,7 +2756,7 @@ msgstr ""
"Du har mere end en harddisk, hvilken ønsker du installationsprogrammet skal "
"bruge?"
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, 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"
@@ -2835,7 +2840,7 @@ msgstr "server"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "BIOS-software RAID opdaget på diskene %s. Skal det aktiveres?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2853,22 +2858,22 @@ msgstr ""
"\n"
"Er du indforstået med at miste alle partitionerne?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Monteringsstier skal begynde med /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Monteringspunkter bør kun indeholde bogstaver og tal"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2879,17 +2884,17 @@ 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:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dette katalog bør ligge på rod-filsystemet"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2898,12 +2903,12 @@ msgstr ""
"Du skal have et rigtigt filsystem (ext2/3/4, reiserfs, xfs eller jfs) til "
"dette monteringspunkt\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ikke nok ledig plads til at tildele nye partitioner automatisk"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Intet at lave"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 00cd5bb84..d547de45e 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: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-09-23 17:41+0000\n"
"Last-Translator: psyca\n"
"Language-Team: German (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -23,7 +23,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -176,7 +176,7 @@ msgstr "Lokales APIC aktivieren"
msgid "Security"
msgstr "Sicherheit"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -197,114 +197,119 @@ msgstr "Bitte versuchen Sie es erneut"
msgid "You cannot use a password with %s"
msgstr "Sie können kein Passwort mit %s benutzen"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Passwort (erneut)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguration des Bootloaders"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr "Installiere oder aktualisiere rEFInd in der EFI-Systempartition"
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
"In /EFI/BOOT installieren (entfernbare Geräte oder Problemumgehung für "
"einige BIOSe)"
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Bezeichnung"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Hinzufügen / Erweitern"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Video-Modus"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Abbild"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Xen hinzufügen"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Benötigt Passwort zum Booten"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Init-RamDisk"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Netzwerk Profil"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Leere Einträge sind nicht erlaubt"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Sie müssen ein Kernel-Image angeben"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Sie müssen die Root-Partition festlegen"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufügen?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Anderes OS (Windows ...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -313,12 +318,12 @@ msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie können weitere hinzufügen oder existierende ändern."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "Verändere nichts an der ESP oder dem MBR"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -330,7 +335,7 @@ msgstr "Verändere nichts an der ESP oder dem MBR"
msgid "Warning"
msgstr "Warnung"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
@@ -340,12 +345,12 @@ msgstr ""
"dies, dass die Installation nicht startfähig ist, solange diese nicht von "
"einem Bootloader eines anderen Betriebssystems (Chainloading) geladen wird!"
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Fremdes OS testen"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -361,47 +366,47 @@ msgstr ""
"allerdings die Installation von Kernel-Aktualisierungen schneller "
"durchgeführt werden können."
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "Zugriff auf Netzwerk-Werkzeuge"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "Zugriff auf Kompilier-Werkzeuge"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefügt)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Bitte geben Sie einen Benutzernamen an"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -410,154 +415,154 @@ msgstr ""
"Der Benutzername muss mit einem Kleinbuchstaben beginnen und sollte nur aus "
"Kleinbuchstaben, Ziffern, „-“ und „_“ bestehen."
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Dieser Benutzername ist zu lang"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Dieser Benutzername existiert bereits"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Benutzer-ID"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Gruppen-ID"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s muss eine Zahl sein"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s sollte größer als 1000 sein. Trotzdem akzeptieren?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Benutzerverwaltung"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Den Gastzugang aktivieren"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Administratorpasswort setzen"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Benutzer einrichten"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Symbol"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Vollständiger Name"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Benutzername"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Weitere Gruppen:"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Bitte warten, füge Medien hinzu ..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatisch anmelden"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Diese Möglichkeit nutzen"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Versionshinweise"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Schließen"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Lizenzvereinbarung"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Verlassen"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Akzeptieren Sie diese Lizenz?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Akzeptieren"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Ablehnen"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Bitte wählen Sie die zu verwendende Sprache"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -569,87 +574,87 @@ msgstr ""
"sein,\n"
"wenn Ihre Installation beendet ist und Sie das System neu starten."
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Mehrere Sprachen"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "Wählen Sie zusätzliche Sprachen aus"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Alte (nicht UTF-8) Kodierung"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Alle Sprachen"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Sprachauswahl"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Land / Region"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Bitte wählen Sie Ihr Land"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier ist die komplette Liste aller Länder"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Andere Länder"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Fortgeschritten"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Eingabe-Methode:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Keine"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Keine Freigaben"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Benutzerdefiniert"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -664,7 +669,7 @@ msgstr ""
"\n"
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Benutzer vornehmen.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -673,7 +678,7 @@ msgstr ""
"NFS: das traditionelle Unix-Dateisystem für Freigaben im Netz, mit weniger "
"Unterstützung für Mac und Windows."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -682,7 +687,7 @@ msgstr ""
"SMB: ein Dateisystem welches für Freigaben im Netz von Windows, Mac OS X und "
"vielen modernen Linux-Systemen verwendet wird."
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -690,12 +695,12 @@ msgstr ""
"Sie können die Dateien mittels SMB oder NFS anbieten. Welche Variante wollen "
"Sie verwenden?"
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "UserDrake starten"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -704,7 +709,7 @@ msgstr ""
"Die Freigaben zwischen Benutzern regelt die Gruppe „fileshare“. \n"
"Sie können UserDrake verwenden, um Benutzer in diese Gruppe aufzunehmen."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -713,49 +718,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:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Zeitzone"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Datum, Zeit und Zeitzonen Einstellungen"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Welches ist die beste Zeit?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (Hardware Uhr gestellt auf GMT)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (Hardware Uhr gestellt auf Ortszeit)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP-Server"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
@@ -1098,7 +1103,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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1113,47 +1118,47 @@ msgstr ""
"oder warten Sie auf das Starten des Standard-Betriebssystems.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO mit Textmenü"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 mit grafischem Menü"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 mit Textmenü"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB mit grafischem Menü"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB mit Textmenü"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd mit grafischem Menü"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux mit Textmenü"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1162,7 +1167,7 @@ msgstr ""
"Ihre Bootloaderkonfiguration muss geändert werden, da sich Ihre "
"Partitionsnummerierung geändert hat"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1171,7 +1176,7 @@ msgstr ""
"Der Bootloader kann nicht richtig installiert werden. Sie müssen ins "
"Rettungssystem booten und „%s“ wählen"
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Bootloader neu installieren"
@@ -1291,7 +1296,7 @@ msgstr "Fertig"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2809,7 +2814,7 @@ msgstr ""
"Sie verfügen über mehr als eine Festplatte, welche soll vom "
"Installationsprogramm benutzt werden?"
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2899,7 +2904,7 @@ msgstr "Server"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "BIOS-Software-RAID wurde auf Festplatte %s gefunden. Aktivieren?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2920,24 +2925,24 @@ msgstr ""
"\n"
"Sind Sie mit dem Verlust aller Partitionen einverstanden?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Einhängepunkte müssen mit einem / beginnen."
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
"Einhängepunkte sollten nur Buchstaben, Ziffern und den Unterstrich "
"unterhalten"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2948,18 +2953,18 @@ msgstr ""
"Kein Bootloader kann diese ohne eine /boot-Partition handhaben.\n"
"Stellen Sie sicher, dass Sie eine separate /boot-Partition angelegt haben."
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dieses Verzeichnis muss innerhalb des Wurzelverzeichnisses bleiben"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2968,12 +2973,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:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nicht genug freier Platz, um eine Partition anzulegen"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nichts zu tun."
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 0c6cf9c03..7d0ba90fb 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-09-22 05:15+0000\n"
"Last-Translator: Dimitrios Glentadakis <dglent@free.fr>\n"
"Language-Team: Greek (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -23,7 +23,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -180,7 +180,7 @@ msgstr "Ενεργοποίηση του τοπικού APIC"
msgid "Security"
msgstr "Ασφάλεια"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -201,114 +201,119 @@ msgstr "Παρακαλώ προσπαθήστε ξανά"
msgid "You cannot use a password with %s"
msgstr "Δεν μπορείτε να χρησιμοποιήσετε έναν κωδικό πρόσβασης με %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Κωδικός πρόσβασης (ξανά)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Ρύθμιση του προγράμματος εκκίνησης"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr "Εγκατάσταση ή ενημέρωση του rEFInd στην κατάτμηση συστήματος EFI"
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
"Εγκατάσταση στο /EFI/BOOT (αφαιρούμενη συσκευή ή εναλλακτική λύση για μερικά "
"BIOS)"
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Ετικέτα"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Επιλογές περασμένες στον πυρήνα"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Λειτουργία βίντεο"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Εικόνα"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Κατάτμηση root"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Επιλογές Xen περασμένες στον πυρήνα"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Απαιτείται ένας κωδικός πρόσβασης για την εκκίνηση"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Προφίλ δικτύου"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Προκαθορισμένο"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Δεν επιτρέπεται μια κενή ετικέτα"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Πρέπει να ορίσετε μια εικόνα πυρήνα"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Πρέπει να ορίσετε μια κατάτμηση root"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Αυτή η ετικέτα χρησιμοποιείται ήδη"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Τι τύπου σύστημα θέλετε να προσθέσετε;"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Άλλο λειτουργικό (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -317,12 +322,12 @@ msgstr ""
"Ορίστε οι καταχωρήσεις στο μενού εκκίνησης.\n"
"Μπορείτε να προσθέσετε κι άλλες ή να αλλάξετε τις υπάρχουσες."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "Μην αγγίξετε το ESP ή το MBR"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -334,7 +339,7 @@ msgstr "Μην αγγίξετε το ESP ή το MBR"
msgid "Warning"
msgstr "Προσοχή"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
@@ -344,12 +349,12 @@ msgstr ""
"είναι εκτελέσιμη εκτός αν αλυσοδέσετε την φόρτωση από ένα άλλο λειτουργικό "
"σύστημα !"
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Εντοπισμού των άλλων Λειτουργικών Συστημάτων"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -365,47 +370,47 @@ msgstr ""
"μενού εκκίνησης του grub2 αλλά οι ενημερώσεις του πυρήνα θα χρειάζονται "
"λιγότερο χρόνο."
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "πρόσβαση σε προγράμματα γραφικού περιβάλλοντος"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "πρόσβαση σε εργαλεία rpm"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "επιτρέπεται η «su»"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "πρόσβαση σε αρχεία διαχείρισης"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "πρόσβαση σε εργαλεία δικτύου"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "πρόσβαση σε εργαλεία σύνθεσης"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s έχει ήδη προστεθεί)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Παρακαλώ εισάγετε ένα όνομα χρήστη"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -414,153 +419,153 @@ msgstr ""
"Το όνομα χρήστη πρέπει να αρχίζει με πεζό γράμμα και τα γράμματα που "
"ακολουθούν να είναι επίσης πεζά, αριθμοί, «-» και «_»"
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Αυτό το όνομα χρήστη είναι πολύ μακρύ"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Αυτό το όνομα χρήστη έχει ήδη προστεθεί"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Αναγνωριστικό χρήστη"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Αναγνωριστικό ομάδας"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "Το %s πρέπει να είναι αριθμός"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
"Το %s πρέπει να είναι μεγαλύτερο ή ίσο του 1000. Αποδοχή έτσι κι αλλιώς;"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Διαχείριση χρηστών"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Ενεργοποίηση του λογαριασμού επισκέπτη "
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Ορίστε τον κωδικό πρόσβασης του διαχειριστή (root)"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Εισαγάγετε έναν χρήστη"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Εικονίδιο"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Πραγματικό όνομα"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Όνομα χρήστη"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Κέλυφος"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Επιπλέον ομάδες"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Παρακαλώ περιμένετε, προσθήκη μέσου..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Αυτόματη σύνδεση"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Μπορώ να ρυθμίσω το σύστημά σας να συνδέει αυτόματα έναν χρήστη."
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Χρήση αυτού του χαρακτηριστικού"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Επιλέξτε τον προκαθορισμένο χρήστη:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Επιλέξτε το διαχειριστή παραθύρων που θέλετε να χρησιμοποιήσετε:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Σημειώσεις έκδοσης"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Κλείσιμο"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Άδεια χρήσης"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Έξοδος"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Αποδέχεστε αυτήν την άδεια;"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Αποδοχή"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Άρνηση"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Παρακαλώ επιλέξτε τη γλώσσα"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -571,87 +576,87 @@ msgstr ""
"τις γλώσσες που επιθυμείτε να εγκαταστήσετε. Θα είναι διαθέσιμες\n"
"μετά την ολοκλήρωση της εγκατάστασης και την επανεκκίνηση του υπολογιστή."
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Πολλαπλές γλώσσες"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "Επιλογή επιπλέον γλωσσών"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Κωδικοποίηση παλιάς συμβατότητας (μη UTF-8)"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Όλες οι γλώσσες"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Επιλογή γλώσσας"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Χώρα / Περιοχή"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Παρακαλώ επιλέξτε τη χώρα σας"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Αυτή είναι η πλήρης λίστα των διαθέσιμων χωρών"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Άλλες χώρες"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Για προχωρημένους"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Μέθοδος εισαγωγής:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Κανένα"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Χωρίς κοινή χρήση"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Επιτρέπεται για όλους τους χρήστες"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Προσαρμοσμένο"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -666,7 +671,7 @@ msgstr ""
"\n"
"Το \"Προσαρμοσμένο\" επιτρέπει την ανά χρήστη ρύθμιση.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -675,7 +680,7 @@ msgstr ""
"NFS: το παραδοσιακό σύστημα κοινής χρήσης του Unix, με περιορισμένη "
"υποστήριξη για Mac και Windows."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -684,7 +689,7 @@ msgstr ""
"SMB: ένα σύστημα κοινής χρήσης, που χρησιμοποιείται από τα Windows, από το "
"Mac OS X και από πολλά μοντέρνα συστήματα Linux."
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -692,12 +697,12 @@ msgstr ""
"Μπορείτε να κάνετε εξαγωγή με τη χρήση NFS ή SMB. Παρακαλώ επιλέξτε ποιο θα "
"θέλατε να χρησιμοποιήσετε."
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Εκκίνηση του userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -707,7 +712,7 @@ msgstr ""
"Μπορείτε να προσθέσετε ένα χρήστη σε αυτήν την ομάδα χρησιμοποιώντας το "
"userdrake."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -716,49 +721,49 @@ msgstr ""
"Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να "
"επανασυνδεθείτε. Πατήστε «Εντάξει» για να αποσυνδεθείτε τώρα."
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να "
"επανασυνδεθείτε."
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Ωρολογιακή ζώνη"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Ποια είναι η ζώνη ώρας σας;"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Ρυθμίσεις της ημερομηνίας, της ώρας και της ωρολογιακής ζώνης"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Ποια είναι η σωστή ώρα;"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί σε UTC)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί στην τοπική ώρα)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "Εξυπηρετητής NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Αυτόματος συγχρονισμός της ώρας (μέσω NTP)"
@@ -1102,7 +1107,7 @@ msgid "Domain Admin Password"
msgstr "Κωδικός πρόσβασης του διαχειριστή τομέα"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1117,47 +1122,47 @@ msgstr ""
"περιμένετε την εκκίνηση από προεπιλογή.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO με μενού κειμένου"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 με γραφικό περιβάλλον"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 με μενού κειμένου"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB με γραφικό περιβάλλον "
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB με μενού κειμένου"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd με γραφικό μενού"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux με μενού κειμένου"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "δεν υπάρχει αρκετός χώρος στο /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1166,7 +1171,7 @@ msgstr ""
"Η ρύθμιση του προγράμματος εκκίνησης πρέπει να ενημερωθεί επειδή κάποιες "
"κατατμήσεις έχουν επαναριθμηθεί"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1176,7 +1181,7 @@ msgstr ""
"εκκινήσετε το CD-ROM της εγκατάστασης με την επιλογή «διάσωση» και να "
"επιλέξετε «%s»"
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Επανεγκατάσταση του προγράμματος εκκίνησης"
@@ -1298,7 +1303,7 @@ msgstr "Έγινε"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2805,7 +2810,7 @@ msgstr ""
"Έχετε περισσότερους από έναν δίσκους, ποιόν θέλετε να χρησιμοποιήσει ο "
"εγκαταστάτης;"
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2896,7 +2901,7 @@ msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
"Εντοπίστηκε RAID λογισμικό στο BIOS στους δίσκους %s. Να ενεργοποιηθεί;"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2915,23 +2920,23 @@ msgstr ""
"\n"
"Συμφωνείτε να διαγραφούν όλες οι κατατμήσεις;\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Τα σημεία προσάρτησης πρέπει να ξεκινούν με /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
"Τα σημεία προσάρτησης θα πρέπει να περιέχουν μόνο αλφαριθμητικούς χαρακτήρες"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Υπάρχει ήδη μία κατάτμηση με το σημείο προσάρτησης %s\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2943,19 +2948,19 @@ msgstr ""
"κατάτμηση /boot.\n"
"Παρακαλώ βεβαιωθείτε για την προσθήκη μιας ξεχωριστής κατάτμησης /boot"
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε ένα κρυπτογραφημένο σύστημα αρχείων για το "
"σημείο προσάρτησης %s"
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Αυτός ο κατάλογος πρέπει να παραμείνει στη ριζική κατάτμηση"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2964,14 +2969,14 @@ msgstr ""
"Χρειάζεστε ένα πραγματικό σύστημα αρχείων (ext2/3/4, reiserfs, xfs, ή jfs) "
"για αυτό το σημείο προσάρτησης\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
"Δεν υπάρχει αρκετός ελεύθερος χώρος για την αυτόματη δημιουργία νέων "
"κατατμήσεων"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Καμία ενέργεια προς εκτέλεση"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 97b0d08c3..6e7b5a042 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2019-04-16 15:40+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Esperanto (http://www.transifex.com/MageiaLinux/mageia/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -164,7 +164,7 @@ msgstr ""
msgid "Security"
msgstr "Sekureco"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -185,112 +185,117 @@ msgstr "Bonvole provu denove"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasvorto (denove)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etikedo"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Alfiksu"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Grafika reĝimo"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Kerna bildo"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Radiko"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Defaŭlta"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Malplena etikedo ne estas permesata"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Vi devas decidi pri kerno-bildo"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Vi devas difini radikan (root) subdiskon"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Ĉi tiu etikedo estas jam uzata"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linukso"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -299,12 +304,12 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -316,19 +321,19 @@ msgstr ""
msgid "Warning"
msgstr "Averto"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -338,199 +343,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "aliro al X-programoj"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "aliro al rpm-iloj"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "permesu \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "aliro al administraj dosieroj"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "aliro al retiloj"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "aliro al kompililoj"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Ĉi tiu salutnomo estas tro longa"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Ĉi tiu salutnomo estas jam aldonita"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Uzula ID"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Grupa ID"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Enigo de uzulo (Enter a user)"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Piktogramo"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Vera nomo"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Ŝelo"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Bonvole atendu, mi aldonas datumportilon..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Aŭtomata-enregistrado"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Elektu la defaŭltan uzulon:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanĉi:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Publikig-notoj"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Malfermu"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Licenca kontrakto"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Ĉesu"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Akceptu"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Malakceptu"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Bonvole elektu lingvon por uzi"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -538,87 +543,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Ĉiuj lingvoj"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr ""
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Lando"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Bonvole elektu vian landon"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Jen la kompleta listo de atingeblaj landoj"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr ""
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Progresinta"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Neniom"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Ne kundivido"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Permesu ĉiujn uzulojn"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Akomodata"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -634,86 +639,86 @@ msgstr ""
"\n"
"\"Custum\" ebligas per-uzulan.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, 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:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Lanĉu userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, 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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Horzono"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP Servilo"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Auxtomata hor-sinkronizado (uzante NTP) "
@@ -1037,7 +1042,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1052,61 +1057,61 @@ msgstr ""
"atendu por defauxlta starto.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr ""
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "mankas sufiĉe da spaco en /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1226,7 +1231,7 @@ msgstr "Finata"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2656,7 +2661,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2741,7 +2746,7 @@ msgstr "servilo"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2760,22 +2765,22 @@ msgstr ""
"\n"
"Ĉu vi konsentas perdi ĉiujn subdiskojn?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Surmetingoj devas komenci kun antaŭa /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Surmetingoj devas enteni nur alfanumerajn signojn"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jam estas subdisko kun surmetingo ĉe %s\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2783,17 +2788,17 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ĉi tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2802,12 +2807,12 @@ msgstr ""
"Vi bezonas veran dosiersistemon (ext2, reiserfs, xfs aŭ jfs) por tiu "
"surmetingo\n"
-#: fsedit.pm:548
+#: 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:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr ""
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 300e7989f..bca6744da 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -15,7 +15,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-09-22 18:48+0000\n"
"Last-Translator: José Alberto Valle Cid <j.alberto.vc@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -26,7 +26,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -178,7 +178,7 @@ msgstr "Habilitar APIC local"
msgid "Security"
msgstr "Seguridad"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -199,114 +199,119 @@ msgstr "Vuelva a intentarlo, por favor"
msgid "You cannot use a password with %s"
msgstr "No puede usar una contraseña con %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contraseña (de nuevo)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuración del cargador de arranque"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr "Instalar o actualizar rEFInd en la partición EFI system"
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
"Instalar en /EFI/BOOT (dispositivo extraíble o solución alternativa para "
"algunos BIOS)"
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Añadir"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Modo de vídeo"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Imagen"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Raíz"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Añadir Xen"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Requiere contraseña para iniciar"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Perfil de red"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Por defecto"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "No se admite una etiqueta vacía"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Debe especificar una imagen del núcleo"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Debe especificar una partición raíz"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta ya está en uso"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "¿Qué tipo de entrada desea añadir?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Otro SO (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -315,12 +320,12 @@ msgstr ""
"Aquí están las diferentes entradas.\n"
"Puede añadir otras o cambiar las que ya existen."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "No tocar ni ESP ni MBR"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -332,7 +337,7 @@ msgstr "No tocar ni ESP ni MBR"
msgid "Warning"
msgstr "Advertencia"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
@@ -341,12 +346,12 @@ msgstr ""
"Que no se instale en ESP ni en MBR significa que la instalación no arrancará "
"a menos que la cadena se cargue desde otro sistema operativo."
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Sondear sistemas operativos extranjeros"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -361,47 +366,47 @@ msgstr ""
"sistemas del menú de arranque de grub2, pero reduciendo el tiempo necesario "
"para instalar actualizaciones del kernel."
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "acceso a programas X"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "acceso a herramientas rpm"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "acceso a archivos administrativos"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "acceso a herramientas de red"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "acceso a herramientas de compilación"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s ya fue añadido)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Introduzca el nombre de usuario"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -410,154 +415,154 @@ msgstr ""
"El nombre de usuario (login) debe comenzar con una letra minúscula seguida "
"sólo letras minúsculas, números, `-' y `_'"
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "El nombre de usuario es muy largo"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Este nombre de usuario ya fue añadido"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "ID de usuario"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "ID de grupo"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "¡%s debe ser un número!"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s debería ser superior a 1000. ¿Aceptarlo igual?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Administración de usuarios"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Habilitar cuenta de invitado"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Introduzca contraseña del administrador (root)"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Ingrese un usuario"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Icono"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Nombre y apellidos"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Nombre de conexión"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Grupos Extra:"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Por favor espere, agregando soportes..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Conexión automática"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Utilizar esa característica"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Elija el usuario predeterminado:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Elija el gestor de ventanas a ejecutar:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Notas de versión"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Cerrar"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Acuerdo de licencia"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Salir"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "¿Acepta esta licencia?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Aceptar"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Rechazar"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Por favor, elija el idioma a usar"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -568,87 +573,87 @@ msgstr ""
"los idiomas que desea instalar. Estarán disponibles\n"
"cuando la instalación esté completa y reinicie el sistema."
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Múltiples idiomas"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "Seleccionar idiomas adicionales"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codificación (no UTF-8) para compatibilidad antigua"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Todos los idiomas"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Selección del idioma"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "País / Región"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Seleccione su país, por favor"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aquí tiene la lista completa de países disponibles"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Otros países"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avanzada"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Método de entrada:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Ninguno"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "No compartir"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Permitir a todos los usuarios"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Personalizada"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -663,7 +668,7 @@ msgstr ""
"\n"
"\"Personalizada\" permite una granularidad por usuario.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -672,7 +677,7 @@ msgstr ""
"NFS: sistema tradicional Unix para compartir archivos, con menos soporte en "
"Mac y Windows."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -681,19 +686,19 @@ msgstr ""
"SMB: sistema para compartir archivos usado por Windows, Mac OS X y muchos "
"sistemas Linux modernos."
-#: any.pm:1560
+#: any.pm:1566
#, 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:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Lanzar UserDrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -702,7 +707,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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -711,48 +716,48 @@ msgstr ""
"Debe desconectarse y volver a conectarse para que los cambios tengan efecto. "
"Pulse OK para conectarse ahora."
-#: any.pm:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Huso horario"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "¿Cuál es su huso horario?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Configuración de la fecha, hora y huso horario"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "¿Cuál es la mejor hora?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (reloj interno puesto en hora UTC)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (reloj interno puesto en hora local)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización automática de hora (usando NTP)"
@@ -1095,7 +1100,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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1110,47 +1115,47 @@ msgstr ""
"a que arranque el sistema predeterminado.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO con menú de texto"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 con menú gráfico"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 con menú de texto"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menú gráfico"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB con menú de texto"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd con menú gráfico"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux con menú de texto"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "no hay espacio suficiente en /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1159,7 +1164,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:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1168,7 +1173,7 @@ msgstr ""
"No se puede instalar correctamente el cargador de arranque. Debe arrancar "
"con rescate y elegir \"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Volver a instalar cargador de arranque"
@@ -1288,7 +1293,7 @@ msgstr "Hecho"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2782,7 +2787,7 @@ msgstr ""
"Usted tiene más de una unidad de disco duro, ¿cuál quiere que use el "
"instalador?"
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, 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"
@@ -2868,7 +2873,7 @@ msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
"Se detectó RAID por software para los discos %s en el BIOS ¿Desea activarlo?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2888,22 +2893,22 @@ msgstr ""
"\n"
"¿Está de acuerdo en perder todas las particiones?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Los puntos de montaje deben comenzar con una /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, 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:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2914,18 +2919,18 @@ 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:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, 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:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2934,12 +2939,12 @@ msgstr ""
"Necesita un sistema de archivos verdadero (ext2/3/4, reiserfs, xfs o jfs) "
"para este punto de montaje\n"
-#: fsedit.pm:548
+#: 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:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nada para hacer"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 7f30cda79..4c146dbda 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-09-21 17:29+0000\n"
"Last-Translator: Marek Laane <qiilaq69@gmail.com>\n"
"Language-Team: Estonian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -170,7 +170,7 @@ msgstr "Kohaliku APIC lubamine"
msgid "Security"
msgstr "Turvalisus"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -191,114 +191,119 @@ msgstr "Palun proovige veel"
msgid "You cannot use a password with %s"
msgstr "%s puhul ei saa parooli kasutada"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Parool (uuesti)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Alglaaduri seadistamine"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr "rEFInd'i paigaldamine või uuendamine EFI süsteemipartitsioonil"
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
"Paigaldamine /EFI/BOOT-i (eemaldataval seadmel või hädaabinõuna mõne BIOS-i "
"korral)"
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Nimi"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Lisaargumendid"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Ekraanilahutus"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Laadefail"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Juurpartitsioon"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Xen'i lisaargument"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Alglaadimiseks on vajalik parool"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Võrguprofiil"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Vaikimisi"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Nimi ei tohi puududa"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Teil peab olema kerneli laadepilt"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Teil peab olema juurpartitsioon"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Selline nimi on juba kasutusel"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Millist kirjet soovite lisada?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Muu OS (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -307,12 +312,12 @@ msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te võite neid lisada ning olemasolevaid muuta."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "ESP-i ega MBR-i ei puudutata"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -324,7 +329,7 @@ msgstr "ESP-i ega MBR-i ei puudutata"
msgid "Warning"
msgstr "Hoiatus"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
@@ -334,12 +339,12 @@ msgstr ""
"käivitada, kui seda ei laadita just mõne teise operatsioonisüsteemi "
"vahendusel!"
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Võõraste operatsioonisüsteemide otsimine"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -354,47 +359,47 @@ msgstr ""
"grub2 laadimismenüüst, kuid vähendades kerneli uuenduste paigaldamiseks "
"kuluvat aega"
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "ligipääs X'i rakendustele"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "ligipääs rpm-tööriistadele"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "\"su\" lubamine"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "ligipääs administreerimisfailidele"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "ligipääs võrgutööriistadele"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "ligipääs kompileerimistööriistadele"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Palun andke kasutajanimi"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -403,153 +408,153 @@ msgstr ""
"Kasutajanimi peab algama väiketähega ja tohib sisaldada ainult väikesi "
"tähti, arve ning märke \"-\" ja \"_\""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "See kasutajanimi on liiga pikk"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "See kasutajanimi on juba lisatud"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Kasutaja ID"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Grupi ID"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s peab olema arv"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s peab olema suurem kui 1000. Kas ikkagi lisada?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Kasutajate haldamine"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Külaliskonto (guest) lubamine"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Administraatori (root) parool"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Kasutaja lisamine"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Ikoon"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Pärisnimi"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Kasutajatunnus"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Lisagrupid:"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Palun oodake, lisatakse andmekandja..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automaatne sisselogimine"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Selle võimaluse lubamine"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Valige kasutaja:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Valige käivitatav aknahaldur:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Info väljalaske kohta"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Sulge"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Lõppkasutaja litsentsileping"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Välju"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Kas olete selle litsentsiga nõus?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Nõustun"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Keeldun"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Valige palun kasutatav keel"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -561,87 +566,87 @@ msgstr ""
"Need muutuvad kasutatavaks, kui olete paigaldamise\n"
"lõpetanud ja süsteemi taaskäivitanud."
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Mitme keele valimine"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "Lisakeelte valimine"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Varasemaga ühilduv kodeering (mitte-UTF-8)"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Kõik keeled"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Keelevalik"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Riik / Piirkond"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Palun valige oma riik"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "See on kõigi riikide täielik nimekiri"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Muud riigid"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Edasijõudnuile"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Sisestusmeetod:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Puudub"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Jagamiseta"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Lubatud kõigile kasutajatele"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Kohandatud"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -656,7 +661,7 @@ msgstr ""
"\n"
"\"Kohandatud\" lubab määrata seda kasutajate kaupa.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -665,7 +670,7 @@ msgstr ""
"NFS: UNIX-i traditsiooniline failijagamissüsteem, mida Mac ja Windows eriti "
"ei toeta."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -674,18 +679,18 @@ msgstr ""
"SMB: failijagamissüsteem, mida toetavad Windows, Mac OS X ja enamik moodsaid "
"Linuxi süsteeme."
-#: any.pm:1560
+#: any.pm:1566
#, 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:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake käivitamine"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -694,7 +699,7 @@ msgstr ""
"Kasutaja kaupa jagamise lubamine rakendab gruppi \"fileshare\". \n"
"Sellesse gruppi kasutajate lisamiseks saab tarvitada userdraket."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -703,47 +708,47 @@ msgstr ""
"Muudatuste rakendamiseks tuleb end uuesti sisse logida. Vajutage "
"väljalogimiseks OK."
-#: any.pm:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Ajavöönd"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Millises ajavöötmes asute?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Kuupäeva, kellaaja ja ajavööndi seadistamine"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Milline on korrektne aeg?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (arvuti sisekell on seatud GMT ajale)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (arvuti sisekell on seatud kohalikule ajale)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP server"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Aja automaatne sünkroniseerimine (NTP abil)"
@@ -1080,7 +1085,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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1095,54 +1100,54 @@ msgstr ""
"ehk oodake, kuni laetakse vaikimisi valitu.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LiLo tekstirežiimis"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 graafilise menüüga"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 tekstirežiimis"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB graafilise menüüga"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB tekstirežiimis"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd graafilise menüüga"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux tekstirežiimis"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "/boot on liiga täis"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, 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:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1151,7 +1156,7 @@ msgstr ""
"Alglaadurit ei saa korrektselt paigaldada. Peate tegema taaskäivituse "
"päästerežiimi (rescue) ja valima \"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Alglaaduri taaspaigaldamine"
@@ -1270,7 +1275,7 @@ msgstr "Tehtud"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2741,7 +2746,7 @@ msgid ""
msgstr ""
"Teil on rohkem kui üks kõvaketas. Millist peaks paigaldusprogramm kasutama?"
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, 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"
@@ -2825,7 +2830,7 @@ msgstr "server"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "Ketastel %s tuvastati BIOS-e tarkvaraline RAID. Kas aktiveerida see?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2843,22 +2848,22 @@ msgstr ""
"\n"
"Kas olete nõus kaotama kõik partitsioonid?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Haakepunktid peavad algama kaldkriipsuga (/)"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Haakepunkti nimi tohib sisaldada vaid tähti ja numbreid"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Haakepunktile %s on juba partitsioon määratud\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2869,17 +2874,17 @@ msgstr ""
"Ükski alglaadur ei suuda seda kasutusele võtta ilma /boot partitsioonita.\n"
"Palun lisage kindlasti eraldi /boot partitsioon"
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "See kataloog peab jääma kokku juurfailisüsteemiga"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2888,12 +2893,12 @@ msgstr ""
"See haakepunkt vajab tõelist (ext2/3/4, reiserfs, xfs või jfs) "
"failisüsteemi\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ei ole piisavalt ruumi automaatpaigutuseks"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Pole midagi teha"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 855519d3d..ff73e1cbc 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-06-17 12:55+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Basque (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -23,7 +23,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -175,7 +175,7 @@ msgstr "Gaitu bertako APIC"
msgid "Security"
msgstr "Segurtasuna"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -196,112 +196,117 @@ msgstr "Saiatu berriro"
msgid "You cannot use a password with %s"
msgstr "Ezin duzu %s-rekin pasahitz bat erabili"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasahitza (berriro)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Abio zamatzailearen konfiguraketa"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiketa"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Erantsi"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Bideo modua"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Imajina"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Erroa"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Xen erantsi"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Abiarazteko pasahitza behar da"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Sare profila"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Lehenetsia"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Ez da etiketa hutsik onartzen"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Nukleo-imajina bat zehaztu behar duzu"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Erroko partizio bat zehaztu behar duzu"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Etiketa hau jadanik erabili da"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Zer sarrera-mota gehitu nahi duzu?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Beste SE (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -310,12 +315,12 @@ msgstr ""
"Hona hemen abioko menuko orain arteko sarrerak.\n"
"Sarrera gehgiago sor ditzakezu, edo lehendik daudenak aldatu."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "Ez ukitu ESP edo MBR"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -327,7 +332,7 @@ msgstr "Ez ukitu ESP edo MBR"
msgid "Warning"
msgstr "Kontuz"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
@@ -336,12 +341,12 @@ msgstr ""
"ESP-ean ez MBR-ean ez instalatzeak esan nahi du instalazioa hori ez dela "
"martxan jarriko katea beste sistema eragile batetik kargatuko ez balitz."
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Probatu Kanpolo OS"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -351,47 +356,47 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "X programen atzipena"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "rpm tresnen atzipena"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "baimendu \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "administrazio-fitxategien atzipena"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "sare-tresnen atzipena"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "konpilazio-tresnen atzipena"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s jadanik gehituta)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Eman erabiltzaile-izen bat"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -400,152 +405,152 @@ msgstr ""
"Erabiltzaile izena letra minuskulaz hasi behar da eta jarraian soilik letra "
"minuskulak, zenbakiak, `-' eta `_' izan ditzake"
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Erabiltzaile-izena luzeegia da"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Erabiltzaile-izen hau gehituta dago jadanik"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Erabiltzaile ID"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Talde ID"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s zenbakia izan behar da"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s 1000 gainetik egon behar luke. Onartu hala ere?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Erabiltzaile kudeaketa"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Gaitu gonbidatuaren kontua"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Ezarri administratzaile (root) pasahitza"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Sartu erabiltzaile bat"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Ikonoa"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Benetako izena"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Saioa hasteko izena"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Extra Taldeak:"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Itxoin mesedez, euskarria eransten..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatikoki hasi saioa"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Ezaugarri hau erabili"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Aukeratu erabiltzaile lehenetsia:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Askapen Oharrak"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Itxi"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Lizentzia-kontratua"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Irten"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Lizentzia hau onartzen duzu ?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Onartu"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Ezetsi"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Aukeratu erabiltzeko hizkuntza bat"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -556,87 +561,87 @@ msgstr ""
"instalatu nahi dituzun hizkuntzak. Instalazioa osatzean eta\n"
"sistema berrabiaraztean, erabilgarri egongo dira."
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Hizkuntz anitzak"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "Aukeratu Hizkuntza Gehigarriak"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kodeketa bateragarritasun zaharra (ez UTF-8)"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Hizkuntza guztiak"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Hizkuntza aukera"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Estatua / Eskualdea"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Aukeratu zure herrialdea edo estatua"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hona hemen herrialde erabilgarri guztien zerrenda"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Beste Herrialde batzuk"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Aurreratua"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Sarrera metodoa:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Bat ere ez"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Ez partekatu"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Eman baimena erabiltzaile guztiei"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Pertsonalizatua"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -652,7 +657,7 @@ msgstr ""
"\"Pertsonalizatu\" erabiltzaile batzuei partekatzea ahalbidetzeko erabiltzen "
"da.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -661,7 +666,7 @@ msgstr ""
"NFS: usadioz Unixen fitxategiak elkarbanatzeko sistema, Mac eta Windowsen "
"euskarri gutxiago duena."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -670,18 +675,18 @@ msgstr ""
"SMB: fitxategiak elkarbanatzeko sistema, Windows, Mac OS X eta gaur egungo "
"hainbat Linux sistemek erabiltzen dutena."
-#: any.pm:1560
+#: any.pm:1566
#, 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:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Abiarazi userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -691,7 +696,7 @@ msgstr ""
"taldea erabiltzen du. \n"
"Userdrake erabil dezakezu talde honetan erabiltzaileak gehitzeko."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -700,48 +705,48 @@ msgstr ""
"Saioa amaitu eta berriro hasi behar duzu aldaketek eragina izan dezaten. "
"Sakatu Ados saioa orain amaitzeko."
-#: any.pm:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Ordu-eremua"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Zein da zure ordu-eremua?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Data, ordulari eta ordu gune ezarpenak"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Zein da ordu onena?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardware ordularia UTC-ra ezarria)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardware ordularia bertako ordura ezarria)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP Zerbitzaria"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"
@@ -1085,7 +1090,7 @@ 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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1100,47 +1105,47 @@ msgstr ""
"itxaron lehenespenez berrabiarazi arte.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO testu-menuarekin"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 menu grafikoarekin"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 testu menuarekin"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB menu grafikoarekin"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB testu menuarekin"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "ez dago nahikoa leku /boot-en"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1149,7 +1154,7 @@ msgstr ""
"Abioko kargatzailearen konfigurazioa eguneratu egin behar da, partizioa "
"berriro zenbakitu delako"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1158,7 +1163,7 @@ msgstr ""
"Abioko kargatzailea ezin da behar bezala instalatu. Berrabiarazi "
"berreskuratzea, eta hautatu \"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Berriro instalatu abioko kargatzailea"
@@ -1277,7 +1282,7 @@ msgstr "Eginda"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2757,7 +2762,7 @@ msgid ""
"to use?"
msgstr "Disko gogor bat baino gehiago baduzu, zeinetan instalatuko duzu?"
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, 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"
@@ -2841,7 +2846,7 @@ msgstr "zerbitzaria"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "BIOS software RAID aurkitu da %s diskoetan. Aktibatu nahi duzu?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2860,22 +2865,22 @@ msgstr ""
"\n"
"Ados zaude partizio guztiak galtzearekin?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Muntatze-puntuek / batez hasi behar dute"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Muntatze-puntuek karaktere alfanumerikoak bakarrik izan ditzakete"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2886,17 +2891,17 @@ msgstr ""
"Ez dago abio kargatzailerik /boot partiziorik gabe hau erabili dezakeenik.\n"
"Mesedez erantsi ezazu /boot partizio bat"
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Direktorio honek erroko fitxategi-sisteman egon behar du"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2905,12 +2910,12 @@ msgstr ""
"Egiazko fitxategi-sistema (ext2/3/4, reiserfs, xfs, edo jfs) behar duzu "
"muntatze-puntu honetarako\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ez dago nahikoa leku libre auto-esleitzeko"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Ez dago zer eginik"
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index 4c9062d4c..c1a6ebb2d 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: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2019-04-16 15:44+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=2; plural=(n > 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -168,7 +168,7 @@ msgstr ""
msgid "Security"
msgstr "امنیت"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -189,112 +189,117 @@ msgstr "لطفاً دوباره امتحان کنید"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "گذرواژه (دوباره)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "برچسب"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "پیوست به انتها"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "حالت ویدیوئی"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "تصویر"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "ریشه"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "نمایه‌ی شبکه"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "پیش‌فرض"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "برچسب خالی اجازه داده نمی‌شود"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "تصویر هسته‌ایی را باید مشخص کنید"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "قسمت‌بندی ریشه‌ایی را باید مشخص کنید"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "این جدول از قبل مورد استفاده است"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "چه نوع از ورودیی را می‌خواهید اضافه کنید؟"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "لینوکس"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "سیستم عامل دیگر (ویندوز...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -303,12 +308,12 @@ msgstr ""
"اینها فعلاً ورودی‌های منوی آغازگری شما هستند.\n"
"می‌توانید ورودی‌های بیشتری را ایجاد کرده یا ورودی‌های موجود را تغییر دهید."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -320,19 +325,19 @@ msgstr ""
msgid "Warning"
msgstr "هشدار"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -342,199 +347,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "دستیابی به برنامه‌های X"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "دستیابی به ابزارهای rpm"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "اجازه دادن به \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "دستیابی به پرونده‌های مدیریت"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "دستیابی به ابزارهای شبکه"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "دستیابی به ابزارهای کمپایل کردن"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s از قبل اضافه شده است)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "لطفاً نام کاربریی را بدهید"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "نام کاربر بسیار طولانی است"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "این نام کاربر از قبل اضافه شده است"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "شناسه‌ی کاربر"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "شناسه‌ی گروه"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "تعیین گذرواژه‌ی مدیر"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "شمایل"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "نام واقعی"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "نام ثبت‌ورود"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "پوسته"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "لطفا صبر کنید، در حال افزودن رسانه..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "ثبت‌ورود خودکار"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "می‌توانم رایانه‌اتان را برای ثبت‌ورود خودکار یک کاربر برپاسازی کنم."
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "انتخاب کردن کاربر پیش‌فرض:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "انتخاب کردن مدیر پنجره‌ی برای اجرا:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "یادداشتهای پخش"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "بستن"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "توافق‌نامه‌ی مجوز"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "ترک"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "پذیرش"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "امتناع"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "لطفاً زبان برای استفاده را انتخاب کنید"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -542,87 +547,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "ماندریبا لینوکس"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "همه‌ی زبان‌ها"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "گزینش زبان"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "کشور / منطقه"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "لطفاً کشور خود را انتخاب کنید"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "این لیست کامل کشورهای در دسترس می‌باشد"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "کشورهای دیگر"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "پیشرفته"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "روش درونداد:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "هيچکدام"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "بدون اشتراک"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "اجازه دادن به تمام کاربرها"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "سفارشی"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -637,7 +642,7 @@ msgstr ""
"\n"
"\"سفارشی\" اجازه‌ی هر-کاربر تکی را می‌دهد.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -645,7 +650,7 @@ msgid ""
msgstr ""
"NFS: سیستم سنتی اشتراک پرونده یونیکس، با پشتیبانی کمتر بر Mac و ویندوز."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -654,7 +659,7 @@ msgstr ""
"SMB: سیستم اشتراک پرونده که بوسیله ویندوز، Mac OS X و بسیاری از سیستم‌‌های "
"مدرن لینوکس استفاده می‌گردد."
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -662,12 +667,12 @@ msgstr ""
"می‌توانید با استفاده از NFS یا SMB صادر کنید. لطفاً آن را که می‌خواهید استفاده "
"کنید را انتخاب کنید."
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "راه‌اندازی userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -676,54 +681,54 @@ msgstr ""
"اشتراک هر-کاربر از گروه \"fileshare\" استفاده می‌کند. \n"
"برای افزودن کاربری به این گروه می‌توانید از userdrake استفاده کنید."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "باید ثبت خروج کرده و باز برگردید برای اینکه تغییرات تأثیر کنند"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "زمان منطقه‌ای"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "منطقه‌ی زمانی شما کدام است؟"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "کارگزار NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "هم‌گاه‌سازی خودکار زمان (با استفاده از NTP)"
@@ -1054,7 +1059,7 @@ msgid "Domain Admin Password"
msgstr "گذرواژه‌ی مدیریت دامنه"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1069,47 +1074,47 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO با منوی متنی"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr ""
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "فضای کافی در شاخه‌ی /boot وجود ندارد"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1118,7 +1123,7 @@ msgstr ""
"پیکربندی بارگذار آغازگر باید بروزسازی شود برای اینکه قسمت‌بندی شماره‌گذاری "
"مجدد گردیده است"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1127,7 +1132,7 @@ msgstr ""
"بارگذار آغازگر نمی‌تواند بدرستی نصب گردد. شما باید با گزینه‌ی نجات آغازگری "
"کرده و \"%s\" را انتخاب کنید"
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "نصب-مجدد بارگذار آغازگر"
@@ -1248,7 +1253,7 @@ msgstr "انجام شد"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2704,7 +2709,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "همه‌ی قسمت‌بندی‌ها و داده‌های آنها بر دستگاه %s از دست خواهند رفت"
@@ -2789,7 +2794,7 @@ msgstr "کارگزار"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2808,22 +2813,22 @@ msgstr ""
"\n"
"آیا موافق به از دست دادن تمام قسمت‌بندی‌ها می‌باشید؟\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "نقاط سوارسازی باید با یک / شروع شوند"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "نقاط سوارسازی فقط باید حاوی نویسه‌های الفبا باشند"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "قسمت‌بندیی با نقطه‌ی سوارسازی %s از قبل وجود دارد\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2831,18 +2836,18 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"نمی‌توانید از سیستم پرونده‌ی رمزگذاری شده برای نقطه سوارسازی %s استفاده کنید"
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "این شاخه باید درون سیستم پرونده‌ی ریشه باقی بماند"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2851,12 +2856,12 @@ msgstr ""
"شما به یک سیستم پرونده‌ی واقعی (ext2/3/4, reiserfs, xfs, یا jfs) برای این "
"نقطه سوارسازی احتیاج دارید\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "فضای آزاد کافی برای جاسازی-خودکار وجود ندارد"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "کاری برای انجام نیست"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index c80107514..5504eed30 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -13,7 +13,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Finnish (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -24,7 +24,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -176,7 +176,7 @@ msgstr "Ota paikallinen APIC käyttöön"
msgid "Security"
msgstr "Tietoturva"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -197,112 +197,117 @@ msgstr "Yritä uudelleen"
msgid "You cannot use a password with %s"
msgstr "Et voi käyttää salasanaa %s kanssa"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Käynnistyslataimen asetukset"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Nimi"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Lisäys"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Näyttötila"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Kuva"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Juuri"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Xen-lisäys"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Käynnistys vaati salasanan"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Verkkoprofiili"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Oletus"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Tyhjää nimiä ei sallita"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Sinun täytyy määritellä ydin"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Sinun täytyy määritellä juuriosio"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Nimi on jo käytössä"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Minkä tyyppisen tietueen haluat lisätä?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Muu käyttöjärjestelmä (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -311,12 +316,12 @@ msgstr ""
"Tämän hetkiset käynnistysvalikon tietueet.\n"
"Voit lisätä uusia tai muuttaa olemassa olevia."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -328,19 +333,19 @@ msgstr ""
msgid "Warning"
msgstr "Varoitus"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -350,47 +355,47 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "Oikeudet X-ohjelmiin"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "Oikeudet RPM-työkaluihin"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "Salli \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "Oikeudet ylläpidollisiin tiedostoihin"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "Oikeudet verkkotyökaluihin"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "Oikeudet ohjelmointityökaluihin"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(lisätty jo: %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Anna käyttäjätunnus"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -398,152 +403,152 @@ msgid ""
msgstr ""
"Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita ja merkit - ja _"
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Käyttäjätunnus on liian pitkä"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Käyttäjätunnus on jo olemassa"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Käyttäjän tunnistenumero (UID)"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Ryhmän tunnistenumero (GID)"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s pitää olla luku"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s pitäisi olla suurempi kuin 1000. Jatka silti?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Käyttäjien hallinta"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Aktivoi vierastili"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Aseta pääkäyttäjän (root) salasana"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Lisää käyttäjä"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Kuvake"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Oikea nimi"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Käyttäjätunnus"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Komentotulkki"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Odota, lisätään lähteitä..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automaattinen kirjautuminen"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Käytä automaattista kirjautumista"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Valitse oletuskäyttäjä:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Valitse käytettävä ikkunointijärjestelmä:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Julkaisutiedote"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Sulje"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Käyttöoikeussopimus"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Lopeta"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Hyväksy käyttöoikeussopimus?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Hyväksy"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Kieltäydy"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Valitse käytettävä kieli"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -554,87 +559,87 @@ msgstr ""
"kielet. Kielet ovat käytettävissä asennuksen ja koneen\n"
"uudelleenkäynnistämisen jälkeen."
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Asenna useita kieliä"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Vanhempi ei-UTF-8-merkistö"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Kaikki kielet"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Kielivalinta"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Maa / alue"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Valitse maa, jossa olet"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Lista kaikista käytettävissä olevista maista"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Muut maat"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Lisäasetukset"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Syöttömenetelmä:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Ei mitään"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Ei jaettu"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Salli kaikille käyttäjille"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Mukautettu"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -649,7 +654,7 @@ msgstr ""
"\n"
"\"Mukautettu\" sallii käyttäjäkohtaiset oikeudet.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -658,7 +663,7 @@ msgstr ""
"NFS: perinteinen Unix-tiedostonjakojärjestelmä, jota Mac ja Windows tukevat "
"huonosti."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -667,7 +672,7 @@ msgstr ""
"SMB: tiedostonjakojärjestelmä, jota käyttävät Windows, Mac OS X ja monet "
"nykyaikaiset Linux-järjestelmät."
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -675,12 +680,12 @@ msgstr ""
"Tiedostoja voidaan jakaa sekä NFS:llä että Samballa. Valitse kumpaa "
"käytetään."
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Käynnistä Userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -689,7 +694,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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -698,47 +703,47 @@ msgstr ""
"Muutosten ottaminen käyttöön vaatii uloskirjautumisen. Valitse OK "
"kirjautuaksesi ulos."
-#: any.pm:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Aikavyöhyke"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Valitse järjestelmän aikavyöhyke"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Päivämäärän, kellonajan ja aikavyöhykkeen asetukset"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Valitse aika, joka on lähimpänä oikeata aikaa"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (laitteistokello UTC-ajassa)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (laitteistokello paikallisessa ajassa)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP-palvelin"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automaattinen kellon tahdistus NTP:n avulla"
@@ -1076,7 +1081,7 @@ msgid "Domain Admin Password"
msgstr "Toimialueen pääkäyttäjän salasana"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1091,47 +1096,47 @@ msgstr ""
"odota oletuskaynnistysta.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO tekstipohjaisella valikolla"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 graafisella valikolla"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 tekstipohjaisella valikolla"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB graafisella valikolla"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB tekstipohjaisella valikolla"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, fuzzy, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd graafisella valikolla"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, fuzzy, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux tekstipohjaisella valikolla"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "/boot-osiolla tai -hakemistossa ei ole tarpeeksi vapaata tilaa"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1140,7 +1145,7 @@ msgstr ""
"Käynnistyslataimen asetukset pitää päivittää, koska levyosiot on numeroitu "
"uudelleen"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1149,7 +1154,7 @@ msgstr ""
"Käynnistyslatainta ei voida asentaa oikein. Tietokone täytyy käynnistää "
"rescue-tilaan ja valita \"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Asenna käynnistyslatain uudelleen"
@@ -1269,7 +1274,7 @@ msgstr "Valmis"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2745,7 +2750,7 @@ msgstr ""
"Tietokoneessa on useampi kuin yksi kiintolevy. Valitse kiintolevy, jolle "
"Linux asennetaan."
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2830,7 +2835,7 @@ msgstr "Palvelin"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "Levyltä %s löytyi ohjelmistopohjainen RAID. Otetaanko se käyttöön?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2848,22 +2853,22 @@ msgstr ""
"\n"
"Poistetaanko kaikki virheelliset osiot?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Liitospisteiden tulee alkaa /-merkillä."
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Liitospisteet saavat sisältää vain kirjaimia ja numeroita"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2874,17 +2879,17 @@ msgstr ""
"osaa käsitellä salattua juuriosiota ilman /boot-osiota.\n"
"Muista luoda erillinen /boot-osio."
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Tämän hakemiston pitäisi olla juuritiedostojärjestelmässä"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2893,12 +2898,12 @@ msgstr ""
"Tarvotaan \"oikea\" tiedostojärjestelmä (ext2/ext3/ext4, ReiserFS, XFS tai "
"JFS) tälle liitospisteelle.\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Vapaa tila ei riitä automaattiseen varaukseen"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Ei suoritettavia toimenpiteitä"
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index 9c5827fba..4a2b69997 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -19,7 +19,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-09-21 20:00+0000\n"
"Last-Translator: stroibe974 <sebsweb@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -30,7 +30,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -183,7 +183,7 @@ msgstr "Activer l'APIC local"
msgid "Security"
msgstr "Sécurité"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -204,114 +204,119 @@ msgstr "Veuillez réessayer"
msgid "You cannot use a password with %s"
msgstr "Vous ne pouvez pas utiliser de mot de passe avec %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Mot de passe (vérification)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuration du programme d'amorçage"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr "Installer ou mettre à jour rEFInd dans la partition EFI"
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
"Installer dans /EFI/BOOT (disque amovible ou contournement pour certains "
"BIOS)"
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Options passées au noyau"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Mode vidéo"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Partition racine"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Options Xen passées au noyau"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Nécessite un mot de passe pour le démarrage"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Fichier RamDisk"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Profil réseau"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Choix par défaut"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Un label vide n'est pas autorisé"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Vous devez spécifier l'image noyau désirée"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Vous devez spécifier une partition racine"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Ce label est déjà utilisé"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Quel type de système souhaitez-vous ajouter ?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Autre système (Windows, etc.)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -320,12 +325,12 @@ msgstr ""
"Voici les différentes entrées.\n"
"Vous pouvez en ajouter de nouvelles ou modifier les entrées existantes."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "Ne pas toucher à l'ESP ou au MBR"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -337,7 +342,7 @@ msgstr "Ne pas toucher à l'ESP ou au MBR"
msgid "Warning"
msgstr "Attention"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
@@ -347,12 +352,12 @@ msgstr ""
"démarrable à moins de chaîner le chargement depuis un autre système "
"d'exploitation !"
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Détecter les autres OS"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -367,47 +372,47 @@ msgstr ""
"l'installation, ce qui retirera les autres systèmes d'exploitation du menu "
"de démarrage, mais réduira le temps d'installation de nouveaux noyaux."
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "accès aux programmes graphiques"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "accès aux outils rpm"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "autoriser « su »"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "accès aux fichiers d'administration"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "accès aux outils réseaux"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "accès aux outils de compilation"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "Utilisateur(s) existant(s) : %s"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Veuillez taper un nom d'utilisateur"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -416,152 +421,152 @@ msgstr ""
"Le nom d'utilisateur doit commencer par une minuscule suivie seulement de "
"minuscules, de nombres, de « - » et « _ »"
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Ce nom d'utilisateur est trop long"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Ce nom d'utilisateur est déjà utilisé"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Identifiant de l'utilisateur"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Identifiant du groupe"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s doit être un nombre"
-#: any.pm:1037
+#: any.pm:1042
#, 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:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Gestion des utilisateurs"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Activer le compte Invité"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Définissez le mot de passe administrateur (root)"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Tapez un nom d'utilisateur"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Icône"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Nom et prénom"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Identifiant de connexion"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Interpréteur"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Groupes supplémentaires :"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Veuillez patienter, ajout du média…"
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Connexion automatique"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Utiliser cette fonctionnalité"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Choisissez l'utilisateur par défaut :"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Choisissez l'environnement graphique :"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Notes de version"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Fermer"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Licence"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Quitter"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Acceptez-vous cette licence ?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Accepter"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Refuser"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Choisissez la langue à utiliser"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -572,87 +577,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:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Multilingue"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "Sélectionner des langues supplémentaires"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Compatibilité encodage ancien (non UTF-8)"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Toutes les langues"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Choix de la langue"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Pays / Région"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Veuillez choisir votre pays"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Voici la liste complète des pays disponibles"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Autres Pays"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avancé"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Méthode d'entrée :"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Aucun"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Pas de partage"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Autoriser tous les utilisateurs"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Personnalisé"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -668,7 +673,7 @@ msgstr ""
"\n"
"« Personnalisée » permet d'autoriser le partage pour certains utilisateurs.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -677,7 +682,7 @@ msgstr ""
"NFS : le système de partage de fichiers traditionnel d'UNIX, moins supporté "
"sur les systèmes Mac et Windows."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -686,19 +691,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:1560
+#: any.pm:1566
#, 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:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Lancer Userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -708,7 +713,7 @@ msgstr ""
"cet utilisateur dans le groupe « fileshare ».\n"
"Ceci peut se faire grâce au programme « Userdrake »."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -718,49 +723,49 @@ msgstr ""
"les changements en considération. Cliquez sur « OK » pour vous déconnecter "
"maintenant."
-#: any.pm:1701
+#: any.pm:1707
#, 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:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Fuseau horaire"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Quel est votre fuseau horaire ?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Réglages de la date, de l'heure et du fuseau horaire"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Quelle est l'heure correcte ?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (horloge système réglée sur le temps universel - UTC)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (horloge système réglée sur l'heure locale)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "Serveur NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Synchronisation automatique de l'horloge (via NTP)"
@@ -1100,7 +1105,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:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1115,47 +1120,47 @@ msgstr ""
"ou attendez le demarrage par defaut.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO en mode texte"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 en mode graphique"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 en mode texte"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB en mode graphique"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB en mode texte"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd en mode graphique"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux en mode texte"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "il n'y a pas assez de place dans le dossier /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1164,7 +1169,7 @@ msgstr ""
"La configuration de votre programme d'amorçage doit être mise à jour car les "
"partitions ont été renumérotées"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1173,7 +1178,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:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Réinstaller le programme d'amorçage"
@@ -1294,7 +1299,7 @@ msgstr "Terminé"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2796,7 +2801,7 @@ msgstr ""
"Vous avez plusieurs disques durs, lequel choisissez vous pour "
"l'installation ?"
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2888,7 +2893,7 @@ msgstr "serveur"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "RAID logiciel sur BIOS detecté sur les disques %s. Faut-il l'activer ?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2909,24 +2914,24 @@ msgstr ""
"\n"
"Etes vous d'accord pour perdre toutes les partitions ?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Les points de montage doivent commencer par /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, 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:455
+#: fsedit.pm:469
#, 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:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2938,19 +2943,19 @@ msgstr ""
"boot.\n"
"Veuillez ajouter une partition /boot séparée"
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, 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:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ce dossier doit rester dans la partition racine"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2959,12 +2964,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:548
+#: 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:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Rien à faire"
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index b9e00de08..592c8791c 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-06-17 12:55+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Friulian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -157,7 +157,7 @@ msgstr ""
msgid "Security"
msgstr "Sigurece"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -178,124 +178,129 @@ msgstr "Par plasè torne a provâ"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Password (ancjemò)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etichete"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Modalitât video"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Imagjin"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Lidrie"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predefinît"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Etichete vueide no permitude"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Tu âs di specificâ une imagjin kernel"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Tu âs di specificâ une partizion lidrie"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Le etichete e je dizà in vore"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Cuâle sorte di vôs vuelistu zontâ?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr ""
-#: any.pm:682
+#: any.pm:687
#, 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:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -307,19 +312,19 @@ msgstr ""
msgid "Warning"
msgstr "Avertence"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -329,199 +334,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "acès ai programs X"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "acès ai imprescj rpm"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "permèt \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "acès ai file di aministrazion"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "acès ai imprescj di rêt"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "acès ai imprescj di compilazion"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(dizà zontât %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Par plasè, insede un non utent"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Il non utent al è masse lunc"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Il non utent al è stât dizà zontât"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "ID Utent"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "ID Grop"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Icone"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Non reâl"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr ""
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Acès automatic"
-#: any.pm:1182
+#: any.pm:1187
#, 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:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Sielç un utent predefinît:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Sielç il gjestôr grafic di doprâ:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Siere"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Jessî"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr ""
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Par plasè sielç une lenghe di doprâ"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -529,87 +534,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Dutis les lenghis"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr ""
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Nazion / Regjon"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Par plasè sielç le to nazion"
-#: any.pm:1423
+#: any.pm:1428
#, 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:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr ""
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr ""
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Nissun"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Nissune condivision"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Permet ducj i utents"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Personalizât"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -619,86 +624,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Invie userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, 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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr ""
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr ""
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "Server NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1021,7 +1026,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1031,61 +1036,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO cun menu di test"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 cun menu di test"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB cun menu di test"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "no son a vonde stanziis in /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1200,7 +1205,7 @@ msgstr "Fat"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2600,7 +2605,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2682,7 +2687,7 @@ msgstr "Server"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2694,22 +2699,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2717,29 +2722,29 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nuie ce fâ"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index 64841441e..d292b5727 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-06-17 12:55+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Irish (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -18,7 +18,7 @@ msgstr ""
"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : "
"4);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -158,7 +158,7 @@ msgstr ""
msgid "Security"
msgstr "Slándáil"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -179,124 +179,129 @@ msgstr "Aththrialaigh"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasfhocal (arís)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Lipéad"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Mód fís"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Iomha"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Próifíl líonra"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Gnáth"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Níl ceadaigh an lipéad folamh ann"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Is gá íomhá eithne a shonrú"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Ní mór rann fréamhach"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Cén sort iontráil a suimigh do?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "CO Eile (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, 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:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -308,19 +313,19 @@ msgstr ""
msgid "Warning"
msgstr "Rabhadh"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -330,199 +335,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr ""
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr ""
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Tá an ainm úsáideora ró-fhada"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "ID Úsáideoir"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "ID Grupa"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Dealbh"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Fíor ainm"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Ainm logála isteach:"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Blaosc"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr ""
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Uath-Logann"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Roghnagih an úsáidoer gneás:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Roghnaigh an Bainistéoir Fhuinneoga a úsásd:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Dún"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Ceadúnas"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Éalaigh"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Aontaigh"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Tarrtháil"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Roghnaigh teanga le húsáid, le do thoil"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -530,87 +535,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Gach teanga"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Rogha teanga"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Tír / Réigiún"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Roghnaigh do thír, le do thoil"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr ""
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Réamhioaíocht"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Neamhní"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Gan roinnt"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr ""
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Socraithe"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -620,86 +625,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1590
+#: any.pm:1596
#, 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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Am Críos"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Cén ceann do chrois ama?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "Freastalaí NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1022,7 +1027,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1032,61 +1037,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO le chlár teacs"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 le chlár teacs"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB le chlár teacs"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Ath-shuiteáil an clár dúisithe"
@@ -1201,7 +1206,7 @@ msgstr "Críochnithe"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2601,7 +2606,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2683,7 +2688,7 @@ msgstr "Freastalaí"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2695,22 +2700,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Caithfidh pointí feistithe tosú le /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2718,29 +2723,29 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Faic le déanamh"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 1d2b565c2..9da4453e2 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: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\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:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -170,7 +170,7 @@ msgstr "Habilitar APIC Local"
msgid "Security"
msgstr "Seguridade"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -191,112 +191,117 @@ msgstr "Por favor, inténteo de novo"
msgid "You cannot use a password with %s"
msgstr "Non pode usar un contrasinal con %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contrasinal (de novo)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuración do Cargador de Arrinque"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Agregar"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Modo de video"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Imaxe"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Raíz"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Perfil de rede"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Por defecto"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Etiqueta baleira non permitida"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Debe especificar unha imaxe do kernel"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Debe especificar unha partición raíz"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta xa se está usando"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "¿Qué tipo de entrada desexa engadir?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Outros S.O. (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -305,12 +310,12 @@ msgstr ""
"Estas son as diferentes entradas.\n"
"Pode engadir algunhas máis ou cambia-las que xa existen."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -322,19 +327,19 @@ msgstr ""
msgid "Warning"
msgstr "Advertencia"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -344,201 +349,201 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "acceso ós programas X"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "acceso ás ferramentas rpm"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "acceso ós ficheiros de administración"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "acceso ás ferramentas de rede"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "acceso ás ferramentas de compilación"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s xa foi engadido)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Por favor, indique un nome de usuario"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "O nome de usuario é moi longo"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Este nome de usuario xa está engadido"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "ID de Usuario"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "ID do Grupo"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s debe ser un número"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s debe estar por riba de 1000. Desexa aceptar de tódolos xeitos?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Xestión de usuarios"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Estableza o contrasinal do administrador (root)"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Introduza un usuario"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Icona"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Nome real"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Nome de usuario"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Agarde, engadindo soportes..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Login automático"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Pódese configurar o ordenador para que entre automáticamente\n"
"un usuario determinado."
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Usar esta funcionalidade"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Escolla o usuario por defecto:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escolla o xestor de fiestras que se executará:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Notas da Versión"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Pechar"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Acordo da licenza"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Saír"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Acepta esta licenza?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Aceptar"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Rexeitar"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Por favor, escolla a lingua que desexe empregar"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -546,87 +551,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codificación de compatibilidade cara atrás (non UTF-8)"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Tódalas linguas"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Selección da Lingua"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "País"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Por favor, escolla o seu país"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Esta é a lista completa dos paises dispoñibles"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Outros Paises"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avanzado"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Método de entrada:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Ningún"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Non compartir"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Permitirlle a tódolos usuarios"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Personalizado"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -641,7 +646,7 @@ msgstr ""
"\n"
"\"Personalizado\" permite especificalo usuario a usuario.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -650,7 +655,7 @@ msgstr ""
"NFS: o sistema tradicional de compartimento de ficheiros de Unix, con menos "
"soporte en Mac e Windows."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -659,18 +664,18 @@ msgstr ""
"SMB: un sistema de compartimento de ficheiros que se usa en sistemas "
"Windows, Mac OS X e varios Linux modernos."
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Pode exportar usando NFS ou SMB. Por favor, escolla cal quere usar."
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Executar userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -679,7 +684,7 @@ msgstr ""
"O compartimento por usuario usa o grupo \"fileshare\". \n"
"Pode usar userdrake para engadir un usuario a este grupo."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -688,48 +693,48 @@ msgstr ""
"Cómpre que saia do sistema e volva entrar para que os cambios surtan efecto. "
"Prema OK para saír agora."
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Cómpre que saia do sistema e volva entrar para que os cambios surtan efecto"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Zona Horaria"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Cal é a súa zona horaria?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Configuración de Data, Reloxo e Zona Horaria"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Cal é a mellor hora?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (o reloxo do hardware usa a hora UTC)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (o reloxo do hardware usa a hora local)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización automática da hora (usando NTP)"
@@ -1060,7 +1065,7 @@ msgid "Domain Admin Password"
msgstr "Contrasinal do Administrador do Dominio"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1075,47 +1080,47 @@ msgstr ""
"agarde a que arrinque o sistema predeterminado.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO con menú de texto"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 con menú de texto"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menú gráfico"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB con menú de texto"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, fuzzy, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd con menú gráfico"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, fuzzy, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux con menú de texto"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "non hai espacio dabondo en /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1124,7 +1129,7 @@ msgstr ""
"A configuración do seu cargador de arrinque ten que actualizarse porque "
"cambiou o número da partición"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1133,7 +1138,7 @@ msgstr ""
"Non se puido instalar de xeito correcto o cargador de arrinque. Ten que "
"arrincar co disco de rescate e elixir \"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstala-lo Cargador de Arrinque"
@@ -1253,7 +1258,7 @@ msgstr "Feito"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2727,7 +2732,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2812,7 +2817,7 @@ msgstr "servidor"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2832,22 +2837,22 @@ msgstr ""
"\n"
"¿Está de acordo ca perda de tódalas particións?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Os puntos de montaxe deben comezar por /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Os puntos de montaxe só poden conter caracteres alfanuméricos"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Xa existe unha partición co punto de montaxe %s\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2855,18 +2860,18 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Non pode usar un sistema de ficheiros cifrado para o punto de montaxe %s"
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio debería permanecer dentro do sistema de ficheiros raíz"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2875,12 +2880,12 @@ msgstr ""
"Necesita un sistema de ficheiros real (ext2/3/4, reiserfs, xfs, ou jfs) para "
"este punto de montaxe\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Non hai espacio libre dabondo para asignar automáticamente"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nada que facer"
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 7b477b59b..10fcae8c9 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -15,7 +15,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-12-19 17:24+0000\n"
"Last-Translator: Omer I.S. <omeritzicschwartz@gmail.com>\n"
"Language-Team: Hebrew (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -27,7 +27,7 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
"1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -176,7 +176,7 @@ msgstr "הפעלת APIC מקומי"
msgid "Security"
msgstr "הגדרות אבטחה"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -197,112 +197,117 @@ msgstr "נא לנסות שוב"
msgid "You cannot use a password with %s"
msgstr "אסור להשתמש בסיסמה עם %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "סיסמה (שוב)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "הגדרות מנהל אתחול"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "תווית"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "הוספה"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "תצורת תצוגה"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "קובץ דמות"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "משתמש שורש (root)"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "הוספת Xen"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "דורש ססמה לאתחול"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "תצורת רשת"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "ברירת מחדל"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "אסור להגדיר תווית שם ריקה"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "חובה לציין קובץ דמות ליבה"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "חובה להגדיר מחיצת שורש"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "התווית הזאת כבר בשימוש"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "איזה סוג כניסה ברצונך להוסיף?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "לינוקס"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "מערכת הפעלה אחרת (חלונות...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -311,12 +316,12 @@ msgstr ""
"להלן הרשומות שהוגדרו כבר בתפריט האתחול\n"
"ניתן להוסיף רשומות או לשנות רשומות קיימות."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -328,19 +333,19 @@ msgstr ""
msgid "Warning"
msgstr "אזהרה"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -350,47 +355,47 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "גישה לתכניות X"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "גישה לכלי התקנת תוכנה"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "לאפשר את \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "אפשרות גישה לקבצי ניהול"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "אפשרות גישה לכלי רשת"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "אפשרות גישה לכלי הידור"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(כבר נוסף %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "נא לתת שם למשתמש"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -399,153 +404,153 @@ msgstr ""
"שם המשתמש חייב להתחיל באות קטנה שלאחריה אותיות קטנות, מספרים והסימנים „-” ו־"
"„_”"
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "שם המשתמש ארוך מדי"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "שם משתמש זה כבר קיים"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "קוד זיהוי משתמש"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "מזהה קבוצה"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "הערך %s חייב להיות מספר"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s צריך להיות מעל 1000. האם להמשיך בכל זאת?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "ניהול משתמשים"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "הפעלת חשבון אורחים"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "קביעת סיסמת מנהל (root)"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "הזנת פרטי משתמש"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "סמל"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "שם אמיתי"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "שם משתמש"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "מעטפת"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "נא להמתין, כעת בהוספת מאגרים..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "התחברות אוטומטית"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"ניתן להגדיר שכאשר המערכת תופעל היא תכנס אוטומטית לחשבון של אחד המשתמשים."
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "שימוש בתכונה זו"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "בחירת משתמש ברירת המחדל: "
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "יש לבחור את מנהל החלונות:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "הערות שחרור"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "סגירה"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "הסכם רישיון"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "יציאה"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "האם רישיון זה מוסכם מבחינתך ?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "מוסכם"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "לא מוסכם"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "נא לבחור שפה לשימוש"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -553,87 +558,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "מגוון שפות"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "בחירת שפות נוספות"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "קידוד עם תאימות לאחור (לא UTF-8)"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "כל השפות"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "בחירת שפה"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "מדינה / אזור"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "נא לבחור את המדינה שלך"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "להלן הרשימה המלאה של המדינות הזמינות"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "מדינות אחרות"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "מתקדם"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "שיטת קלט:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "כלום"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "ללא שיתוף"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "הרשה לכל המשתמשים"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "התאמה אישית"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -647,7 +652,7 @@ msgstr ""
"\n"
"\" התאמה אישית\" תאפשר התאמה לכל משתמש.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -655,7 +660,7 @@ msgid ""
msgstr ""
"NFS: מערכת שיתוף הקבצים המסורתית של יוניקס, עם תמיכה פחותה במק וחלונות."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -664,18 +669,18 @@ msgstr ""
"SMB: מערכת שיתוף קבצים הנמצאת בשימוש בחלונות, Mac OS X ומערכות לינוקס "
"מודרניות רבות."
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "ניתן לייצא בעזרת NFS או SMB. עליך לבחור במה להשתמש."
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "הפעלת userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -684,7 +689,7 @@ msgstr ""
"השיתוף לכל משתמש, משתמש בהגדרתקבוצה \"שיתוף-קבצים\".\n"
"ביכולתך להשתמש בעורך המשתמשים כדי להוסיף משתמשים לקבוצה זו."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -693,47 +698,47 @@ msgstr ""
"עליך לצאת ולהיכנס שוב כדי שהשינויים ייכנסו לתוקף. יש ללחוץ על אישור כדי לצאת "
"כעת."
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "עליך להתנתק ולהתחבר שנית כדי שהשינויים יחולו."
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "אזור זמן"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "מהו אזור הזמן שלך?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "הגדרות תאריך, שעון ואזור-זמן"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "מה הזמן הנכון?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (שעון מערכת מכוון ל-UTC)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (שעון מערכת מכוון לזמן המקומי)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "שרת NTP"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "סנכרון זמן אוטומטי (שימוש ב-NTP)"
@@ -1060,7 +1065,7 @@ msgid "Domain Admin Password"
msgstr "הסיסמה לניהול שם התחום"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1075,54 +1080,54 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "‏LILO עם תפריט טקסט"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "‏GRUB2 עם תפריט גרפי"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr ""
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "‏GRUB עם תפריט גרפי"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "‏GRUB עם תפריט טקסט"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "אין מספיק מקום ב-/boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "יש צורך בעדכון תצורת מנהל האתחול שלך מאחר ושונו מספרי מחיצות"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1131,7 +1136,7 @@ msgstr ""
"לא ניתן להתקין את מנהל האתחול כהלכה. יש להפעיל את המערכת במצב חילוץ ולבחור "
"את \"%s\""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "התקנה חוזרת של מנהל האתחול"
@@ -1250,7 +1255,7 @@ msgstr "סיום"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2702,7 +2707,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "*כל* המחיצות הקיימות והנתונים בהן יאבדו מהכונן %s"
@@ -2786,7 +2791,7 @@ msgstr "שרת"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "זוהה RAID תוכנה של ה-BIOS על הדיסקים %s. להפעיל אותו?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2805,22 +2810,22 @@ msgstr ""
"\n"
"האם ניתן להמשיך תוך סיכון של אובדן כל המחיצות?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "נקודות עיגון חייבות להתחיל בלוכסן (/)"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "שמות נקודות עיגון צריכות להכיל רק אותיות, מספרים וקו תחתון"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "כבר קיימת מחיצה עם נקודת עיגון %s\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2828,17 +2833,17 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "אסור להשתמש במערכת קבצים מוצפנת לנקודת העיגון %s"
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "ספרייה זו צריכה להישאר במערכת הקבצים הראשית (root)."
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2847,12 +2852,12 @@ msgstr ""
"יש להגדיר מערכת קבצים אמתית (ext2/3/4, reiserfs, xfs, או jfs) בשביל נקודת "
"העיגון הזאת\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "אין מספיק מקום פנוי לחלוקה אוטומטית"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "לא נדרש לעשות דבר"
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index fba706b66..daf83e54a 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2020-07-24 16:06+0000\n"
"Last-Translator: Panwar108 <caspian7pena@gmail.com>\n"
"Language-Team: Hindi (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:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -163,7 +163,7 @@ msgstr ""
msgid "Security"
msgstr "सुरक्षा"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -184,112 +184,117 @@ msgstr "कृपया पुनः प्रयास करें"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "कूट-शब्द (पुनः बतायें)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "लेबिल"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "जोड़ना"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "विडियो विधा"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "प्रतिबिंब"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "रूट"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "इनिटआरडी"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "डिफ़ाल्ट"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "शून्य लेबिल की अनुमति नहीं है"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "आपको एक कर्नल प्रतिबिंब को बताना चाहिए"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "आपको एक रूट विभाजन को बताया चाहिए"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "यह लेबिल पहिले से उपयोग में है"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "किस प्रकार की प्रविष्टी को आप जोड़ना चाहता है?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "लिनक्स"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "अन्य संचालन तंत्र (विण्डो...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -298,12 +303,12 @@ msgstr ""
"आपके बूट मीनू में अभी तक यह प्रविष्टीयां है । \n"
"आप अतिरिक्त प्रविष्टीयों का निर्माण या वर्तमान प्रविष्टीयों को परिवर्तित कर सकते है ।"
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -315,19 +320,19 @@ msgstr ""
msgid "Warning"
msgstr "चेतावनी"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -337,201 +342,201 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "एक्स कार्यक्रमों तक पहुँच"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "आरपीएम औज़ारों तक पहुँच"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "\"su\" को अनुमति"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "प्रबंधकीय संचिकाओं तक पहुँच"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "नेटवर्क औज़ारों तक पहुँच"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "संकलन औज़ारों तक पहुँच"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s को पहिले से ही जोड़ा जा चुका है)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "कृपया एक उपयोगकर्ता नाम बतायें"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "उपयोगकर्ता नाम काफ़ी लंबा है"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "यह उपयोगकर्ता नाम पहिले से विद्यमान है"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "उपयोग-कर्ता पहचान संख्या"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "समूह पहचान संख्या"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "उपयोक्ता दर्ज करें"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "आईकॉन"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "वास्तविक नाम"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "संत्र-आरम्भ नाम"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "कोश"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "कृपया प्रतीक्षा करें, माध्यम को जोड़ा जा रहा है..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "स्वतः संत्र-आरम्भ"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"मै आपके कम्प्यूटर को एक उपयोगकर्ता के लिए स्वतः ही संत्र-आरम्भ करने के लिए स्थापित कर सकता "
"हूँ ।"
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "डिफ़ाल्ट उपयोगकर्ता का चयन:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "चलाने के लिए विण्डो प्रबंधक का चयन करे:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "रिलीज़ नोट्स"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "बन्द"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "अनुज्ञापत्र एकरारनामा"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "निकास"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "स्वीकार"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "अस्वीकृत"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "कृपया उपयोग में लायी जाने वाली एक भाषा का चयन करें ।"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -539,87 +544,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "मैनड्रैकलिनक्स"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "सभी भाषायें"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr ""
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "देश / क्षेत्र"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "कृपया अपने देश का चयन करें ।"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "यह है उपलब्ध देशों की सम्पूर्ण सूची"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr ""
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "उन्नत"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "कुछ नहीं"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "कोई सहभाजिता नहीं"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "सभी उपयोगकर्ताओं को अनुमति"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "इच्छानुसार"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -634,21 +639,21 @@ msgstr ""
"\n"
"\"कस्टम\" एक प्रत्येक-उपयोगकर्ता ग्रॉन्युलॉरटि की आज्ञा देता है।\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -656,12 +661,12 @@ msgstr ""
"एन०एफ़०एस० या सॉबा का उपयोग करके आप एक्सपोर्ट कर सकते है । कृपया चयन करें आप किस का "
"उपयोग करना चाहते है ।"
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "यूज़रड्रैक को आरम्भ करें"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -670,55 +675,55 @@ msgstr ""
"प्रत्येक-उपयोगकर्ता सहभाजिता \"संचिकासाझा\" समूह का उपयोग करती है।\n"
"आप यूजरड्रैक का उपयोग करके एक उपयोगकर्ता को इस समूह में जोड़ सकते है।"
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"परिवर्तनों को प्रभाव में लाने के लिए, आपको संत्र-समाप्त करके पुन: संत्र-आरम्भ करना होगा"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "समय क्षेत्र"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "आपका समय-क्षेत्र क्या है?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "एन०टी०पी० सर्वर"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr " स्वचालित समय एकसारीकरण (एनटीपी का उपयोग करते हुए)"
@@ -1041,7 +1046,7 @@ msgid "Domain Admin Password"
msgstr "डोमेन प्रबंधन कूट-शब्द"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1056,47 +1061,47 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "पाठ्य मीनू के साथ लिलो"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr ""
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "/boot में इतना स्थान नहीं है"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1105,7 +1110,7 @@ msgstr ""
"आपकी बूटलोडर संरचना को अपडेट करना आवश्यक है क्योंकि विभाजन कोनयी क्रम-संख्या दी जा चुकी "
"है"
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1114,7 +1119,7 @@ msgstr ""
"बूटलोडर को भली-भांति संसाधित नहीं किया जा सका । आपको बूट को बचाव विधा में करना होगा "
"और\"%s\" का चयन करना होगा"
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "बूटलोडर को पुनः संसाधित करना"
@@ -1236,7 +1241,7 @@ msgstr "किया गया"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2689,7 +2694,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s ड्राइव पर स्थित सभी विद्यमान विभाजन और उनकी सूचनायें विलुप्त हो जायेगी"
@@ -2776,7 +2781,7 @@ msgstr "सर्वर"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2795,22 +2800,22 @@ msgstr ""
"\n"
"क्या आप सभी विभाजनों को खोने के लिए सहमत है?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "आरोह बिन्दुओं के नाम का प्रथम अक्षर / होना चाहिए"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "आरोह बिन्दुओं के नाम में सिर्फ़ शब्द व संख्या होना चाहिए"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "%s आरोह बिन्दु के साथ पहिले से ही एक विभाजन विद्यमान है\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2818,17 +2823,17 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "आरोह बिन्दु %s के लिए आप एक गूढ़-लिखित संचिका तंत्र का उपयोग नहीं कर सकते है"
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "इस निर्देशिका को रूट संचिका प्रणाली के भीतर रहना चाहिए"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2837,12 +2842,12 @@ msgstr ""
"इस आरोह बिन्दु के लिए आपको एक वास्तविक संचिकाप्रणाली(ext2/3/4, reiserfs, xfs, or "
"jfs) की आवश्यकता है\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "स्वतः-बाँटने के लिए उपयुक्त मुक्त स्थान नहीं है"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "कुछ भी करने को नहीं"
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 2640f644b..d4f3bcbb5 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2018-03-06 10:53+0000\n"
"Last-Translator: Ivica Kolić <ikoli@yahoo.com>\n"
"Language-Team: Croatian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -18,7 +18,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -164,7 +164,7 @@ msgstr "Omogući lokalni APIC"
msgid "Security"
msgstr "Sigurnost"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -185,112 +185,117 @@ msgstr "Molim pokušajte ponovo"
msgid "You cannot use a password with %s"
msgstr "Ne možete koristiti lozinku sa %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Lozinka (provjera)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Podešavanje bootloadera"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Oznaka"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Dodaj"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Video mod"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Slika"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Korijen"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Zahtjeva lozinku za podizanje sustava"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Uobičajeno"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Morate odrediti sliku kernela"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Morate odrediti root particiju"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Ova oznaka već postoji"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kakvu vrstu zapisa želite dodati"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Drugi OS (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -299,12 +304,12 @@ msgstr ""
"Ovo su trenutni zapisi.\n"
"Možete dodati još koji ili urediti postojeći."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "Ne diraj ESP ili MBR"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -316,19 +321,19 @@ msgstr "Ne diraj ESP ili MBR"
msgid "Warning"
msgstr "Upozorenje"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -338,199 +343,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "pristup administracijskim datotekama"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "pristup mrežnim alatima"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(već postoji %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Molim dajte korisniku korisničko ime"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Korisničko ime je predugo"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Ovaj korisnik već postoji"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Korisnički ID"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "ID grupe"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s mora biti broj"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s treba bit iiznad 1000. Ipak prihvatiti?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Omogući račun gosta"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Unesite korisnika"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Sličica"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Puno ime"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Korisnička oznaka"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Ljuska"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Molim pričekajte, dodajem medij..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Auto-prijava"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Izaberite uobičajenog korisnika:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Izaberite prozorski upravitelj koji želite pokrenuti:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Bilješke o izdanju"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Zatvori"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Licencni dogovor"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Izlaz"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Prihvaćate li ovu licencu?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Prihvati"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Odbij"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Molim izaberite jezik koji želite koristiti"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -538,87 +543,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Višestruki jezici"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "Odaberite dodatne jezike"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Svi jezici"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Izbor jezika"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Država / Regija"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Molim izaberite svoju državu"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Lista svih dostupnih država"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Ostale države"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Napredno"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Metoda unosa:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Nijedan"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Nema dijeljenja"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Prilagođeno"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -635,32 +640,32 @@ msgstr ""
"\n"
"\"Proizvoljno\" će omogućiti dozvoljavanje po korisniku.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Možete izvesti koristeći NFS ili Sambu. Koji od njih želite"
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -669,54 +674,54 @@ msgstr ""
"Dijeljenje po korisniku koristi grupu \"fileshare\". \n"
"Možete koristiti userdrake za dodavanje korisnika u navedenu grupu."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Vremenska zona"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Postavke datuma, sata & vremenske zone"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Koje je najbolje vrijeme?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardwarski sat postavljen na UTC)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardwarski sat postavljen na lokalno vrijeme)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP Poslužitelj"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska vremenska sinkronizacija (koristeći NTP)"
@@ -1040,7 +1045,7 @@ msgid "Domain Admin Password"
msgstr "Zaporka administratora domene"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1050,61 +1055,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 sa tekstualnim menijem"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB sa tekstualnim menijem"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, fuzzy, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux sa tekstualnim menijem"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "nema dovoljno mjesta u /boot"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1219,7 +1224,7 @@ msgstr "Gotovo"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2652,7 +2657,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "SVE postojeće particije i podaci biti će izgubljeni na disku %s"
@@ -2736,7 +2741,7 @@ msgstr "poslužitelj"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2748,22 +2753,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Mjesto montiranja mora početi sa /"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa mjestom montiranja %s\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2771,30 +2776,30 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Ne možete koristiti enkriptirani datotečni sustav za točku montiranja %s"
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij bi trebao ostati unutar root datotečnog sustava"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno slobodnog prostora za auto-alokaciju"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nema ništa za uraditi"
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index f35c6d7c6..ed102de60 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2017-09-23 18:58+0000\n"
"Last-Translator: Kardos László <kardiweb@protonmail.ch>\n"
"Language-Team: Hungarian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -23,7 +23,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -176,7 +176,7 @@ msgstr "Helyi APIC bekapcsolása"
msgid "Security"
msgstr "Biztonság"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -197,112 +197,117 @@ msgstr "Próbálja meg újra"
msgid "You cannot use a password with %s"
msgstr "Nem használható jelszó ezzel: %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Jelszó (még egyszer)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Rendszerindító beállítása"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Címke"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Hozzáfűzés"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Képernyőmód"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Indítófájl"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Gyökér"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Xen hozzáfűzés"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Kötelező a jelszó a rendszerindításhoz"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Indítási RAM lemez"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Hálózati profil"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Alapértelmezés"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "A címke nem lehet üres"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Meg kell adni egy kernelfájlt"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Meg kell adni egy gyökérpartíciót"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Már van ilyen nevű címke"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Milyen bejegyzést szeretne felvenni?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "Egyéb op. rendszer (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -311,12 +316,12 @@ msgstr ""
"Itt láthatók az indítási menü jelenlegi bejegyzései.\n"
"Új bejegyzések vehetők fel, illetve módosíthatók a meglevők."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr "Ne nyúljon az ESP vagy MBR-hez"
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -328,7 +333,7 @@ msgstr "Ne nyúljon az ESP vagy MBR-hez"
msgid "Warning"
msgstr "Figyelmeztetés"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
@@ -337,12 +342,12 @@ msgstr ""
"Az ESP vagy MBR nem telepíthető azt jelenti, hogy a telepítő nem indítható "
"mert a bejegyzésben már van egy másik OS!"
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr "Próbálja meg az idegen OS-t"
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -352,47 +357,47 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "hozzáférés az X-es programokhoz"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "hozzáférés az RPM eszközökhöz"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "\"su\" engedélyezése"
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "hozzáférés az adminisztrációs fájlokhoz"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "hozzáférés a hálózati eszközökhöz"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "hozzáférés a fordítási eszközökhöz"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(már fel van véve: %s)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Adjon meg egy felhasználónevet"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -401,154 +406,154 @@ msgstr ""
"A felhasználónévnek kötelező kisbetűvel kezdődnie, és csak kisbetűket, "
"számokat, `-' és `_' jeleket tartalmazhat"
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "A felhasználónév túl hosszú"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Már létezik ilyen felhasználónév"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Felh.-azonosító"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Csoportazonosító"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "A(z) \"%s\" értéknek számnak kell lennie"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "A(z) \"%s\" értéknek 1000-nál nagyobbnak kell lennie. Mégis elfogadja?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Felhasználó kezelés"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Vendég hozzáférés engedélyezése"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "A rendszergazdai (root) jelszó beállítása"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Adjon meg egy felhasználót"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Ikon"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Valódi név"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Bejelentkezési név"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Parancsértelmező"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr "Extra csoportok"
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Adatforrások felvétele..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatikus bejelentkezés"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Beállítható, hogy rendszerindításkor egy felhasználó automatikusan "
"bejelentkezzen."
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "A lehetőség használata"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Adja meg az alapértelmezett felhasználónevet:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Válassza ki a használni kívánt ablakkezelőt:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Verzióinformáció"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Bezárás"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Licencegyezmény"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Kilépés"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Elfogadja ezt a licencet?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Elfogadom"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Nem fogadom el"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Válasszon nyelvet"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -559,87 +564,87 @@ msgstr ""
"mely nyelveket szeretné telepíteni. Ezek a telepítés befejeződése\n"
"utáni az újraindítást követően lesznek elérhetők."
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr "Többnyelvű"
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr "További nyelvek választása"
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Régebbi kompatibilitási (nem UTF-8) kódolás"
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr "Az összes nyelv"
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr "Nyelvválasztás"
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr "Ország/terület"
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr "Válassza ki az országot"
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr "Itt található az elérhető országok listája"
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr "Egyéb országok"
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Speciális"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr "Beviteli módszer:"
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr "Egyik sem"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr "Nincs megosztás"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr "Az összes felhasználó engedélyezése"
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr "Egyéni"
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -657,7 +662,7 @@ msgstr ""
"\n"
"Az \"Egyéni\" opció használatával felhasználónkénti beállítás lehetséges.\n"
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -666,7 +671,7 @@ msgstr ""
"NFS: a hagyományos UNIX-os fájlmegosztási rendszer - Macintosh és Windows "
"alatt kevésbé támogatott."
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -674,7 +679,7 @@ msgid ""
msgstr ""
"SMB: Windows, Mac OS X és Linux alatt használatos fájlmegosztási módszer."
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -682,12 +687,12 @@ msgstr ""
"Exportálás NFS-sel vagy Sambával végezhető. Válassza ki, melyiket kívánja "
"használni."
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr "UserDrake indítása"
-#: any.pm:1590
+#: any.pm:1596
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -696,7 +701,7 @@ msgstr ""
"A felhasználónkénti megosztás a \"fileshare\" csoportot használja.\n"
"A UserDrake programmal lehet felhasználót felvenni ebbe a csoportba."
-#: any.pm:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -705,47 +710,47 @@ msgstr ""
"A módosítások érvénybe lépéséhez ki kell lépni, majd ismét belépni. "
"Kattintson az OK gombra az azonnali kilépéshez."
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "A módosítások érvénybe lépéséhez ki kell lépni, majd ismét belépni"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr "Időzóna"
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr "Melyik időzónát választja?"
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dátum-, óra- és időzóna-beállítások"
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr "Melyik a legmegfelelőbb idő?"
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (a gép órája az UTC időt mutatja)"
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (a gép órája a helyi időt mutatja)"
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr "NTP kiszolgáló"
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatikus időszinkronizáció (NTP-vel)"
@@ -1082,7 +1087,7 @@ msgid "Domain Admin Password"
msgstr "Tartományadminisztrátor jelszava"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1097,47 +1102,47 @@ msgstr ""
"amig az alapertelmezett elindul.\n"
"\n"
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr "LILO, szöveges menüvel"
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2, grafikus menüvel"
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2, szöveges menüvel"
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB, grafikus menüvel"
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB, szöveges menüvel"
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, fuzzy, c-format
msgid "rEFInd with graphical menu"
msgstr "rEFInd, grafikus menüvel"
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, fuzzy, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr "U-Boot/Extlinux, szöveges menüvel"
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr "nincs elég hely a /boot partíción"
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1146,7 +1151,7 @@ msgstr ""
"A rendszerindító beállításait frissíteni kell, mivel a partíciók számozása "
"módosult."
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1155,7 +1160,7 @@ msgstr ""
"A rendszerindító nem telepíthető. Indítsa el a rendszert egy helyreállítási "
"lemezzel, majd válassza ezt: \"%s\"."
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr "Rendszerindító újratelepítése"
@@ -1275,7 +1280,7 @@ msgstr "Kész"
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2765,7 +2770,7 @@ msgid ""
"to use?"
msgstr "Több merevlemeze van. Melyikre kívánja használni a telepítéshez?"
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2851,7 +2856,7 @@ msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
"A következő lemezeken BIOS-os szoftveres RAID van: %s. Kívánja aktiválni?"
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2870,22 +2875,22 @@ msgstr ""
"\n"
"Törölni szeretné az összes partíciót?\n"
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "A csatolási pontoknak /-rel kell kezdődni"
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "A csatolási pontoknak betűkből és számokból kell állni"
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Már van egy partíció amelynek %s a csatolási pontja\n"
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2896,17 +2901,17 @@ msgstr ""
"Egyik rendszerindító program sem tudja ezt kezelni /boot partíció nélkül, "
"ezért mindenképpen hozzon létre egy /boot partíciót."
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Titkosított fájlrendszer nem használható ehhez a csatolási ponthoz: %s"
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ennek a könyvtárnak a gyökér-fájlrendszeren belül kell maradnia"
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2915,12 +2920,12 @@ msgstr ""
"Valódi fájlrendszert (Ext2, Ext3, ReiserFS, XFS vagy JFS) kell használni "
"ennél a csatolási pontnál\n"
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nincs elég szabad terület az automatikus helyfoglaláshoz"
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nincs mit tenni"
diff --git a/perl-install/share/po/hy.po b/perl-install/share/po/hy.po
index 82826ef4f..2f023bbb7 100644
--- a/perl-install/share/po/hy.po
+++ b/perl-install/share/po/hy.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2019-04-16 15:40+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Armenian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -156,7 +156,7 @@ msgstr ""
msgid "Security"
msgstr ""
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -177,124 +177,129 @@ msgstr ""
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr ""
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr ""
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr ""
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr ""
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr ""
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr ""
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr ""
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr ""
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr ""
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr ""
-#: any.pm:682
+#: any.pm:687
#, 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:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -306,19 +311,19 @@ msgstr ""
msgid "Warning"
msgstr "Զգուշացում"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -328,199 +333,199 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr ""
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr ""
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr ""
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr ""
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "Օգտագործողի ID"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "Խմբի ID"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr ""
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr ""
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr ""
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr ""
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr ""
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Փակել"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Ելք"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr ""
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr ""
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr ""
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -528,87 +533,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1332 fs/partitioning_wizard.pm:208
+#: any.pm:1337 fs/partitioning_wizard.pm:208
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1333
+#: any.pm:1338
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1334
+#: any.pm:1339
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1343 any.pm:1374
+#: any.pm:1348 any.pm:1379
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1344
+#: any.pm:1349
#, c-format
msgid "All languages"
msgstr ""
-#: any.pm:1366
+#: any.pm:1371
#, c-format
msgid "Language choice"
msgstr ""
-#: any.pm:1420
+#: any.pm:1425
#, c-format
msgid "Country / Region"
msgstr ""
-#: any.pm:1421
+#: any.pm:1426
#, c-format
msgid "Please choose your country"
msgstr ""
-#: any.pm:1423
+#: any.pm:1428
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1424
+#: any.pm:1429
#, c-format
msgid "Other Countries"
msgstr ""
-#: any.pm:1424 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1429 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Լրացուցիչ"
-#: any.pm:1430
+#: any.pm:1435
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1433
+#: any.pm:1438
#, c-format
msgid "None"
msgstr ""
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "No sharing"
msgstr ""
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Allow all users"
msgstr ""
-#: any.pm:1533
+#: any.pm:1539
#, c-format
msgid "Custom"
msgstr ""
-#: any.pm:1537
+#: any.pm:1543
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -618,86 +623,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1549
+#: any.pm:1555
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1552
+#: any.pm:1558
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1560
+#: any.pm:1566
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1588
+#: any.pm:1594
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1590
+#: any.pm:1596
#, 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:1697
+#: any.pm:1703
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1701
+#: any.pm:1707
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Timezone"
msgstr ""
-#: any.pm:1736
+#: any.pm:1742
#, c-format
msgid "Which is your timezone?"
msgstr ""
-#: any.pm:1759 any.pm:1761
+#: any.pm:1765 any.pm:1767
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1762
+#: any.pm:1768
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1766
+#: any.pm:1772
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1767
+#: any.pm:1773
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1769
+#: any.pm:1775
#, c-format
msgid "NTP Server"
msgstr ""
-#: any.pm:1770
+#: any.pm:1776
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1020,7 +1025,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1275
+#: bootloader.pm:1285
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1030,61 +1035,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1444
+#: bootloader.pm:1454
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:1445
+#: bootloader.pm:1455
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1446
+#: bootloader.pm:1456
#, c-format
msgid "GRUB2 with text menu"
msgstr ""
-#: bootloader.pm:1447
+#: bootloader.pm:1457
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1448
+#: bootloader.pm:1458
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1449
+#: bootloader.pm:1459
#, c-format
msgid "rEFInd with graphical menu"
msgstr ""
-#: bootloader.pm:1450
+#: bootloader.pm:1460
#, c-format
msgid "U-Boot/Extlinux with text menu"
msgstr ""
-#: bootloader.pm:1538
+#: bootloader.pm:1548
#, c-format
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:2694
+#: bootloader.pm:2738
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2707
+#: bootloader.pm:2751
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2708
+#: bootloader.pm:2752
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1199,7 +1204,7 @@ msgstr ""
#: diskdrake/interactive.pm:1272 diskdrake/interactive.pm:1275
#: diskdrake/interactive.pm:1543 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:49
#: do_pkgs.pm:54 do_pkgs.pm:79 do_pkgs.pm:103 do_pkgs.pm:108 do_pkgs.pm:142
-#: fsedit.pm:268 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:282 interactive/http.pm:117 interactive/http.pm:118
#: modules/interactive.pm:19 scanner.pm:94 scanner.pm:105 scanner.pm:112
#: scanner.pm:119 wizards.pm:95 wizards.pm:99 wizards.pm:121
#, c-format
@@ -2584,7 +2589,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:285 fsedit.pm:655
+#: fs/partitioning_wizard.pm:285 fsedit.pm:669
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2666,7 +2671,7 @@ msgstr "Բանավար"
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:269
+#: fsedit.pm:283
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2678,22 +2683,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:453
+#: fsedit.pm:467
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:454
+#: fsedit.pm:468
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:455
+#: fsedit.pm:469
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2701,29 +2706,29 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:475
+#: fsedit.pm:478 fsedit.pm:489
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:467 fsedit.pm:469
+#: fsedit.pm:481 fsedit.pm:483
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:471 fsedit.pm:473
+#: fsedit.pm:485 fsedit.pm:487
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:548
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:550
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr ""
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index a24d7b0ff..64f3b53f3 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -17,7 +17,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2020-09-21 20:15+0300\n"
+"POT-Creation-Date: 2020-12-21 16:44+0000\n"
"PO-Revision-Date: 2016-11-07 08:35+0000\n"
"Last-Translator: Rania Amina <reaamina@gmail.com>\n"
"Language-Team: Indonesian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -28,7 +28,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: any.pm:272 any.pm:705 any.pm:1129 diskdrake/interactive.pm:650
+#: any.pm:272 any.pm:710 any.pm:1134 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:901 diskdrake/interactive.pm:966
#: diskdrake/interactive.pm:1058 diskdrake/interactive.pm:1085
#: diskdrake/interactive.pm:1316 diskdrake/interactive.pm:1374 do_pkgs.pm:342
@@ -178,7 +178,7 @@ msgstr "Hidupkan APIC Lokal"
msgid "Security"
msgstr "Keamanan"
-#: any.pm:437 any.pm:1050 any.pm:1069 authentication.pm:249
+#: any.pm:437 any.pm:1055 any.pm:1074 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -199,112 +199,117 @@ msgstr "Silakan coba lagi"
msgid "You cannot use a password with %s"
msgstr "Anda tidak bisa menggunakan sandi dengan %s"
-#: any.pm:446 any.pm:1053 any.pm:1071 authentication.pm:250
+#: any.pm:446 any.pm:1058 any.pm:1076 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Sandi (lagi)"
-#: any.pm:514 any.pm:681 any.pm:724
+#: any.pm:516 any.pm:686 any.pm:729
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfigurasi Bootloader"
-#: any.pm:518
+#: any.pm:520
#, c-format
msgid "Install or update rEFInd in the EFI system partition"
msgstr ""
-#: any.pm:520 any.pm:744
+#: any.pm:522 any.pm:749
#, c-format
msgid "Install in /EFI/BOOT (removable device or workaround for some BIOSs)"
msgstr ""
-#: any.pm:560 any.pm:585 diskdrake/interactive.pm:411
+#: any.pm:524
+#, c-format
+msgid "Configure rEFInd to store its variables in the EFI NVRAM"
+msgstr ""
+
+#: any.pm:565 any.pm:590 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:561 any.pm:569 any.pm:730
+#: any.pm:566 any.pm:574 any.pm:735
#, c-format
msgid "Append"
msgstr "Tambahkan"
-#: any.pm:562 any.pm:574 any.pm:731
+#: any.pm:567 any.pm:579 any.pm:736
#, c-format
msgid "Video mode"
msgstr "Mode video"
-#: any.pm:567
+#: any.pm:572
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:568 any.pm:580
+#: any.pm:573 any.pm:585
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:571
+#: any.pm:576
#, c-format
msgid "Xen append"
msgstr "Tambahkan Xen"
-#: any.pm:573
+#: any.pm:578
#, c-format
msgid "Requires password to boot"
msgstr "Memerlukan sandi untuk boot"
-#: any.pm:575
+#: any.pm:580
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:576
+#: any.pm:581
#, c-format
msgid "Network profile"
msgstr "Profil jaringan"
-#: any.pm:587 any.pm:728 harddrake/v4l.pm:438
+#: any.pm:592 any.pm:733 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Default"
-#: any.pm:595
+#: any.pm:600
#, c-format
msgid "Empty label not allowed"
msgstr "Label kosong tidak diizinkan"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a kernel image"
msgstr "Anda harus menentukan image kernel"
-#: any.pm:596
+#: any.pm:601
#, c-format
msgid "You must specify a root partition"
msgstr "Anda harus menentukan partisi root"
-#: any.pm:597
+#: any.pm:602
#, c-format
msgid "This label is already used"
msgstr "Label ini sudah digunakan"
-#: any.pm:621
+#: any.pm:626
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Tipe entri mana yang ingin Anda tambahkan?"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:622
+#: any.pm:627
#, c-format
msgid "Other OS (Windows...)"
msgstr "OS lain (Windows...)"
-#: any.pm:682
+#: any.pm:687
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -313,12 +318,12 @@ msgstr ""
"Ini adalah daftar pada menu boot Anda saat ini.\n"
"Anda bisa membuat entri tambahan atau mengubah yang sudah ada."
-#: any.pm:733
+#: any.pm:738
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:735 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
+#: any.pm:740 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:847
#: diskdrake/interactive.pm:912 diskdrake/interactive.pm:1083
@@ -330,19 +335,19 @@ msgstr ""
msgid "Warning"
msgstr "Peringatan"
-#: any.pm:736
+#: any.pm:741
#, c-format
msgid ""
"Not installing on ESP or MBR means that the installation is not bootable "
"unless chain loaded from another OS!"
msgstr ""
-#: any.pm:740
+#: any.pm:745
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:741
+#: any.pm:746
#, c-format
msgid ""
"Unselect this option to stop grub2 scanning for other operating systems, "
@@ -352,47 +357,47 @@ msgid ""
"installing kernel updates"
msgstr ""
-#: any.pm:1009
+#: any.pm:1014
#, c-format
msgid "access to X programs"
msgstr "akses ke program X"
-#: any.pm:1010
+#: any.pm:1015
#, c-format
msgid "access to rpm tools"
msgstr "akses ke peralatan rpm"
-#: any.pm:1011
+#: any.pm:1016
#, c-format
msgid "allow \"su\""
msgstr "izinkan \"su\""
-#: any.pm:1012
+#: any.pm:1017
#, c-format
msgid "access to administrative files"
msgstr "akses ke file administratif"
-#: any.pm:1013
+#: any.pm:1018
#, c-format
msgid "access to network tools"
msgstr "akses ke peralatan jaringan"
-#: any.pm:1014
+#: any.pm:1019
#, c-format
msgid "access to compilation tools"
msgstr "akses ke peralatan kompilasi"
-#: any.pm:1020
+#: any.pm:1025
#, c-format
msgid "(already added %s)"
msgstr "(%s sudah ditambahkan)"
-#: any.pm:1026
+#: any.pm:1031
#, c-format
msgid "Please give a user name"
msgstr "Silakan berikan nama pengguna"
-#: any.pm:1027
+#: any.pm:1032
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -401,153 +406,153 @@ msgstr ""
"Nama pengguna harus dimulai dengan huruf kecil diikuti oleh hanya huruf "
"kecil, nomor, `-' dan `_'"
-#: any.pm:1028
+#: any.pm:1033
#, c-format
msgid "The user name is too long"
msgstr "Nama pengguna terlalu panjang"
-#: any.pm:1029
+#: any.pm:1034
#, c-format
msgid "This user name has already been added"
msgstr "Nama pengguna ini sudah pernah ditambahkan"
-#: any.pm:1035 any.pm:1073
+#: any.pm:1040 any.pm:1078
#, c-format
msgid "User ID"
msgstr "ID Pengguna"
-#: any.pm:1035 any.pm:1074
+#: any.pm:1040 any.pm:1079
#, c-format
msgid "Group ID"
msgstr "ID Grup"
-#: any.pm:1036
+#: any.pm:1041
#, c-format
msgid "%s must be a number"
msgstr "%s harus berupa nomor"
-#: any.pm:1037
+#: any.pm:1042
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s harus di atas 1000. Terima saja?"
-#: any.pm:1041
+#: any.pm:1046
#, c-format
msgid "User management"
msgstr "Manajemen pengguna"
-#: any.pm:1047
+#: any.pm:1052
#, c-format
msgid "Enable guest account"
msgstr "Hidupkan akun tamu"
-#: any.pm:1049 authentication.pm:236
+#: any.pm:1054 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Atur sandi administrator (root)"
-#: any.pm:1055
+#: any.pm:1060
#, c-format
msgid "Enter a user"
msgstr "Masukkan pengguna"
-#: any.pm:1057
+#: any.pm:1062
#, c-format
msgid "Icon"
msgstr "Ikon"
-#: any.pm:1060
+#: any.pm:1065
#, c-format
msgid "Real name"
msgstr "Nama asli"
-#: any.pm:1067
+#: any.pm:1072
#, c-format
msgid "Login name"
msgstr "Nama login"
-#: any.pm:1072
+#: any.pm:1077
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:1076
+#: any.pm:1081
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1129
+#: any.pm:1134
#, c-format
msgid "Please wait, adding media..."
msgstr "Silakan tunggu, menambahkan media..."
-#: any.pm:1181 security/l10n.pm:14
+#: any.pm:1186 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Login otomatis"
-#: any.pm:1182
+#: any.pm:1187
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Kita bisa mengatur komputer agar login secara otomatis ke satu pengguna."
-#: any.pm:1183
+#: any.pm:1188
#, c-format
msgid "Use this feature"
msgstr "Gunakan fitur ini"
-#: any.pm:1184
+#: any.pm:1189
#, c-format
msgid "Choose the default user:"
msgstr "Pilih pengguna default:"
-#: any.pm:1185
+#: any.pm:1190
#, c-format
msgid "Choose the window manager to run:"
msgstr "Pilih manajer window yang akan dijalankan:"
-#: any.pm:1196 any.pm:1211 any.pm:1280
+#: any.pm:1201 any.pm:1216 any.pm:1285
#, c-format
msgid "Release Notes"
msgstr "Catatan Rilis"
-#: any.pm:1218 any.pm:1588 interactive/gtk.pm:820
+#: any.pm:1223 any.pm:1594 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Tutup"
-#: any.pm:1266
+#: any.pm:1271
#, c-format
msgid "License agreement"
msgstr "Perjanjian lisensi"
-#: any.pm:1268 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1273 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Keluar"
-#: any.pm:1275
+#: any.pm:1280
#, c-format
msgid "Do you accept this license ?"
msgstr "Apakah Anda menerima lisensi ini?"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Accept"
msgstr "Terima"
-#: any.pm:1276
+#: any.pm:1281
#, c-format
msgid "Refuse"
msgstr "Tolak"
-#: any.pm:1302 any.pm:1365
+#: any.pm:1307 any.pm:1370
#, c-format
msgid "Please choose a language to use"
msgstr "Silakan pilih bahasa yang akan digunakan"
-#: any.pm:1330
+#: any.pm:1335
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,87 +563,87 @@ msgstr ""
"bahasa yang ingin Anda install. Mereka akan tersedia\n"
"setelah instalasi selesai dan Anda merestart sistem."
-#: any.pm:1332 fs/partitioning_wizard.pm:208