summaryrefslogtreecommitdiffstats
path: root/perl-install/handle_configs.pm
blob: 97011f1f61bd1695a08e984ca0b570de8140aff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
package handle_configs;


use diagnostics;
use strict;

use common;

sub searchstr {
    # Preceed all characters which are special characters in regexps with
    # a backslash, so that the returned string used in a regexp searches
    # a literal occurence of the original string. White space is replaced
    # by "\s+"
    # "quotemeta()" does not serve for this, as it also quotes some regular
    # characters, as the space
    my ($s) = @_;
    $s =~ s!([\\/\(\)\[\]\{\}\|\.\$\@\%\*\?#\+\-])!\\$1!g;
    return $s;
}

sub read_directives {
    # Read one or more occurences of a directive
    my ($lines_ptr, $directive) = @_;

    my $searchdirective = searchstr($directive);
    # do not use if_() below because it slow down printerdrake
    # to the point one can believe in process freeze:
    map { (/^\s*$searchdirective\s+(\S.*)$/ ? chomp_($1) : ()) } @$lines_ptr;
}

sub read_unique_directive {

    # Read a directive, if the directive appears more than once, use
    # the last occurence and remove all the others, if it does not
    # occur, return the default value

    my ($lines_ptr, $directive, $default) = @_;

    if ((my @d = read_directives($lines_ptr, $directive)) > 0) {
	my $value = $d[-1];
	set_directive($lines_ptr, "$directive $value");
	return $value;
    } else {
        return $default;
    }
}

sub insert_directive {

    # Insert a directive only if it is not already there

    my ($lines_ptr, $directive) = @_;

    my $searchdirective = searchstr($directive);
    (/^\s*$searchdirective$/ and return 0) foreach @$lines_ptr;
    push @$lines_ptr, "$directive\n";
    return 1;
}

sub remove_directive {

    # Remove a directive

    my ($lines_ptr, $directive) = @_;

    my $success = 0;
    my $searchdirective = searchstr($directive);
    (/^\s*$searchdirective/ and $_ = "" and $success = 1)
	foreach @$lines_ptr;
    return $success;
}

sub comment_directive {

    # Comment out a directive

    my ($lines_ptr, $directive, $exactmatch) = @_;

    my $success = 0;
    my $searchdirective = searchstr($directive);
    $searchdirective .= ".*" if !$exactmatch;
    (s/^\s*($searchdirective)$/#$1/ and $success = 1)
	foreach @$lines_ptr;
    return $success;
}

sub replace_directive {

    # Replace a directive, if it appears more than once, remove
    # the additional occurences.

    my ($lines_ptr, $olddirective, $newdirective) = @_;

    my $success = 0;
    $newdirective = "$newdirective\n";
    my $searcholddirective = searchstr($olddirective);
    (/^\s*$searcholddirective/ and $_ = $newdirective and 
     $success = 1 and $newdirective = "") foreach @$lines_ptr;
    return $success;
}


sub move_directive_to_version_commented_out {

    # If there is a version of the directive "commentedout" which is
    # commented out, the directive "directive" will be moved in its place.

    my ($lines_ptr, $commentedout, $directive, $exactmatch) = @_;

    my $success = 0;
    my $searchcommentedout = searchstr($commentedout);
    $searchcommentedout .= ".*" if !$exactmatch;
    (/^\s*#$searchcommentedout$/ and 
     $success = 1 and last) foreach @$lines_ptr;
    if ($success) {
	remove_directive($lines_ptr, $directive);
	(s/^\s*#($searchcommentedout)$/$directive/ and 
	 $success = 1 and last) foreach @$lines_ptr;
    }
    return $success;
}

sub set_directive {

    # Set a directive, replace the old definition or a commented definition

    my ($lines_ptr, $directive, $full_line) = @_;

    my $olddirective = $directive;
    if (!$full_line) {
	$olddirective =~ s/^\s*(\S+)\s+.*$/$1/s;
	$olddirective ||= $directive;
    }

    my $success = (replace_directive($lines_ptr, $olddirective,
				     $directive) ||
		   insert_directive($lines_ptr, $directive));
    if ($success) {
	move_directive_to_version_commented_out($lines_ptr, $directive, 
						$directive, 1);
    }
    return $success;
}

sub add_directive {

    # Add a directive, replace a commented definition

    my ($lines_ptr, $directive) = @_;

    my $success = insert_directive($lines_ptr, $directive);
    if ($success) {
	move_directive_to_version_commented_out($lines_ptr, $directive, 
						$directive, 1);
    }
    return $success;
}

1;
tr>-rw-r--r--perl-install/share/po/lv.po346
-rw-r--r--perl-install/share/po/mk.po346
-rw-r--r--perl-install/share/po/mn.po346
-rw-r--r--perl-install/share/po/ms.po346
-rw-r--r--perl-install/share/po/mt.po346
-rw-r--r--perl-install/share/po/nb.po346
-rw-r--r--perl-install/share/po/nl.po346
-rw-r--r--perl-install/share/po/nn.po346
-rw-r--r--perl-install/share/po/pa_IN.po346
-rw-r--r--perl-install/share/po/pl.po346
-rw-r--r--perl-install/share/po/pt.po346
-rw-r--r--perl-install/share/po/pt_BR.po346
-rw-r--r--perl-install/share/po/ro.po346
-rw-r--r--perl-install/share/po/ru.po1764
-rw-r--r--perl-install/share/po/sc.po346
-rw-r--r--perl-install/share/po/sk.po346
-rw-r--r--perl-install/share/po/sl.po346
-rw-r--r--perl-install/share/po/sq.po346
-rw-r--r--perl-install/share/po/sr.po346
-rw-r--r--perl-install/share/po/sr@Latn.po346
-rw-r--r--perl-install/share/po/sv.po346
-rw-r--r--perl-install/share/po/ta.po346
-rw-r--r--perl-install/share/po/tg.po346
-rw-r--r--perl-install/share/po/th.po346
-rw-r--r--perl-install/share/po/tl.po346
-rw-r--r--perl-install/share/po/tr.po346
-rw-r--r--perl-install/share/po/uk.po346
-rw-r--r--perl-install/share/po/uz.po346
-rw-r--r--perl-install/share/po/uz@cyrillic.po346
-rw-r--r--perl-install/share/po/vi.po346
-rw-r--r--perl-install/share/po/wa.po346
-rw-r--r--perl-install/share/po/zh_CN.po346
-rw-r--r--perl-install/share/po/zh_TW.po346
72 files changed, 14275 insertions, 12043 deletions
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 1460d149d..8d0aefed1 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-af\n"
-"POT-Creation-Date: 2016-12-12 23:00+0100\n"
+"POT-Creation-Date: 2018-11-03 11:40+0000\n"
"PO-Revision-Date: 2005-04-21 17:33+0200\n"
"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
"Language-Team: Afrikaans\n"
@@ -20,11 +20,11 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"
-#: any.pm:263 any.pm:1026 diskdrake/interactive.pm:650
+#: any.pm:263 any.pm:695 any.pm:1107 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:874 diskdrake/interactive.pm:936
#: diskdrake/interactive.pm:1028 diskdrake/interactive.pm:1055
#: diskdrake/interactive.pm:1286 diskdrake/interactive.pm:1344 do_pkgs.pm:342
-#: do_pkgs.pm:387 interactive.pm:712 pkgs.pm:293
+#: do_pkgs.pm:388 interactive.pm:712 pkgs.pm:293
#, c-format
msgid "Please wait"
msgstr "Wag asb."
@@ -165,7 +165,7 @@ msgstr "Bekragtig ACPI"
msgid "Security"
msgstr "Sekuriteit"
-#: any.pm:428 any.pm:950 any.pm:969 authentication.pm:249
+#: any.pm:428 any.pm:1028 any.pm:1047 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -186,102 +186,112 @@ msgstr "Probeer asb. weer"
msgid "You cannot use a password with %s"
msgstr "U kan nie 'n lêerstelsel met enkripsie vir hegpunt %s gebruik nie."
-#: any.pm:437 any.pm:953 any.pm:971 authentication.pm:250
+#: any.pm:437 any.pm:1031 any.pm:1049 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: any.pm:502
+#: any.pm:504 any.pm:671 any.pm:714
+#, fuzzy, c-format
+msgid "Bootloader Configuration"
+msgstr "Herlaaistylkonfigurasie"
+
+#: any.pm:508
#, c-format
-msgid "Image"
-msgstr "Beeld"
+msgid "Install or update rEFInd in the EFI system partition"
+msgstr ""
-#: any.pm:503 any.pm:515
+#: any.pm:510
#, c-format
-msgid "Root"
-msgstr "'Root'"
+msgid "Install in /EFI/BOOT (workaround for some BIOSs)"
+msgstr ""
-#: any.pm:504 any.pm:642
+#: any.pm:550 any.pm:575 diskdrake/interactive.pm:411
+#, c-format
+msgid "Label"
+msgstr "Naam"
+
+#: any.pm:551 any.pm:559 any.pm:720
#, c-format
msgid "Append"
msgstr "Aanlas"
-#: any.pm:506
+#: any.pm:552 any.pm:564 any.pm:721
+#, c-format
+msgid "Video mode"
+msgstr "Videomodus"
+
+#: any.pm:557
+#, c-format
+msgid "Image"
+msgstr "Beeld"
+
+#: any.pm:558 any.pm:570
+#, c-format
+msgid "Root"
+msgstr "'Root'"
+
+#: any.pm:561
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:508
+#: any.pm:563
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:509 any.pm:643
-#, c-format
-msgid "Video mode"
-msgstr "Videomodus"
-
-#: any.pm:510
+#: any.pm:565
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:511
+#: any.pm:566
#, fuzzy, c-format
msgid "Network profile"
msgstr "Netwerkkoppelvlak"
-#: any.pm:519 diskdrake/interactive.pm:411
-#, c-format
-msgid "Label"
-msgstr "Naam"
-
-#: any.pm:521 any.pm:640 harddrake/v4l.pm:438
+#: any.pm:577 any.pm:718 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Verstek"
-#: any.pm:529
+#: any.pm:585
#, c-format
msgid "Empty label not allowed"
msgstr "Leë etiket word nie toegelaat nie"
-#: any.pm:530
+#: any.pm:586
#, c-format
msgid "You must specify a kernel image"
msgstr "U moet 'n kernel-beeld spesifiseer"
-#: any.pm:530
+#: any.pm:586
#, c-format
msgid "You must specify a root partition"
msgstr "U moet 'n 'root-partisie spesifiseer"
-#: any.pm:531
+#: any.pm:587
#, c-format
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: any.pm:549
+#: any.pm:611
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: any.pm:550
+#: any.pm:612
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:550
+#: any.pm:612
#, c-format
msgid "Other OS (Windows...)"
msgstr "Ander bedryfstelsel (Windows...)"
-#: any.pm:597 any.pm:636
-#, fuzzy, c-format
-msgid "Bootloader Configuration"
-msgstr "Herlaaistylkonfigurasie"
-
-#: any.pm:598
+#: any.pm:672
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -290,12 +300,12 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: any.pm:645
+#: any.pm:723
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:647 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:458
+#: any.pm:725 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:820
#: diskdrake/interactive.pm:885 diskdrake/interactive.pm:1053
@@ -307,66 +317,66 @@ msgstr ""
msgid "Warning"
msgstr "Waarskuwing"
-#: any.pm:648
+#: any.pm:726
#, 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:652
+#: any.pm:730
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:653
+#: any.pm:731
#, c-format
msgid ""
"If grub2 takes too long to install, you can use this option to skip "
"detecting other OSes and make it fast"
msgstr ""
-#: any.pm:909
+#: any.pm:987
#, c-format
msgid "access to X programs"
msgstr "toegang na X-programme"
-#: any.pm:910
+#: any.pm:988
#, c-format
msgid "access to rpm tools"
msgstr "toegang tot rpm-nutsprogramme"
-#: any.pm:911
+#: any.pm:989
#, c-format
msgid "allow \"su\""
msgstr "laat \"su\" toe"
-#: any.pm:912
+#: any.pm:990
#, c-format
msgid "access to administrative files"
msgstr "toegang tot administratiewe-lêers"
-#: any.pm:913
+#: any.pm:991
#, c-format
msgid "access to network tools"
msgstr "toegang na netwerk-nutsprogramme"
-#: any.pm:914
+#: any.pm:992
#, c-format
msgid "access to compilation tools"
msgstr "toegang na kompilasie-gereedskap"
-#: any.pm:920
+#: any.pm:998
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: any.pm:926
+#: any.pm:1004
#, c-format
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: any.pm:927
+#: any.pm:1005
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -374,154 +384,154 @@ msgid ""
msgstr ""
"Die gebruikernaam mag alleenlik uit kleinletter, nommers, '-' en '_' bestaan"
-#: any.pm:928
+#: any.pm:1006
#, c-format
msgid "The user name is too long"
msgstr "Hierdie naam is te lank"
-#: any.pm:929
+#: any.pm:1007
#, c-format
msgid "This user name has already been added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: any.pm:935 any.pm:973
+#: any.pm:1013 any.pm:1051
#, c-format
msgid "User ID"
msgstr "Gebruiker ID"
-#: any.pm:935 any.pm:974
+#: any.pm:1013 any.pm:1052
#, c-format
msgid "Group ID"
msgstr "Groep ID"
-#: any.pm:936
+#: any.pm:1014
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Opsie %s moet 'n nommer wees!"
-#: any.pm:937
+#: any.pm:1015
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:941
+#: any.pm:1019
#, fuzzy, c-format
msgid "User management"
msgstr "Gebruikernaam"
-#: any.pm:947
+#: any.pm:1025
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:949 authentication.pm:236
+#: any.pm:1027 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Kies 'root' se wagwoord"
-#: any.pm:955
+#: any.pm:1033
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: any.pm:957
+#: any.pm:1035
#, c-format
msgid "Icon"
msgstr "Ikoon"
-#: any.pm:960
+#: any.pm:1038
#, c-format
msgid "Real name"
msgstr "Regte naam"
-#: any.pm:967
+#: any.pm:1045
#, c-format
msgid "Login name"
msgstr "Aanteken naam"
-#: any.pm:972
+#: any.pm:1050
#, c-format
msgid "Shell"
msgstr "Dop"
-#: any.pm:976
+#: any.pm:1054
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1026
+#: any.pm:1107
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "wag asseblief gedurende 'ttmkfdir'..."
-#: any.pm:1078 security/l10n.pm:14
+#: any.pm:1159 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Outo-inteken"
-#: any.pm:1079
+#: any.pm:1160
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Ek kan u rekenaar so opstel om een gebruiker outomaties in te teken."
-#: any.pm:1080
+#: any.pm:1161
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Wil u hierdie funksie gebruik?"
-#: any.pm:1081
+#: any.pm:1162
#, c-format
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
-#: any.pm:1082
+#: any.pm:1163
#, c-format
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: any.pm:1093 any.pm:1108 any.pm:1177
+#: any.pm:1174 any.pm:1189 any.pm:1258
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Vrystelling: "
-#: any.pm:1115 any.pm:1476 interactive/gtk.pm:820
+#: any.pm:1196 any.pm:1560 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Sluit af"
-#: any.pm:1163
+#: any.pm:1244
#, c-format
msgid "License agreement"
msgstr "Lisensieooreenkoms"
-#: any.pm:1165 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1246 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Verlaat"
-#: any.pm:1172
+#: any.pm:1253
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Beskik u oor nog?"
-#: any.pm:1173
+#: any.pm:1254
#, c-format
msgid "Accept"
msgstr "Aanvaar"
-#: any.pm:1173
+#: any.pm:1254
#, c-format
msgid "Refuse"
msgstr "Weier"
-#: any.pm:1199 any.pm:1262
+#: any.pm:1280 any.pm:1343
#, c-format
msgid "Please choose a language to use"
msgstr "Kies asb. 'n taal om te gebruik"
-#: any.pm:1227
+#: any.pm:1308
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -529,87 +539,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: any.pm:1229 fs/partitioning_wizard.pm:194
+#: any.pm:1310 fs/partitioning_wizard.pm:194
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1230
+#: any.pm:1311
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Alle tale"
-#: any.pm:1231
+#: any.pm:1312
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1240 any.pm:1271
+#: any.pm:1321 any.pm:1352
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1241
+#: any.pm:1322
#, c-format
msgid "All languages"
msgstr "Alle tale"
-#: any.pm:1263
+#: any.pm:1344
#, fuzzy, c-format
msgid "Language choice"
msgstr "selfdoen"
-#: any.pm:1317
+#: any.pm:1398
#, c-format
msgid "Country / Region"
msgstr "Land / Omgewing"
-#: any.pm:1318
+#: any.pm:1399
#, c-format
msgid "Please choose your country"
msgstr "Kies asseblief u land"
-#: any.pm:1320
+#: any.pm:1401
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier is die volle lys van beskikbare lande"
-#: any.pm:1321
+#: any.pm:1402
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Ander poorte"
-#: any.pm:1321 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1402 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Gevorderd"
-#: any.pm:1327
+#: any.pm:1408
#, fuzzy, c-format
msgid "Input method:"
msgstr "Netwerkmetode:"
-#: any.pm:1330
+#: any.pm:1411
#, c-format
msgid "None"
msgstr "Geen"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "No sharing"
msgstr "Geen deling"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "Allow all users"
msgstr "Laat alle gebruikers toe"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "Custom"
msgstr "Aangepaste"
-#: any.pm:1425
+#: any.pm:1509
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -624,32 +634,32 @@ msgstr ""
"\n"
"\"Aangepaste\" laat toe vir per-gebruiker verstellings.\n"
-#: any.pm:1437
+#: any.pm:1521
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1440
+#: any.pm:1524
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1448
+#: any.pm:1532
#, 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:1476
+#: any.pm:1560
#, c-format
msgid "Launch userdrake"
msgstr "Loods userdrake"
-#: any.pm:1478
+#: any.pm:1562
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -659,54 +669,54 @@ msgstr ""
"U kan van 'userdrake' gebruik maak om gebruikers by heirdie\n"
"groep te voeg."
-#: any.pm:1585
+#: any.pm:1669
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
-#: any.pm:1589
+#: any.pm:1673
#, 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:1624
+#: any.pm:1708
#, c-format
msgid "Timezone"
msgstr "Tydsone"
-#: any.pm:1624
+#: any.pm:1708
#, c-format
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: any.pm:1647 any.pm:1649
+#: any.pm:1731 any.pm:1733
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1650
+#: any.pm:1734
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1654
+#: any.pm:1738
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Hardewareklok gestel vir GMT"
-#: any.pm:1655
+#: any.pm:1739
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Hardewareklok gestel vir GMT"
-#: any.pm:1657
+#: any.pm:1741
#, c-format
msgid "NTP Server"
msgstr "NTP-bediener"
-#: any.pm:1658
+#: any.pm:1742
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Outo-tydsinkronisasie met NTP"
@@ -1033,7 +1043,7 @@ msgstr "Domein-administrarteur se Wagwoord"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1122
+#: bootloader.pm:1217
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1048,37 +1058,47 @@ msgstr ""
"vir die verstekopsie.\n"
"\n"
-#: bootloader.pm:1287
+#: bootloader.pm:1386
#, c-format
msgid "LILO with text menu"
msgstr "LILO met tekskieskaart"
-#: bootloader.pm:1288
+#: bootloader.pm:1387
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1289
+#: bootloader.pm:1388
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 met tekskieskaart"
-#: bootloader.pm:1290
+#: bootloader.pm:1389
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1291
+#: bootloader.pm:1390
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB met tekskieskaart"
-#: bootloader.pm:1378
+#: bootloader.pm:1391
+#, c-format
+msgid "rEFInd with graphical menu"
+msgstr ""
+
+#: bootloader.pm:1392
+#, fuzzy, c-format
+msgid "U-Boot/Extlinux with text menu"
+msgstr "U-Boot/Extlinux met tekskieskaart"
+
+#: bootloader.pm:1480
#, c-format
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
-#: bootloader.pm:2393
+#: bootloader.pm:2610
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1087,7 +1107,7 @@ msgstr ""
"U herlaaistelsel se konfigurasie moet opgedateer word omdat 'n partisie se "
"nommer verander het"
-#: bootloader.pm:2406
+#: bootloader.pm:2623
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1096,7 +1116,7 @@ msgstr ""
"Die herlaaistelsel kan nie korrek geïnstalleer word nie. U moet in redding-"
"modus laai, kies dan \"%s\""
-#: bootloader.pm:2407
+#: bootloader.pm:2624
#, c-format
msgid "Re-install Boot Loader"
msgstr "Her-installeer herlaaistelsel"
@@ -1206,7 +1226,7 @@ msgstr "Verwyder"
msgid "Done"
msgstr "Klaar"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:153 diskdrake/hd_gtk.pm:323
+#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:153 diskdrake/hd_gtk.pm:325
#: diskdrake/interactive.pm:246 diskdrake/interactive.pm:259
#: diskdrake/interactive.pm:460 diskdrake/interactive.pm:535
#: diskdrake/interactive.pm:553 diskdrake/interactive.pm:558
@@ -1215,7 +1235,7 @@ msgstr "Klaar"
#: diskdrake/interactive.pm:1242 diskdrake/interactive.pm:1245
#: diskdrake/interactive.pm:1513 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:266 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:264 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
@@ -1296,7 +1316,7 @@ msgstr "Gaan voort"
msgid "Help"
msgstr "Hulp"
-#: diskdrake/hd_gtk.pm:257
+#: diskdrake/hd_gtk.pm:259
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -1307,78 +1327,78 @@ msgstr ""
"Ek stel voor u verstel eers die grootte van dié partisie\n"
"(kliek daarop en kliek dan op \"Verstel Grootte\")"
-#: diskdrake/hd_gtk.pm:259
+#: diskdrake/hd_gtk.pm:261
#, c-format
msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
-#: diskdrake/hd_gtk.pm:273 diskdrake/smbnfs_gtk.pm:63
+#: diskdrake/hd_gtk.pm:275 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detail"
-#: diskdrake/hd_gtk.pm:323
+#: diskdrake/hd_gtk.pm:325
#, c-format
msgid "No hard disk drives found"
msgstr "Geen hardeskywe kon gevind word nie"
-#: diskdrake/hd_gtk.pm:362
+#: diskdrake/hd_gtk.pm:364
#, c-format
msgid "Unknown"
msgstr "Onbekend"
-#: diskdrake/hd_gtk.pm:429
+#: diskdrake/hd_gtk.pm:431
#, fuzzy, c-format
msgid "Ext4"
msgstr "Verlaat"
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, c-format
msgid "Swap"
msgstr "Ruilarea"
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:430 fs/partitioning_wizard.pm:437 services.pm:201
+#: diskdrake/hd_gtk.pm:432 fs/partitioning_wizard.pm:437 services.pm:201
#, c-format
msgid "Other"
msgstr "Ander"
-#: diskdrake/hd_gtk.pm:430 diskdrake/interactive.pm:1397
+#: diskdrake/hd_gtk.pm:432 diskdrake/interactive.pm:1397
#: fs/partitioning_wizard.pm:437
#, c-format
msgid "Empty"
msgstr "Leeg"
-#: diskdrake/hd_gtk.pm:437
+#: diskdrake/hd_gtk.pm:439
#, c-format
msgid "Filesystem types:"
msgstr "Lêerstelsel-tipes:"
-#: diskdrake/hd_gtk.pm:458
+#: diskdrake/hd_gtk.pm:460
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Hierdie partisie se grootte kan nie verstel word nie"
-#: diskdrake/hd_gtk.pm:467
+#: diskdrake/hd_gtk.pm:469
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: diskdrake/hd_gtk.pm:467
+#: diskdrake/hd_gtk.pm:469
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Gebruik ``%s'' instede."
-#: diskdrake/hd_gtk.pm:467 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:469 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:644 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -2279,7 +2299,7 @@ msgstr "Die volgende pakkette geïnstalleer word:\n"
msgid "Installing packages..."
msgstr "Installeer pakkette..."
-#: do_pkgs.pm:387 pkgs.pm:293
+#: do_pkgs.pm:388 pkgs.pm:293
#, c-format
msgid "Removing packages..."
msgstr "Verwyder pakkette..."
@@ -2298,7 +2318,7 @@ msgstr ""
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "U moet oor 'n ESP FAT32 partisie wat as /boot/EFI geheg is, beskik"
-#: fs/any.pm:81 fs/partitioning_wizard.pm:82
+#: fs/any.pm:83 fs/partitioning_wizard.pm:82
#, c-format
msgid ""
"You must have a BIOS boot partition for non-UEFI GPT-partitioned disks. "
@@ -2350,7 +2370,7 @@ msgstr "heg van partisie %s in lêergids %s het gefaal"
msgid "Checking %s"
msgstr "Toets %s"
-#: fs/mount.pm:126 partition_table.pm:399
+#: fs/mount.pm:126 partition_table.pm:456
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2671,7 +2691,7 @@ msgid ""
"to use?"
msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-#: fs/partitioning_wizard.pm:271 fsedit.pm:638
+#: fs/partitioning_wizard.pm:271 fsedit.pm:641
#, 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"
@@ -2720,17 +2740,17 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Partisionering het misluk: %s"
-#: fs/type.pm:382
+#: fs/type.pm:383
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: fs/type.pm:383
+#: fs/type.pm:384
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: fs/type.pm:384
+#: fs/type.pm:385
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
@@ -2750,12 +2770,12 @@ msgstr "met '/usr'"
msgid "server"
msgstr "bediener"
-#: fsedit.pm:157
+#: fsedit.pm:155
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:267
+#: fsedit.pm:265
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2773,22 +2793,22 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: fsedit.pm:450
+#: fsedit.pm:448
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: fsedit.pm:451
+#: fsedit.pm:449
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Hegpunte kan slegs alfa-numeriese karakters bevat"
-#: fsedit.pm:452
+#: fsedit.pm:450
#, 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:455
+#: fsedit.pm:453
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2799,17 +2819,17 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:461 fsedit.pm:472
+#: fsedit.pm:459 fsedit.pm:470
#, 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:464 fsedit.pm:466
+#: fsedit.pm:462 fsedit.pm:464
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lêergids moet altyd in die wortellêerstelsel bly"
-#: fsedit.pm:468 fsedit.pm:470
+#: fsedit.pm:466 fsedit.pm:468
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -4962,12 +4982,12 @@ msgstr ""
msgid "Password seems secure"
msgstr "Benodig wagwoord"
-#: partition_table.pm:405
+#: partition_table.pm:462
#, c-format
msgid "mount failed: "
msgstr "heg het gefaal: "
-#: partition_table.pm:531
+#: partition_table.pm:632
#, c-format
msgid ""
"You have a hole in your partition table but I cannot use it.\n"
@@ -5033,7 +5053,7 @@ msgstr ""
msgid "Cannot add a partition to _formatted_ RAID %s"
msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-#: raid.pm:200
+#: raid.pm:201
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index 27859fbe6..c4c08af7f 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2016-12-12 23:00+0100\n"
+"POT-Creation-Date: 2018-11-03 11:40+0000\n"
"PO-Revision-Date: 2004-06-01 03:36+0100\n"
"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
"Language-Team: Amharic <am-translate@geez.org>\n"
@@ -14,11 +14,11 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:263 any.pm:1026 diskdrake/interactive.pm:650
+#: any.pm:263 any.pm:695 any.pm:1107 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:874 diskdrake/interactive.pm:936
#: diskdrake/interactive.pm:1028 diskdrake/interactive.pm:1055
#: diskdrake/interactive.pm:1286 diskdrake/interactive.pm:1344 do_pkgs.pm:342
-#: do_pkgs.pm:387 interactive.pm:712 pkgs.pm:293
+#: do_pkgs.pm:388 interactive.pm:712 pkgs.pm:293
#, c-format
msgid "Please wait"
msgstr "እባክዎ ይጠብቁ"
@@ -154,7 +154,7 @@ msgstr "ACPI አስቻል"
msgid "Security"
msgstr "ደህንነት"
-#: any.pm:428 any.pm:950 any.pm:969 authentication.pm:249
+#: any.pm:428 any.pm:1028 any.pm:1047 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -175,114 +175,124 @@ msgstr "እባክዎ እንደገና ይሞክሩ"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:437 any.pm:953 any.pm:971 authentication.pm:250
+#: any.pm:437 any.pm:1031 any.pm:1049 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "ሚስጢራዊ ቃል (እንደገና)"
-#: any.pm:502
+#: any.pm:504 any.pm:671 any.pm:714
+#, fuzzy, c-format
+msgid "Bootloader Configuration"
+msgstr "የአጀማመር ዘይቤ ምርጫ"
+
+#: any.pm:508
#, c-format
-msgid "Image"
-msgstr "ምስል"
+msgid "Install or update rEFInd in the EFI system partition"
+msgstr ""
-#: any.pm:503 any.pm:515
+#: any.pm:510
#, c-format
-msgid "Root"
-msgstr "Root"
+msgid "Install in /EFI/BOOT (workaround for some BIOSs)"
+msgstr ""
+
+#: any.pm:550 any.pm:575 diskdrake/interactive.pm:411
+#, c-format
+msgid "Label"
+msgstr "መለያ"
-#: any.pm:504 any.pm:642
+#: any.pm:551 any.pm:559 any.pm:720
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:506
+#: any.pm:552 any.pm:564 any.pm:721
+#, c-format
+msgid "Video mode"
+msgstr "የቪዲዮ አሰራር ዘዴ"
+
+#: any.pm:557
+#, c-format
+msgid "Image"
+msgstr "ምስል"
+
+#: any.pm:558 any.pm:570
+#, c-format
+msgid "Root"
+msgstr "Root"
+
+#: any.pm:561
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:508
+#: any.pm:563
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:509 any.pm:643
-#, c-format
-msgid "Video mode"
-msgstr "የቪዲዮ አሰራር ዘዴ"
-
-#: any.pm:510
+#: any.pm:565
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:511
+#: any.pm:566
#, fuzzy, c-format
msgid "Network profile"
msgstr "የተጠቃሚው እይታ"
-#: any.pm:519 diskdrake/interactive.pm:411
-#, c-format
-msgid "Label"
-msgstr "መለያ"
-
-#: any.pm:521 any.pm:640 harddrake/v4l.pm:438
+#: any.pm:577 any.pm:718 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "ቀዳሚ"
-#: any.pm:529
+#: any.pm:585
#, c-format
msgid "Empty label not allowed"
msgstr ""
-#: any.pm:530
+#: any.pm:586
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:530
+#: any.pm:586
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:531
+#: any.pm:587
#, c-format
msgid "This label is already used"
msgstr ""
-#: any.pm:549
+#: any.pm:611
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:550
+#: any.pm:612
#, c-format
msgid "Linux"
msgstr "ሊኑክስ"
-#: any.pm:550
+#: any.pm:612
#, c-format
msgid "Other OS (Windows...)"
msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (Windows...)"
-#: any.pm:597 any.pm:636
-#, fuzzy, c-format
-msgid "Bootloader Configuration"
-msgstr "የአጀማመር ዘይቤ ምርጫ"
-
-#: any.pm:598
+#: any.pm:672
#, 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:645
+#: any.pm:723
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:647 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:458
+#: any.pm:725 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:820
#: diskdrake/interactive.pm:885 diskdrake/interactive.pm:1053
@@ -294,220 +304,220 @@ msgstr ""
msgid "Warning"
msgstr "ማስጠንቀቂያ"
-#: any.pm:648
+#: any.pm:726
#, 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:652
+#: any.pm:730
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:653
+#: any.pm:731
#, c-format
msgid ""
"If grub2 takes too long to install, you can use this option to skip "
"detecting other OSes and make it fast"
msgstr ""
-#: any.pm:909
+#: any.pm:987
#, c-format
msgid "access to X programs"
msgstr "የX ፕሮግራሞች ማሳያ"
-#: any.pm:910
+#: any.pm:988
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:911
+#: any.pm:989
#, c-format
msgid "allow \"su\""
msgstr "ፍቀድ \"su\""
-#: any.pm:912
+#: any.pm:990
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:913
+#: any.pm:991
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:914
+#: any.pm:992
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:920
+#: any.pm:998
#, c-format
msgid "(already added %s)"
msgstr "(%s በፊት ተጨምሯል)"
-#: any.pm:926
+#: any.pm:1004
#, c-format
msgid "Please give a user name"
msgstr "እባክዎ የተጠቃሚ ስም ይስጡ"
-#: any.pm:927
+#: any.pm:1005
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:928
+#: any.pm:1006
#, c-format
msgid "The user name is too long"
msgstr "የተጠቃሚ ስሙ በጣም ረጅም ነው"
-#: any.pm:929
+#: any.pm:1007
#, c-format
msgid "This user name has already been added"
msgstr "ይህ የተጠቃሚ ስም በፊትም ነበር"
-#: any.pm:935 any.pm:973
+#: any.pm:1013 any.pm:1051
#, c-format
msgid "User ID"
msgstr "የተጠቃሚ መለያ ቁጥር"
-#: any.pm:935 any.pm:974
+#: any.pm:1013 any.pm:1052
#, c-format
msgid "Group ID"
msgstr "የብድን መለያ ቁጥር"
-#: any.pm:936
+#: any.pm:1014
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "(%f በሰነድ-ስም ይተካል፤ %l በመስመር ቁጥር)"
-#: any.pm:937
+#: any.pm:1015
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:941
+#: any.pm:1019
#, fuzzy, c-format
msgid "User management"
msgstr "የተጠቃሚ ስም"
-#: any.pm:947
+#: any.pm:1025
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:949 authentication.pm:236
+#: any.pm:1027 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "የroot ሚስጢራዊ ቃል ይምረጡ"
-#: any.pm:955
+#: any.pm:1033
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"የተጠቃሚ ስም ያስገቡ\n"
"%s"
-#: any.pm:957
+#: any.pm:1035
#, c-format
msgid "Icon"
msgstr "ምልክት"
-#: any.pm:960
+#: any.pm:1038
#, c-format
msgid "Real name"
msgstr "እውነተኛ ስም"
-#: any.pm:967
+#: any.pm:1045
#, fuzzy, c-format
msgid "Login name"
msgstr "Name=ዝምብለህ ይግባ"
-#: any.pm:972
+#: any.pm:1050
#, c-format
msgid "Shell"
msgstr "ሼል"
-#: any.pm:976
+#: any.pm:1054
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1026
+#: any.pm:1107
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "ሲያትም እባክዎ ይጠብቁ\n"
-#: any.pm:1078 security/l10n.pm:14
+#: any.pm:1159 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:1079
+#: any.pm:1160
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1080
+#: any.pm:1161
#, fuzzy, c-format
msgid "Use this feature"
msgstr "ይህንን ሁኔታ መጠቀም ይፈልጋሉ?"
-#: any.pm:1081
+#: any.pm:1162
#, c-format
msgid "Choose the default user:"
msgstr "ቀዳሚ ተጠቃሚ ይምረጡ:"
-#: any.pm:1082
+#: any.pm:1163
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:1093 any.pm:1108 any.pm:1177
+#: any.pm:1174 any.pm:1189 any.pm:1258
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1115 any.pm:1476 interactive/gtk.pm:820
+#: any.pm:1196 any.pm:1560 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "ዝጋ"
-#: any.pm:1163
+#: any.pm:1244
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1165 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1246 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "ውጣ"
-#: any.pm:1172
+#: any.pm:1253
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "ሌላ አልዎት?"
-#: any.pm:1173
+#: any.pm:1254
#, c-format
msgid "Accept"
msgstr "ተቀበል"
-#: any.pm:1173
+#: any.pm:1254
#, c-format
msgid "Refuse"
msgstr "አትቀበል"
-#: any.pm:1199 any.pm:1262
+#: any.pm:1280 any.pm:1343
#, c-format
msgid "Please choose a language to use"
msgstr "እባክዎ መጠቀሚያ ቋንቋ ይምረጡ።"
-#: any.pm:1227
+#: any.pm:1308
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -515,87 +525,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1229 fs/partitioning_wizard.pm:194
+#: any.pm:1310 fs/partitioning_wizard.pm:194
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1230
+#: any.pm:1311
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "ሁሉንም ቋንቋዎች"
-#: any.pm:1231
+#: any.pm:1312
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1240 any.pm:1271
+#: any.pm:1321 any.pm:1352
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1241
+#: any.pm:1322
#, c-format
msgid "All languages"
msgstr "ሁሉንም ቋንቋዎች"
-#: any.pm:1263
+#: any.pm:1344
#, fuzzy, c-format
msgid "Language choice"
msgstr "የመመሪያ ገጾች"
-#: any.pm:1317
+#: any.pm:1398
#, c-format
msgid "Country / Region"
msgstr "ሀገር / አካባቢ"
-#: any.pm:1318
+#: any.pm:1399
#, c-format
msgid "Please choose your country"
msgstr "እባክዎ ሀገሮን ይምረጡ።"
-#: any.pm:1320
+#: any.pm:1401
#, c-format
msgid "Here is the full list of available countries"
msgstr "እዚህ ያሉት ሀገሮች ሙሉ ዝርዝር ይገኛል"
-#: any.pm:1321
+#: any.pm:1402
#, fuzzy, c-format
msgid "Other Countries"
msgstr "ሌላ ምርጫዎች"
-#: any.pm:1321 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1402 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "ጠላቂ"
-#: any.pm:1327
+#: any.pm:1408
#, fuzzy, c-format
msgid "Input method:"
msgstr "የX ዘገባ የማስትገባት ዘዴ"
-#: any.pm:1330
+#: any.pm:1411
#, c-format
msgid "None"
msgstr "ምንም"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "No sharing"
msgstr "መጋራት የለም"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "Allow all users"
msgstr "ለሁሉም ተጠቃሚዎች ፍቀድ"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "Custom"
msgstr "ምርጫ"
-#: any.pm:1425
+#: any.pm:1509
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -605,86 +615,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1437
+#: any.pm:1521
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1440
+#: any.pm:1524
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1448
+#: any.pm:1532
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1476
+#: any.pm:1560
#, c-format
msgid "Launch userdrake"
msgstr "userdrake አስጀምር"
-#: any.pm:1478
+#: any.pm:1562
#, 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:1585
+#: any.pm:1669
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1589
+#: any.pm:1673
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1624
+#: any.pm:1708
#, c-format
msgid "Timezone"
msgstr "የሰአት ክልል"
-#: any.pm:1624
+#: any.pm:1708
#, c-format
msgid "Which is your timezone?"
msgstr "የሰአት ክልሎት የትኛው ነው?"
-#: any.pm:1647 any.pm:1649
+#: any.pm:1731 any.pm:1733
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1650
+#: any.pm:1734
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1654
+#: any.pm:1738
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
-#: any.pm:1655
+#: any.pm:1739
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
-#: any.pm:1657
+#: any.pm:1741
#, c-format
msgid "NTP Server"
msgstr "NTP ሰርቨር"
-#: any.pm:1658
+#: any.pm:1742
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1007,7 +1017,7 @@ msgid "Domain Admin Password"
msgstr "የዶሜን አስተዳዳሪ ሚስጢራዊ ቃል"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1122
+#: bootloader.pm:1217
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1017,51 +1027,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1287
+#: bootloader.pm:1386
#, c-format
msgid "LILO with text menu"
msgstr "LILO ከጽሁፍ መዘርዝር ጋር"
-#: bootloader.pm:1288
+#: bootloader.pm:1387
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1289
+#: bootloader.pm:1388
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 ከጽሁፍ መዘርዝር ጋር"
-#: bootloader.pm:1290
+#: bootloader.pm:1389
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB ከጽሁፍ መዘርዝር ጋር"
-#: bootloader.pm:1291
+#: bootloader.pm:1390
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1378
+#: bootloader.pm:1391
+#, fuzzy, c-format
+msgid "rEFInd with graphical menu"
+msgstr "rEFInd ከጽሁፍ መዘርዝር ጋር"
+
+#: bootloader.pm:1392
+#, fuzzy, c-format
+msgid "U-Boot/Extlinux with text menu"
+msgstr "U-Boot/Extlinux ከጽሁፍ መዘርዝር ጋር"
+
+#: bootloader.pm:1480
#, c-format
msgid "not enough room in /boot"
msgstr "በ/boot ውስጥ በቂ ቦታ የለም"
-#: bootloader.pm:2393
+#: bootloader.pm:2610
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2406
+#: bootloader.pm:2623
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2407
+#: bootloader.pm:2624
#, c-format
msgid "Re-install Boot Loader"
msgstr "አስጀማሪውን እንደገና ይትከሉ"
@@ -1167,7 +1187,7 @@ msgstr "አስወግድ"
msgid "Done"
msgstr "ጨርሷል"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:153 diskdrake/hd_gtk.pm:323
+#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:153 diskdrake/hd_gtk.pm:325
#: diskdrake/interactive.pm:246 diskdrake/interactive.pm:259
#: diskdrake/interactive.pm:460 diskdrake/interactive.pm:535
#: diskdrake/interactive.pm:553 diskdrake/interactive.pm:558
@@ -1176,7 +1196,7 @@ msgstr "ጨርሷል"
#: diskdrake/interactive.pm:1242 diskdrake/interactive.pm:1245
#: diskdrake/interactive.pm:1513 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:266 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:264 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
@@ -1257,7 +1277,7 @@ msgstr "ቀጥል"
msgid "Help"
msgstr "እርዳታ"
-#: diskdrake/hd_gtk.pm:257
+#: diskdrake/hd_gtk.pm:259
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -1265,78 +1285,78 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
-#: diskdrake/hd_gtk.pm:259
+#: diskdrake/hd_gtk.pm:261
#, c-format
msgid "Please click on a partition"
msgstr "እባክዎ ክፋዩ ላይ ይጫኑ"
-#: diskdrake/hd_gtk.pm:273 diskdrake/smbnfs_gtk.pm:63
+#: diskdrake/hd_gtk.pm:275 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "ዝርዝሮች"
-#: diskdrake/hd_gtk.pm:323
+#: diskdrake/hd_gtk.pm:325
#, c-format
msgid "No hard disk drives found"
msgstr "ቋሚ ዲስኮችን አልተገኙም"
-#: diskdrake/hd_gtk.pm:362
+#: diskdrake/hd_gtk.pm:364
#, c-format
msgid "Unknown"
msgstr "ያልታወቀ"
-#: diskdrake/hd_gtk.pm:429
+#: diskdrake/hd_gtk.pm:431
#, fuzzy, c-format
msgid "Ext4"
msgstr "ውጣ"
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:430 fs/partitioning_wizard.pm:437 services.pm:201
+#: diskdrake/hd_gtk.pm:432 fs/partitioning_wizard.pm:437 services.pm:201
#, c-format
msgid "Other"
msgstr "ሌላ"
-#: diskdrake/hd_gtk.pm:430 diskdrake/interactive.pm:1397
+#: diskdrake/hd_gtk.pm:432 diskdrake/interactive.pm:1397
#: fs/partitioning_wizard.pm:437
#, c-format
msgid "Empty"
msgstr "ባዶ"
-#: diskdrake/hd_gtk.pm:437
+#: diskdrake/hd_gtk.pm:439
#, c-format
msgid "Filesystem types:"
msgstr "የፋይል ሲስተም አይነቶች:"
-#: diskdrake/hd_gtk.pm:458
+#: diskdrake/hd_gtk.pm:460
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "ይዚህ ክፋይ መጠነ ተስተካካይ አይደለም"
-#: diskdrake/hd_gtk.pm:467
+#: diskdrake/hd_gtk.pm:469
#, c-format
msgid "Use ``Unmount'' first"
msgstr "በመጀመሪያ “Unmount”ን ይጠቀሙ"
-#: diskdrake/hd_gtk.pm:467
+#: diskdrake/hd_gtk.pm:469
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "በዚህ ፈንታ “%s”ን ይጠቀሙ"
-#: diskdrake/hd_gtk.pm:467 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:469 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:644 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -2212,7 +2232,7 @@ msgstr ""
msgid "Installing packages..."
msgstr "ጥቅሎችን በመትከል ላይ..."
-#: do_pkgs.pm:387 pkgs.pm:293
+#: do_pkgs.pm:388 pkgs.pm:293
#, c-format
msgid "Removing packages..."
msgstr "ጥቅሎችን በማስወገድ ላይ..."
@@ -2229,7 +2249,7 @@ msgstr ""
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr ""
-#: fs/any.pm:81 fs/partitioning_wizard.pm:82
+#: fs/any.pm:83 fs/partitioning_wizard.pm:82
#, c-format
msgid ""
"You must have a BIOS boot partition for non-UEFI GPT-partitioned disks. "
@@ -2281,7 +2301,7 @@ msgstr ""
msgid "Checking %s"
msgstr "%sን በማጣራት ላይ"
-#: fs/mount.pm:126 partition_table.pm:399
+#: fs/mount.pm:126 partition_table.pm:456
#, c-format
msgid "error unmounting %s: %s"
msgstr "%sን የመንቀል ስህተት: %s"
@@ -2563,7 +2583,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:271 fsedit.pm:638
+#: fs/partitioning_wizard.pm:271 fsedit.pm:641
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2610,17 +2630,17 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "መከፋፈል አልተሳካም: %s"
-#: fs/type.pm:382
+#: fs/type.pm:383
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:383
+#: fs/type.pm:384
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: fs/type.pm:384
+#: fs/type.pm:385
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2640,12 +2660,12 @@ msgstr "ከ/usr ጋር"
msgid "server"
msgstr "ሰርቨር"
-#: fsedit.pm:157
+#: fsedit.pm:155
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:267
+#: fsedit.pm:265
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2657,22 +2677,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:448
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:451
+#: fsedit.pm:449
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:452
+#: fsedit.pm:450
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:455
+#: fsedit.pm:453
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2680,17 +2700,17 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:461 fsedit.pm:472
+#: fsedit.pm:459 fsedit.pm:470
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:466
+#: fsedit.pm:462 fsedit.pm:464
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:468 fsedit.pm:470
+#: fsedit.pm:466 fsedit.pm:468
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -4808,12 +4828,12 @@ msgstr ""
msgid "Password seems secure"
msgstr "ሚስጥር-ቃል ያስፈልጋል"
-#: partition_table.pm:405
+#: partition_table.pm:462
#, fuzzy, c-format
msgid "mount failed: "
msgstr "%s አልተገኘም"
-#: partition_table.pm:531
+#: partition_table.pm:632
#, c-format
msgid ""
"You have a hole in your partition table but I cannot use it.\n"
@@ -4872,7 +4892,7 @@ msgstr ""
msgid "Cannot add a partition to _formatted_ RAID %s"
msgstr ""
-#: raid.pm:200
+#: raid.pm:201
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index f37bc66b2..2499c6849 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: 2016-12-12 23:00+0100\n"
+"POT-Creation-Date: 2018-11-03 11:40+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,11 +17,11 @@ 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:263 any.pm:1026 diskdrake/interactive.pm:650
+#: any.pm:263 any.pm:695 any.pm:1107 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:874 diskdrake/interactive.pm:936
#: diskdrake/interactive.pm:1028 diskdrake/interactive.pm:1055
#: diskdrake/interactive.pm:1286 diskdrake/interactive.pm:1344 do_pkgs.pm:342
-#: do_pkgs.pm:387 interactive.pm:712 pkgs.pm:293
+#: do_pkgs.pm:388 interactive.pm:712 pkgs.pm:293
#, c-format
msgid "Please wait"
msgstr "الرجاء الانتظار"
@@ -167,7 +167,7 @@ msgstr ""
msgid "Security"
msgstr "الأمن"
-#: any.pm:428 any.pm:950 any.pm:969 authentication.pm:249
+#: any.pm:428 any.pm:1028 any.pm:1047 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -188,102 +188,112 @@ msgstr "الرجاء المحاولة مجدداً"
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:437 any.pm:953 any.pm:971 authentication.pm:250
+#: any.pm:437 any.pm:1031 any.pm:1049 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "كلمة المرور (مجدداً)"
-#: any.pm:502
+#: any.pm:504 any.pm:671 any.pm:714
#, c-format
-msgid "Image"
-msgstr "صورة"
+msgid "Bootloader Configuration"
+msgstr ""
-#: any.pm:503 any.pm:515
+#: any.pm:508
#, c-format
-msgid "Root"
-msgstr "الجذر"
+msgid "Install or update rEFInd in the EFI system partition"
+msgstr ""
+
+#: any.pm:510
+#, c-format
+msgid "Install in /EFI/BOOT (workaround for some BIOSs)"
+msgstr ""
+
+#: any.pm:550 any.pm:575 diskdrake/interactive.pm:411
+#, c-format
+msgid "Label"
+msgstr "تسمية"
-#: any.pm:504 any.pm:642
+#: any.pm:551 any.pm:559 any.pm:720
#, c-format
msgid "Append"
msgstr "إلحاق"
-#: any.pm:506
+#: any.pm:552 any.pm:564 any.pm:721
+#, c-format
+msgid "Video mode"
+msgstr "وضعية الفيديو"
+
+#: any.pm:557
+#, c-format
+msgid "Image"
+msgstr "صورة"
+
+#: any.pm:558 any.pm:570
+#, c-format
+msgid "Root"
+msgstr "الجذر"
+
+#: any.pm:561
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:508
+#: any.pm:563
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:509 any.pm:643
-#, c-format
-msgid "Video mode"
-msgstr "وضعية الفيديو"
-
-#: any.pm:510
+#: any.pm:565
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:511
+#: any.pm:566
#, c-format
msgid "Network profile"
msgstr "سجلّ إعداد الشبكة "
-#: any.pm:519 diskdrake/interactive.pm:411
-#, c-format
-msgid "Label"
-msgstr "تسمية"
-
-#: any.pm:521 any.pm:640 harddrake/v4l.pm:438
+#: any.pm:577 any.pm:718 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "افتراضي"
-#: any.pm:529
+#: any.pm:585
#, c-format
msgid "Empty label not allowed"
msgstr "لا يُسمح بالتسميات الفارغة"
-#: any.pm:530
+#: any.pm:586
#, c-format
msgid "You must specify a kernel image"
msgstr "يجب تحديد صورة النواة"
-#: any.pm:530
+#: any.pm:586
#, c-format
msgid "You must specify a root partition"
msgstr "يجب تحديد تجزيء جذر"
-#: any.pm:531
+#: any.pm:587
#, c-format
msgid "This label is already used"
msgstr "هذه التسمية مستخدمة مسبقا"
-#: any.pm:549
+#: any.pm:611
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل المُراد إضافته؟"
-#: any.pm:550
+#: any.pm:612
#, c-format
msgid "Linux"
msgstr "لينكس"
-#: any.pm:550
+#: any.pm:612
#, c-format
msgid "Other OS (Windows...)"
msgstr "نظام تشغيل آخر (ويندوز...)"
-#: any.pm:597 any.pm:636
-#, c-format
-msgid "Bootloader Configuration"
-msgstr ""
-
-#: any.pm:598
+#: any.pm:672
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -292,12 +302,12 @@ msgstr ""
"هذه هي المدخلات المختلفة في قائمة الإقلاع حتى الآن.\n"
"يمكنك إضافة مدخلات أخرى أو تغيير الموجودة."
-#: any.pm:645
+#: any.pm:723
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:647 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:458
+#: any.pm:725 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:820
#: diskdrake/interactive.pm:885 diskdrake/interactive.pm:1053
@@ -309,218 +319,218 @@ msgstr ""
msgid "Warning"
msgstr "تحذير"
-#: any.pm:648
+#: any.pm:726
#, 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:652
+#: any.pm:730
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:653
+#: any.pm:731
#, c-format
msgid ""
"If grub2 takes too long to install, you can use this option to skip "
"detecting other OSes and make it fast"
msgstr ""
-#: any.pm:909
+#: any.pm:987
#, c-format
msgid "access to X programs"
msgstr "الوصول إلى برامج X"
-#: any.pm:910
+#: any.pm:988
#, c-format
msgid "access to rpm tools"
msgstr "الوصول إلى أدوات rpm"
-#: any.pm:911
+#: any.pm:989
#, c-format
msgid "allow \"su\""
msgstr "السماح بـ\"su\""
-#: any.pm:912
+#: any.pm:990
#, c-format
msgid "access to administrative files"
msgstr "الوصول إلى ملفات الإدارة"
-#: any.pm:913
+#: any.pm:991
#, c-format
msgid "access to network tools"
msgstr "الوصول إلى أدوات الشبكة"
-#: any.pm:914
+#: any.pm:992
#, c-format
msgid "access to compilation tools"
msgstr "الوصول إلى أدوات التجميع"
-#: any.pm:920
+#: any.pm:998
#, c-format
msgid "(already added %s)"
msgstr "(تمت إضافة %s مسبقا)"
-#: any.pm:926
+#: any.pm:1004
#, c-format
msgid "Please give a user name"
msgstr "الرجاء إعطاء اسم مستخدم"
-#: any.pm:927
+#: any.pm:1005
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:928
+#: any.pm:1006
#, c-format
msgid "The user name is too long"
msgstr "اسم المستخدم طويل جداً"
-#: any.pm:929
+#: any.pm:1007
#, c-format
msgid "This user name has already been added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: any.pm:935 any.pm:973
+#: any.pm:1013 any.pm:1051
#, c-format
msgid "User ID"
msgstr "هوية المستخدم"
-#: any.pm:935 any.pm:974
+#: any.pm:1013 any.pm:1052
#, c-format
msgid "Group ID"
msgstr "هوية المجموعة"
-#: any.pm:936
+#: any.pm:1014
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:937
+#: any.pm:1015
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:941
+#: any.pm:1019
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:947
+#: any.pm:1025
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:949 authentication.pm:236
+#: any.pm:1027 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "ضع كلمة مرور المستخدم الجذر"
-#: any.pm:955
+#: any.pm:1033
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:957
+#: any.pm:1035
#, c-format
msgid "Icon"
msgstr "أيقونة"
-#: any.pm:960
+#: any.pm:1038
#, c-format
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: any.pm:967
+#: any.pm:1045
#, c-format
msgid "Login name"
msgstr "اسم الدخول"
-#: any.pm:972
+#: any.pm:1050
#, c-format
msgid "Shell"
msgstr "الصدفة"
-#: any.pm:976
+#: any.pm:1054
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1026
+#: any.pm:1107
#, c-format
msgid "Please wait, adding media..."
msgstr "انتظر من فضلك، جاري إضافة الوسائط..."
-#: any.pm:1078 security/l10n.pm:14
+#: any.pm:1159 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "تسجيل دخول آلي"
-#: any.pm:1079
+#: any.pm:1160
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "يمكن إعداد جهازك لتسجيل الدخول آلياً لمستخدم معين."
-#: any.pm:1080
+#: any.pm:1161
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1081
+#: any.pm:1162
#, c-format
msgid "Choose the default user:"
msgstr "اختيار المستخدم الافتراضي:"
-#: any.pm:1082
+#: any.pm:1163
#, c-format
msgid "Choose the window manager to run:"
msgstr "اختيار مدير النوافذ الذي سيتم تشغيله:"
-#: any.pm:1093 any.pm:1108 any.pm:1177
+#: any.pm:1174 any.pm:1189 any.pm:1258
#, c-format
msgid "Release Notes"
msgstr "ملاحظات الإصدار"
-#: any.pm:1115 any.pm:1476 interactive/gtk.pm:820
+#: any.pm:1196 any.pm:1560 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "إغلاق"
-#: any.pm:1163
+#: any.pm:1244
#, c-format
msgid "License agreement"
msgstr "اتفاقية الترخيص"
-#: any.pm:1165 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1246 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "خروج"
-#: any.pm:1172
+#: any.pm:1253
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1173
+#: any.pm:1254
#, c-format
msgid "Accept"
msgstr "قبول"
-#: any.pm:1173
+#: any.pm:1254
#, c-format
msgid "Refuse"
msgstr "رفض"
-#: any.pm:1199 any.pm:1262
+#: any.pm:1280 any.pm:1343
#, c-format
msgid "Please choose a language to use"
msgstr "الرجاء اختيار لغة لاستخدامها"
-#: any.pm:1227
+#: any.pm:1308
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -528,87 +538,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1229 fs/partitioning_wizard.pm:194
+#: any.pm:1310 fs/partitioning_wizard.pm:194
#, c-format
msgid "Mageia"
msgstr "ماجيّا"
-#: any.pm:1230
+#: any.pm:1311
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1231
+#: any.pm:1312
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1240 any.pm:1271
+#: any.pm:1321 any.pm:1352
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1241
+#: any.pm:1322
#, c-format
msgid "All languages"
msgstr "كل اللغات"
-#: any.pm:1263
+#: any.pm:1344
#, c-format
msgid "Language choice"
msgstr "خيار اللغة"
-#: any.pm:1317
+#: any.pm:1398
#, c-format
msgid "Country / Region"
msgstr "الدولة / الإقليم"
-#: any.pm:1318
+#: any.pm:1399
#, c-format
msgid "Please choose your country"
msgstr "الرجاء اختيار الدولة"
-#: any.pm:1320
+#: any.pm:1401
#, c-format
msgid "Here is the full list of available countries"
msgstr "هذه قائمة كاملة بكل الدول المتوفرة"
-#: any.pm:1321
+#: any.pm:1402
#, c-format
msgid "Other Countries"
msgstr "دول أخرى"
-#: any.pm:1321 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1402 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "متقدم"
-#: any.pm:1327
+#: any.pm:1408
#, c-format
msgid "Input method:"
msgstr "طريقة الإدخال:"
-#: any.pm:1330
+#: any.pm:1411
#, c-format
msgid "None"
msgstr "لاشيء"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "No sharing"
msgstr "لا مشاركة"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "Allow all users"
msgstr "السماح لكل المستخدمين"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "Custom"
msgstr "مخصّص"
-#: any.pm:1425
+#: any.pm:1509
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -623,14 +633,14 @@ msgstr ""
"\n"
"\"مخصص\" يسمح لك بعمل إعدادات خاص لكل مستخدم.\n"
-#: any.pm:1437
+#: any.pm:1521
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr "NFS: نظام تقسيم ملفّات يونكس التّقليدي، بدعم أقلّ على ماك و ويندوز."
-#: any.pm:1440
+#: any.pm:1524
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -639,18 +649,18 @@ msgstr ""
"SMB: نظام تقسيم ملفّات مستعمل من قبل ويندوز، ماك OS X و العديد من أنظمة لينكس "
"الحديثة."
-#: any.pm:1448
+#: any.pm:1532
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "يمكنك التّصدير باستعمال NFS أو SMB. الرجاء اختيار أيّهما تريد استعماله."
-#: any.pm:1476
+#: any.pm:1560
#, c-format
msgid "Launch userdrake"
msgstr "تشغيل userdrake"
-#: any.pm:1478
+#: any.pm:1562
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -659,54 +669,54 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: any.pm:1585
+#: any.pm:1669
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1589
+#: any.pm:1673
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "تحتاج أن تقوم بالخروج والعودة مجدّداً حتى يسري مفعول التّغييرات"
-#: any.pm:1624
+#: any.pm:1708
#, c-format
msgid "Timezone"
msgstr "المنطقة الزمنية"
-#: any.pm:1624
+#: any.pm:1708
#, c-format
msgid "Which is your timezone?"
msgstr "ما هي منطقتك الزمنية؟"
-#: any.pm:1647 any.pm:1649
+#: any.pm:1731 any.pm:1733
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "إعدادات التاريخ ، الساعة و المنطقة الزمنية"
-#: any.pm:1650
+#: any.pm:1734
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1654
+#: any.pm:1738
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1655
+#: any.pm:1739
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1657
+#: any.pm:1741
#, c-format
msgid "NTP Server"
msgstr "خادم NTP"
-#: any.pm:1658
+#: any.pm:1742
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "تزامن وقت آلي (باستخدام NTP)"
@@ -1035,7 +1045,7 @@ msgid "Domain Admin Password"
msgstr "كلمة المرور لمدير النطاق"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1122
+#: bootloader.pm:1217
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1050,44 +1060,54 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1287
+#: bootloader.pm:1386
#, c-format
msgid "LILO with text menu"
msgstr "LILO مع قائمة نصية"
-#: bootloader.pm:1288
+#: bootloader.pm:1387
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1289
+#: bootloader.pm:1388
#, c-format
msgid "GRUB2 with text menu"
msgstr "GRUB2 مع قائمة نصية"
-#: bootloader.pm:1290
+#: bootloader.pm:1389
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1291
+#: bootloader.pm:1390
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB مع قائمة نصية"
-#: bootloader.pm:1378
+#: bootloader.pm:1391
+#, c-format
+msgid "rEFInd with graphical menu"
+msgstr ""
+
+#: bootloader.pm:1392
+#, fuzzy, c-format
+msgid "U-Boot/Extlinux with text menu"
+msgstr "U-Boot/Extlinux مع قائمة نصية"
+
+#: bootloader.pm:1480
#, c-format
msgid "not enough room in /boot"
msgstr "لا توجد مساحة كافية في /boot"
-#: bootloader.pm:2393
+#: bootloader.pm:2610
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "تهيئة محمّل الإقلاع يجب أن يحدّث لأنّ التجزيء تمّ إعادة ترقيمه"
-#: bootloader.pm:2406
+#: bootloader.pm:2623
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1096,7 +1116,7 @@ msgstr ""
"لا يمكن تثبيت محمّل الإقلاع بشكل صحيح. يجب أن تقوم بإقلاع الإنقاذ وتختار \"%s"
"\""
-#: bootloader.pm:2407
+#: bootloader.pm:2624
#, c-format
msgid "Re-install Boot Loader"
msgstr "إعادة تثبيت مُحمِّل الإقلاع"
@@ -1206,7 +1226,7 @@ msgstr "حذف"
msgid "Done"
msgstr "تم"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:153 diskdrake/hd_gtk.pm:323
+#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:153 diskdrake/hd_gtk.pm:325
#: diskdrake/interactive.pm:246 diskdrake/interactive.pm:259
#: diskdrake/interactive.pm:460 diskdrake/interactive.pm:535
#: diskdrake/interactive.pm:553 diskdrake/interactive.pm:558
@@ -1215,7 +1235,7 @@ msgstr "تم"
#: diskdrake/interactive.pm:1242 diskdrake/interactive.pm:1245
#: diskdrake/interactive.pm:1513 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:266 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:264 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
@@ -1296,7 +1316,7 @@ msgstr "استمرار"
msgid "Help"
msgstr "مساعدة"
-#: diskdrake/hd_gtk.pm:257
+#: diskdrake/hd_gtk.pm:259
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -1307,78 +1327,78 @@ msgstr ""
"أقترح أن تغيّر حجم هذا التجزيء\n"
"(اضغط عليه ثم اختر \"تغيير الحجم\")"
-#: diskdrake/hd_gtk.pm:259
+#: diskdrake/hd_gtk.pm:261
#, c-format
msgid "Please click on a partition"
msgstr "الرجاء الضغط على تجزيء"
-#: diskdrake/hd_gtk.pm:273 diskdrake/smbnfs_gtk.pm:63
+#: diskdrake/hd_gtk.pm:275 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "تفاصيل"
-#: diskdrake/hd_gtk.pm:323
+#: diskdrake/hd_gtk.pm:325
#, c-format
msgid "No hard disk drives found"
msgstr "تعذّر العثور على أقراص صلبة"
-#: diskdrake/hd_gtk.pm:362
+#: diskdrake/hd_gtk.pm:364
#, c-format
msgid "Unknown"
msgstr "مجهول"
-#: diskdrake/hd_gtk.pm:429
+#: diskdrake/hd_gtk.pm:431
#, c-format
msgid "Ext4"
msgstr ""
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, c-format
msgid "XFS"
msgstr ""
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, c-format
msgid "Windows"
msgstr "ويندوز"
-#: diskdrake/hd_gtk.pm:430 fs/partitioning_wizard.pm:437 services.pm:201
+#: diskdrake/hd_gtk.pm:432 fs/partitioning_wizard.pm:437 services.pm:201
#, c-format
msgid "Other"
msgstr "أخرى"
-#: diskdrake/hd_gtk.pm:430 diskdrake/interactive.pm:1397
+#: diskdrake/hd_gtk.pm:432 diskdrake/interactive.pm:1397
#: fs/partitioning_wizard.pm:437
#, c-format
msgid "Empty"
msgstr "فارغ"
-#: diskdrake/hd_gtk.pm:437
+#: diskdrake/hd_gtk.pm:439
#, c-format
msgid "Filesystem types:"
msgstr "أنواع أنظمة الملفات:"
-#: diskdrake/hd_gtk.pm:458
+#: diskdrake/hd_gtk.pm:460
#, c-format
msgid "This partition is already empty"
msgstr ""
-#: diskdrake/hd_gtk.pm:467
+#: diskdrake/hd_gtk.pm:469
#, c-format
msgid "Use ``Unmount'' first"
msgstr "استخدام ``الفكّ'' أولا"
-#: diskdrake/hd_gtk.pm:467
+#: diskdrake/hd_gtk.pm:469
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr ""
-#: diskdrake/hd_gtk.pm:467 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:469 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:644 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -2274,7 +2294,7 @@ msgstr "يجب تثبيت الحزم التالية:\n"
msgid "Installing packages..."
msgstr "جاري تركيب الحزم..."
-#: do_pkgs.pm:387 pkgs.pm:293
+#: do_pkgs.pm:388 pkgs.pm:293
#, c-format
msgid "Removing packages..."
msgstr "حذف الحزم..."
@@ -2293,7 +2313,7 @@ msgstr ""
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "لديك تجزيء ESP FAT32 تم تحميلها على /boot/EFI"
-#: fs/any.pm:81 fs/partitioning_wizard.pm:82
+#: fs/any.pm:83 fs/partitioning_wizard.pm:82
#, c-format
msgid ""
"You must have a BIOS boot partition for non-UEFI GPT-partitioned disks. "
@@ -2345,7 +2365,7 @@ msgstr "فشل تركيب التجزيء %s في الدليل %s"
msgid "Checking %s"
msgstr "جاري التأكد من %s"
-#: fs/mount.pm:126 partition_table.pm:399
+#: fs/mount.pm:126 partition_table.pm:456
#, c-format
msgid "error unmounting %s: %s"
msgstr "خطأ في فكّ %s: %s"
@@ -2658,7 +2678,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:271 fsedit.pm:638
+#: fs/partitioning_wizard.pm:271 fsedit.pm:641
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "كل التجزيئات و بياناتها ستضيع من على السواقة %s"
@@ -2707,17 +2727,17 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "فشلت التجزئة: %s"
-#: fs/type.pm:382
+#: fs/type.pm:383
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "لا يمكنك استخدام JFS للتجزئات أصغر من 16 ميغابايت"
-#: fs/type.pm:383
+#: fs/type.pm:384
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "لا يمكنك استخدام ReiserFS للتجزئات أصغر من 32 ميغابايت"
-#: fs/type.pm:384
+#: fs/type.pm:385
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2737,12 +2757,12 @@ msgstr "مع /usr"
msgid "server"
msgstr "خادم"
-#: fsedit.pm:157
+#: fsedit.pm:155
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:267
+#: fsedit.pm:265
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2760,22 +2780,22 @@ msgstr ""
"\n"
"هل أنت موافق على خسارة كل التجزيئات؟\n"
-#: fsedit.pm:450
+#: fsedit.pm:448
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "يجب أن تبدأ أماكن التركيب بالعلامة /"
-#: fsedit.pm:451
+#: fsedit.pm:449
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "أماكن التركيب يجب أن تحتوي فقط على الحروف و/أو الآرقام"
-#: fsedit.pm:452
+#: fsedit.pm:450
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "هناك تجزيء مع مكان التركيب %s مسبقاً\n"
-#: fsedit.pm:455
+#: fsedit.pm:453
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2783,17 +2803,17 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:461 fsedit.pm:472
+#: fsedit.pm:459 fsedit.pm:470
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:466
+#: fsedit.pm:462 fsedit.pm:464
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "هذا الدليل يجب أن يكون في نظام الملفات الجذري"
-#: fsedit.pm:468 fsedit.pm:470
+#: fsedit.pm:466 fsedit.pm:468
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -4942,12 +4962,12 @@ msgstr ""
msgid "Password seems secure"
msgstr ""
-#: partition_table.pm:405
+#: partition_table.pm:462
#, c-format
msgid "mount failed: "
msgstr "فشل التركيب: "
-#: partition_table.pm:531
+#: partition_table.pm:632
#, c-format
msgid ""
"You have a hole in your partition table but I cannot use it.\n"
@@ -5012,7 +5032,7 @@ msgstr ""
msgid "Cannot add a partition to _formatted_ RAID %s"
msgstr "لا أستطيع إضافة تجزيء للـRAID _المنسّق_ %s"
-#: raid.pm:200
+#: raid.pm:201
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "التجزيئات ليست كافية لمستوى RAID %d\n"
diff --git a/perl-install/share/po/ast.po b/perl-install/share/po/ast.po
index 17b7935bb..f8acc1257 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: 2016-12-12 23:00+0100\n"
+"POT-Creation-Date: 2018-11-03 11:40+0000\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Asturian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -19,11 +19,11 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:263 any.pm:1026 diskdrake/interactive.pm:650
+#: any.pm:263 any.pm:695 any.pm:1107 diskdrake/interactive.pm:650
#: diskdrake/interactive.pm:874 diskdrake/interactive.pm:936
#: diskdrake/interactive.pm:1028 diskdrake/interactive.pm:1055
#: diskdrake/interactive.pm:1286 diskdrake/interactive.pm:1344 do_pkgs.pm:342
-#: do_pkgs.pm:387 interactive.pm:712 pkgs.pm:293
+#: do_pkgs.pm:388 interactive.pm:712 pkgs.pm:293
#, c-format
msgid "Please wait"
msgstr "Por favor, espera"
@@ -171,7 +171,7 @@ msgstr "Habilitar APIC llocal"
msgid "Security"
msgstr "Seguranza"
-#: any.pm:428 any.pm:950 any.pm:969 authentication.pm:249
+#: any.pm:428 any.pm:1028 any.pm:1047 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
@@ -192,102 +192,112 @@ msgstr "Por favor, inténtalo de nueves"
msgid "You cannot use a password with %s"
msgstr "Nun pues usar una contraseña con %s"
-#: any.pm:437 any.pm:953 any.pm:971 authentication.pm:250
+#: any.pm:437 any.pm:1031 any.pm:1049 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contraseña (de nueves)"
-#: any.pm:502
+#: any.pm:504 any.pm:671 any.pm:714
#, c-format
-msgid "Image"
-msgstr "Imaxe"
+msgid "Bootloader Configuration"
+msgstr "Configuración del cargador d'arranque"
-#: any.pm:503 any.pm:515
+#: any.pm:508
#, c-format
-msgid "Root"
-msgstr "Root"
+msgid "Install or update rEFInd in the EFI system partition"
+msgstr ""
-#: any.pm:504 any.pm:642
+#: any.pm:510
+#, c-format
+msgid "Install in /EFI/BOOT (workaround for some BIOSs)"
+msgstr ""
+
+#: any.pm:550 any.pm:575 diskdrake/interactive.pm:411
+#, c-format
+msgid "Label"
+msgstr "Etiqueta"
+
+#: any.pm:551 any.pm:559 any.pm:720
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:506
+#: any.pm:552 any.pm:564 any.pm:721
+#, c-format
+msgid "Video mode"
+msgstr "Mou de videu"
+
+#: any.pm:557
+#, c-format
+msgid "Image"
+msgstr "Imaxe"
+
+#: any.pm:558 any.pm:570
+#, c-format
+msgid "Root"
+msgstr "Root"
+
+#: any.pm:561
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:508
+#: any.pm:563
#, c-format
msgid "Requires password to boot"
msgstr "Rique la contraseña p'arrancar"
-#: any.pm:509 any.pm:643
-#, c-format
-msgid "Video mode"
-msgstr "Mou de videu"
-
-#: any.pm:510
+#: any.pm:565
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:511
+#: any.pm:566
#, c-format
msgid "Network profile"
msgstr "Perfil de rede"
-#: any.pm:519 diskdrake/interactive.pm:411
-#, c-format
-msgid "Label"
-msgstr "Etiqueta"
-
-#: any.pm:521 any.pm:640 harddrake/v4l.pm:438
+#: any.pm:577 any.pm:718 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Por defeutu"
-#: any.pm:529
+#: any.pm:585
#, c-format
msgid "Empty label not allowed"
msgstr "Nun s'almiten etiquetes baleres"
-#: any.pm:530
+#: any.pm:586
#, c-format
msgid "You must specify a kernel image"
msgstr "Tienes d'especificar una imaxe de kernel"
-#: any.pm:530
+#: any.pm:586
#, c-format
msgid "You must specify a root partition"
msgstr "Tienes d'especificar una partición raigañu"
-#: any.pm:531
+#: any.pm:587
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta yá ta n'usu"
-#: any.pm:549
+#: any.pm:611
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "¿Qué triba d'entrada quies amestar?"
-#: any.pm:550
+#: any.pm:612
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:550
+#: any.pm:612
#, c-format
msgid "Other OS (Windows...)"
msgstr "Otru SO (Windows...)"
-#: any.pm:597 any.pm:636
-#, c-format
-msgid "Bootloader Configuration"
-msgstr "Configuración del cargador d'arranque"
-
-#: any.pm:598
+#: any.pm:672
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -296,12 +306,12 @@ msgstr ""
"Equí tán les entraes nel to menú d'arranque.\n"
"Pues crear entraes adicionales o camudar les esistentes"
-#: any.pm:645
+#: any.pm:723
#, c-format
msgid "Do not touch ESP or MBR"
msgstr ""
-#: any.pm:647 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:458
+#: any.pm:725 diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:460
#: diskdrake/interactive.pm:305 diskdrake/interactive.pm:391
#: diskdrake/interactive.pm:605 diskdrake/interactive.pm:820
#: diskdrake/interactive.pm:885 diskdrake/interactive.pm:1053
@@ -313,66 +323,66 @@ msgstr ""
msgid "Warning"
msgstr "Avisu"
-#: any.pm:648
+#: any.pm:726
#, 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:652
+#: any.pm:730
#, c-format
msgid "Probe Foreign OS"
msgstr ""
-#: any.pm:653
+#: any.pm:731
#, c-format
msgid ""
"If grub2 takes too long to install, you can use this option to skip "
"detecting other OSes and make it fast"
msgstr ""
-#: any.pm:909
+#: any.pm:987
#, c-format
msgid "access to X programs"
msgstr "accesu a X programes"
-#: any.pm:910
+#: any.pm:988
#, c-format
msgid "access to rpm tools"
msgstr "accesu a ferramientes rpm"
-#: any.pm:911
+#: any.pm:989
#, c-format
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: any.pm:912
+#: any.pm:990
#, c-format
msgid "access to administrative files"
msgstr "acceder a ficheros alministrativos"
-#: any.pm:913
+#: any.pm:991
#, c-format
msgid "access to network tools"
msgstr "acceder a ferramientes de rede"
-#: any.pm:914
+#: any.pm:992
#, c-format
msgid "access to compilation tools"
msgstr "acceder a ferramientes de compilación"
-#: any.pm:920
+#: any.pm:998
#, c-format
msgid "(already added %s)"
msgstr "(yá s'amestó %s)"
-#: any.pm:926
+#: any.pm:1004
#, c-format
msgid "Please give a user name"
msgstr "Por favor, da un nome d'usuariu"
-#: any.pm:927
+#: any.pm:1005
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -381,153 +391,153 @@ msgstr ""
"El nome d'usuariu tien d'entamar con una lletra minúscula siguida namái por "
"númberos, lletres minúscules, `-' y `_'"
-#: any.pm:928
+#: any.pm:1006
#, c-format
msgid "The user name is too long"
msgstr "El nome d'usuariu ye perllargu"
-#: any.pm:929
+#: any.pm:1007
#, c-format
msgid "This user name has already been added"
msgstr "Esti nome d'usuariu yá s'amestó"
-#: any.pm:935 any.pm:973
+#: any.pm:1013 any.pm:1051
#, c-format
msgid "User ID"
msgstr "ID d'usuariu"
-#: any.pm:935 any.pm:974
+#: any.pm:1013 any.pm:1052
#, c-format
msgid "Group ID"
msgstr "ID del grupu"
-#: any.pm:936
+#: any.pm:1014
#, c-format
msgid "%s must be a number"
msgstr "%s tien de ser un númberu"
-#: any.pm:937
+#: any.pm:1015
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:941
+#: any.pm:1019
#, c-format
msgid "User management"
msgstr "Alministración d'usuariu"
-#: any.pm:947
+#: any.pm:1025
#, c-format
msgid "Enable guest account"
msgstr "Habilitar cuenta de convidáu"
-#: any.pm:949 authentication.pm:236
+#: any.pm:1027 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Afitar contraseña d'alministrador (root)"
-#: any.pm:955
+#: any.pm:1033
#, c-format
msgid "Enter a user"
msgstr "Introducir un usuariu"
-#: any.pm:957
+#: any.pm:1035
#, c-format
msgid "Icon"
msgstr "Iconu"
-#: any.pm:960
+#: any.pm:1038
#, c-format
msgid "Real name"
msgstr "Nome real"
-#: any.pm:967
+#: any.pm:1045
#, c-format
msgid "Login name"
msgstr "Nome d'aniciu sesión"
-#: any.pm:972
+#: any.pm:1050
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:976
+#: any.pm:1054
#, c-format
msgid "Extra Groups:"
msgstr ""
-#: any.pm:1026
+#: any.pm:1107
#, c-format
msgid "Please wait, adding media..."
msgstr "Por favor espera, amestando medios..."
-#: any.pm:1078 security/l10n.pm:14
+#: any.pm:1159 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Aniciu sesión automáticu"
-#: any.pm:1079
+#: any.pm:1160
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Pues configurar el to ordenador p'aniciar sesión automáticamente nun usuariu."
-#: any.pm:1080
+#: any.pm:1161
#, c-format
msgid "Use this feature"
msgstr "Usar carauterística"
-#: any.pm:1081
+#: any.pm:1162
#, c-format
msgid "Choose the default user:"
msgstr "Escoyer usuariu por defeutu:"
-#: any.pm:1082
+#: any.pm:1163
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escoyer l'alministrador de ventanes pa usar:"
-#: any.pm:1093 any.pm:1108 any.pm:1177
+#: any.pm:1174 any.pm:1189 any.pm:1258
#, c-format
msgid "Release Notes"
msgstr "Notes de llanzamientu"
-#: any.pm:1115 any.pm:1476 interactive/gtk.pm:820
+#: any.pm:1196 any.pm:1560 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Zarrar"
-#: any.pm:1163
+#: any.pm:1244
#, c-format
msgid "License agreement"
msgstr "Alcuerdu de llicencia"
-#: any.pm:1165 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
+#: any.pm:1246 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1312
#, c-format
msgid "Quit"
msgstr "Colar"
-#: any.pm:1172
+#: any.pm:1253
#, c-format
msgid "Do you accept this license ?"
msgstr "¿Aceutes esta llicencia?"
-#: any.pm:1173
+#: any.pm:1254
#, c-format
msgid "Accept"
msgstr "Aceutar"
-#: any.pm:1173
+#: any.pm:1254
#, c-format
msgid "Refuse"
msgstr "Refugar"
-#: any.pm:1199 any.pm:1262
+#: any.pm:1280 any.pm:1343
#, c-format
msgid "Please choose a language to use"
msgstr "Por favor, escueyi una llingua pa usar"
-#: any.pm:1227
+#: any.pm:1308
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -538,87 +548,87 @@ msgstr ""
"llingua que te prestaría instalar. Tarán disponibles cuando la to\n"
"instalación tea completada y reanicies el to sistema."
-#: any.pm:1229 fs/partitioning_wizard.pm:194
+#: any.pm:1310 fs/partitioning_wizard.pm:194
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1230
+#: any.pm:1311
#, c-format
msgid "Multiple languages"
msgstr "Llingües múltiples"
-#: any.pm:1231
+#: any.pm:1312
#, c-format
msgid "Select Additional Languages"
msgstr "Esbillar llingües adicionales"
-#: any.pm:1240 any.pm:1271
+#: any.pm:1321 any.pm:1352
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Compatibilidá de codificación vieya (non UTF-8)"
-#: any.pm:1241
+#: any.pm:1322
#, c-format
msgid "All languages"
msgstr "Toles llingües"
-#: any.pm:1263
+#: any.pm:1344
#, c-format
msgid "Language choice"
msgstr "Escoyeta de llingua"
-#: any.pm:1317
+#: any.pm:1398
#, c-format
msgid "Country / Region"
msgstr "País / Rexón"
-#: any.pm:1318
+#: any.pm:1399
#, c-format
msgid "Please choose your country"
msgstr "Por favor, escueyi'l to país"
-#: any.pm:1320
+#: any.pm:1401
#, c-format
msgid "Here is the full list of available countries"
msgstr "Equí ta la llista completa de países disponibles"
-#: any.pm:1321
+#: any.pm:1402
#, c-format
msgid "Other Countries"
msgstr "Otros países"
-#: any.pm:1321 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1402 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avanzáu"
-#: any.pm:1327
+#: any.pm:1408
#, c-format
msgid "Input method:"
msgstr "Métodu d'entrada:"
-#: any.pm:1330
+#: any.pm:1411
#, c-format
msgid "None"
msgstr "Un res"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "No sharing"
msgstr "Ensin compartición"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "Allow all users"
msgstr "Permitir tolos usuarios"
-#: any.pm:1421
+#: any.pm:1505
#, c-format
msgid "Custom"
msgstr "Personalizáu"
-#: any.pm:1425
+#: any.pm:1509
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -634,7 +644,7 @@ msgstr ""
"\n"
"\"Personalizáu\" permitirá una granularidá per usuariu.\n"
-#: any.pm:1437
+#: any.pm:1521
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -643,7 +653,7 @@ msgstr ""
"NFS: el sistema de compartición de ficheros tradicional d'Unix, con menos "
"sofitu en Mac y Windows."
-#: any.pm:1440
+#: any.pm:1524
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -652,19 +662,19 @@ msgstr ""
"NFS: un sistema de compartición de ficheros usáu por Windows, Mac OS X y "
"abondos sistemas Linux modernos."
-#: any.pm:1448
+#: any.pm:1532
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Pues esportar usando NFS o SMB. Por favor, esbilla cuál te prestaría usar."
-#: any.pm:1476
+#: any.pm:1560
#, c-format
msgid "Launch userdrake"
msgstr "Llanzar userdrake"
-#: any.pm:1478
+#: any.pm:1562
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -673,7 +683,7 @@ msgstr ""
"La compartición per usuariu usa'l grupu \"fileshare\".\n"
"Pues usar userdrake p'amestar un usuariu a esti grupu."
-#: any.pm:1585
+#: any.pm:1669
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -682,49 +692,49 @@ msgstr ""
"Necesites zarrar sesión y tornar otra vegada pa que les camudancies faigan "
"efeutu. Primi Aceutar pa zarrar sesión agora."
-#: any.pm:1589
+#: any.pm:1673
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Necesites zarrar sesión y tornar otra vegada pa que les camudancies faigan "
"efeutu"
-#: any.pm:1624
+#: any.pm:1708
#, c-format
msgid "Timezone"
msgstr "Fusu horariu"
-#: any.pm:1624
+#: any.pm:1708
#, c-format
msgid "Which is your timezone?"
msgstr "¿Cuál ye'l to fusu horariu?"
-#: any.pm:1647 any.pm:1649
+#: any.pm:1731 any.pm:1733
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Axustes de data, reló y fusu horariu"
-#: any.pm:1650
+#: any.pm:1734
#, c-format
msgid "What is the best time?"
msgstr "¿Cuál ye la meyor hora?"
-#: any.pm:1654
+#: any.pm:1738
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (reló hardware afitáu a UTC)"
-#: any.pm:1655
+#: any.pm:1739
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (reló hardware afitáu a la hora llocal)"
-#: any.pm:1657
+#: any.pm:1741
#, c-format
msgid "NTP Server"
msgstr "Sirvidor NTP"
-#: any.pm:1658
+#: any.pm:1742
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización d'hora automática (usando NTP)"
@@ -1066,7 +1076,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1122
+#: bootloader.pm:1217
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1076,44 +1086,54 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1287
+#: bootloader.pm:1386
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:1288
+#: bootloader.pm:1387
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1289
+#: bootloader.pm:1388
#, c-format
msgid "GRUB2 with text menu"
msgstr ""
-#: bootloader.pm:1290
+#: bootloader.pm:1389
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1291
+#: bootloader.pm:1390
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1378
+#: bootloader.pm:1391
+#, c-format
+msgid "rEFInd with graphical menu"
+msgstr ""
+
+#: bootloader.pm:1392
+#, c-format
+msgid "U-Boot/Extlinux with text menu"
+msgstr ""
+
+#: bootloader.pm:1480
#, c-format
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:2393
+#: bootloader.pm:2610
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2406
+#: bootloader.pm:2623
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1122,7 +1142,7 @@ msgstr ""
"El cargador d'arranque nun pue instalase correutamente. Tienes d'arrancar el "
"mou rescate y escoyer \"%s\""
-#: bootloader.pm:2407
+#: bootloader.pm:2624
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1228,7 +1248,7 @@ msgstr "Desaniciar"
msgid "Done"
msgstr "Fecho"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:153 diskdrake/hd_gtk.pm:323
+#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:153 diskdrake/hd_gtk.pm:325
#: diskdrake/interactive.pm:246 diskdrake/interactive.pm:259
#: diskdrake/interactive.pm:460 diskdrake/interactive.pm:535
#: diskdrake/interactive.pm:553 diskdrake/interactive.pm:558
@@ -1237,7 +1257,7 @@ msgstr "Fecho"
#: diskdrake/interactive.pm:1242 diskdrake/interactive.pm:1245
#: diskdrake/interactive.pm:1513 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:266 interactive/http.pm:117 interactive/http.pm:118
+#: fsedit.pm:264 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
@@ -1320,7 +1340,7 @@ msgstr "Continuar"
msgid "Help"
msgstr "Ayuda"
-#: diskdrake/hd_gtk.pm:257
+#: diskdrake/hd_gtk.pm:259
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
@@ -1328,78 +1348,78 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
-#: diskdrake/hd_gtk.pm:259
+#: diskdrake/hd_gtk.pm:261
#, c-format
msgid "Please click on a partition"
msgstr "Por favor, primi nuna partición"
-#: diskdrake/hd_gtk.pm:273 diskdrake/smbnfs_gtk.pm:63
+#: diskdrake/hd_gtk.pm:275 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detalles"
-#: diskdrake/hd_gtk.pm:323
+#: diskdrake/hd_gtk.pm:325
#, c-format
msgid "No hard disk drives found"
msgstr ""
-#: diskdrake/hd_gtk.pm:362
+#: diskdrake/hd_gtk.pm:364
#, c-format
msgid "Unknown"
msgstr "Desconocíu"
-#: diskdrake/hd_gtk.pm:429
+#: diskdrake/hd_gtk.pm:431
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, c-format
msgid "Swap"
msgstr ""
-#: diskdrake/hd_gtk.pm:429 fs/partitioning_wizard.pm:436
+#: diskdrake/hd_gtk.pm:431 fs/partitioning_wizard.pm:436
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:430 fs/partitioning_wizard.pm:437 services.pm:201
+#: diskdrake/hd_gtk.pm:432 fs/partitioning_wizard.pm:437 services.pm:201
#, c-format
msgid "Other"
msgstr "Otru"
-#: diskdrake/hd_gtk.pm:430 diskdrake/interactive.pm:1397
+#: diskdrake/hd_gtk.pm:432 diskdrake/interactive.pm:1397
#: fs/partitioning_wizard.pm:437
#, c-format
msgid "Empty"
msgstr ""
-#: diskdrake/hd_gtk.pm:437
+#: diskdrake/hd_gtk.pm:439
#, c-format
msgid "Filesystem types:"
msgstr ""
-#: diskdrake/hd_gtk.pm:458
+#: diskdrake/hd_gtk.pm:460
#, c-format
msgid "This partition is already empty"
msgstr ""
-#: diskdrake/hd_gtk.pm:467
+#: diskdrake/hd_gtk.pm:469
#, c-format
msgid "Use ``Unmount'' first"
msgstr ""
-#: diskdrake/hd_gtk.pm:467
+#: diskdrake/hd_gtk.pm:469
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr ""
-#: diskdrake/hd_gtk.pm:467 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:469 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:644 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -2279,7 +2299,7 @@ msgstr ""
msgid "Installing packages..."
msgstr ""
-#: do_pkgs.pm:387 pkgs.pm:293
+#: do_pkgs.pm:388 pkgs.pm:293
#, c-format
msgid "Removing packages..."
msgstr ""
@@ -2296,7 +2316,7 @@ msgstr ""
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr ""
-#: fs/any.pm:81 fs/partitioning_wizard.pm:82
+#: fs/any.pm:83 fs/partitioning_wizard.pm:82
#, c-format
msgid ""
"You must have a BIOS boot partition for non-UEFI GPT-partitioned disks. "
@@ -2348,7 +2368,7 @@ msgstr ""
msgid "Checking %s"
msgstr ""
-#: fs/mount.pm:126 partition_table.pm:399
+#: fs/mount.pm:126 partition_table.pm:456
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2633,7 +2653,7 @@ msgid ""
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:271 fsedit.pm:638
+#: fs/partitioning_wizard.pm:271 fsedit.pm:641
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Toles particiones y los sos datos desaniciaránse na unidá %s"
@@ -2680,17 +2700,17 @@ msgstr "Equí ta'l conteníu dle to discu"
msgid "Partitioning failed: %s"
msgstr "Particionáu fallíu: %s"
-#: fs/type.pm:382
+#: fs/type.pm:383
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:383
+#: fs/type.pm:384
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: fs/type.pm:384
+#: fs/type.pm:385
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2710,12 +2730,12 @@ msgstr ""
msgid "server"
msgstr "sirvidor"
-#: fsedit.pm:157
+#: fsedit.pm:155
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""
-#: fsedit.pm:267
+#: fsedit.pm:265
#, c-format
msgid ""
"I cannot read the partition table of device %s, it's too corrupted for me :"
@@ -2727,22 +2747,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:448
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:451
+#: fsedit.pm:449
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:452
+#: fsedit.pm:450
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Yá hai una partición col puntu de montaxe %s\n"
-#: fsedit.pm:455
+#: fsedit.pm:453
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2750,17 +2770,17 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:461 fsedit.pm:472
+#: fsedit.pm:459 fsedit.pm:470
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:464 fsedit.pm:466
+#: fsedit.pm:462 fsedit.pm:464
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:468 fsedit.pm:470
+#: fsedit.pm:466 fsedit.pm:468
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -4884,12 +4904,12 @@ msgstr ""
msgid "Password seems secure"
msgstr ""
-#: partition_table.pm:405
+#: partition_table.pm:462
#, c-format
msgid "mount failed: "
msgstr ""
-#: partition_table.pm:531
+#: partition_table.pm:632
#, c-format
msgid ""
"You have a hole in your partition table but I cannot use it.\n"
@@ -4948,7 +4968,7 @@ msgstr ""
msgid "Cannot add a partition to _formatted_ RAID %s"
msgstr ""
-#: raid.pm:200
+#: raid.pm:201
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po