summaryrefslogtreecommitdiffstats
path: root/perl-install/pkgs.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2000-03-31 21:54:17 +0000
committerFrancois Pons <fpons@mandriva.com>2000-03-31 21:54:17 +0000
commitc3ce2573ae05a6145f5cd0c71d2b74b1bc9df754 (patch)
tree9d7c0529277964690cb89f73939eea9fe5f7b172 /perl-install/pkgs.pm
parentbcd0d92e8b0b72d04b45eeaaea541d672cc46ab7 (diff)
downloaddrakx-c3ce2573ae05a6145f5cd0c71d2b74b1bc9df754.tar
drakx-c3ce2573ae05a6145f5cd0c71d2b74b1bc9df754.tar.gz
drakx-c3ce2573ae05a6145f5cd0c71d2b74b1bc9df754.tar.bz2
drakx-c3ce2573ae05a6145f5cd0c71d2b74b1bc9df754.tar.xz
drakx-c3ce2573ae05a6145f5cd0c71d2b74b1bc9df754.zip
*** empty log message ***
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r--perl-install/pkgs.pm102
1 files changed, 57 insertions, 45 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index 870904ff4..f9b569dee 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -546,6 +546,19 @@ sub selectPackagesToUpgrade($$$;$$) { #- TODO
my $db = c::rpmdbOpenForTraversal($prefix) or die "unable to open $prefix/var/lib/rpm/packages.rpm";
log::l("opened rpm database for examining existing packages");
+ #- get filelist of package to avoid getting all header into memory.
+ my %filelist;
+ my $current;
+ my $f = install_any::getFile("filelist") or log::l("unable to get filelist of packages");
+ foreach (<$f>) {
+ chomp;
+ if (/^#(.*)/) {
+ $current = $filelist{$1} = [];
+ } else {
+ push @$current, $_;
+ }
+ }
+
local $_; #- else perl complains on the map { ... } grep { ... } @...;
my %installedFilesForUpgrade; #- help searching package to upgrade in regard to already installed files.
@@ -587,9 +600,9 @@ sub selectPackagesToUpgrade($$$;$$) { #- TODO
$toRemove{$otherPackage} = 1; #- force removing for theses other packages, select our.
}
} else {
-# my @files = c::headerGetEntry($header, 'filenames');
-# @installedFilesForUpgrade{grep { ($_ !~ m|^/etc/rc.d/| &&
-# ! -d "$prefix/$_" && ! -l "$prefix/$_") } @files} = ();
+ my @files = c::headerGetEntry($header, 'filenames');
+ @installedFilesForUpgrade{grep { ($_ !~ m|^/etc/rc.d/| &&
+ ! -d "$prefix/$_" && ! -l "$prefix/$_") } @files} = ();
}
});
@@ -617,13 +630,15 @@ sub selectPackagesToUpgrade($$$;$$) { #- TODO
c::rpmdbNameTraverse($db, packageName($p), sub {
my ($header) = @_;
$cumulSize += c::headerGetEntry($header, 'size'); #- all these will be deleted on upgrade.
-# my @files = c::headerGetEntry($header, 'filenames');
-# @installedFilesForUpgrade{grep { ($_ !~ m|^/etc/rc.d/| &&
-# ! -d "$prefix/$_" && ! -l "$prefix/$_") } @files} = ();
+ my @files = c::headerGetEntry($header, 'filenames');
+ @installedFilesForUpgrade{grep { ($_ !~ m|^/etc/rc.d/| &&
+ ! -d "$prefix/$_" && ! -l "$prefix/$_") } @files} = ();
});
-# eval { getHeader ($p) };
-# my @availFiles = $p->{header} ? c::headerGetEntry($p->{header}, 'filenames') : ();
-# map { delete $installedFilesForUpgrade{$_} } grep { $_ !~ m|^/etc/rc.d/| } @availFiles;
+ if (my $list = $filelist{packageName($p)}) {
+ my @commonparts = map { /^=(.*)/ ? ($1) : () } @$list;
+ map { delete $installedFilesForUpgrade{$_} } grep { $_ !~ m|^/etc/rc.d/| }
+ map { /^(\d)(.*)/ ? ($commonparts[$1] . $2) : /^ (.*)/ ? ($1) : () } @$list;
+ }
#- keep in mind the cumul size of installed package since they will be deleted
#- on upgrade.
@@ -633,47 +648,44 @@ sub selectPackagesToUpgrade($$$;$$) { #- TODO
#- unmark all files for all packages marked for upgrade. it may not have been done above
#- since some packages may have been selected by depsList.
-# foreach (values %{$packages->[0]}) {
-# my $p = $_;
-#
-# if (packageFlagSelected($p)) {
-# eval { getHeader ($p) };
-# my @availFiles = $p->{header} ? c::headerGetEntry($p->{header}, 'filenames') : ();
-# map { delete $installedFilesForUpgrade{$_} } grep { $_ !~ m|^/etc/rc.d/| } @availFiles;
-# }
-# }
+ foreach (values %{$packages->[0]}) {
+ my $p = $_;
+
+ if (packageFlagSelected($p)) {
+ if (my $list = $filelist{packageName($p)}) {
+ my @commonparts = map { /^=(.*)/ ? ($1) : () } @$list;
+ map { delete $installedFilesForUpgrade{$_} } grep { $_ !~ m|^/etc/rc.d/| }
+ map { /^(\d)(.*)/ ? ($commonparts[$1] . $2) : /^ (.*)/ ? ($1) : () } @$list;
+ }
+ }
+ }
#- select packages which contains marked files, then unmark on selection.
-# foreach (values %$packages) {
-# my $p = $_;
-#
-# unless ($p->{selected}) {
-# eval { getHeader ($p) };
-# my @availFiles = $p->{header} ? c::headerGetEntry($p->{header}, 'filenames') : ();
-# my $toSelect = 0;
-# map { if (exists $installedFilesForUpgrade{$_}) {
-# $toSelect ||= ! -d "$prefix/$_" && ! -l "$prefix/$_"; delete $installedFilesForUpgrade{$_} }
-# } grep { $_ !~ m@^/etc/rc.d/@ } @availFiles;
-# selectPackage($packages, $p) if ($toSelect);
-# }
-# }
+ foreach (values %{$packages->[0]}) {
+ my $p = $_;
+
+ unless ($p->{selected}) {
+ my $toSelect = 0;
+ if (my $list = $filelist{packageName($p)}) {
+ my @commonparts = map { /^=(.*)/ ? ($1) : () } @$list;
+ map { if (exists $installedFilesForUpgrade{$_}) {
+ $toSelect ||= ! -d "$prefix/$_" && ! -l "$prefix/$_"; delete $installedFilesForUpgrade{$_} }
+ } grep { $_ !~ m|^/etc/rc.d/| } map { /^(\d)(.*)/ ? ($commonparts[$1] . $2) : /^ (.*)/ ? ($1) : () } @$list;
+ }
+ selectPackage($packages, $p) if ($toSelect);
+ }
+ }
#- select packages which obseletes other package, obselete package are not removed,
#- should we remove them ? this could be dangerous !
-# foreach (values %$packages) {
-# my $p = $_;
-
-# eval { getHeader ($p) };
-# my @obsoletes = $p->{header} ? c::headerGetEntry(getHeader ($p), 'obsoletes'): ();
-# map { selectPackage($packages, $p) if c::rpmdbNameTraverse($db, $_) > 0 } @obsoletes;
-# }
-
- #- select all base packages which are not installed and not selected.
-# foreach (@$base) {
-# my $p = $packages->[0]{$_} or log::l("missing base package $_"), next;
-# log::l("base package $_ is not installed") unless $p->{installed} || $p->{selected}; #- installed not set on upgrade.
-# selectPackage($packages, $p, 1) unless $p->{selected}; #- if installed it cannot be selected.
-# }
+ foreach (values %{$packages->[0]}) {
+ my $p = $_;
+
+ if (my $list = $filelist{packageName($p)}) {
+ my @obsoletes = map { /^\*(.*)/ ? ($1) : () } @$list;
+ map { selectPackage($packages, $p) if c::rpmdbNameTraverse($db, $_) > 0 } @obsoletes;
+ }
+ }
#- clean false value on toRemove.
delete $toRemove{''};
td class='upd'>perl-install/install/share/po/fur.po236
-rw-r--r--perl-install/install/share/po/ga.po242
-rw-r--r--perl-install/install/share/po/gl.po238
-rw-r--r--perl-install/install/share/po/he.po238
-rw-r--r--perl-install/install/share/po/hi.po238
-rw-r--r--perl-install/install/share/po/hr.po238
-rw-r--r--perl-install/install/share/po/hu.po248
-rw-r--r--perl-install/install/share/po/id.po250
-rw-r--r--perl-install/install/share/po/is.po238
-rw-r--r--perl-install/install/share/po/it.po250
-rw-r--r--perl-install/install/share/po/ja.po238
-rw-r--r--perl-install/install/share/po/ko.po238
-rw-r--r--perl-install/install/share/po/ky.po252
-rw-r--r--perl-install/install/share/po/lt.po233
-rw-r--r--perl-install/install/share/po/ltg.po252
-rw-r--r--perl-install/install/share/po/lv.po238
-rw-r--r--perl-install/install/share/po/mk.po252
-rw-r--r--perl-install/install/share/po/mn.po242
-rw-r--r--perl-install/install/share/po/ms.po245
-rw-r--r--perl-install/install/share/po/mt.po252
-rw-r--r--perl-install/install/share/po/nb.po238
-rw-r--r--perl-install/install/share/po/nl.po250
-rw-r--r--perl-install/install/share/po/nn.po248
-rw-r--r--perl-install/install/share/po/pa_IN.po248
-rw-r--r--perl-install/install/share/po/pl.po250
-rw-r--r--perl-install/install/share/po/pt.po241
-rw-r--r--perl-install/install/share/po/pt_BR.po250
-rw-r--r--perl-install/install/share/po/ro.po247
-rw-r--r--perl-install/install/share/po/ru.po250
-rw-r--r--perl-install/install/share/po/sc.po242
-rw-r--r--perl-install/install/share/po/sk.po249
-rw-r--r--perl-install/install/share/po/sl.po247
-rw-r--r--perl-install/install/share/po/sq.po238
-rw-r--r--perl-install/install/share/po/sr.po250
-rw-r--r--perl-install/install/share/po/sr@Latn.po251
-rw-r--r--perl-install/install/share/po/sv.po250
-rw-r--r--perl-install/install/share/po/ta.po248
-rw-r--r--perl-install/install/share/po/tg.po251
-rw-r--r--perl-install/install/share/po/th.po233
-rw-r--r--perl-install/install/share/po/tl.po252
-rw-r--r--perl-install/install/share/po/tr.po248
-rw-r--r--perl-install/install/share/po/uk.po249
-rw-r--r--perl-install/install/share/po/uz.po248
-rw-r--r--perl-install/install/share/po/uz@cyrillic.po248
-rw-r--r--perl-install/install/share/po/vi.po238
-rw-r--r--perl-install/install/share/po/wa.po238
-rw-r--r--perl-install/install/share/po/zh_CN.po241
-rw-r--r--perl-install/install/share/po/zh_TW.po241
-rw-r--r--perl-install/share/po/af.po562
-rw-r--r--perl-install/share/po/am.po560
-rw-r--r--perl-install/share/po/ar.po566
-rw-r--r--perl-install/share/po/ast.po560
-rw-r--r--perl-install/share/po/az.po562
-rw-r--r--perl-install/share/po/be.po560
-rw-r--r--perl-install/share/po/bg.po566
-rw-r--r--perl-install/share/po/bn.po562
-rw-r--r--perl-install/share/po/br.po560
-rw-r--r--perl-install/share/po/bs.po562
-rw-r--r--perl-install/share/po/ca.po566
-rw-r--r--perl-install/share/po/cs.po564
-rw-r--r--perl-install/share/po/cy.po560
-rw-r--r--perl-install/share/po/da.po564
-rw-r--r--perl-install/share/po/de.po564
-rw-r--r--perl-install/share/po/el.po566
-rw-r--r--perl-install/share/po/eo.po560
-rw-r--r--perl-install/share/po/es.po567
-rw-r--r--perl-install/share/po/et.po567
-rw-r--r--perl-install/share/po/eu.po595
-rw-r--r--perl-install/share/po/fa.po566
-rw-r--r--perl-install/share/po/fi.po564
-rw-r--r--perl-install/share/po/fr.po564
-rw-r--r--perl-install/share/po/fur.po560
-rw-r--r--perl-install/share/po/ga.po560
-rw-r--r--perl-install/share/po/gl.po564
-rw-r--r--perl-install/share/po/he.po564
-rw-r--r--perl-install/share/po/hi.po566
-rw-r--r--perl-install/share/po/hr.po560
-rw-r--r--perl-install/share/po/hu.po564
-rw-r--r--perl-install/share/po/id.po564
-rw-r--r--perl-install/share/po/is.po567
-rw-r--r--perl-install/share/po/it.po564
-rw-r--r--perl-install/share/po/ja.po564
-rw-r--r--perl-install/share/po/ko.po560
-rw-r--r--perl-install/share/po/ky.po560
-rw-r--r--perl-install/share/po/lt.po560
-rw-r--r--perl-install/share/po/ltg.po560
-rw-r--r--perl-install/share/po/lv.po560
-rw-r--r--perl-install/share/po/mk.po562
-rw-r--r--perl-install/share/po/mn.po560
-rw-r--r--perl-install/share/po/ms.po560
-rw-r--r--perl-install/share/po/mt.po562
-rw-r--r--perl-install/share/po/nb.po564
-rw-r--r--perl-install/share/po/nl.po564
-rw-r--r--perl-install/share/po/nn.po564
-rw-r--r--perl-install/share/po/pa_IN.po562
-rw-r--r--perl-install/share/po/pl.po564
-rw-r--r--perl-install/share/po/pt.po564
-rw-r--r--perl-install/share/po/pt_BR.po564
-rw-r--r--perl-install/share/po/ro.po564
-rw-r--r--perl-install/share/po/ru.po566
-rw-r--r--perl-install/share/po/sc.po560
-rw-r--r--perl-install/share/po/sk.po564
-rw-r--r--perl-install/share/po/sl.po564
-rw-r--r--perl-install/share/po/sq.po566
-rw-r--r--perl-install/share/po/sr.po568
-rw-r--r--perl-install/share/po/sr@Latn.po560
-rw-r--r--perl-install/share/po/sv.po564
-rw-r--r--perl-install/share/po/ta.po560
-rw-r--r--perl-install/share/po/tg.po562
-rw-r--r--perl-install/share/po/th.po560
-rw-r--r--perl-install/share/po/tl.po562
-rw-r--r--perl-install/share/po/tr.po1965
-rw-r--r--perl-install/share/po/uk.po569
-rw-r--r--perl-install/share/po/uz.po564
-rw-r--r--perl-install/share/po/uz@cyrillic.po564
-rw-r--r--perl-install/share/po/vi.po566
-rw-r--r--perl-install/share/po/wa.po565
-rw-r--r--perl-install/share/po/zh_CN.po564
-rw-r--r--perl-install/share/po/zh_TW.po564
142 files changed, 30308 insertions, 28542 deletions
diff --git a/perl-install/install/share/po/af.po b/perl-install/install/share/po/af.po
index 39aab5a03..c3fe2f103 100644
--- a/perl-install/install/share/po/af.po
+++ b/perl-install/install/share/po/af.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-af\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-04-21 17:33+0200\n"
"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
"Language-Team: Afrikaans\n"
@@ -88,170 +88,165 @@ msgid ""
msgstr ""
#: any.pm:162
-#, c-format
-msgid "CD-ROM"
-msgstr "CDROM"
-
-#: any.pm:163
#, fuzzy, c-format
msgid "Network (HTTP)"
msgstr "Netwerk %s"
-#: any.pm:164
+#: any.pm:163
#, fuzzy, c-format
msgid "Network (FTP)"
msgstr "Netwerk %s"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Kontak %s se webwerf vir 'n lys van spieëlwebplekke...."
-#: any.pm:253
+#: any.pm:252
#, fuzzy, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "Kontak %s se webwerf vir 'n lys van spieëlwebplekke...."
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spieël waar die pakkette verkry kan word"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Gids"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, fuzzy, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Kan nie %s op %s vind nie"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Ondersoek pakette wat reeds geïnstalleer is..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Soek vir pakkette om op te gradeer..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -301,7 +296,7 @@ msgstr "Ftp"
msgid "NFS"
msgstr "PFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Netwerk"
@@ -351,7 +346,7 @@ msgstr "Besig met installasie"
msgid "Configuration"
msgstr "Konfigurasie"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "U moet ook %s formatteer"
@@ -375,22 +370,22 @@ msgstr "Netwerk op pad op"
msgid "Bringing down the network"
msgstr "Netwerk op pad af"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "Bespeuring aan die gebeur"
@@ -435,34 +430,34 @@ msgstr ""
msgid "No description"
msgstr ""
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "'n Fout het voorgekom"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "'n Ernstige fout het voorgekom: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "onsuksesvolle installasie"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Installeer pakket %s"
@@ -547,33 +542,33 @@ msgstr ""
"Redigeerders. teksverwerkers, instruksiedoppe, lêer-nutsprogramme, terminaal-"
"programme"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Ontwikkeling"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C en C++ ontwikkelingsprogrammateke, programme en insluitlêers"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentasie"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Boeke en HOWTO's oor Linux en Vrye Sagteware"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Derdeparty ondersteuning van programme"
@@ -704,9 +699,9 @@ msgid "Graphical Environment"
msgstr "Grafiese Omgewing"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE Werkstasie"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Werkstasie"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -795,65 +790,51 @@ msgstr ""
"werkskerm-hulpprogramme"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "'n Werkstasie"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Die K-werkskermomgewing (KDE), die basiese grafiese omgewing met 'n "
-"versameling bygaande hulpprogramme"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Ander Grafiese Werkskerms"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ens."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Nutsprogramme"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH-bediener"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, fuzzy, c-format
msgid "Webmin"
msgstr "Webkamera"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, fuzzy, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Terminal Server Konfigurasie"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, fuzzy, c-format
msgid "Network Utilities/Monitoring"
msgstr "Monitor van Netwerk"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "<b>Mageia Store</b>"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, fuzzy, c-format
msgid "Wizards to configure server"
msgstr "Probleme met die konfigurasie van drukker \" %s\"!"
@@ -867,7 +848,7 @@ msgstr ""
"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
"nie. Gaan op u eie risiko voort."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -914,7 +895,7 @@ msgstr ""
"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die\n"
"instruksielyn intik."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Kies Pakketgroepe"
@@ -1113,36 +1094,36 @@ msgstr "Tyd oor "
msgid "(estimating...)"
msgstr "Skatting"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakket"
msgstr[1] "%d pakkette"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Opsomming"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfigureer"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "nie gekonfigureer nie"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1151,7 +1132,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1227,12 +1208,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE word opgestel"
#: steps_interactive.pm:354
@@ -1404,7 +1385,7 @@ msgstr "Post-installasiekonfigurasie"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr ""
@@ -1428,7 +1409,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Herstel"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1449,97 +1440,97 @@ msgstr ""
"Wil u dit nou installeer?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s op %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardeware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Klankkaart"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor 'n ISA klankkaart?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, fuzzy, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr "Loop \"sndconfig\" na die installasie om u klankkaart te konfigureer"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Geen klankkaart opgespoor nie. Probeer \"harddrake\" na die installasie"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafiese-koppelvlak"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Netwerk & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Instaan bedieners"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "gekonfigureer"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Sekuriteitsvlak"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Vuurmuur"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "ge-aktiveer"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "ge-deaktiveer"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "U het nog nie 'X' opgestel nie. Verlang u dit regtig?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Berei installasie voor"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1548,17 +1539,17 @@ msgstr ""
"Met hierdie sekuriteitsvlak word toegang na lêers op die Windows partisie "
"vernou na slegs die administrateur"
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n leë floppie in aandrywer %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1569,12 +1560,12 @@ msgstr ""
"\n"
"Wil u werklik nou eindig?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Geluk"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Herlaai"
@@ -1711,6 +1702,27 @@ msgid ""
"Exit"
msgstr "Verlaat"
+#~ msgid "CD-ROM"
+#~ msgstr "CDROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE Werkstasie"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "'n Werkstasie"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Die K-werkskermomgewing (KDE), die basiese grafiese omgewing met 'n "
+#~ "versameling bygaande hulpprogramme"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Herlaaistelsel word voorberei..."
diff --git a/perl-install/install/share/po/am.po b/perl-install/install/share/po/am.po
index e44b830a4..c2881c008 100644
--- a/perl-install/install/share/po/am.po
+++ b/perl-install/install/share/po/am.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2004-06-01 03:36+0100\n"
"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
"Language-Team: Amharic <am-translate@geez.org>\n"
@@ -81,170 +81,165 @@ msgid ""
msgstr ""
#: any.pm:162
-#, c-format
-msgid "CD-ROM"
-msgstr "ሲዲ-ሮም"
-
-#: any.pm:163
#, fuzzy, c-format
msgid "Network (HTTP)"
msgstr "መረብ"
-#: any.pm:164
+#: any.pm:163
#, fuzzy, c-format
msgid "Network (FTP)"
msgstr "መረብ"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "ዶሴ"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, fuzzy, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "መረጃ በ%s መጠቀሚያ ፕሮግራም ላይ"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr ""
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr ""
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -289,7 +284,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "መረብ"
@@ -339,7 +334,7 @@ msgstr "በመትከል ላይ"
msgid "Configuration"
msgstr "ስየማ"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -361,22 +356,22 @@ msgstr "መረቡን በማቀራረብ ላይ"
msgid "Bringing down the network"
msgstr "መረቡን በማለያየት ላይ"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "የተሻሻለ ዊድጌት ፍጠር"
@@ -421,34 +416,34 @@ msgstr ""
msgid "No description"
msgstr "መግለጫ"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "ስህተት ተፈጥሯል"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr ""
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "%s አልተገኘም"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "የ%s ጥቅል በመትከል ላይ"
@@ -527,33 +522,33 @@ msgstr "የፋይል መሳሪያዎች"
msgid "Editors, shells, file tools, terminals"
msgstr ""
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "እድገት"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "ማስረጃ"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr ""
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -684,9 +679,9 @@ msgid "Graphical Environment"
msgstr ""
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr ""
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "የቅርብ መረብ ምርጫ"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -765,63 +760,51 @@ msgid "A lightweight fast graphical environment"
msgstr ""
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "ሰሌዳ"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr ""
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, fuzzy, c-format
msgid "Utilities"
msgstr "ፊሊፒንስ"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, fuzzy, c-format
msgid "SSH Server"
msgstr "ስለተጠሪ መረጃ"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, fuzzy, c-format
msgid "Webmin"
msgstr "ዌብ-ካም"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, fuzzy, c-format
msgid "Webmin Remote Configuration Server"
msgstr "ቀዳሚ ተጠሪ ይጠቀም"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, fuzzy, c-format
msgid "Network Utilities/Monitoring"
msgstr "Name=መረብ"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "<b>የMageia ባለሞያ</b>"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, fuzzy, c-format
msgid "Wizards to configure server"
msgstr "የባሕር-መዝገብ እሴት '%s' ወደ '%s' እንደገና መሰየም አልተቻለም።"
@@ -833,7 +816,7 @@ msgid ""
"Continue at your own risk."
msgstr ""
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -870,7 +853,7 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "የጥቅል ቡድን ምርጫ"
@@ -1067,36 +1050,36 @@ msgstr " ይቀራል"
msgid "(estimating...)"
msgstr "በግምት"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d ጥቅሎች"
msgstr[1] "%d ጥቅሎች"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "ማጠቃለያ"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "ለውጥ"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "አልተስተካከለም"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1105,7 +1088,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1181,12 +1164,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDEን በማስተካከል ላይ"
#: steps_interactive.pm:354
@@ -1349,7 +1332,7 @@ msgstr "Post-install configuration"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "አሻሻዎች"
@@ -1373,7 +1356,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "ወደ መጀመሪያው መልስ"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1387,113 +1380,113 @@ msgid ""
msgstr ""
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s %s ላይ ነው"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "ሀርድዌር"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "የድምፅ ካርድ"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "የISA ድምጽ ካርድ አለዎት?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "ንድፋዊ እይታ"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "መረብ እና ኢንተርኔት"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "ወኪሎች"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "ተስተካክሏል"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "የደህንነት ደረጃ"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "የእሳት ግድግዳ"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "መስራት ጀምሯል"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "መስራት አቁሟል"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "ተከላ በማዘጋጀት ላይ"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr ""
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1501,12 +1494,12 @@ msgid ""
"Do you really want to quit now?"
msgstr ""
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "እንኳን ደስ ያለዎ!"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "እንደገና ጀምር"
@@ -1643,6 +1636,16 @@ msgid ""
"Exit"
msgstr "ውጣ"
+#~ msgid "CD-ROM"
+#~ msgstr "ሲዲ-ሮም"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "ሰሌዳ"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "አስጀማሪ በማዘጋጀት ላይ..."
diff --git a/perl-install/install/share/po/ar.po b/perl-install/install/share/po/ar.po
index eea6702e3..00dc2f14a 100644
--- a/perl-install/install/share/po/ar.po
+++ b/perl-install/install/share/po/ar.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drakx_install\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2011-05-19 13:12+0000\n"
"Last-Translator: salim salim <almusalimalmusalimah@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -89,107 +89,102 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "القرص المدمج"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "الشبكة (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "الشبكة (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "الشبكة (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "مسار المرآة؟"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "يجب أن يبدأ المسار بـ http:// أو بـ ftp://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "جاري الاتصال بموقع %s للحصول على قائمة بالمرايا المتوفرة..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "فشل الاتصال بموقع %s للحصول على قائمة بالمرايا المتوفرة"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "اختر مرآة لتحصيل الحزم"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "تثبيت NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "فضلا أدخل اسم المضيف والدليل لوسائط NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "اسم المضيف غير موجود"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "يجب أن يبدأ الدليل بـ \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "اسم مضيف نقطة وصل NFS ؟"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "الدليل"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "إضافي"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "لم يمكن العثور على ملف لائحة الحزم على هذه المرآة. تأكد من صحة الموقع."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "مخزن Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "مخزن Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "مخزن Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -198,22 +193,22 @@ msgstr ""
"بعض قطع العتاد في جهازك تحتاج بعض المكتبات الغير حرة لتتمكن التعاريف الحرة "
"من العمل."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "يجب أن تفعل \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" يحتوي على مختلف مكونات النظام وتطبيقاته"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" يحتوي على برمجيات غير حرة. \n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -222,7 +217,7 @@ msgstr ""
"يحتوى أيضا على بعض المكتبات الضرورية لتشغيل قطع عتاد معينة ( على سبيل "
"المثال: كروت الشاشة ATI/AMD، بعض كروت الشبكة، بعض كروت RAID، ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -231,33 +226,33 @@ msgstr ""
"\"%s\" يحتوى على برمجيات لا يمكن إعادة نشرها في جميع بقاع العالم بسبب "
"براءات الاختراع. "
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "يحتوي أيضا على برمجيات من \"%s\" تم إعادة بنائها بإمكانيات إضافية."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "هنا يمكنك تفعيل وسائط أكثر إن أردت."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "هذا الوسيط يوفر تحديثات للبرمجيات للوسيط \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "جاري البحث عن الحزم المثبتة مسبقا..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "جاري العثور على الحزم التي يمكن ترقيتها... "
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "جاري إزالة الحزم قبيل ترقيتها"
@@ -306,7 +301,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "الشبكة"
@@ -356,7 +351,7 @@ msgstr "التثبيت"
msgid "Configuration"
msgstr "الضبط"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "عليك أيضا تهيئة %s"
@@ -380,22 +375,22 @@ msgstr "جاري تشغيل الشبكة"
msgid "Bringing down the network"
msgstr "جاري إغلاق الشبكة"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "انتظر رجاء، جاري جلب الملف"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "لا يمكن إضافة وسيط"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "نسخ بعض الحزم إلى الأقراص لاستخدامها مستقبلاً"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "جاري النسخ"
@@ -441,7 +436,7 @@ msgstr ""
msgid "No description"
msgstr "وصف غير متوفر"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -450,27 +445,27 @@ msgstr ""
"بعض الحزم التي يتطلبها %s لا يمكن تثبيتها:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "حدث خطأ:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "حدث خطأ فادح: %s"
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "لا تسأل مرة أخرى"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "فشلت عملية تثبيت %d"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "فشل تثبيت الحزمة:"
@@ -552,33 +547,33 @@ msgstr "أدوات الطرفيات"
msgid "Editors, shells, file tools, terminals"
msgstr "محررات نصوص، صدفات، أدوات ملفات، طرفيات"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "تطوير"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "مكتبات تطوير خاصة بلغة C وC++، برامج وملفات مضمنة"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "توثيق"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "كتب ودلائل إرشادية حول لينكس والبرامج الحرة"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "القاعدة القياسية للينكس (LSB). دعم تطبيقات الطرف الثالث"
@@ -709,9 +704,9 @@ msgid "Graphical Environment"
msgstr "بيئات رسومية"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "محطة عمل كدي"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "محطة عمل"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -799,64 +794,51 @@ msgstr ""
"للمستخدمين العاديين"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "سطح مكتب مخصص"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"بيئة سطح مكتب كدي، البيئة الرسومية الأساسية مع مجموعة من الأدوات المصاحبة"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "أسطح مكتب رسومية أخرى"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Icewm، Window Maker، Enlightenment، Fvwm، إلخ"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "أدوات"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "خادم SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "خادم الضبط البعيد Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "وسائل الشبكة/المراقبة"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "أدوات مراقبة، محاسبة عمليات، tcpdump، nmap، ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "مرشدو ماجيا"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "مرشدو ضبط الخادم"
@@ -870,7 +852,7 @@ msgstr ""
"حدث خطأ ولا أعرف كيف أتعامل معه جيدأ. \n"
"تابع على مسؤوليتك."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -913,7 +895,7 @@ msgstr ""
"%s. إذا حدث ذلك، فيمكنك تجربة التثبيت النصي كبديل. للقيام بذلك،\n"
"اضغط `F1' عند الإقلاع من القرص المدمج، ثم اكتب `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "انتقاء الوسائط"
@@ -1110,7 +1092,7 @@ msgstr "الوقت المتبقي:"
msgid "(estimating...)"
msgstr "(حساب تقديري...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1121,22 +1103,22 @@ msgstr[3] "%d حزم"
msgstr[4] "%d حزم"
msgstr[5] "%d حزم"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "ملخص"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "اضبط"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "غير مضبوط"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1145,7 +1127,7 @@ msgstr ""
"تم العثور على وسائط التثبيت التالية.\n"
"إن كنت تريد تخطي بعضها، فيمكنك إلغاء انتقائها الآن."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1156,7 +1138,7 @@ msgstr ""
"لديك الخيار بنسخ محتويات الأقراص المدمجة إلى قرصك الصلب قبل التثبيت.\n"
"حيئذ، سيكمل التثبيت من القرص الصلب وستبقى الحزم متوفرة حتى يثبت النظام كاملا."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "نسخ الأقراص كاملة"
@@ -1238,12 +1220,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "ضبط IDE"
#: steps_interactive.pm:354
@@ -1413,7 +1395,7 @@ msgstr "ضبط ما بعد التثبيت"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "تأكد رجاء من وجود وسائط وحدات التحديث في محرك الأقراص %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "التحديثات"
@@ -1437,7 +1419,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "لا يمكن إضافة وسيط"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "أعد المحاولة"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1459,96 +1451,96 @@ msgstr ""
"هل تريد تثبيت هذه التحديثات؟"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s على %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "العتاد"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "بطاقة الصوت"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "هل لديك بطاقة صوت ISA؟"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr "شغّل \"alsaconf\" أو \"sndconfig\" بعد التّثبيت لضبط بطاقة الصّوت"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "لم يتم التعرف على أي بطاقة صوت. حاول تشغيل \"harddrake\" بعد التثبيت"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "الواجهة الرسومية"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "الشبكة والإنترنت"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "الخوادم الوسيطة"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "تم ضبطه"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "مستوى الأمن"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "جدار ناري"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "مفعلة"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "معطلة"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "لم تقم بضبط خادم (X). هل أنت متأكد أنك تريد ذلك؟"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "تحضير برنامج بدء التشغيل الأولي..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "كن صبورا، ستستغرق العملية بعض الوقت..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1557,17 +1549,17 @@ msgstr ""
"في هذا المستوى الأمني، الوصول إلى الملفات في قسم وندوز سيكون مقصوراً على "
"المدير."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "أدخل قرصا مرنا فارغا في محرك الأقراص %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "إنشاء قرص مرن للتثبيت الآلي..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1578,12 +1570,12 @@ msgstr ""
"\n"
"هل تريد الخروج الآن حقا؟"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "تهانينا"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "إعادة اﻹقلاع"
@@ -1720,6 +1712,26 @@ msgid ""
"Exit"
msgstr "خروج"
+#~ msgid "CD-ROM"
+#~ msgstr "القرص المدمج"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "محطة عمل كدي"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "سطح مكتب مخصص"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "بيئة سطح مكتب كدي، البيئة الرسومية الأساسية مع مجموعة من الأدوات المصاحبة"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "تحضير محمل الإقلاع..."
diff --git a/perl-install/install/share/po/ast.po b/perl-install/install/share/po/ast.po
index 02f2f9b02..095eca60b 100644
--- a/perl-install/install/share/po/ast.po
+++ b/perl-install/install/share/po/ast.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:01+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Asturian (http://www.transifex.com/projects/p/mageia/language/"
@@ -93,88 +93,83 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Rede(HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Rede(FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Rede(NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "¿URL del espeyu?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "La URL tien d'entamar con ftp:// o http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Contautando col sitiu web de %s p'algamar la llista d'espeyos disponibles"
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Nun pudo coneutase col sitiu web de %s p'algamar la llista d'espeyos "
"disponibles"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Escueye un espeyu del qu'algamar los paquetes"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Configuración NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Introduz el nome de sirvidor y el direutoriu del to mediu NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Falta'l nome del sirvidor"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "El direutoriu tien qu'entamar con \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "¿Nome del sirvidor del montaxe NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Direutoriu"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Suplementariu"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -183,22 +178,22 @@ msgstr ""
"Nun pudo alcontrase'l ficheru hdlist nesti espeyu. Asegúrate que "
"l'allugamientu ye correutu."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Llanzamientu Core"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Llanzamientu Tainted"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Llanzamientu nonfree"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -207,22 +202,22 @@ msgstr ""
"Dél hardware de la to máquina necesita dalgún firmware non llibre pa que los "
"controladores de software llibre furrulen."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Deberíes habilitar \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" caltien delles pecies de los sistemes y les sos aplicaciones"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" caltien software non llibre.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -232,7 +227,7 @@ msgstr ""
"dalgunes gráfiques ATI/AMD, dalgunes tarxetes de rede, dalgunes tarxetes "
"RAID...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -241,34 +236,34 @@ msgstr ""
"\"%s\" caltien software que nun pue distribuyise en cada país pola mor de "
"patentes de software."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
"Tamién caltien software de \"%s\" reconstruyíu con capacidaes adicionales."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Equí pues habilitar más medios si quies."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Esti mediu apurre anovamientos de paquete pal mediu \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Guetando paquetes ya instalaos..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Alcontrando los paquetes a anovar..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Desaniciando paquetes enantes d'anovar..."
@@ -318,7 +313,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rede"
@@ -370,7 +365,7 @@ msgstr "Instalación"
msgid "Configuration"
msgstr "Configuración"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Tamién tien que formatease %s"
@@ -395,22 +390,22 @@ msgstr "Llevantando la rede"
msgid "Bringing down the network"
msgstr "Baxando la rede"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Por favor espera, recuperando ficheru"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "nun puede amestase'l preséu"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Copiando dalgunos paquetes nel discu pa usu futuru"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Copia en cursu"
@@ -457,7 +452,7 @@ msgstr ""
msgid "No description"
msgstr "Ensin descripción"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -466,27 +461,27 @@ msgstr ""
"Dellos paquetes solicitaos por %s nun puen instalase:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Hebo un fallu:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Hebo un fallu grave: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Nun entrugar más"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "Fallaron %d tresaiciones d'instalación"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Falló la instalación de paquetes:"
@@ -569,33 +564,33 @@ msgstr "Ferramientes pa la consola"
msgid "Editors, shells, file tools, terminals"
msgstr "Editores, shells, manipulación de ficheros, terminales"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Desendolcu"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Biblioteques de desendolcu C y C++, programes y ficheros *.h"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentación"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Llibros y aides sobro Linux y Software Llibre"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Sofitu d'aplicaciones de terceros"
@@ -726,9 +721,9 @@ msgid "Graphical Environment"
msgstr "Entornu gráficu"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Estación de trabayu KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Estación de trabayu"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -814,64 +809,50 @@ msgstr "Un entronu d'escritoriu rápidu y llixeru"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Escritoriu Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"L'escritoriu Plasma, l'entornu gráficu básicu con una coleición de "
-"ferramientes"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Otros entornos gráficos"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, etc"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilidaes"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Sirvidor SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Sirvidor de configuración remota Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Utilidaes/Supervisión de rede"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Ferramientes de supervisión, control de procesos, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Asistentes de Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Asistentes pa configurar el sirvidor"
@@ -885,7 +866,7 @@ msgstr ""
"Hebo un fallu y nun puede resolvese de mou adecuáu.\n"
"Sigui baxo'l to propiu riesgu."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -929,7 +910,7 @@ msgstr ""
"%s. De ser asina, puedes intentar una instalación de la triba testu.\n"
"Pa ello, calca 'F1' cuando anicie'l CDROM, ya introduz 'text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Esbilla de medios"
@@ -1127,29 +1108,29 @@ msgstr "Tiempu restante:"
msgid "(estimating...)"
msgstr "(estimando...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d paquete"
msgstr[1] "%d paquetes"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Resume"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configurar"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "non configuráu"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1158,7 +1139,7 @@ msgstr ""
"Alcontrarónse los medios d'instalación siguientes.\n"
"Si quies saltate dalgún d'ellos, pues deseleicionalos agora."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1171,7 +1152,7 @@ msgstr ""
"La mesma siguirá dende'l discu duru y los paquetes tarán disponibles una "
"vegada que'l sistema tea instaláu ensembre."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Copiar los CD por completu"
@@ -1255,12 +1236,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Configurando preseos IDE"
#: steps_interactive.pm:354
@@ -1436,7 +1417,7 @@ msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
"Por favor, asegúrate de que'l mediu d'anovamientu de módulos ta na unidá %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Anovamientos"
@@ -1460,7 +1441,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "nun puede amestase'l preséu"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Reintentalo"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1482,28 +1473,28 @@ msgstr ""
"¿Quies instalar los anovamientos?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s en %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Tarxeta de soníu"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "¿Tienes una tarxeta de soníu ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1512,70 +1503,70 @@ msgstr ""
"Usa \"alsaconf\" o \"sndconfig\" dempués de la instalación pa configurar la "
"to tarxeta de soníu"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nun se deteutó tarxeta de soníu. Preba \"harddrake\" dempués de la "
"instalación"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interface gráfica"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Redes ya Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxies"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "configuráu"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Nivel de seguridá"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Tornafueos"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "activáu"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "desactiváu"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "X Ensin configurar ¿De xuru que quies esto daveres?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Tresnando'l programa d'aniciu inicial..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Aposenta por favor, pues esto puede llevar un ratu."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1584,17 +1575,17 @@ msgstr ""
"Nesti nivel de seguridá, l'accesu a los ficheros na partición Windows ta "
"restrinxíu sólo al alministrador."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inxerta un disquete en blancu na unidá %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Criando'l disquete d'instalación automática"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1605,12 +1596,12 @@ msgstr ""
"\n"
"¿De xuru quies colar agora?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Felicidaes"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Reaniciar"
@@ -1746,3 +1737,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Colar"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Estación de trabayu KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Escritoriu Plasma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "L'escritoriu Plasma, l'entornu gráficu básicu con una coleición de "
+#~ "ferramientes"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/az.po b/perl-install/install/share/po/az.po
index 2ef6cc1f0..4134d9617 100644
--- a/perl-install/install/share/po/az.po
+++ b/perl-install/install/share/po/az.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-az\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-03-31 14:21+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@@ -87,170 +87,165 @@ msgid ""
msgstr ""
#: any.pm:162
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
#, fuzzy, c-format
msgid "Network (HTTP)"
msgstr "Şəbəkə %s"
-#: any.pm:164
+#: any.pm:163
#, fuzzy, c-format
msgid "Network (FTP)"
msgstr "Şəbəkə %s"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Mövcud əkslərin siyahısını almaq üçün %s səhifəsi ilə təmas qurulur..."
-#: any.pm:253
+#: any.pm:252
#, fuzzy, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "Mövcud əkslərin siyahısını almaq üçün %s səhifəsi ilə təmas qurulur..."
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Qovluq"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, fuzzy, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "%s, %s üstündə tapıla bilmir"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Qurulu olan paketlər yoxlanır..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Güncəllənəcək paketlar tapılır"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -299,7 +294,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Şəbəkə"
@@ -349,7 +344,7 @@ msgstr "Qurulur"
msgid "Configuration"
msgstr "Quraşdırma"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Eyni zamanda %s da şəkilləndirilməlidir"
@@ -374,22 +369,22 @@ msgstr "Şəbəkə fəallaşdırılır"
msgid "Bringing down the network"
msgstr "Şəbəkə dayandırılır"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "Təsbit etmə fəaliyyətdədir"
@@ -434,34 +429,34 @@ msgstr ""
msgid "No description"
msgstr "İzahat yoxdur"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Bir xəta oldu"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Ölümcül xəta yarandı: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "Qurulum bacarılmadı"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "%s paketi qurulur"
@@ -544,33 +539,33 @@ msgstr "Konsol Vasitələri"
msgid "Editors, shells, file tools, terminals"
msgstr "Editorlar, rəflər, fayl vasitələri, terminallar"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "İnkişaf"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C və C++ inkişaf kitabxanaları, proqramları və daxil ediləcək fayllar"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Sənədlər"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Linuks və sərbəst proqram tə'minatı haqqında Kitablar və Howtolar"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standartları Bazası. Üçüncü partiya tə'minat dəstəyi"
@@ -701,9 +696,9 @@ msgid "Graphical Environment"
msgstr "Qrafiki Mühit"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE iş stansiyası"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "İş Stansiyası"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -786,63 +781,51 @@ msgstr ""
"İstifadəçi dostu proqram və masa üstü ilə bərabər qrafiki ara üz vasitələri"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Masa üstü"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "KDE, əsas qrafiki ara üz və yardımçi proqramlar kolleksiyası"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Başqa qrafiki ara üzlər"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, vs."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Vasitələr"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH Vericisi"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, fuzzy, c-format
msgid "Webmin"
msgstr "Veb kamerası"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, fuzzy, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Terminal Server Quraşdırılması"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, fuzzy, c-format
msgid "Network Utilities/Monitoring"
msgstr "Şəbəkə İzlənməsi"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "<b>Mageia Store</b>"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, fuzzy, c-format
msgid "Wizards to configure server"
msgstr "\"%s\" çapçısı quraşdırıla bilmədi!"
@@ -856,7 +839,7 @@ msgstr ""
"Bir xəta oldu, yalnız necə düzəldiləcəyi bilinmir.\n"
"Davam edin, riski sizə aitdir!"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -902,7 +885,7 @@ msgstr ""
"dəCDROMdan başlatdığınız zaman,\n"
" 'F1'ə basın və 'text' yazaraq enter'ə basın."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Paket Qruplarının Seçimi"
@@ -1099,35 +1082,35 @@ msgstr "Qalan müddət"
msgid "(estimating...)"
msgstr "Təxmini olaraq hesaplanır"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d paket"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "İcmal"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Qur"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "quraşdırılmayıb"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1136,7 +1119,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1212,12 +1195,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "İDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "İDE qapıları qurulur"
#: steps_interactive.pm:354
@@ -1390,7 +1373,7 @@ msgstr "Qurulum sonrası qurğular"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Yeniləmələr"
@@ -1414,7 +1397,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Geri yüklə"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1437,28 +1430,28 @@ msgstr ""
"Yeniləmələri qurmaq istəyirsiniz ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%2$s üstündə %1$s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Avadanlıq"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Səs kartı"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Heç İSA səs kartınız var?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, fuzzy, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1466,85 +1459,85 @@ msgid ""
msgstr ""
"Qurulumdan sonra səs kartınızı qurğulamaq üçün \"sndconfig\" əmrini icra edin"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Səs kartı tapılmadı. Qurulumdan sonra \"harddrake\"ni işə salın"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Qrafiki ara üz"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Şəbəkə və İnternet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Vəkil vericiləri"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "quraşdırılıb"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Təhlükəsizlik Səviyyəsi"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Atəş Divarı"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "fəal"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "qeyri-fəal"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Siz X-i quraşdırmadınız. Bundan əminsinizmi?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Qurulum hazırlanır"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1555,12 +1548,12 @@ msgstr ""
"\n"
"Həqiqətən də çıxmaq istəyirsiniz?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Təbriklər"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Yenidən başlat"
@@ -1697,6 +1690,25 @@ msgid ""
"Exit"
msgstr "Çıxış"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE iş stansiyası"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Masa üstü"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr "KDE, əsas qrafiki ara üz və yardımçi proqramlar kolleksiyası"
+
+#~ msgid "IDE"
+#~ msgstr "İDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Açılış yükləyici hazırlanır"
diff --git a/perl-install/install/share/po/be.po b/perl-install/install/share/po/be.po
index 55fcf8f48..25f47afd0 100644
--- a/perl-install/install/share/po/be.po
+++ b/perl-install/install/share/po/be.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -81,170 +81,165 @@ msgid ""
msgstr ""
#: any.pm:162
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
#, fuzzy, c-format
msgid "Network (HTTP)"
msgstr "Сетка"
-#: any.pm:164
+#: any.pm:163
#, fuzzy, c-format
msgid "Network (FTP)"
msgstr "Сетка"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, fuzzy, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Сувязь з люрам для атрымання спісу даступных пакетаў"
-#: any.pm:253
+#: any.pm:252
#, fuzzy, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "Сувязь з люрам для атрымання спісу даступных пакетаў"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Выбар люстра для атрымання пакетаў"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Каталёг"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, fuzzy, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Не знойздены праграмы\n"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, fuzzy, c-format
msgid "Looking at packages already installed..."
msgstr "Вы не можаце адмяніць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Пошук пакетаў для абнаўлення"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -289,7 +284,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "ФС"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Сетка"
@@ -339,7 +334,7 @@ msgstr "Усталёўваем"
msgid "Configuration"
msgstr "Канфігурацыя"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -363,22 +358,22 @@ msgstr "Далучэнне да сеткі"
msgid "Bringing down the network"
msgstr "Адлучэнне ад сеткі"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "Стварэньне меню ўжо запушчана"
@@ -423,36 +418,36 @@ msgstr ""
msgid "No description"
msgstr "Апісаньне адсутнічае"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Адбылася памылка"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, fuzzy, c-format
msgid "A fatal error occurred: %s."
msgstr ""
"ПАМЫЛАЧКА АТРЫМАЛАСЯ: \n"
"%s"
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "Усталяванне SILO"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Усталяванне пакету %s"
@@ -533,33 +528,33 @@ msgstr "Кансольныя інструментальныя сродкі"
msgid "Editors, shells, file tools, terminals"
msgstr "Рэдактары, абалонкі, тэрміналы"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Распрацоўка"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Бібліятэкі і праграмы для распрацоўкі на С і С++"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Дакумэнтацыя"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "нігі і Howto па Linux і Free Software"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr ""
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -691,7 +686,7 @@ msgstr "Абалонка"
#: share/meta-task/compssUsers.pl:152
#, fuzzy, c-format
-msgid "KDE Workstation"
+msgid "Plasma Workstation"
msgstr "Канфігурацыя"
#: share/meta-task/compssUsers.pl:153
@@ -781,65 +776,51 @@ msgstr ""
"інструментальных сродкаў"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Працоўны стол"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"The K Desktop Environment - асноўнае графічнае асяродзе з калекцыяй "
-"інструментальных сродкаў"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Іншыя графічныя Працоўныя сталы"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Карыснасьці"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, fuzzy, c-format
msgid "SSH Server"
msgstr "NIS сэервер:"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, fuzzy, c-format
msgid "Webmin"
msgstr "Прылады"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, fuzzy, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Сістэмнае адміністраваньне"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, fuzzy, c-format
msgid "Network Utilities/Monitoring"
msgstr "Канфігурацыя сеткі"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "Цэнтар кіраваньня"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, fuzzy, c-format
msgid "Wizards to configure server"
msgstr "Немагчыма выдаліць \"%s\": %s."
@@ -853,7 +834,7 @@ msgstr ""
"Узнікла памылка, якую не атрымліваецца карэктна апрацаваць,\n"
"таму працягвайце на сваю рызыку."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -898,7 +879,7 @@ msgstr ""
"праграму ўсталявання. Для гэтага націсніце ‛F1’ у час загрузкі, а потым\n"
"набярыце ‛text’ і націсніце <ENTER>."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Выбар групы пакетаў"
@@ -1096,36 +1077,36 @@ msgstr "Засталося часу "
msgid "(estimating...)"
msgstr "Чакаецца"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d пакетаў"
msgstr[1] "%d пакетаў"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Агульныя зьвесткі"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Настройка"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, fuzzy, c-format
msgid "not configured"
msgstr "Настроіць панэль"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1134,7 +1115,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1210,12 +1191,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Настройка IDE"
#: steps_interactive.pm:354
@@ -1384,7 +1365,7 @@ msgstr "Настройка пасля ўсталявання"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, fuzzy, c-format
msgid "Updates"
msgstr "Аднавіць"
@@ -1408,7 +1389,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Аднавіць"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1422,113 +1413,113 @@ msgid ""
msgstr ""
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s на %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Абсталяваньне"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, fuzzy, c-format
msgid "Sound card"
msgstr "Праграма гуказапісу"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, fuzzy, c-format
msgid "Do you have an ISA sound card?"
msgstr "Ці ёсць у вас іншы?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, fuzzy, c-format
msgid "Graphical interface"
msgstr "Запуск X пры старце сістэмы"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, fuzzy, c-format
msgid "Network & Internet"
msgstr "Сеткавы інтэрфейс"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, fuzzy, c-format
msgid "Proxies"
msgstr "Проксі"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, fuzzy, c-format
msgid "configured"
msgstr "Настроіць панэль"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Узровень бясьпекі"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "выключаны"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, fuzzy, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Меню не было захавана. Ці сапраўды вы жадаеце выйсці?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Падрыхтоўка ўсталяваньня"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Устаўце дыскету ў дыскавод %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Стварэнне дыскеты для ўсталявання"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1538,12 +1529,12 @@ msgstr ""
"Некаторыя крокі не завершаны.\n"
"Вы сапраўды жадаеце выйсці зараз?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, fuzzy, c-format
msgid "Congratulations"
msgstr "Прыміце віншаванні!"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Перазагрузка"
@@ -1680,6 +1671,28 @@ msgid ""
"Exit"
msgstr "Выход"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#, fuzzy
+#~ msgid "KDE Workstation"
+#~ msgstr "Канфігурацыя"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Працоўны стол"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "The K Desktop Environment - асноўнае графічнае асяродзе з калекцыяй "
+#~ "інструментальных сродкаў"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Падрыхтоўка загрузчыка"
diff --git a/perl-install/install/share/po/bg.po b/perl-install/install/share/po/bg.po
index f0c0f4349..e29032b10 100644
--- a/perl-install/install/share/po/bg.po
+++ b/perl-install/install/share/po/bg.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 04:07+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Bulgarian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -89,171 +89,166 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr ""
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr ""
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Свързване с %s web сайт за получаване на списъка с налични огледални "
"сървъри..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Изберете огледален сървър,от който да получите пакетите"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Директория"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr ""
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Търси във вече инсталираните пакети..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Търся пакети за обновяване"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -303,7 +298,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Мрежа"
@@ -353,7 +348,7 @@ msgstr ""
msgid "Configuration"
msgstr "Настройка"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Вие трябва също да форматирате %s"
@@ -378,22 +373,22 @@ msgstr "Включвам мрежата"
msgid "Bringing down the network"
msgstr "Изключване на мрежата"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Копиране в прогрес"
@@ -438,34 +433,34 @@ msgstr ""
msgid "No description"
msgstr "Без описание"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr ""
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Получи се непоправима грешка: %s"
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Без въпроси отново"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d инсталационни транзакции пропаднаха"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -546,33 +541,33 @@ msgstr "Конзолни инструменти"
msgid "Editors, shells, file tools, terminals"
msgstr "Редактори, шелове, файлови инстрименти, терминали"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Разработка"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Библиотеки за разработка на C и C++, програми и include файлове"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Документация"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Книги и HOTWO-та за Linux и свободния софтуер"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr ""
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -703,9 +698,9 @@ msgid "Graphical Environment"
msgstr "Графична среда"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE работна станция"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Работна станция"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -788,62 +783,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Други графични desktop-и"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Помощни програми"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH Сървър"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr ""
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr ""
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr ""
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr ""
@@ -857,7 +840,7 @@ msgstr ""
"Появи се грешка, но не знам как да се справя с нея деликатно.\n"
"Можете да продължите на свой риск."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -901,7 +884,7 @@ msgstr ""
"на %s. Ако се появи проблем опитайте с текстовата инсалация. Зацелта,\n"
"натиснете 'F1', когато стартирате от CDROM и въведете 'теьт'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1100,36 +1083,36 @@ msgstr ""
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] ""
msgstr[1] ""
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Обобщение"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Настройка"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "не е конфигуриран"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1138,7 +1121,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1214,12 +1197,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Настройка на IDE"
#: steps_interactive.pm:354
@@ -1384,7 +1367,7 @@ msgstr "След инсталационна настройка"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Обновяване"
@@ -1408,7 +1391,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Повторен опит"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1422,113 +1415,113 @@ msgid ""
msgstr ""
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s на %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Хардуер"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Звукова карта"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Имате ли ISA звукова карта?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Няма открита звукова карта. Опитайте \"harddrake\" след инсталацията"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Графичен интерфайс"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Мрежа и интернет"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr ""
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr ""
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Ниво на защита"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Защитна стена"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "активирано"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "изключен"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Вие не сте конфигурирали X. Сигурни ли сте, че искате това?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Сложете празна дискета в устройство %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Подготвям дискета с автоматична инсталация"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1539,12 +1532,12 @@ msgstr ""
"\n"
"Наистина ли искате да излезете сега ?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Поздравления"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Престартира"
@@ -1680,3 +1673,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Излез"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE работна станция"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/bn.po b/perl-install/install/share/po/bn.po
index ba28fead6..f58f3e75a 100644
--- a/perl-install/install/share/po/bn.po
+++ b/perl-install/install/share/po/bn.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX HEAD\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2007-02-19 00:44+0600\n"
"Last-Translator: Tisa Nafisa <tisa_nafisa@yahoo.com>\n"
"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
@@ -91,169 +91,164 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "সিডি-রম"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "নেটওয়ার্ক (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "নেটওয়ার্ক (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "নেটওয়ার্ক (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "mirror এর ইউ-আর-এল?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "ইউআরএল অবশ্যই ftp:// অথবা http:// দিয়ে শুরু হবে"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "উপস্থিত মিররের তালিকার জন্য %s-এ সংযুক্ত করা হচ্ছে..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "উপস্থিত মিররের তালিকার জন্য %s-এ যোগাযোগ করতে ব্যর্থ হয়েছে..."
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "আপনি একটি মিরর পছন্দ করুন যেখান থেকে প্যাকেজগুলি নেবেন"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS সেটআপ"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "অনুগ্রহ করে আপনার NFS মিডিয়ার হোস্টনাম এবং ডিরেক্টরী প্রবেশ করান"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "হোস্টনাম পাওয়া যাচ্ছে না"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "ডিরেক্টরী অবশ্যই \"/\" দিয়ে শুরু হবে"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "NFS মাউন্টের জন্য হোস্টনাম ?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "ডিরেক্টরি"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "সম্পুরক"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "এই mirror এ কোন hdlist ফাইল পাওয়া যাচ্ছে না"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, fuzzy, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "\"%s\" মাধ্যমের সব প্যাকেজ এড়িয়ে যাও"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "যে সমস্থ প্যাকেজ ইনস্টল হয়ে আছে সেগুলি পর্যবেক্ষন করা হচ্ছে..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "আপগ্রেড করার জন্য প্যাকেজ খোঁজা হচ্ছে..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "আপগ্রেডের পূর্বে প্যাকেজ মুছে ফেলা হচ্ছে..."
@@ -302,7 +297,7 @@ msgstr "এফ-টি-পি"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "নেটওয়ার্ক"
@@ -352,7 +347,7 @@ msgstr " ইনস্টলেশন"
msgid "Configuration"
msgstr "কনফিগারেশন"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "আপনাকে অবশ্যই %s-ও ফরম্যাট করতে হবে"
@@ -376,22 +371,22 @@ msgstr "নেটওয়ার্ককে চালু করা হচ্ছে
msgid "Bringing down the network"
msgstr "নেটওয়ার্ককে বন্ধ করা হচ্ছে"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "ভবিষ্যতে ব্যবহারের জন্য ডিস্কে কিছু প্যাকেজ কপি করা হচ্ছে"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "কপি সম্পন্ন হচ্ছে"
@@ -436,34 +431,34 @@ msgstr ""
msgid "No description"
msgstr "বিবরণ নেই"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "একটি ত্রুটি সম্পাদিত হয়েছে"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "একটি মারাত্মক ত্রুটি ঘটেছে: %s"
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "ইনস্টলেশন বিফল হয়েছে"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "%s প্যাকেজ সমূহ ইনস্টল করা হচ্ছে"
@@ -545,33 +540,33 @@ msgstr "কনসল টুল"
msgid "Editors, shells, file tools, terminals"
msgstr "এডিটর, শেল, ফাইল টুল, টার্মিনাল সমূহ"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "ডেভলপমেন্ট"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C এবং C++ ডেভলপমেন্টের লাইব্রেরী, প্রগ্রাম এবং include ফাইলসমূহ"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "ডকুমেন্টেশন"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "লিনাক্স এবং ফ্রী সফটওয়ার সংক্রান্ত বই ও হাউটু (HOWTO)"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "লিনাক্সের সাধারণ আধার। তৃতীয়পক্ষ এপ্লিকেশন সমূহের সাপোর্ট"
@@ -702,9 +697,9 @@ msgid "Graphical Environment"
msgstr "গ্রাফিকাল পরিবেশ"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE ওয়ার্কষ্টেশন"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "ওয়ার্কষ্টেশন"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -787,63 +782,51 @@ msgstr ""
"ব্যবহারকারীর বন্ধুসূলভ কিছু এপ্লিকেশন এবং ডোক্সটপ টুলের সমন্বয়ে একটি গ্রাফিকাল পরিবেশ"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "IceWm ডেস্কটপ"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "K ডেক্সটপ, কিছু সহযোগীমূলক টুলের সমন্বয়ে একটি সাধারণ গ্রাফিকাল পরিবেশ"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "অন্যান্য গ্রাফিকাল ডেক্সটপ"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Enlightenment, Fvwm, ইত্যাদি"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "ইউটিলিটিসমূহ"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH সার্ভিস"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "ওয়েবমিন"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "ওয়েবমিন দূরবর্তী কনফিগারেশন সার্ভার"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "নেটওয়ার্ক ইউটিলিটিসমূহ/পর্যবেক্ষণ"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "পর্যবেক্ষণ টুলসমূহ, হিসাবরক্ষণ প্রসেস করে, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia উইজার্ডসমূহ"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "সার্ভার কনফিগার করার জন্য উইজার্ডসমূহ"
@@ -858,7 +841,7 @@ msgstr ""
"কিভাবে এটা সন্দরভাবে হ্যান্ডল করবো।\n"
"আপনি নিজের ঝুঁকিতে অগ্রসর হতে পারেন।"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -904,7 +887,7 @@ msgstr ""
"জন্য,\n"
"যখন সিডিরম থেকে বুট হবে তখন `F1' চাপুন, তারপর `text' লিখুন।"
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "প্যাকেজ গ্রুপ নির্বাচন"
@@ -1104,29 +1087,29 @@ msgstr "সময় বাকী আছে"
msgid "(estimating...)"
msgstr "নির্ধারণ চলছে"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d প্যাকেজ সমূহ"
msgstr[1] "%d প্যাকেজ সমূহ"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "সারাংশ"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "কনফিগার"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "কনফিগার করা হয়নি"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1135,7 +1118,7 @@ msgstr ""
"নিম্নলিখিত ইনস্টলেশন মিডিয়া পাওয়া গেছে।\n"
"যদি আপনি এগুলোর মধ্যকার কিছু এড়িয়ে যেতে চান, তাহলে এখন সেগুলোকে অনির্বাচিত করুন।"
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1147,7 +1130,7 @@ msgstr ""
" এরপর হার্ডডিস্ক থেকে ইনস্টলেশন চলতে থাকবে এবং সিস্টেম সম্পূর্ন ইনস্টলেশনের পরও "
"প্যাকেজগুলো রয়ে যাবে।"
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "CD গুলো সম্পুর্ন কপি করো "
@@ -1223,12 +1206,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE কনফিগারেশন চলছে"
#: steps_interactive.pm:354
@@ -1401,7 +1384,7 @@ msgstr "ইনস্টলের পরের কনফিগারেশন"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "অনুগ্রহ করে নিশ্চিত করুন যে সাম্প্রতিক মডিউলগুলো %s ড্রাইভ এ আছে"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "আপডেট"
@@ -1425,7 +1408,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "পুনরায় চেষ্টা করো"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1447,28 +1440,28 @@ msgstr ""
"আপনি কি ইনস্টল আপডেট করতে চান?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s -এ %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "হার্ডওয়্যার"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "সাউন্ডকার্ড"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "আপনার কি একটি ISA সাউন্ড কার্ড আছে?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1477,68 +1470,68 @@ msgstr ""
"ইনস্টল শেষ হবার পরে সাউন্ড কার্ড কনফিগার করার জন্য \"alsaconf\" অথবা \"sndconfig"
"\" চালাও"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "কোন সাউন্ডকার্ড সনাক্ত হয়নি, ইনস্টলের পরে \"harddrake\" দিয়ে চেষ্টা করুন"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "গ্রাফিকাল ইন্টারফেস"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "নেটওয়ার্ট এবং ইন্টারনেট"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "প্রক্সিসমূহ"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "কনফিগার করা হয়েছে"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "সিকউরিটি লেভেল"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "ফায়ারওয়াল"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "সক্রিয় হয়েছে"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "অকার্যকর করা হয়েছে"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "আপনি X কনফিগার করেননি। আপনি কি নিশ্চিত এরকমটি চান?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "ইনস্টলেশনের প্রস্তুতি চলছে"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1546,17 +1539,17 @@ msgid ""
msgstr ""
"এই নিরাপত্তা লেভেলে, উইন্ডোজ পার্টিশনের ফাইলে প্রবেশ শুধুমাত্র অ্যাডমিনিস্ট্রেটরের আছে।"
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s ড্রাইভে একটি ফাঁকা ফ্লপি ঢোকান"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "সয়ং ইনস্টল ফ্লপি তৈরী করা হচ্ছে..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1567,12 +1560,12 @@ msgstr ""
"\n"
"আপনি কি এখন বের হতে চান?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "স্বাগতম"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "রিবুট"
@@ -1709,6 +1702,25 @@ msgid ""
"Exit"
msgstr "বাহির"
+#~ msgid "CD-ROM"
+#~ msgstr "সিডি-রম"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE ওয়ার্কষ্টেশন"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "IceWm ডেস্কটপ"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr "K ডেক্সটপ, কিছু সহযোগীমূলক টুলের সমন্বয়ে একটি সাধারণ গ্রাফিকাল পরিবেশ"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Bootloader প্রস্তুত করা হচ্ছে..."
diff --git a/perl-install/install/share/po/br.po b/perl-install/install/share/po/br.po
index 1c0b448d8..eb62a9dd5 100644
--- a/perl-install/install/share/po/br.po
+++ b/perl-install/install/share/po/br.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX 10.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2014-11-19 20:55+0100\n"
"Last-Translator: Thierry Vignaud <thierry.vignaud.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -84,86 +84,81 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Rouedad (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Rouedad (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Rouedad (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL ar melezour ?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Dao en deus an URL kregiñ gant ftp:// pe http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "O taremprediñ lec'hienn %s evit kaout roll ar melezourioù hegerz ..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Sac'het en ur zaremprediñ lec'hienn %s evit kaout roll ar melezourioù hegerz "
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Dibabit ur melezour da dapout ar pakadoù diwarnañ"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Kefluniadur NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Roit anv ostiz ha renkell ho media NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Mank ar ra anv an ostiz"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Dao en eus anv ur renkell kregiñ gant ur « / »"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Anv ostiz ar marc'hañ NFS ?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Renkell"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "A-gresk"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -172,84 +167,84 @@ msgstr ""
"N’em eus ket kavout ur roll pakadoù e-barzh ar melezour-mañ. Kit da wiriañ "
"al lec'hiadur-mañ zo mad."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Gwelloc'h e vefe deoc'h bevaat « %s »"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, fuzzy, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Tremen e-biou pep pakad eus ar vediom « %s »"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "O klask ar pakadoù staliet ..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "O klask ar pakadoù da vremanaat ..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "O tilemel ar pakadoù a-raok bremanaat ..."
@@ -299,7 +294,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rouedad"
@@ -349,7 +344,7 @@ msgstr "O staliañ"
msgid "Configuration"
msgstr "Kefluniadur"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Ret eo deoc'h furmadiñ %s ivez"
@@ -371,22 +366,22 @@ msgstr "O lañsañ ar rouedad"
msgid "Bringing down the network"
msgstr "O tizenaouiñ ar rouedad"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Gortozit mar plij, o tigas ar restr"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "n'hell ket bet ouzhpennet ar mediom"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Oc'h eilañ ur bern pakad hag a vo bet implijet diwezhatoc'h"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Oc'h eilañ"
@@ -431,7 +426,7 @@ msgstr ""
msgid "No description"
msgstr "Deskrivadur ebet"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -440,27 +435,27 @@ msgstr ""
"N’em eus ket gallet staliañ un darn pakad goulennet gant %s :\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Ur fazi zo bet :"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Degouezhet ez eus ur fazi sac'hus : %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Na c'houlenn ket adarre"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d gra zo bet sac'het"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Sac'het eo bet staliañ ar pakadoù :"
@@ -541,33 +536,33 @@ msgstr "Ostilhoù letrin"
msgid "Editors, shells, file tools, terminals"
msgstr "Aozerien, shelloù, ostilhoù restr, termenelloù"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Diorren"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Teuliadur"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -698,9 +693,9 @@ msgid "Graphical Environment"
msgstr "Endeo grafikel"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Post burevek KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Post labour"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -780,62 +775,50 @@ msgstr "Endeo grafikel"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Burev Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "An Endro Burev K gant hec’h ostilhoù"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Burevioù c'hrafek all"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, hag all"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Mavegoù"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Servijer SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Servijer Webmin ar gefluniadur a-bell"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Ostilhoù ar rouedad/diwall"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Skoazellerien Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Skoazellerien evit kefluniañ ar servijer"
@@ -849,7 +832,7 @@ msgstr ""
"Degouezhet ez eus ur fazi, hogen n'ouzon ket e verañ naet.\n"
"Kendalc'hit war ho mar."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -886,7 +869,7 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Diuzadenn ar media"
@@ -1085,35 +1068,35 @@ msgstr "Amzer a chom :"
msgid "(estimating...)"
msgstr "(o vrasjediñ ...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakad"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Diverradenn"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Kefluniañ"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "n'eo ket kefluniet"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1122,7 +1105,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Eilañ tout ar CDoù"
@@ -1198,12 +1181,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Kefluniañ IDE"
#: steps_interactive.pm:354
@@ -1375,7 +1358,7 @@ msgstr "Kefluniadur goude staliañ"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Bremanaat"
@@ -1399,7 +1382,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "n'hell ket bet ouzhpennet ar mediom"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Adklask"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1420,28 +1413,28 @@ msgstr ""
"Mennout a rit staliañ anezho ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s war %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Periantel"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Kartenn gwelet"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Hag ur gartenn gwelet ISA hoc'h eus ?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1450,86 +1443,86 @@ msgstr ""
"Seveniñ « alsaconf » pe « sndconfig » goude staliañ evit kefluniañ ho "
"kartenn klevet"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"N'eus kartenn gwelet kavet ebet. Kargañ « harddrake » goude ar staliadur"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Ketal kevregañ"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Rouedad hag Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proksioù"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "kefluniet"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Live an surentez"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Moger tan"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "bevaatet"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "diweredekaet"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "N'eo ket kefluniet X. Ha fellout a ra deoc'h da vat ober an dra-mañ ?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "O prientiñ ar programm loc'hañ ..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Gortozit mar plij ; gellout a rafe bezañ hir ..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "O krouiñ ur bladennig staliañ emgefreek ..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1540,12 +1533,12 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremañ ?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Brav"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Adlañsañ"
@@ -1682,6 +1675,24 @@ msgid ""
"Exit"
msgstr "Kuitaat"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Post burevek KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Burev Plasma"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr "An Endro Burev K gant hec’h ostilhoù"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "O prientiñ ar c'harger loc'hañ ..."
diff --git a/perl-install/install/share/po/bs.po b/perl-install/install/share/po/bs.po
index 34b07e2fb..baf504811 100644
--- a/perl-install/install/share/po/bs.po
+++ b/perl-install/install/share/po/bs.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bs\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2006-09-16 10:33+0200\n"
"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
@@ -93,85 +93,80 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "sa CDROMa"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Mreža (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Mreža (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Mreža (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL mirrora?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL mora počinjati sa ftp:// ili http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Kontaktiram %s web stranicu da bih saznao listu dostupnih mirrora..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "Nisam uspio kontaktirati %s web stranicu radi liste dostupnih mirrora"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Podešavanje NFS-a"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Molim unesite ime računara i direktorij vašeg NFS medija"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Ime računara sa NFS serverom?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Direktorij"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -180,84 +175,84 @@ msgstr ""
"Ne mogu pronaći hdlist datoteku na ovom mirroru. Provjerite da li je "
"lokacija ispravna."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Tražim već instalirane pakete..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Pronalazim pakete za unaprjeđenje..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Uklanjam pakete prije unaprjeđenja..."
@@ -307,7 +302,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Mreža"
@@ -357,7 +352,7 @@ msgstr "Instalacija"
msgid "Configuration"
msgstr "Podešavanje"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Morate takođe formatirati i %s"
@@ -382,22 +377,22 @@ msgstr "Pokrećem mrežu"
msgid "Bringing down the network"
msgstr "Zaustavljam mrežu"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopiram neke pakete na disk radi buduće upotrebe"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopiranje u toku"
@@ -442,34 +437,34 @@ msgstr ""
msgid "No description"
msgstr "Bez opisa"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Došlo je do greške"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Došlo je do fatalne greške: %s"
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "Instalacija nije uspjela"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Instaliram paket %s"
@@ -552,33 +547,33 @@ msgstr "Alati za konzolu"
msgid "Editors, shells, file tools, terminals"
msgstr "Editori, shellovi, alati za datoteke, terminali"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Programiranje"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C i C++ biblioteke, programi i include datoteke"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentacija"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Knjige i howto-i na temu Linuxa i slobodnog softvera"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Podrška za programe trećih lica"
@@ -709,9 +704,9 @@ msgid "Graphical Environment"
msgstr "Grafičko okruženje"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE radna stanica"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Radna stanica"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -799,64 +794,51 @@ msgstr ""
"površinu"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "IceWm okruženje"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"K Desktop Environment, osnovno grafičko okruženje sa izborom pratećih alata"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Ostale grafičke okoline"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Enlightenment, Fvwm itd."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Alati"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH server"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin server za podešavanje sistema"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Mrežni alati i nadzor"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Alati za nadzor, praćenje procesa, tcpdump, nmap..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia čarobnjaci"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Čarobnjaci (wizardi) za podešavanje serverâ"
@@ -870,7 +852,7 @@ msgstr ""
"Došlo je do greške, ali ne znam kako da postupim u vezi toga.\n"
"Nastavite na vlastiti rizik."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -914,7 +896,7 @@ msgstr ""
"%sa. Ako se ovo desi, možete pokušati tekstualnu instalaciju. Za ovo,\n"
"pritisnite 'F1' prilikom pokretanja instalacije, zatim unesite riječ 'text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Izbor grupe paketa"
@@ -1111,7 +1093,7 @@ msgstr "Preostalo vremena "
msgid "(estimating...)"
msgstr "Procjenjujem"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1119,22 +1101,22 @@ msgstr[0] "%d paketa"
msgstr[1] "%d paketa"
msgstr[2] "%d paketa"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Ukratko"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Podesi"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "nije podešeno"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1143,7 +1125,7 @@ msgstr ""
"Pronađeni su sljedeći instalacioni mediji.\n"
"Ako želite preskočiti neke od njih, možete ih isključiti sada."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1155,7 +1137,7 @@ msgstr ""
"Zatim će instalacija biti nastavljena sa hard diska, a paketi će ostati "
"dostupni nakon što sistem bude instaliran."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopiraj čitave CDove"
@@ -1231,12 +1213,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Podešavam IDE"
#: steps_interactive.pm:354
@@ -1408,7 +1390,7 @@ msgstr "Post-instalacijsko podešavanje"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Molim provjerite da je medij za ažuriranje u uređaju %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Ažuriranje"
@@ -1432,7 +1414,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Pokušaj ponovo"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1454,28 +1446,28 @@ msgstr ""
"Da li želite instalirati ažurirane pakete ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s na %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Zvučna kartica"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Imate li ISA zvučnu karticu?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1484,69 +1476,69 @@ msgstr ""
"Pokrenite \"alsaconf\" ili \"sndconfig\" poslije instalacije kako biste "
"podesili vašu zvučnu karticu"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafički interfejs"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Mreža i Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxy-ji"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "podešeno"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Sigurnosni nivo"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktiviran"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "isključen"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Niste podesili X. Sigurno želite uraditi ovo?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Pripremam instalaciju"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1555,17 +1547,17 @@ msgstr ""
"Na ovom sigurnosnom nivou, pristup datotekama na Windows particijama je "
"dozvoljen samo administratoru."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ubacite praznu disketu u jedinicu %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1576,12 +1568,12 @@ msgstr ""
"\n"
"Da li zaista želite izaći sada?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Čestitamo"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Restartuj"
@@ -1718,6 +1710,27 @@ msgid ""
"Exit"
msgstr "Izlaz"
+#~ msgid "CD-ROM"
+#~ msgstr "sa CDROMa"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE radna stanica"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "IceWm okruženje"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "K Desktop Environment, osnovno grafičko okruženje sa izborom pratećih "
+#~ "alata"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Pripremam bootloader..."
diff --git a/perl-install/install/share/po/ca.po b/perl-install/install/share/po/ca.po
index f31c1b0d7..d52240da2 100644
--- a/perl-install/install/share/po/ca.po
+++ b/perl-install/install/share/po/ca.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-11-21 08:56+0000\n"
"Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>\n"
"Language-Team: Catalan (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -93,89 +93,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Xarxa (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Xarxa (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Xarxa (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL de la rèplica?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "L'URL ha de començar amb ftp:// o bé http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"S'està contactant amb el servidor %s per obtenir la llista de rèpliques "
"disponibles..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Ha fallat la connexió amb el lloc web %s per obtenir la llista de rèpliques "
"disponibles"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Escolliu una rèplica des de la qual aconseguir els paquets"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Configuració NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Introduïu el nom de l'ordinador i del directori del suport NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Falta el nom d'amfitrió"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "El directori ha de començar amb «/»"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Nom d'amfitrió del muntatge NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Directori"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Addicional"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -184,22 +179,22 @@ msgstr ""
"No s'ha pogut trobar el llistat dels paquets en aquesta rèplica. Assegureu-"
"vos que la localització és correcta."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -208,23 +203,23 @@ msgstr ""
"Algun maquinari de l'ordinador requereix microprogramari no lliure perquè "
"els controladors lliures funcionin."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Hauríeu d'habilitar «%s»"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
"«%s» conté els diversos components dels sistemes i les seves aplicacions"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "«%s» conté programari no lliure.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -234,7 +229,7 @@ msgstr ""
"dispositius (per exemple: algunes targetes gràfiques ATI/AMD, algunes "
"targetes de xarxa, algunes targetes RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -243,34 +238,34 @@ msgstr ""
"«%s» conté programari que no es pot distribuir a tots els països per culpa "
"de les patents de programari."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "També conté programari de «%s» recompilat amb capacitats addicionals."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Aquí podeu habilitar més suports, si ho voleu."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
"Aquest suport proporciona actualitzacions de paquets per al suport «%s»"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "S'estan cercant els paquets ja instal·lats..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "S'estan cercant els paquets a actualitzar..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "S'estan eliminant els paquets abans de l'actualització..."
@@ -319,7 +314,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Xarxa"
@@ -369,7 +364,7 @@ msgstr "Instal·lació"
msgid "Configuration"
msgstr "Configuració"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "També heu de formatar %s"
@@ -393,22 +388,22 @@ msgstr "S'està activant la xarxa"
msgid "Bringing down the network"
msgstr "S'està desactivant la xarxa"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "S'està recuperant el fitxer"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "no s'ha pogut afegir el suport"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "S'estan copiant alguns paquets al disc per a un ús futur"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Còpia en procés"
@@ -455,7 +450,7 @@ msgstr ""
msgid "No description"
msgstr "Cap descripció"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -464,27 +459,27 @@ msgstr ""
"Alguns paquets sol·licitats per %s no es poden instal·lar:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "S'ha produït un error:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "S'ha produït un error fatal: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "No tornar a preguntar"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "Han fallat %d transaccions d'instal·lació"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "La instal·lació de paquets ha fallat:"
@@ -567,33 +562,33 @@ msgstr "Eines de consola"
msgid "Editors, shells, file tools, terminals"
msgstr "Editors, intèrprets d'ordres, eines de fitxer, terminals"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Desenvolupament"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Biblioteques de desenvolupament C i C++, programes i fitxers include"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentació"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Llibres i Com es fa... sobre el Linux i el programari lliure"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Base Estàndard de Linux (LSB). Suport a aplicacions de tercers"
@@ -724,9 +719,9 @@ msgid "Graphical Environment"
msgstr "Entorn gràfic"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Estació de treball KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Estació de treball"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -812,64 +807,50 @@ msgstr "Un entorn gràfic ràpid i lleuger"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Escriptori Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"L'escriptori Plasma, l'entorn gràfic bàsic acompanyat d'una col·lecció "
-"d'eines"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Altres escriptoris gràfics"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, etc."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilitats"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Servidor SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Servidor remot de configuració de Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Utilitats/monitoratge de la xarxa"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Eines de monitoratge, comptabilitat de processos, tcpdump, nmap..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Auxiliars de Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Auxiliars per configurar el servidor"
@@ -883,7 +864,7 @@ msgstr ""
"S'ha produït un error, però no sé com gestionar-lo correctament.\n"
"Si continueu, és sota la vostra responsabilitat."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -928,7 +909,7 @@ msgstr ""
"mode text. Per fer-ho, premeu 'F1' en arrencar des del CD-ROM i escriviu "
"'text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Selecció de suports"
@@ -1127,29 +1108,29 @@ msgstr "Temps restant:"
msgid "(estimating...)"
msgstr "(s'està estimant...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d paquet"
msgstr[1] "%d paquets"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Resum"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configura"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "no configurat(da)"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1158,7 +1139,7 @@ msgstr ""
"S'han trobat els següents suports d'instal·lació.\n"
"Si en voleu ometre alguns, els podeu desseleccionar ara."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1171,7 +1152,7 @@ msgstr ""
"Llavors es continuarà des del disc dur i els paquets continuaran disponibles "
"un cop el sistema estigui instal·lat."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Copia els CD sencers"
@@ -1254,12 +1235,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "S'està configurant l'IDE"
#: steps_interactive.pm:354
@@ -1433,7 +1414,7 @@ msgstr "Configuració posterior a la instal·lació"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Assegureu-vos que el suport Actualitza Mòduls és a la unitat %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Actualitzacions"
@@ -1461,7 +1442,17 @@ msgstr ""
"\n"
"Voleu configurar el mitjà d'actualització?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "no s'ha pogut afegir el suport"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Reintenta"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1484,28 +1475,28 @@ msgstr ""
"Voleu instal·lar les actualitzacions?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s a %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Maquinari"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Targeta de so"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Teniu una targeta de so ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1514,70 +1505,70 @@ msgstr ""
"Executeu «alsacont» o bé «sndconfig» després de la instal·lació per "
"configurar la targeta de so"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"No s'ha detectat cap targeta de so. Proveu amb «harddrake» després de la "
"instal·lació"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interfície gràfica"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Xarxa i Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Intermediaris"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "configurat"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Nivell de seguretat"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Tallafoc"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "activat"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "inhabilitat"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "No heu configurat X. Segur que ho voleu així?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "S'està preparant el programa d'arrencada..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Tingueu paciència, això pot trigar una estona..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1586,17 +1577,17 @@ msgstr ""
"En aquest nivell de seguretat, l'accés a les particions de Windows està "
"restringit a l'administrador."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "S'està creant el disquet d'instal·lació automàtica..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1607,12 +1598,12 @@ msgstr ""
"\n"
"Esteu segur que voleu sortir ara?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Felicitats"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Reinicia"
@@ -1748,3 +1739,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Surt"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Estació de treball KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Escriptori Plasma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "L'escriptori Plasma, l'entorn gràfic bàsic acompanyat d'una col·lecció "
+#~ "d'eines"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/cs.po b/perl-install/install/share/po/cs.po
index de886ab32..daae23d94 100644
--- a/perl-install/install/share/po/cs.po
+++ b/perl-install/install/share/po/cs.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-06-20 12:05+0000\n"
"Last-Translator: fri\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/mageia/language/"
@@ -92,86 +92,81 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Síť (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Síť (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Síť (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL zrcadla?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL musí začínat na ftp:// nebo http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Navazuje se spojení se stránkami %s za účelem získání seznamu zrcadel..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "Nepodařilo se kontaktovat stránky %s a stáhnout seznam zrcadel"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Zvolte si zrcadlo pro stahování balíčků"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Nastavení NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Zadejte, prosím, název počítače a adresář vašeho zařízení NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Chybí název počítače"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Adresář musí začínat znakem \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Název počítače připojení NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Adresář"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Dodatečný"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -180,22 +175,22 @@ msgstr ""
"Nelze nalézt soubor hdlist na tomto zrcadle. Ujistěte se, že umístění je "
"správné."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Vydání Core"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Vydání Tainted"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Vydání Nonfree"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -204,22 +199,22 @@ msgstr ""
"Některé součástky ve vašem stroji potřebují nesvobodné mikroprogramové "
"vybavení (firmware), aby ovladače svobodných programů pracovaly."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Měli byste povolit \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" obsahuje různé kousky systému a jeho programů"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" obsahuje nesvobodný software.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -229,7 +224,7 @@ msgstr ""
"určitých zařízení (např.: některé grafické karty ATI/AMD, některé síťové "
"karty, některé karty RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -238,34 +233,34 @@ msgstr ""
"\"%s\" obsahuje software, který nemůže být distribuován ve všech zemích "
"kvůli softwarovým patentům."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
"Obsahuje také software z \"%s\", znovu sestavený s doplňujícími funkcemi."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Zde můžete, pokud chcete, povolit více zdrojů."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Tyto zdroje poskytují aktualizace balíčků pro \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Prohledávají se již nainstalované balíčky..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Vyhledávají se balíčky pro aktualizaci..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Odstraňují se balíčky před aktualizací..."
@@ -314,7 +309,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Síť"
@@ -364,7 +359,7 @@ msgstr "Instalace"
msgid "Configuration"
msgstr "Nastavení"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Musíte také naformátovat %s"
@@ -389,22 +384,22 @@ msgstr "Spouští se síť"
msgid "Bringing down the network"
msgstr "Zastavuje se síť"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Prosím počkejte, získává se soubor"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "nelze přidat zdroj"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopírují se některé balíčky na disky pro budoucí použití"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Probíhá kopírování"
@@ -450,7 +445,7 @@ msgstr ""
msgid "No description"
msgstr "Žádný popis"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -459,27 +454,27 @@ msgstr ""
"Některé z balíčků vyžádaných od %s nelze nainstalovat:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Nastala chyba:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Vyskytla se fatální chyba: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Více se již neptat"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d instalačních procesů selhalo"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Instalace balíčků selhala:"
@@ -562,33 +557,33 @@ msgstr "Konzolové nástroje"
msgid "Editors, shells, file tools, terminals"
msgstr "Editory, shelly, souborové nástroje, terminály"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Vývoj"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Knihovny pro vývoj v C a C++, programy a hlavičkové soubory"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentace"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Knihy a praktické rady, jak na to, o Linuxu a Svobodném Software"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Standardní Báze Linuxu (LSB): Podpora aplikací jiných dodavatelů"
@@ -719,9 +714,9 @@ msgid "Graphical Environment"
msgstr "Grafické prostředí"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Pracovní stanice s KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Pracovní stanice"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -807,64 +802,50 @@ msgstr "Lehké a rychlé grafické prostředí"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Pracovní plocha Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Pracovní plocha Plasma je základní grafické prostředí se sbírkou "
-"doprovodných nástrojů"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Další grafická prostředí"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm a další"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Užitečné nástroje"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Server SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Server pro vzdálené nastavení Webminu"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Síťové nástroje/Sledování"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Nástroje pro sledování, evidenci procesů, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Průvodci nastavením Mageii"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Průvodci nastavením serverů"
@@ -878,7 +859,7 @@ msgstr ""
"Stala se chyba, ale neví se, jak ji správně vykládat.\n"
"Pokračujte na vlastní nebezpečí."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -921,7 +902,7 @@ msgstr ""
"případě potíží zvolte instalaci v textovém režimu. Pro její spuštění "
"stiskněte při nabíhání systému z CD klávesu 'F1' a následně napište 'text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Výběr zdrojů"
@@ -1119,7 +1100,7 @@ msgstr "Zbývající čas:"
msgid "(estimating...)"
msgstr "(odhaduje se...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1127,22 +1108,22 @@ msgstr[0] "%d balíček"
msgstr[1] "%d balíčky"
msgstr[2] "%d balíčků"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Souhrn"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Nastavit"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "nenastaveno"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1151,7 +1132,7 @@ msgstr ""
"Byla nalezeny následující instalační zdroje.\n"
"Pokud chcete některé z nich vynechat, můžete je nyní odznačit."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1163,7 +1144,7 @@ msgstr ""
"Instalace pak bude pokračovat z pevného disku a balíčky zůstanou dostupné i "
"poté, co je systém plně nainstalován."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopírovat celá CD"
@@ -1247,12 +1228,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Nastavuje se IDE"
#: steps_interactive.pm:354
@@ -1426,7 +1407,7 @@ msgstr ""
"Ujistěte se, prosím, že se médium s aktualizovanými moduly nachází v "
"jednotce %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Aktualizace"
@@ -1454,7 +1435,17 @@ msgstr ""
"\n"
"Chcete nastavit aktualizační média?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "nelze přidat zdroj"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Zkusit znovu"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1476,28 +1467,28 @@ msgstr ""
"Chcete nainstalovat aktualizace?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s na %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Zvuková karta"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Máte nějakou zvukovou kartu na ISA sběrnici?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1506,70 +1497,70 @@ msgstr ""
"Pro nastavení zvukové karty spusťte po instalaci \"alsaconf\" nebo "
"\"sndconfig\""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nebyla nalezena zvuková karta. Zkuste spustit po instalaci \"harddrake\"."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafické rozhraní"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Síť a internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxy"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "nastaveno"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Úroveň zabezpečení"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "zapnuto"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "vypnuto"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
"Nemáte nastaveno prostředí X. Chcete jej skutečně ponechat nenastavené?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Přípravuje se spouštěcí program..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Prosím o strpení, může to chvíli trvat…"
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1578,17 +1569,17 @@ msgstr ""
"V této úrovní zabezpečení je přístup k souborům na oddíle s Windows omezen "
"pouze na uživatele administrátor."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Vložte prázdnou disketu do %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Vytváří se disketa pro automatickou instalaci..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1599,12 +1590,12 @@ msgstr ""
"\n"
"Chcete opravdu nyní skončit?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Blahopřejeme"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Restartovat"
@@ -1740,3 +1731,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Konec"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Pracovní stanice s KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Pracovní plocha Plasma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Pracovní plocha Plasma je základní grafické prostředí se sbírkou "
+#~ "doprovodných nástrojů"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/cy.po b/perl-install/install/share/po/cy.po
index b31a6f64c..bf325ae06 100644
--- a/perl-install/install/share/po/cy.po
+++ b/perl-install/install/share/po/cy.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-12-26 18:02+0000\n"
"Last-Translator: ciaran\n"
"Language-Team: Welsh (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -95,85 +95,80 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Rhwydwaith (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Rhwydwaith (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Rhwydwaith (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL y drych?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Rhaid i'r URL gychwyn gyda ftp:// neu http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Wrthi'n cysylltu â gwefan %s i estyn y rhestr o ddrychau..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "Methwyd cysylltu â gwefan %s i estyn y rhestr o ddrychau"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Dewiswch ddrych i estyn y pecynnau wrtho"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Gosodiad NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Rhowch enw'r gwesteiwr a chyfeiriadur eich cyfrwng NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Enw gwesteiwr ar goll"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Rhaid i gyfeiriadur gychwyn gyda \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Enw gwesteiwr arosod NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Cyfeiriadur"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Atodol"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -182,22 +177,22 @@ msgstr ""
"Methu canfod ffeil rhestr pecynnau ar y drych. Sicrhewch fod y lleoliad yn "
"gywir."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Fersiwn craidd"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Fersiwn cymysg"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Fersiwn nad yw'n rhydd"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -206,22 +201,22 @@ msgstr ""
"Mae ar galedwedd eich peiriant angen cadarnwedd nad yw'n rhydd er mwyn i'r "
"gyrwyr meddalwedd rhydd weithio."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Dylech alluogi \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "Mae \"%s\" yn cynnwys darnau amrywiol o'r system a'i rhaglenni"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "Mae \"%s\" yn cynnwys meddalwedd nad yw'n rhydd.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -231,7 +226,7 @@ msgstr ""
"e.: rhai cardiau graffeg ATI/AMD, rhai cardiau rhwydwaith, rhai cardiau "
"RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -240,7 +235,7 @@ msgstr ""
"Mae \"%s\" yn cynnwys meddalwedd na ellir ei dosbarthu ym mhob gwlad o "
"ganlyniad i batentau ar feddalwedd."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
@@ -248,27 +243,27 @@ msgstr ""
"Mae hefyd yn cynnwys meddalwedd o'r adeiladiad \"%s\" gyda galluoedd "
"ychwanegol. "
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Yma gallwch alluogi rhagor o gyfryngau os oes angen."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Mae'r cyfrwng hwn yn darparu diweddariadau pecynnau i'r cyfrwng \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Wrthi'n edrych ar becynnau a osodwyd eisoes..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Wrthi'n canfod pecynnau i'w huwchraddio..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Wrthi'n tynnu pecynnau cyn diweddaru..."
@@ -317,7 +312,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rhwydwaith"
@@ -367,7 +362,7 @@ msgstr "Gosod"
msgid "Configuration"
msgstr "Ffurfweddu"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Rhaid fformatio %s hefyd"
@@ -391,22 +386,22 @@ msgstr "Wrthi'n cychwyn y rhwydwaith"
msgid "Bringing down the network"
msgstr "Wrthi'n cau'r rhwydwaith"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Arhoswch, wrthi'n estyn ffeil"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "methu ychwanegu cyfrwng"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Wrthi'n copïo rhai pecynnau ar ddisg ar gyfer defnydd yn y dyfodol"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Wrthi'n copïo..."
@@ -453,7 +448,7 @@ msgstr ""
msgid "No description"
msgstr "Dim disgrifiad"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -462,27 +457,27 @@ msgstr ""
"Nid yw'n bosib gosod rhai pecynnau gofynnwyd gan %s:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Cododd gwall:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Cododd gwall terfynol:%s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Peidio â gofyn eto"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "Methodd trafod gosod %d"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Methodd gosod pecynnau:"
@@ -565,33 +560,33 @@ msgstr "Offer y consol"
msgid "Editors, shells, file tools, terminals"
msgstr "Golygyddion, cregyn, offer ffeilio, terfynellau"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Datblygu"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Llyfrgelloedd datblygu C a C++, rhaglenni a ffeiliau cynnwys"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dogfennaeth"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Llyfrau a chanllawiau ar gyfer Linux a meddalwedd rydd"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Cefnogaeth i raglenni trydydd parti"
@@ -722,9 +717,9 @@ msgid "Graphical Environment"
msgstr "Amgylchedd graffig"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Gweithfan KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Gweithfan"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -811,64 +806,50 @@ msgstr "Amgylchedd graffigol ysgafn a chyflym"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Bwrdd gwaith Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Bwrdd gwaith Plasma, yr amgylchedd graffigol sylfaenol a chanddo gasgliad o "
-"offer"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Byrddau Gwaith Graffigol Eraill"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, ac ati"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Gwasanaethau"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Gweinydd SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Gweinydd ffurfweddu pell Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Gwasanaethau/monitro rhwydwaith"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Offer monitro, cyfrifo prosesau, tcpdunp, nmap..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Dewiniaid Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Dewiniaid ffurfweddu gweinyddion"
@@ -882,7 +863,7 @@ msgstr ""
"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
"Mae'n beryglus i barhau."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -927,7 +908,7 @@ msgstr ""
"hynny. I wneud hynny pwyswch 'F1' wrth gychwyn ar CD-ROM, ac yna teipio "
"'text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Dewis cyfrwng"
@@ -1124,7 +1105,7 @@ msgstr "Amser ar ôl:"
msgid "(estimating...)"
msgstr "(amcangyfrif...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1133,22 +1114,22 @@ msgstr[1] "%d becyn"
msgstr[2] "%d o becynnau"
msgstr[3] "%d o becynnau"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Crynodeb"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Ffurfweddu"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "heb ffurfweddu"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1157,7 +1138,7 @@ msgstr ""
"Canfuwyd y cyfryngau gosod canlynol.\n"
"Os hoffech hepgor rhai ohonynt, dad-ddewiswch nhw nawr."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1169,7 +1150,7 @@ msgstr ""
"Bydd yna'n parhau o'r disg caled a bydd y pecynnau ar gael unwaith i'r "
"system gael ei gosod yn gyflawn."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Copïo'r CDs cyfan"
@@ -1252,12 +1233,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Ffurfweddu IDE"
#: steps_interactive.pm:354
@@ -1429,7 +1410,7 @@ msgstr "Ffurfweddu ar ôl gosod"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Sicrhewch fod y cyfrwng diweddaru modiwlau yn y gyrrwr %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Diweddaru"
@@ -1458,7 +1439,17 @@ msgstr ""
"\n"
"Hoffech chi osod y cyfryngau diweddaru?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "methu ychwanegu cyfrwng"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Ceisio eto"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1480,28 +1471,28 @@ msgstr ""
"Ydych chi am osod y diweddariadau?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s ar %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Caledwedd"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Cerdyn sain"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "A oes gennych gerdyn sain ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1510,68 +1501,68 @@ msgstr ""
"Rhedwch \"alsaconf\" neu \"sndconfig\" wedi'r gosodiad i ffurfweddu eich "
"cerdyn sain"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Rhyngwyneb graffigol"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Rhwydwaith a'r rhyngrwyd"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Dirprwyon"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "ffurfweddwyd"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Lefel diogelwch"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Mur gwarchod"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "bywiogwyd"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "analluogwyd"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Nid ydych wedi ffurfweddu X. Ydych chi'n siŵr eich bod am wneud hyn?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Wrthi'n paratoi'r rhaglen cychwyn..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Amynedd, gall hyn gymryd amser..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1580,17 +1571,17 @@ msgstr ""
"Ar y lefel diogelwch yma, cyfyngir mynediad at ffeiliau yn y rhaniad Windows "
"i'r gweinyddwr."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Rhowch ddisg meddal yng ngyrrwr %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Creu disg meddal awto gosod..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1601,12 +1592,12 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gadael yn awr?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Llongyfarchiadau"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Ailgychwyn"
@@ -1742,3 +1733,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Gadael"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Gweithfan KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Bwrdd gwaith Plasma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Bwrdd gwaith Plasma, yr amgylchedd graffigol sylfaenol a chanddo gasgliad "
+#~ "o offer"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/da.po b/perl-install/install/share/po/da.po
index b5aaca44c..23357453e 100644
--- a/perl-install/install/share/po/da.po
+++ b/perl-install/install/share/po/da.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Danish (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -91,86 +91,81 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "Cd-rom"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Netværk (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Netværk (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Netværk (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL på spejlet?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL skal starte med ftp:// eller http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Kontakter %s' netsted for at hente listen over tilgængelige spejle"
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Kunne ikke kontakte %s' netsted for at hente listen over tilgængelige spejle"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Vælg det spejl hvorfra pakkerne skal hentes"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS-opsætning"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Indtast værtsnavn og katalog for dit NFS-medie"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Værtsmaskinenavn mangler"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Katalog skal begynde med \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Værtsnavn på NFS-monteringen?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Katalog"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Supplerende"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -179,84 +174,84 @@ msgstr ""
"Kan ikke finde en pakkelistefil på dette spejl. Kontrollér at placeringen er "
"korrekt."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Leder efter pakker der allerede er installeret..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Leder efter pakker som skal opgraderes..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Fjerner pakker før opgradering..."
@@ -305,7 +300,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Netværk"
@@ -355,7 +350,7 @@ msgstr "Installation"
msgid "Configuration"
msgstr "Konfiguration"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Du skal også formatere %s"
@@ -380,22 +375,22 @@ msgstr "Bringer netværket op"
msgid "Bringing down the network"
msgstr "Lukker netværket ned"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Vent venligst, henter fil"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "kan ikke tilføje medie"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopierer nogle pakker til disk til fremtidig brug"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopiering udføres"
@@ -440,7 +435,7 @@ msgstr "Ingen xml info for medie \"%s\", kun delvist resultat for pakke %s"
msgid "No description"
msgstr "Ingen beskrivelse"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -449,27 +444,27 @@ msgstr ""
"Visse pakker forespurgt af %s kan ikke installeres:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Der opstod en fejl:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "En fatal fejl skete: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Spørg ikke igen"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d installationstransaktioner mislykkedes"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Installation af pakker mislykkedes:"
@@ -552,33 +547,33 @@ msgstr "Konsolværktøjer"
msgid "Editors, shells, file tools, terminals"
msgstr "Redigeringsværktøjer, skaller, filværktøjer, terminaler"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Udvikling"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Biblioteker, programmer og include-filer til udvikling i C og C++"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentation"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Bøger og vejledninger om Linux og Frit Programmel"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Understøttelse for tredjeparts-programmer"
@@ -709,9 +704,9 @@ msgid "Graphical Environment"
msgstr "Grafisk miljø"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE-arbejdsmaskine"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Arbejdsmaskine"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -793,62 +788,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Andre grafiske miljøer"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Nytteprogrammer"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH-server"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin ekstern konfigurationsserver"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Nytteprogrammer og overvågning af netværk"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Overvågningsværktøjer, proceskontering, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Konfigurationsprogrammer for Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Hjæpeprogrammer til at konfigurere server"
@@ -863,7 +846,7 @@ msgstr ""
"pæn måde.\n"
"Fortsæt på eget ansvar!"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -907,7 +890,7 @@ msgstr ""
"%s. Hvis dette sker, kan du prøve en tekst-baseret installation i stedet.\n"
"Dette gøres ved at trykke 'F1' ved opstart fra cdrommen, og så skrive 'text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Valg af pakkemedie"
@@ -1108,29 +1091,29 @@ msgstr "Resterende tid:"
msgid "(estimating...)"
msgstr "(beregner...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakke"
msgstr[1] "%d pakker"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Oversigt"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfigurér"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "ikke konfigureret"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1139,7 +1122,7 @@ msgstr ""
"De følgende installationsmedier er fundet.\n"
"Hvis du ønsker at springe nogen af dem over, kan du fravælge dem nu."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1152,7 +1135,7 @@ msgstr ""
"Installationen vil så fortsætte fra disken og pakkerne vil forblive "
"tilgængelige, når systemet er fuldt installeret."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopiér hele cd'er"
@@ -1228,12 +1211,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Konfigurerer IDE"
#: steps_interactive.pm:354
@@ -1408,7 +1391,7 @@ msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
"Forsikr dig venligst om at mediet med opdateringsmodulerne er i drev %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Opdateringer"
@@ -1432,7 +1415,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "kan ikke tilføje medie"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Prøv igen"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1454,28 +1447,28 @@ msgstr ""
"Ønsker du at installere opdateringerne?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s på %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Udstyr"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Lydkort"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA-lydkort?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1484,69 +1477,69 @@ msgstr ""
"Kør \"alsaconf\" eller \"sndconfig\" efter installation for at konfigurere "
"dit lydkort"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Intet lydkort genkendt. Prøv at køre \"harddrake\" efter installation"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafisk grænseflade"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Netværk og Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxyer "
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "konfigureret"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Sikkerhedsniveau"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Brandmur"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktiveret"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "deaktiveret"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
"Du har ikke konfigureret X. Er du sikker på at du virkelig ønsker dette?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Vær tålmodig, dette kan tage et stykke tid..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1555,17 +1548,17 @@ msgstr ""
"I dette er sikkerhedsniveau er adgang til Windows-partitionen forbeholdt "
"administratoren."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Indsæt en tom diskette i drev %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Laver autoinstallations-diskette..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1576,12 +1569,12 @@ msgstr ""
"\n"
"Er du sikker på du ønsker du at lukke nu?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Tillykke"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Genstart"
@@ -1717,3 +1710,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Afslut"
+
+#~ msgid "CD-ROM"
+#~ msgstr "Cd-rom"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE-arbejdsmaskine"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/de.po b/perl-install/install/share/po/de.po
index e60f20e6f..3591b389a 100644
--- a/perl-install/install/share/po/de.po
+++ b/perl-install/install/share/po/de.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-30 13:10+0000\n"
"Last-Translator: psyca\n"
"Language-Team: German (http://www.transifex.com/projects/p/mageia/language/"
@@ -98,112 +98,107 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Netzwerk (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Netzwerk (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Netzwerk (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL des Spiegel-Servers?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Die URL muss mit ftp:// oder http:// beginnen"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Die %s-Webseite wird kontaktiert, um eine Liste der verfügbaren Spiegel-"
"Server zu erhalten..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Die %s-Webseite kann nicht erreicht werden, um die Liste der verfügbaren "
"Spiegel-Server zu erhalten"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Bitte wählen Sie einen Mirror, von dem Sie die Pakete holen wollen."
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS-Einrichtung"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
"Bitte geben Sie den Rechnernamen und das Verzeichnis ihres NFS-Mediums ein"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Hostname fehlt"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Verzeichnis muss mit \"/\" beginnen"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Rechnername der NFS-Einbindung?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Verzeichnis"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Ergänzend"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Kann keine Paketliste auf diesem Spiegel-Server finden."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core-Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted-Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree-Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -212,24 +207,24 @@ msgstr ""
"Ihre Maschine beinhaltet Hardware, die nicht-freie Firmware-Dateien "
"benötigt, damit die freien Treiber funktionieren."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Sie sollten „%s“ aktivieren"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
"„%s“ enthält die verschiedenen Bestandteile des Systems und seiner "
"Anwendungen"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "„%s“ enthält nicht-freie Software.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -239,7 +234,7 @@ msgstr ""
"funktionieren zu können (z.B. einige AMD/ATI-Grafikkarten, einige "
"Netzwerkkarten, einige RAID-Karten,...)."
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -248,7 +243,7 @@ msgstr ""
"„%s“ enthält Software, die aufgrund von Software-Patenten nicht in jedem "
"Land verbreitet werden darf."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
@@ -256,27 +251,27 @@ msgstr ""
"Es enthält auch Software aus „%s“, die mit zusätzlichen Fähigkeiten neu "
"gebaut wurde."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Sie können hier weitere Medien aktivieren, wenn Sie das wünschen."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Dieses Medium enthält Paket-Aktualisierungen für das Medium „%s“"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Bereits installierte Pakete werden gesucht ..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Zu aktualisierende Pakete werden gesucht..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Pakete vor der Aktualisierung entfernen..."
@@ -326,7 +321,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Netzwerk"
@@ -376,7 +371,7 @@ msgstr "Installation"
msgid "Configuration"
msgstr "Konfiguration"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Sie müssen auch %s formatieren."
@@ -400,22 +395,22 @@ msgstr "Netzwerkverbindung herstellen"
msgid "Bringing down the network"
msgstr "Netzwerkverbindung trennen"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Bitte warten, Datei wird empfangen"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "Es ist nicht möglich, das Medium hinzuzufügen"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Pakete auf die Festplatte speichern für die spätere Verwendung"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Dateien werden kopiert"
@@ -462,7 +457,7 @@ msgstr ""
msgid "No description"
msgstr "Keine Beschreibung"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -471,27 +466,27 @@ msgstr ""
"Einige der ausgewählten Programme von %s können nicht installiert werden:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Ein Fehler ist aufgetreten:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Fataler Fehler aufgetreten: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Nicht erneut fragen"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d Installationstransaktionen schlugen fehl"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Installieren der Pakete ist fehlgeschlagen:"
@@ -574,33 +569,33 @@ msgstr "Konsolen-Werkzeuge"
msgid "Editors, shells, file tools, terminals"
msgstr "Editoren, Shells, Dateiwerkzeuge, Konsolen"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Entwicklung"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C- und C++-Entwicklungsbibliotheken, Programme und Include-Dateien"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentation"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Bücher und HOWTOs zu GNU/Linux und Freier Software"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux-Standard-Base. Drittanbieterunterstützung"
@@ -731,9 +726,9 @@ msgid "Graphical Environment"
msgstr "Grafische Arbeitsoberfläche"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE-Arbeitsplatz"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Arbeitsplatzrechner"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -822,64 +817,50 @@ msgstr "Eine leichtgewichtige und schnelle grafische Umgebung"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasma-Desktop"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Der Plasma-Desktop, die Standard-Arbeitsfläche mit einer Sammlung "
-"zugehöriger Programme"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Andere grafische Arbeitsflächen"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, usw."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Werkzeuge"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH-Server"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin-Fernkonfigurationsserver"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Netzwerkwerkzeuge/-überwachung"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Überwachungswerkzeuge, Prozessverwaltung, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia-Assistenten"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Assistenten zur Servereinrichtung"
@@ -893,7 +874,7 @@ msgstr ""
"Es trat ein Fehler auf. Ich weiß jedoch nicht, wie ich damit umgehen soll. "
"Sie können fortfahren, jedoch auf eigenes Risiko!"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -939,7 +920,7 @@ msgstr ""
"drücken Sie „F1“, wenn Sie von der CD-Rom installieren, dann geben Sie "
"„text“ ein."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Auswahl der Installationsmedien"
@@ -1142,29 +1123,29 @@ msgstr "Verbleibende Zeit "
msgid "(estimating...)"
msgstr "(Schätzen...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d Paket"
msgstr[1] "%d Pakete"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Zusammenfassung"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfigurieren"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "Nicht eingerichtet"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1173,7 +1154,7 @@ msgstr ""
"Die folgenden Installationsmedien wurden gefunden.\n"
"Wählen Sie die Medien ab, die Sie überspringen wollen."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1186,7 +1167,7 @@ msgstr ""
"fortgeführt und die Softwarepakete bleiben verfügbar, nachdem das System "
"fertig installiert ist."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopiere die CDs"
@@ -1269,12 +1250,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE konfigurieren"
#: steps_interactive.pm:354
@@ -1449,7 +1430,7 @@ msgstr ""
"Bitte stellen Sie sicher, dass sich das Update-Modul-Medium im Laufwerk %s "
"befindet"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Aktualisierungen"
@@ -1477,7 +1458,17 @@ msgstr ""
"\n"
"Möchen Sie die Onlinemedien einrichten?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "Es ist nicht möglich, das Medium hinzuzufügen"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Wiederholen"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1498,28 +1489,28 @@ msgstr ""
"Möchten Sie die Aktualisierungen vornehmen?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s auf %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Soundkarte"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Verfügen Sie über eine ISA-Soundkarte?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1528,70 +1519,70 @@ msgstr ""
"Starten Sie „sndconfig“ oder „alsaconf“ nach der Installation, um Ihre "
"Soundkarte einzurichten."
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Es wurde keine Soundkarte gefunden. Versuchen Sie „harddrake“ nach der "
"Installation."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafikumgebung"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Netzwerk & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxies"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "konfiguriert"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Sicherheitsebene"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktiviert"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "deaktiviert"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Sie haben X nicht konfiguriert. Sind Sie sicher?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Initiale Systemstartprogramme vorbereiten..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Ein wenig Geduld, dies kann einige Zeit dauern..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1600,17 +1591,17 @@ msgstr ""
"In dieser Sicherheitseinstellung ist der Zugriff auf Dateien der "
"Windowspartition nur dem Administrator erlaubt"
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Legen Sie eine leere Diskette in das Laufwerk %s ein."
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Erstelle eine Auto-Installationsdiskette"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1621,12 +1612,12 @@ msgstr ""
"\n"
"Wollen Sie DrakX wirklich beenden?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Herzlichen Glückwunsch!"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Neustart"
@@ -1762,3 +1753,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Verlassen"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE-Arbeitsplatz"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasma-Desktop"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Der Plasma-Desktop, die Standard-Arbeitsfläche mit einer Sammlung "
+#~ "zugehöriger Programme"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/el.po b/perl-install/install/share/po/el.po
index 95c916aca..8218fc2ea 100644
--- a/perl-install/install/share/po/el.po
+++ b/perl-install/install/share/po/el.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drakx_install\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-23 08:51+0200\n"
"Last-Translator: Dimitrios Glentadakis <dglent@free.fr>\n"
"Language-Team: Greek <i18n-el@ml.mageia.org>\n"
@@ -92,89 +92,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Δίκτυο (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Δίκτυο (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Δίκτυο (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Το URL του καθρεπτισμού;"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Το URL πρέπει να ξεκινά με ftp:// ή http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Σύνδεση με την ιστοσελίδα της %s για λήψη της λίστας με τους διαθέσιμους "
"καθρεπτισμούς..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Αδυναμία σύνδεσης με την ιστοσελίδα της %s για λήψη της λίστας με τους "
"διαθέσιμους καθρεπτισμούς"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Επιλέξτε έναν καθρεπτισμό από τον οποίο θα γίνει η λήψη των πακέτων"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Ρύθμιση NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Παρακαλώ εισάγετε το όνομα υπολογιστή και τη διαδρομή του μέσου NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Λείπει το όνομα υπολογιστή"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Ο κατάλογος πρέπει να αρχίζει με «/»"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Το όνομα υπολογιστή της προσάρτησης NFS;"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Κατάλογος"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Συμπληρωματικά"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -183,22 +178,22 @@ msgstr ""
"Δεν βρέθηκε το αρχείο με την λίστα των πακέτων σε αυτόν τον καθρεπτισμό. "
"Σιγουρευτείτε ότι η τοποθεσία είναι σωστή."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -207,23 +202,23 @@ msgstr ""
"Στο μηχάνημά σας υπάρχει υλικό που απαιτεί μη ελεύθερο firmware ώστε να "
"λειτουργούν οι οδηγοί ανοιχτού κώδικα. "
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Θα πρέπει να ενεργοποιήσετε το «%s»"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
"Το «%s» περιέχει τα διάφορα τμήματα του συστήματος και τις εφαρμογές του"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "Το «%s» περιέχει μη ελεύθερο λογισμικό.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -233,7 +228,7 @@ msgstr ""
"συσκευών (πχ: μερικές κάρτες γραφικών ATI/AMD, μερικές κάρτες δικτύου, "
"μερικές κάρτες RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -242,7 +237,7 @@ msgstr ""
"Το «%s» περιέχει λογισμικό που δεν μπορεί να διανεμηθεί σε όλες τις χώρες "
"λόγω περιορισμού των διπλωμάτων ευρεσιτεχνίας."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
@@ -250,29 +245,29 @@ msgstr ""
"Επίσης, περιέχει λογισμικό από το «%s» επαναδημιουργημένο με επιπλέον "
"χαρακτηριστικά."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
"Αν το επιθυμείτε, εδώ μπορείτε να ενεργοποιήσετε περισσότερες πηγές "
"λογισμικού."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Αυτό το μέσο παρέχει ενημερώσεις πακέτων για το μέσο «%s»"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Αναζήτηση στα ήδη εγκατεστημένα πακέτα..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Αναζήτηση πακέτων προς αναβάθμιση..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Αφαίρεση των πακέτων, πριν την αναβάθμιση..."
@@ -321,7 +316,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Δίκτυο"
@@ -371,7 +366,7 @@ msgstr "Εγκατάσταση"
msgid "Configuration"
msgstr "Ρύθμιση"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Πρέπει επίσης να μορφοποιήσετε το %s"
@@ -396,22 +391,22 @@ msgstr "Εκκίνηση της διεπαφής δικτύου"
msgid "Bringing down the network"
msgstr "Διακοπή της διεπαφής δικτύου"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Παρακαλώ περιμένετε, γίνεται λήψη του αρχείου"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "αδυναμία προσθήκης του μέσου"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Αντιγραφή κάποιων πακέτων στο δίσκο για μελλοντική χρήση"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Αντιγραφή σε εξέλιξη"
@@ -458,7 +453,7 @@ msgstr ""
msgid "No description"
msgstr "Χωρίς περιγραφή"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -467,27 +462,27 @@ msgstr ""
"Κάποια πακέτα που ζητήθηκαν από το %s, δεν μπορούν να εγκατασταθούν:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Παρουσιάστηκε ένα σφάλμα :"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Παρουσιάστηκε ένα κρίσιμο σφάλμα: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Να μην ξαναγίνει η ερώτηση"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d συναλλαγές εγκατάστασης απέτυχαν"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Η εγκατάσταση των πακέτων απέτυχε :"
@@ -571,33 +566,33 @@ msgstr "Εργαλεία τερματικού"
msgid "Editors, shells, file tools, terminals"
msgstr "Επεξεργαστές, κελύφη, εργαλεία αρχείων, τερματικά"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Ανάπτυξη"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Βιβλιοθήκες ανάπτυξης C και C++, προγράμματα και αρχεία ενσωμάτωσης"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Τεκμηρίωση"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Βιβλία και οδηγίες για το Linux και το ελεύθερο λογισμικό"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "«Linux Standard Base». Υποστήριξη εφαρμογών τρίτων"
@@ -729,9 +724,9 @@ msgid "Graphical Environment"
msgstr "Γραφικό περιβάλλον"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Σταθμός εργασίας KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Σταθμός εργασίας"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -812,64 +807,50 @@ msgstr "Ένα ελαφρύ και γρήγορο γραφικό περιβάλ
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Επιφάνειας εργασίας Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Η επιφάνεια εργασίας Plasma, το βασικό γραφικό περιβάλλον εργασίας με μια "
-"συλλογή συνοδευτικών εργαλείων"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Άλλα γραφικά περιβάλλοντα"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, κλπ"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Εργαλεία"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Εξυπηρετητής SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin εξυπηρετητής απομακρυσμένης ρύθμισης"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Εργαλεία δικτύου/εποπτεία δικτύου"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Εργαλεία εποπτείας, απολογισμός διεργασιών, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Οδηγοί Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Οδηγοί για τη ρύθμιση του εξυπηρετητή"
@@ -883,7 +864,7 @@ msgstr ""
"Παρουσιάστηκε ένα σφάλμα αλλά δεν ξέρω πώς να το χειριστώ.\n"
"Συνεχίστε με δική σας ευθύνη."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -930,7 +911,7 @@ msgstr ""
"«F1»\n"
"κατά την εκκίνηση του CD-ROM και εισάγετε «text»."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Επιλογή μέσων"
@@ -1129,29 +1110,29 @@ msgstr "Χρόνος που απομένει:"
msgid "(estimating...)"
msgstr "(εκτίμηση...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d πακέτο"
msgstr[1] "%d πακέτα"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Σύνοψη"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Ρύθμιση"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "δεν ρυθμίστηκε"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1160,7 +1141,7 @@ msgstr ""
"Βρέθηκαν τα ακόλουθα μέσα εγκατάστασης.\n"
"Αν θέλετε να παραλείψετε κάποια από αυτά, μπορείτε να τα αποεπιλέξετε τώρα."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1173,7 +1154,7 @@ msgstr ""
"Αυτή θα συνεχιστεί από τον σκληρό δίσκο και τα πακέτα θα παραμείνουν "
"διαθέσιμα και μετά το τέλος της."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Αντιγραφή ολόκληρων των CD"
@@ -1259,12 +1240,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Ρύθμιση IDE"
#: steps_interactive.pm:354
@@ -1445,7 +1426,7 @@ msgstr ""
"Παρακαλώ σιγουρευτείτε ότι το μέσο ενημέρωσης των αρθρωμάτων (modules) είναι "
"μέσα στον οδηγό %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Ενημερώσεις"
@@ -1474,7 +1455,17 @@ msgstr ""
"\n"
"Επιθυμείτε την προσθήκη των μέσων ενημέρωσης;"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "αδυναμία προσθήκης του μέσου"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Προσπάθεια ξανά"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1496,28 +1487,28 @@ msgstr ""
"Θέλετε να εγκαταστήσετε τις ενημερώσεις ;"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s σε %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Υλικό"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Κάρτα ήχου"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Έχετε κάρτα ήχου ISA;"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1526,68 +1517,68 @@ msgstr ""
"Εκτελέστε την εντολή «alsaconf» ή «sndconfig», μετά την εγκατάσταση για να "
"ρυθμίσετε την κάρτα ήχου"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Δεν βρέθηκε κάρτα ήχου. Δοκιμάστε το «harddrake» μετά την εγκατάσταση"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Γραφικό περιβάλλον"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Δίκτυο & Διαδίκτυο"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Διαμεσολαβητές"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "ρυθμισμένο"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Επίπεδο ασφαλείας"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Τείχος προστασίας"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "ενεργοποιημένο"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "απενεργοποιημένο"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Δεν έχετε ρυθμίσει τον Χ. Είστε σίγουρος/η ότι θέλετε πραγματικά αυτό;"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Προετοιμασία του αρχικού προγράμματος εκκίνησης..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Παρακαλώ περιμένετε, η διαδικασία μπορεί να διαρκέσει μερικά λεπτά ..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1596,17 +1587,17 @@ msgstr ""
"Σε αυτό το επίπεδο ασφαλείας, μόνο ο διαχειριστής έχει πρόσβαση στα αρχεία "
"στην κατάτμηση των Windows."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Εισάγετε μια άδεια δισκέτα στον οδηγό %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Δημιουργία δισκέτας αυτόματης εγκατάστασης..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1618,12 +1609,12 @@ msgstr ""
"Θέλετε σίγουρα να εγκαταλείψετε τώρα;"
# Απαλοιφή τόνου, μετατρέπεται αυτόματα σε κεφαλαία #5755.
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "ΣΥΓΧΑΡΗΤΗΡΙΑ"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Επανεκκίνηση"
@@ -1761,6 +1752,25 @@ msgid ""
"Exit"
msgstr "Έξοδος"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Σταθμός εργασίας KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Επιφάνειας εργασίας Plasma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Η επιφάνεια εργασίας Plasma, το βασικό γραφικό περιβάλλον εργασίας με μια "
+#~ "συλλογή συνοδευτικών εργαλείων"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Προετοιμασία του προγράμματος εκκίνησης..."
diff --git a/perl-install/install/share/po/eo.po b/perl-install/install/share/po/eo.po
index 7ce621682..88e133945 100644
--- a/perl-install/install/share/po/eo.po
+++ b/perl-install/install/share/po/eo.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 04:07+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/mageia/"
@@ -91,89 +91,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "KD-ROMo"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Reto (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Reto (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Reto (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL de la spegulo?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL devas komenci per ftp:// aŭ http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Mi kontaktas la %s Linuksan retpaĝon por havigi la liston de disponeblaj "
"speguloj..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Mi malsukcesis kontakti la %s Linuksan retpaĝon por havigi la liston de "
"disponeblaj speguloj..."
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Elektu spegulon de kiu havigi la pakaĵojn"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS-agordo"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Bonvole enigu la nomon kaj dosierujon de via NSF-datenportilo"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Nomo mankas"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Dosierujo devas komenci per \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Nomo de la NFS surmeto?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Dosierujo"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Kroma"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -182,84 +177,84 @@ msgstr ""
"Mi ne trovas pakaĵlistan dosieron sur tiu spegulo. Certiĝu ke la adreso "
"estas ĝusta."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Rigardante jam instalitajn pakaĵojn..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Trovadas pakaĵojn por promocii"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Mi forigas pakaĵojn antaŭ ol ĝisdatigi..."
@@ -308,7 +303,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Reto"
@@ -358,7 +353,7 @@ msgstr "Instalado"
msgid "Configuration"
msgstr "Konfigurado"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Vi devas ankaŭ formati %s"
@@ -383,22 +378,22 @@ msgstr "Startado de la reto"
msgid "Bringing down the network"
msgstr "Haltas de la reto"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Mi kopias kelkajn pakaĵojn sur diskoj por estonta uzo"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Mi estas kopianta"
@@ -444,7 +439,7 @@ msgstr ""
msgid "No description"
msgstr "Nenia priskribo"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -453,27 +448,27 @@ msgstr ""
"Kelkaj pakaĵoj bezonataj de %s ne instaleblas:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Eraro okazis:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Okazis fatala eraro: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d instal-transakcioj malsukcesis"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -556,33 +551,33 @@ msgstr "Konsoliloj"
msgid "Editors, shells, file tools, terminals"
msgstr "Redaktiloj, ŝeloj, dosieriloj, terminaloj"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Programado"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C kaj C++ programadaj bibliotekoj, programoj kaj ĉapdosieroj"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentaro"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Libroj kaj Kielfari pri Linukso kaj libera programaro"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Subteno por triaflankaj aplikaĵoj"
@@ -713,9 +708,9 @@ msgid "Graphical Environment"
msgstr "Grafika medio"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE Laborstacio"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Laborstacio"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -795,62 +790,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Aliaj grafikaj labortabuloj"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Iloj"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH servilo"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Servilo de fora konfigurado Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Retaj utilaĵoj/monitorado"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Monitoriloj, proces-kalkuliloj, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Sorĉiloj de Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Sorĉiloj por konfiguri servilon"
@@ -864,7 +847,7 @@ msgstr ""
"Eraro okazis, sed mi ne scias kiel trakti ĝin bone.\n"
"Daŭri je via propra risko."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -909,7 +892,7 @@ msgstr ""
"instaladon. Por ĉi tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n"
"tajpu `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1108,29 +1091,29 @@ msgstr ""
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakaĵo"
msgstr[1] "%d pakaĵoj"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Resumo"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfiguru"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "ne konfigurita"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1139,7 +1122,7 @@ msgstr ""
"La sekva instal-datenportilo(j) estas trovita(j).\n"
"Se vi deziras transsalti kelkajn de ili, vi povas tiujn nun malselekti."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1152,7 +1135,7 @@ msgstr ""
"Tiam la instalado daŭrigas el la fiksdisko kaj la pakaĵoj restos atingeblaj "
"post kiam la sistemo estos plene instalita."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopii kompletajn KD-ojn"
@@ -1228,12 +1211,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Konfiguras IDE"
#: steps_interactive.pm:354
@@ -1410,7 +1393,7 @@ msgstr ""
"Bonvole certiĝu ke la datenportilo por ĝisdatigaj moduloj troviĝas en la "
"aparato %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Ĝisdatigoj"
@@ -1434,7 +1417,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Reprovu"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1456,28 +1449,28 @@ msgstr ""
"Ĉu vi deziras instali tiujn ĝisdatigojn?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s sur %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Aparataro"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Sonkarto"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Ĉu vi havas ISA-sonkarton?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1486,68 +1479,68 @@ msgstr ""
"Rulu \"alsaconf\" aŭ \"sndconfig\" post instalado por konfiguri vian "
"sonkarton"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Ne detektis sonkarto. Provu \"harddrake\" post instalado"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafika interfaco"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Reto kaj Interreto"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Prokuraj Serviloj"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "konfigurita"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "sekurnivelo"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Fajromuro (Firewall)"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktiva"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "malebligita"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Vi ne konfiguris X-on. Ĉu vi certas vere voli tion?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1556,17 +1549,17 @@ msgstr ""
"Sur tiu ĉi sekurec-nivelo, la aliro al dosieroj en la Vindozaj subdiskoj "
"estas limigitaj al la mastrumanto."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Enŝovu malplenan disketon en drajvo %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Kreas aŭtoinstalan disketon"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1577,12 +1570,12 @@ msgstr ""
"\n"
"Ĉu vi vere volas ĉesi nun?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Gratulojn"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Restarto"
@@ -1718,3 +1711,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Eliro"
+
+#~ msgid "CD-ROM"
+#~ msgstr "KD-ROMo"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE Laborstacio"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/es.po b/perl-install/install/share/po/es.po
index 42615c53c..73de81175 100644
--- a/perl-install/install/share/po/es.po
+++ b/perl-install/install/share/po/es.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-31 16:10+0000\n"
"Last-Translator: motitos\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mageia/language/"
@@ -93,89 +93,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Red (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Red (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Red (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "¿Cuál es la URL del servidor espejo?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "La URL debe comenzar con ftp:// o http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Contactando al sitio web %s para obtener la lista de servidores espejo "
"disponibles..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"No se ha podido contactar con el sitio web %s para obtener la lista de "
"espejos disponibles"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Elija un servidor espejo desde el cual obtener los paquetes"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Configuración NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Por favor, introduzca el nombre de equipo y directorio de su medio NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Falta nombre de equipo"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "El directorio debe comenzar con \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "¿Cuál es el nombre de equipo del montaje NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Directorio"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Complementario"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -184,22 +179,22 @@ msgstr ""
"No se puede encontrar un archivo de lista de paquetes en este espejo. "
"Asegúrese de que la ubicación sea la correcta."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Versión Core"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Versión Tainted"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Versión Nonfree"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -208,22 +203,22 @@ msgstr ""
"Hardware de su máquina necesita de firmware no libre para que los "
"controladores de software libre funcionen."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Debería habilitar \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" contiene varias piezas de los sistemas y sus aplicaciones"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" contiene software no libre.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -233,7 +228,7 @@ msgstr ""
"(ej: algunas tarjetas gráficas ATI/AMD, algunas tarjetas de red, algunas "
"tarjetas RAID, etc)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -242,34 +237,34 @@ msgstr ""
"\"%s\" contiene software que no puede ser distribuido en todos los países "
"debido a patentes de software."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
"También contiene software de \"%s\" reconstruido con capacidades adicionales."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Aquí puede habilitar mas medios si así lo desea."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Este medio provee actualizaciones de paquetes para el medio \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Buscando paquetes ya instalados..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Encontrando los paquetes a actualizar..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Eliminación de los paquetes antes de la actualización..."
@@ -319,7 +314,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Red"
@@ -370,7 +365,7 @@ msgstr "Instalación"
msgid "Configuration"
msgstr "Configuración"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "También deben formatear %s"
@@ -395,22 +390,22 @@ msgstr "Levantando la red"
msgid "Bringing down the network"
msgstr "Bajando la red"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Por favor espere, recuperando archivo"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "no se puede agregar medio"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Copiar algunos paquetes en disco para su uso futuro"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Copia en curso"
@@ -457,7 +452,7 @@ msgstr ""
msgid "No description"
msgstr "Sin descripción"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -466,27 +461,27 @@ msgstr ""
"Algunos paquetes requeridos por %s no se pueden instalar:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Se produjo un error:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Ocurrió un error fatal: %s"
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "No preguntar de nuevo"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "Fallaron %d operaciones de instalación"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Falló la instalación de paquetes:"
@@ -569,33 +564,33 @@ msgstr "Herramientas de consola"
msgid "Editors, shells, file tools, terminals"
msgstr "Editores, consolas, herramientas de archivo, terminales"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Desarrollo"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Bibliotecas de C y C + +, programas y archivos de inclusión"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentación"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Libros y Howtos sobre Linux y Software Libre"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Base estándar de Linux. Soporte de aplicaciones de terceros"
@@ -726,9 +721,9 @@ msgid "Graphical Environment"
msgstr "Entorno gráfico"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Estación de trabajo KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Estación de trabajo"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -814,65 +809,51 @@ msgstr "Un entorno gráfico ligero"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Escritorio Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"El escritorio Plasma, el entorno gráfico básico, acompañado con una "
-"colección de herramientas"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Otros escritorios gráficos"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, etc"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilidades"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Servidor SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Servidor de Configuración Remota Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Utilidades y monitoreo de red"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
"Herramientas de supervisión, contabilidad de procesos, tcpdump, nmap, etc."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Asistentes de Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Asistentes para configurar el servidor"
@@ -886,7 +867,7 @@ msgstr ""
"Se produjo un error, pero no sé cómo manejarlo bien.\n"
"Continúe bajo su propio riesgo."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -932,7 +913,7 @@ msgstr ""
"ello,\n"
"presione 'F1' cuando arranque desde el CD-ROM, luego escriba `texto'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Selección de medios"
@@ -1131,29 +1112,29 @@ msgstr "Tiempo restante:"
msgid "(estimating...)"
msgstr "(Estimando...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d paquete"
msgstr[1] "%d paquetes"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Resumen"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configurar"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "no configurado"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1162,7 +1143,7 @@ msgstr ""
"Se han encontrado los siguientes medios de instalación.\n"
"Si desea omitir algunos de ellos, puede desseleccionar algunos ahora."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1175,7 +1156,7 @@ msgstr ""
"Se continuará desde la unidad de disco duro y los paquetes estarán "
"disponibles una vez que el sistema esté completamente instalado."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Copiar todos los CDs"
@@ -1260,12 +1241,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Configurando IDE"
#: steps_interactive.pm:354
@@ -1440,7 +1421,7 @@ msgstr ""
"Por favor, asegúrese de que el medio de Módulos de Actualización está en la "
"unidad %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Actualizaciones"
@@ -1468,7 +1449,17 @@ msgstr ""
"\n"
"¿Desea configurar los repositorios de actualizaciones?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "no se puede agregar medio"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Reintentar"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1491,28 +1482,28 @@ msgstr ""
"¿Desea instalar las actualizaciones?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s en %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Tarjeta de sonido"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "¿Tiene una tarjeta de sonido ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1521,70 +1512,70 @@ msgstr ""
"Ejecute \"alsaconf\" o \"sndconfig\" después de la instalación para "
"configurar la tarjeta de sonido"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"No se detectó tarjeta de sonido. Trate \"HardDrake\" después de la "
"instalación"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interfaz gráfica"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Redes e Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Servidores proxy"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "configurado"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Nivel de seguridad"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Cortafuegos"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "activado"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "deshabilitado"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "No se ha configurado X. ¿Está seguro de que desea esto?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Preparando el programa de instalación inicial..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Sea paciente, esto puede tardar un tiempo..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1593,17 +1584,17 @@ msgstr ""
"En este nivel de seguridad, el acceso a los archivos en la partición de "
"Windows está restringido al administrador."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inserte un disquete en blanco en la unidad %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Creando disquete de instalación automática..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1614,12 +1605,12 @@ msgstr ""
"\n"
"¿Está seguro que desea salir ahora?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Felicitaciones"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Reiniciar"
@@ -1791,3 +1782,22 @@ msgid ""
msgstr ""
"_: Keep these entry short\n"
"Salida"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Estación de trabajo KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Escritorio Plasma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "El escritorio Plasma, el entorno gráfico básico, acompañado con una "
+#~ "colección de herramientas"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/et.po b/perl-install/install/share/po/et.po
index 7f9a35c57..440e87cfc 100644
--- a/perl-install/install/share/po/et.po
+++ b/perl-install/install/share/po/et.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drakx_install\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 19:11+0300\n"
"Last-Translator: Marek Laane <qiilaq69@gmail.com>\n"
"Language-Team: Estonian <i18n-et@ml.mageia.org>\n"
@@ -90,88 +90,83 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Võrk (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Võrk (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Võrk (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Peegli URL?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL-i alguses peab seisma ftp:// või http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Ühendumine %s veebileheküljega saadaolevate peeglite nimekirja hankimiseks..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Ühendumine %s veebileheküljega saadaolevate peeglite nimekirja hankimiseks "
"nurjus"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS-i seadistamine"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Palun andke NFS-andmekandja masinanimi ja kataloog"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Masinanimi puudub"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Kataloogi alguses peab olema \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "NFS-i andmekandja masinanimi?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Kataloog"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Täiendav"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -180,22 +175,22 @@ msgstr ""
"Tarkvara nimekirja sisaldava faili leidmine sellelt peeglilt nurjus. "
"Kontrollige palun asukohta."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Tuumiktarkvara (core)"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Piirangutega tarkvara (tainted)"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Mittevaba tarkvara (non-free)"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -204,22 +199,22 @@ msgstr ""
"Osa Teie masina riistvarast vajab mittevaba püsivara, et vaba tarkvara "
"draiverid saaksid korralikult töötada."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Teil tuleks lubada \"%s\" kasutamine"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" sisaldab mitmesugust süsteemile vajalikku tarkvara ja rakendusi"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" sisaldab, nagu nimigi ütleb, mittevaba tarkvara.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -228,7 +223,7 @@ msgstr ""
"Samuti sisaldab see püsivara, mida vajavad oma töös mõningad seadmed (nt. "
"mõned ATI/AMD graafikakaardid, mõned võrgukaardid, mõned RAID-i kaardid jne.)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -237,33 +232,33 @@ msgstr ""
"\"%s\" sisaldab tarkvara, mida ei ole tarkvarapatentide tõttu võimalik "
"kõigis riikides vabalt levitada."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "Samuti sisaldab see lisaomaduste huvides ümber ehitatud \"%s\"."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Siin saab soovi korral lubada rohkemate andmekandjate kasutamist."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "See andmekandja sisaldab \"%s\" uuendusi"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Juba paigaldatud pakettide tuvastamine..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Uuendatavate pakettide otsimine..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Pakettide eemaldamine enne uuendamist..."
@@ -312,7 +307,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Võrk"
@@ -362,7 +357,7 @@ msgstr "Paigaldamine"
msgid "Configuration"
msgstr "Seadistamine"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Vormindada tuleb ka %s"
@@ -386,22 +381,22 @@ msgstr "Võrgu aktiveerimine"
msgid "Bringing down the network"
msgstr "Võrgu seiskamine"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Palun oodake, tõmmatakse faili"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "andmekandja lisamine nurjus"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Mõningate tarkvarapakettide kopeerimine kettale edasiseks kasutamiseks"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Käib kopeerimine..."
@@ -447,7 +442,7 @@ msgstr ""
msgid "No description"
msgstr "Kirjeldus puudub"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -456,27 +451,27 @@ msgstr ""
"Mõningaid pakette, mida nõuab %s, ei saa paigaldada:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Tekkis viga:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Tekkis saatuslik viga: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Rohkem ei küsita"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d paigaldamistehingut nurjus"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Pakettide paigaldamine nurjus:"
@@ -559,33 +554,33 @@ msgstr "Konsoolitööriistad"
msgid "Editors, shells, file tools, terminals"
msgstr "Redaktorid, shellid, terminalid, failihaldus"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Arendus"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C ja C++ arendusteegid, rakendused ja päisefailid"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentatsioon"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Raamatud ja HOWTO-d Linuxi ja vabavara kohta"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Kolmandate tootjate rakenduste toetus"
@@ -716,9 +711,9 @@ msgid "Graphical Environment"
msgstr "Graafiline keskkond"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE tööjaam"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Tööjaam"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -799,62 +794,50 @@ msgstr "Kergemat sorti kiire graafiline töökeskkond"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasma töölaud"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "Plasma töölaud: põhiline graafiline töökeskkond ja palju rakendusi"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Muud graafilised töölauad"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm jt"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utiliidid"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH-server"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin võrguseadistusserver"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Võrguutiliidid ja võrgu jälgimine"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Jälgimistööriistad, protsesside jälgimine, tcpdump, nmap..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia nõustajad"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Serverite seadistamise nõustajad"
@@ -868,7 +851,7 @@ msgstr ""
"Tekkis tõrge, mida programm ei suuda ise klaarida.\n"
"Jätkake omal vastutusel."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -911,7 +894,7 @@ msgstr ""
"Kui nii juhtub, proovige palun tekstipõhist paigaldamist.\n"
"Selleks vajutage CD-lt laadimisel F1 ja sisestage \"text\"."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Andmekandjate valik"
@@ -1108,29 +1091,29 @@ msgstr "Aega jäänud:"
msgid "(estimating...)"
msgstr "(arvutatakse...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakett"
msgstr[1] "%d paketti"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Kokkuvõte"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Seadista"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "seadistamata"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1139,7 +1122,7 @@ msgstr ""
"Leiti järgmised paigaldusandmekandjad.\n"
"Kui Te ei soovi mõnda neist kasutada, eemaldage need valikust."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1151,7 +1134,7 @@ msgstr ""
"Seejärel jätkatakse paigaldamist kõvakettalt ning kogu tarkvara on seal "
"kättesaadav ka pärast süsteemi paigaldamist."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopeeri kõik CD-d"
@@ -1234,12 +1217,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE seadistamine"
#: steps_interactive.pm:354
@@ -1411,7 +1394,7 @@ msgstr "Paigaldamisjärgne seadistamine"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Palun kontrollige, et uuenduste andmekandja on seadmes %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Uuendused"
@@ -1439,7 +1422,17 @@ msgstr ""
"\n"
"Kas soovite määrata uuendamisandmekandjad?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "andmekandja lisamine nurjus"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Proovi uuesti"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1460,28 +1453,28 @@ msgstr ""
"Kas soovite uuendusi paigaldada?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s asukohas %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Riistvara"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Helikaart"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Kas Teil on ISA helikaart?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1490,70 +1483,70 @@ msgstr ""
"Helikaardi seadistamiseks käivitage pärast paigaldamist \"alsaconf\" või "
"\"sndconfig\""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Helikaarti ei leitud. Proovige see leida pärast paigaldamist \"harddrake\" "
"abil"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Graafiline kasutajaliides"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Kohtvõrk ja internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Puhverserverid"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "seadistatud"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Turbetase"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Tulemüür"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktiveeritud"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "keelatud"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Te ei ole seadistanud X'i. Kas Te tõesti ei taha seda teha?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Alglaadimisprogrammi ettevalmistamine..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Varuge kannatust, see võib võtta veidi aega..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1562,17 +1555,17 @@ msgstr ""
"Sellel turbetasemel pääseb Windowsi partitsioonil asuvatele failidele ligi "
"ainult administraator."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Pange palun tühi diskett seadmesse %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Kiirpaigaldusdisketi loomine..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1583,12 +1576,12 @@ msgstr ""
"\n"
"Kas soovite tõesti praegu lõpetada ja väljuda?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Õnnitleme!"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Taaskäivita"
@@ -1725,6 +1718,23 @@ msgid ""
"Exit"
msgstr "Väljumine"
+#~ msgid "CD-ROM"
+#~ msgstr "CD"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE tööjaam"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasma töölaud"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr "Plasma töölaud: põhiline graafiline töökeskkond ja palju rakendusi"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Alglaaduri ettevalmistamine..."
diff --git a/perl-install/install/share/po/eu.po b/perl-install/install/share/po/eu.po
index 4a0657117..ab161df28 100644
--- a/perl-install/install/share/po/eu.po
+++ b/perl-install/install/share/po/eu.po
@@ -12,15 +12,15 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 13:50+0100\n"
"Last-Translator: Egoitz Rodriguez Obieta <egoitzro@gmail.com>\n"
"Language-Team: Basque (http://www.transifex.com/projects/p/mageia/language/"
"eu/)\n"
+"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.6.9\n"
@@ -79,8 +79,7 @@ msgstr "Libre izan!"
msgid "Do you have further supplementary media?"
msgstr "Baduzu beste euskarri osagarririk?"
-#. -PO: keep the double empty lines between sections, this is formatted a la
-#. LaTeX
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: any.pm:154
#, c-format
msgid ""
@@ -96,110 +95,105 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Sarea (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Sarea (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Sarea (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Ispiluaren URL?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL-ak ftp:// edo http:// aurretik izan behar du"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"%s web gunearekin konektatzen, ispilu erabilgarrien zerrenda lortzeko..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"%s web gunearekin eskuragarri dauden ispiluen zerrenda lortzeko harremanak "
"huts egin du"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Aukeratu ispilu bat paketeak bertatik hartzeko"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS ezarpena"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Mesedez sartu zure NFS euskarriaren ostalari izena eta direktorioa"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Ostalari izena falta da"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Direktorioa honekin \"/\" hasi behar da"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "NFS muntaiaren ostalari izena?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Direktorioa"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Osagarria"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Ezin aurkitu hdlist fitxategia ispilu honetan"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -208,22 +202,22 @@ msgstr ""
"Zure makinako hardwareren batek firmwares ez libre batzuk behar ditu lan "
"egiteko software gidari libreen ordez."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "\"%s\" gaitu dezakezu"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "sistemak eta bere aplikazioak askotariko \"%s\" piezak dauzka"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "%s\"-k software ez librea dauka.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -233,7 +227,7 @@ msgstr ""
"AMD-etako grafikoko txartel batzuk, sare-txartel batzuk, RAID txartel "
"batzuk, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -242,39 +236,38 @@ msgstr ""
"\"%s\" herrialde bakoitzean software-patenteengatik banatu ezin duten "
"softwarea dauka."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "\"%s\"-ren softwarea er dauka, birsortzeko gaitasun osagarriekin."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Hemen hedabide gehiago gaitu dezakezu nahi baduzu."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Hedabide honek paketea \"%s\" hedabidetik eguneratzea ematen du"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Instalatutako paketeak bilatzen..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Bertsio berritzeko paketeak bilatzen..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Paketeak ezabatzen bertsioa berritu aurretik..."
-#. -PO: keep the double empty lines between sections, this is formatted a la
-#. LaTeX
+#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: any.pm:881
#, c-format
msgid ""
@@ -318,7 +311,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Sarea"
@@ -369,7 +362,7 @@ msgstr "Instalaketa"
msgid "Configuration"
msgstr "Konfigurazioa"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "%s ere formateatu behar duzu"
@@ -393,22 +386,22 @@ msgstr "Sarea irekitzen"
msgid "Bringing down the network"
msgstr "Sarea ixten"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Itxoin mesedez, fitxategia eskuratzen"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "euskarria ezin erantsi"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Zenbait pakete diskoetan kopiatzen etorkizunean erabiltzeko"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopiatzen ari da"
@@ -455,7 +448,7 @@ msgstr ""
msgid "No description"
msgstr "Azalpenik ez"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -464,27 +457,27 @@ msgstr ""
"%s-k eskatutako pakete batzuk ezin dira instalatu:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Akats bat gertatu da:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Akats larria gertatu da: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Ez galdetu beriro"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d instaketa eragiketek huts egin dute"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Paketeen instalaketak huts egin du:"
@@ -568,33 +561,33 @@ msgstr "Kontsola-tresnak"
msgid "Editors, shells, file tools, terminals"
msgstr "Editoreak, shell-ak, fitxategi-tresnak, terminalak"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Garapena"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C eta C++ garapen-liburutegiak, programak eta fitxategiak"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentazioa"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Linux eta Software libreari buruzko liburuak eta azalpenak"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Beste batzuek egindako aplikazioen euskarria"
@@ -725,9 +718,9 @@ msgid "Graphical Environment"
msgstr "Ingurune grafikoa"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE lanpostua"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Lanpostua"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -812,63 +805,50 @@ msgstr "Ingurune grafiko arin bat"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasma Mahaigaina"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Plasma mahaigaina, oinarrizko ingurune grafikoa erantsitako tresna bildumekin"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Beste mahaigain grafiko batzuk"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Enlightenment, Fvwm, etab."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilitateak"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH zerbitzaria"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin Urruneko Konfigurazio Zerbitzaria"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Sare Utilitateak/Gainbegiraketa"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Gainbegiraketa tresnak, prozesuen kotabilitatea, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia Morroiak"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Zerbitzaria konfiguratzeko morroiak"
@@ -882,7 +862,7 @@ msgstr ""
"Errore bat gertatu da, baina ez dakit behar bezala maneiatzen.\n"
"Jarraitu zure ardurapean."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -926,7 +906,7 @@ msgstr ""
"instalatzeko. Horrela bada, testu-instalazioa egiten saia zaitezke. \n"
"Horretarako, sakatu `F1' CD-ROMetik abiaraztean, eta idatzi `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Euskarri hautaketa"
@@ -1123,29 +1103,29 @@ msgstr "Geratzen den denbora:"
msgid "(estimating...)"
msgstr "(Kalkulatzen...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "pakete %d"
msgstr[1] "%d pakete"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Laburpena"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfiguratu"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "konfiguratu gabe"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1154,7 +1134,7 @@ msgstr ""
"Ondorengo instalazio euskarriak aurkitu dira.\n"
"Horietako batzuk erabiltzerik nahi ez baduzu, haututik kendu ditzakezu orain."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1166,7 +1146,7 @@ msgstr ""
"Disko zurrunetik jarraituko du orduan eta paketeak eskuragarri egongo dira "
"sistema osorik instalatu ondoren."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopiatu CD osoak"
@@ -1249,12 +1229,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE konfiguratzen"
#: steps_interactive.pm:354
@@ -1428,7 +1408,7 @@ msgstr "Instalazio-ondorengo konfigurazioa"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Mesedez egiaztatu Moduluak Eguneratzeko euskarria %s unitatean dagoela"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Eguneraketak"
@@ -1455,7 +1435,17 @@ msgstr ""
"\n"
"Konfiguratu nahi dituzu eguneratze baliabideak?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "euskarria ezin erantsi"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Berriro saiatu"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1477,28 +1467,28 @@ msgstr ""
"Eguneratzeak instalatu nahi dituzu?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s - %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardwarea"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Soinu-txartela"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "ISA soinu-txartela duzu?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1507,70 +1497,70 @@ msgstr ""
"Instalazioa egindakoan, exekutatu \"alsaconf\" edo \"sndconfig\" soinu-"
"txartela konfiguratzeko"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Ez da detektatu soinu-txartelik. Probatu \"harddrake\" instalazioa egin "
"ondoren"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interfaze grafikoa"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Sarea eta Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxy-ak"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "konfiguratuta"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Segurtasun-maila"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Suebakia"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktibatuta"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "desgaituta"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "X ez duzu konfiguratu. Ziur zaude hori dela egin nahi duzuna?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Programaren hasierako abioa prestatzen ..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Pazientzia izan, pixka baterako dauka..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1579,17 +1569,17 @@ msgstr ""
"Segurtasun-maila honetan, administratzaileak soilik du Windows partizioko "
"fitxategiak atzitzeko eskubidea."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sartu diskete huts bat %s unitatean"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Auto-instalazioko disketea sortzen..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1600,18 +1590,17 @@ msgstr ""
"\n"
"Ziur zaude orain irten nahi duzula?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Zorionak"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Berrabiarazi"
-#. -PO: please keep the following messages very short: they must fit in the
-#. left list of the installer!!!
+#. -PO: please keep the following messages very short: they must fit in the left list of the installer!!!
#: steps_list.pm:16
#, c-format
msgid ""
@@ -1742,3 +1731,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Irten"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE lanpostua"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasma Mahaigaina"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Plasma mahaigaina, oinarrizko ingurune grafikoa erantsitako tresna "
+#~ "bildumekin"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/fa.po b/perl-install/install/share/po/fa.po
index b04e94816..7fe3fcd36 100644
--- a/perl-install/install/share/po/fa.po
+++ b/perl-install/install/share/po/fa.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 04:07+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Persian (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -86,169 +86,164 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "شبکه (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "شبکه (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "نشانی اینترنتی آینه؟"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "انتخاب آینه‌ای برای گرفتن بسته‌ها"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "شاخه"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "نمیتوان پرونده hdlist را بر این آینه پیدا کرد"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "بررسی بسته‌های از قبل نصب شده..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "یافتن بسته‌های برای ارتقاء..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -297,7 +292,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "شبکه"
@@ -347,7 +342,7 @@ msgstr ""
msgid "Configuration"
msgstr "پیکربندی"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "باید %s را قالب‌بندی کنید"
@@ -371,22 +366,22 @@ msgstr "بالا آوردن شبکه"
msgid "Bringing down the network"
msgstr "پایین آوردن شبکه"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "کپی کردن در حال انجام است"
@@ -431,34 +426,34 @@ msgstr ""
msgid "No description"
msgstr ""
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr ""
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "یک خطای مهلک رخ داد: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr ""
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -539,33 +534,33 @@ msgstr "ابزارهای کنسول"
msgid "Editors, shells, file tools, terminals"
msgstr "ویرایش‌گرها، پوسته‌ها، ابزار پرونده، پایانه‌ها"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "برنامه‌سازی"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "کتابخانه‌های برنامه‌سازی C و C++، برنامه‌ها و پرونده‌های شامل"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "نوشتار"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "کتاب‌ها و چگونگی‌ها در لینوکس و نرم‌افزار آزاد"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "پایه‌ی استاندارد لینوکس. حمایت برنامه‌های شخص سوم"
@@ -696,9 +691,9 @@ msgid "Graphical Environment"
msgstr "محیط گرافیکی"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "ایستگاه‌کار KDE "
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "ایستگاه‌کار"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -778,62 +773,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "دیگر رومیزی‌های گرافیکی"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "وسایل"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "کارگزار‌ SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "کارگزار پیکربندی از راه دور Webmin "
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "پایشگری/وسایل شبکه"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "ابزار پایشگری، پروسه های حسابداری، tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "جادوگران نرم افزار ماندریبا"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "جادوگران برای پیکربندی کارگزار"
@@ -847,7 +830,7 @@ msgstr ""
"خطائی رخ داد، اما نمی‌دانم چگونه آن را بخوبی اداره کنم.\n"
"با مسئولیت خودتان ادامه دهید."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -888,7 +871,7 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1087,28 +1070,28 @@ msgstr ""
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "بسته‌های %d"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "خلاصه"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "پیکربندی"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "پیکربندی نشده است"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1117,7 +1100,7 @@ msgstr ""
"رسانه نصب بدنبال آمده یافت شد.\n"
"اگر میخواهید بعضی از آنها را نادیده بگیرید میتوانید آنها را اکنون نگزینید."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1129,7 +1112,7 @@ msgstr ""
"سپس آن از دیسک سخت ادامه یافته و بسته‌ها وقتی که سیستم کاملا نصب گردید در "
"دسترس خواهند بود."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "کپی کردن تمام سی‌دی‌ها"
@@ -1205,12 +1188,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "پیکربندی IDE"
#: steps_interactive.pm:354
@@ -1381,7 +1364,7 @@ msgstr "پیکربندی بعد از نصب"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "بروزسازی‌ها"
@@ -1405,7 +1388,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, c-format
+msgid "Retry?"
+msgstr ""
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1426,28 +1419,28 @@ msgstr ""
"آیا می‌خواهید بروزسازی‌ها را نصب کنید؟"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s بر %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "سخت‌افزار"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "کارت صوتی"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "آیا کارت صوتی ISA دارید؟"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1456,68 +1449,68 @@ msgstr ""
"برای پیکربندی کارت صوتی خود بعد از نصب برنامه‌ی \"sndconfig\" یا \"alsaconf"
"\" را اجرا کنید"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "هیچ کارت صوتی شناسایی نشد. \"harddrake\" را بعد از نصب امتحان کنید"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "واسط گرافیکی"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "شبکه و اینترنت"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "پراکسی‌ها"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "پیکربندی شده"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "سطح امنیتی"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "دیوارآتش"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "فعال شده"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "از کار افتاده"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "شما ایکس را پیکربندی نکرده‌اید. آیا واقعاً مطمئنید که این را می‌خواهید؟"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1525,17 +1518,17 @@ msgid ""
msgstr ""
"در این سطح امنیتی، دستیابی به پرونده‌های قسمت‌بندی ویندوز محدود به مدیر است."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "یک دیسکچه‌ی خالی را در گرداننده‌ی %s داخل کنید"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "ایجاد کردن دیسکچه‌ی نصب خودکار..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1546,12 +1539,12 @@ msgstr ""
"\n"
"واقعاً می‌خواهید اکنون ترک کنید؟"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "تبریک می‌گوئیم!"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "آغازگری مجدد"
@@ -1687,3 +1680,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "خروج"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "ایستگاه‌کار KDE "
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/fi.po b/perl-install/install/share/po/fi.po
index 61718dd7f..f3434d6e6 100644
--- a/perl-install/install/share/po/fi.po
+++ b/perl-install/install/share/po/fi.po
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-fi\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2011-05-21 23:25+0300\n"
"Last-Translator: Jani Välimaa <wally@mageia.org>\n"
"Language-Team: Finnish <mageia-i18n@mageia.org>\n"
@@ -98,86 +98,81 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD/DVD-levy"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Verkko (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Verkko (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Verkko (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Peilipalvelimen osoite?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Osoitteen täytyy alkaa etuliitteellä ftp:// tai http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Otetaan yhteys %sin sivustolle peilipalvelinlistan hakemiseksi..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Yhteydenotto %sin sivustolle peilipalvelinlistan hakemiseksi epäonnistui"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Valitse peilipalvelin, jolta paketit haetaan"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS-asetukset"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Syötä NFS-palvelimen nimi ja hakemistopolku"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Palvelimen osoite puuttuu"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Hakemistopolun täytyy alkaa \"/\"-merkillä"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "NFS-palvelimen nimi?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Hakemisto"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Lisämedia"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -186,84 +181,84 @@ msgstr ""
"Peilipalvelimelta ei löydy tiedostolistausta. Varmista tiedostopolun "
"oikeellisuus."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, fuzzy, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Ohita kaikki paketit medialta \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Etsitään asennettuja paketteja..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Etsitään paketteja päivitettäväksi..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Poistetaan paketteja ennen päivitystä..."
@@ -312,7 +307,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Verkko"
@@ -362,7 +357,7 @@ msgstr "Asennus"
msgid "Configuration"
msgstr "Asetukset"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Myös %s tulee alustaa"
@@ -386,22 +381,22 @@ msgstr "Käynnistetään verkkoa"
msgid "Bringing down the network"
msgstr "Ajetaan verkkoa alas"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Odota hetki, haetaan tiedostoa"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "median lisääminen epäonnistui"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopioidaan paketteja kovalevylle myöhempään käyttöä varten"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopioidaan"
@@ -447,7 +442,7 @@ msgstr ""
msgid "No description"
msgstr "Ei kuvausta"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -456,27 +451,27 @@ msgstr ""
"Joitakin paketin %s vaatimia paketteja ei voida asentaa:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Virhe:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Tapahtui ohittamaton virhe: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Älä kysy uudelleen"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d asennustapahtumaa epäonnistui"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Pakettien asennus epäonnistui:"
@@ -559,34 +554,34 @@ msgstr "Komentorivityökalut"
msgid "Editors, shells, file tools, terminals"
msgstr "Editorit, komentotulkit, tiedostotyökalut, päätteet"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Kehitysympäristö"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""
"Ohjelmat, include-tiedostot ja kehityskirjastot ohjelmointikielille C ja C++"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentaatio"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Kirjoja ja ohjeita Linuxista ja vapaan lähdekoodin ohjelmista"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -719,9 +714,9 @@ msgid "Graphical Environment"
msgstr "Graafinen ympäristö"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE-työasema"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Työasema"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -807,64 +802,51 @@ msgstr ""
"käyttäjäystävällisillä työkaluilla ja työpöytäsovelluksilla."
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Mukautettu"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"K-työpöytäympäristö. Graafinen perusympäristö ja sen mukana tulevat työkalut"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Muut graafiset työpöytäympäristöt"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Enlightenment, FVWM jne."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Työkalut"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH-palvelin"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin etäasetuspalvelin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Verkkotyökalut ja verkon valvonta"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Valvontatyökalut, prosessienhallinta, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageian asetusvelhot"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Velhoja palvelinten asettamiseksi"
@@ -878,7 +860,7 @@ msgstr ""
"Ilmeni virhe, eikä sitä ei voida käsitellä kunnolla.\n"
"Jatka omalla vastuullasi."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -924,7 +906,7 @@ msgstr ""
"käynnistetään painamalla käynnistysruudussa näppäintä F1,\n"
"kirjoittamalla teksti \"text\" ja painamalla Enteriä."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Asennusmedioiden valinta"
@@ -1127,7 +1109,7 @@ msgstr "Aikaa jäljellä:"
msgid "(estimating...)"
msgstr "(arvioidaan...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1135,22 +1117,22 @@ msgstr[0] "%d paketti"
msgstr[1] "%d pakettia"
# Asennuksen sivuvalikko
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Yhteenveto"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Aseta"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "ei asetettu"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1159,7 +1141,7 @@ msgstr ""
"Löydettiin seuraavat asennusmediat.\n"
"Poista median valinta, jos et halua käyttää sitä."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1171,7 +1153,7 @@ msgstr ""
"Asennus jatkuu tämän jälkeen kovalevyltä ja paketit ovat käytettävissä myös "
"asennuksen jälkeen."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopioi asennuslevyt"
@@ -1254,12 +1236,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Etsitään IDE-levyjä"
#: steps_interactive.pm:354
@@ -1434,7 +1416,7 @@ msgstr "Asennuksen jälkeiset toiminnot"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Varmista, että \"Update Modules\"-media on asemassa %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Päivitykset"
@@ -1458,7 +1440,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "median lisääminen epäonnistui"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Yritä uudelleen"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1479,28 +1471,28 @@ msgstr ""
"Asennetaanko päivitykset?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s kohteessa %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Laitteisto"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Äänikortti"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Onko koneessa ISA-väylään liitettävä äänikortti?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1509,71 +1501,71 @@ msgstr ""
"Suorita asennuksen jälkeen komento \"alsaconf\" tai \"sndconfig\" "
"asettaaksesi äänikortin."
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Yhtään äänikorttia ei löytynyt. Suorita asennuksen jälkeen komento "
"\"harddrake2\"."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Graafinen käyttöliittymä"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Verkko ja Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Välityspalvelimet"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "asetettu"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Turvallisuustaso"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Palomuuri"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktivoitu"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "ei käytössä"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
"X-palvelinta ei ole asetettu, haluatko varmasti jättää sen asettamatta?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Valmistellaan asennusta"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Ole kärsivällinen, valmistelussa voi kestää hetki..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1583,17 +1575,17 @@ msgstr ""
"pääkäyttäjälle."
# mat
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Aseta tyhjä levyke levykeasemaan %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Luodaan automaattiasennuslevykettä..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1604,12 +1596,12 @@ msgstr ""
"\n"
"Haluatko todella lopettaa?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Onnittelut"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Käynnistä uudelleen"
@@ -1749,6 +1741,27 @@ msgid ""
"Exit"
msgstr "Lopetus"
+#~ msgid "CD-ROM"
+#~ msgstr "CD/DVD-levy"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE-työasema"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Mukautettu"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "K-työpöytäympäristö. Graafinen perusympäristö ja sen mukana tulevat "
+#~ "työkalut"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Valmistellaan käynnistyslatainta..."
diff --git a/perl-install/install/share/po/fr.po b/perl-install/install/share/po/fr.po
index 0dd17d50a..9ec0a5910 100644
--- a/perl-install/install/share/po/fr.po
+++ b/perl-install/install/share/po/fr.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 20:01+0000\n"
"Last-Translator: Eric Barbero <dune06@free.fr>\n"
"Language-Team: French (http://www.transifex.com/projects/p/mageia/language/"
@@ -93,87 +93,82 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Réseau (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Réseau (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Réseau (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL du miroir ?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "L'URL doit commencer par ftp:// ou http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Récupération de la liste des miroirs disponibles sur le site Web %s…"
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"La tentative de récupération de la liste des miroirs disponibles sur le site "
"Web %s a échoué"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Choisissez un serveur miroir d'où télécharger les paquetages"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Configuration NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Veuillez entrer le nom d'hôte et le répertoire de votre média NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Il manque le nom d'hôte"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Le répertoire doit commencer par « / »"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Nom d'hôte du montage NFS ?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Répertoire"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Supplémentaire"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -182,22 +177,22 @@ msgstr ""
"Ne peut trouver le fichier de liste des paquetages sur ce miroir. Vérifiez "
"que l'emplacement est correct."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -206,23 +201,23 @@ msgstr ""
"Certains matériels sur votre machine peuvent nécessiter des firmwares non\n"
"libres afin que les pilotes libres puissent fonctionner."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Vous devriez activer « %s »"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
"« %s » contient les différentes parties du système ainsi que ses applications"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "« %s » contient des logiciels non libres.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -232,7 +227,7 @@ msgstr ""
"certains périphériques (ex : certaines cartes ATI/AMD, certaines cartes "
"réseau, certaines cartes RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -241,7 +236,7 @@ msgstr ""
"« %s » contient des logiciels qui ne peuvent pas être redistribués dans tous "
"les pays à cause de certains brevets logiciels."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
@@ -249,27 +244,27 @@ msgstr ""
"Il contient également des logiciels de « %s » recompilés avec des "
"fonctionnalités supplémentaires."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Ici vous pouvez activer des médias supplémentaires si vous le désirez."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Ce médium fournit les paquets de mise à jour pour le médium « %s »"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Recherche des paquetages déjà installés…"
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Recherche des paquetages à mettre à jour…"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Suppression des paquetages avant la mise à jour…"
@@ -319,7 +314,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Réseau"
@@ -369,7 +364,7 @@ msgstr "Installation"
msgid "Configuration"
msgstr "Configuration"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Vous devez aussi formater %s"
@@ -394,23 +389,23 @@ msgstr "Démarrage de l'interface réseau"
msgid "Bringing down the network"
msgstr "Arrêt de l'interface réseau"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Veuillez patienter, récupération du fichier en cours"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "impossible d'ajouter le média"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
"Copie de certains paquetages sur les disques pour une utilisation future"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Copie en cours"
@@ -457,7 +452,7 @@ msgstr ""
msgid "No description"
msgstr "Pas de description"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -466,27 +461,27 @@ msgstr ""
"Certains paquetages requis par %s ne peuvent être installés :\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Une erreur est survenue :"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Une erreur fatale est survenue : %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Ne plus me demander"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d transactions ont échoué"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "L'installation des paquetages a échoué :"
@@ -570,34 +565,34 @@ msgstr "Utilitaires console"
msgid "Editors, shells, file tools, terminals"
msgstr "Éditeurs, interpréteurs, outils fichiers, terminaux"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Développement"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""
"Bibliothèques de développement C et C++, programmes et fichiers d'en-tête"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentation"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Livres et tutoriels sur Linux et le Logiciel Libre"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "« Linux Standard Base ». Support des programmes tiers"
@@ -728,9 +723,9 @@ msgid "Graphical Environment"
msgstr "Environnement graphique"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Station de travail KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Station de travail"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -816,64 +811,50 @@ msgstr "Un environnement graphique léger et rapide"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Bureau Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Le bureau Plasma Desktop, l'environnement graphique de base avec une "
-"collection d'outils en accompagnement"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Autres environnements de bureau"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, etc."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilitaires"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Serveur SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Serveur de configuration distante Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Utilitaires réseau/Surveillance du réseau"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Outils de surveillance, gestion des processus, tcpdump, nmap, …"
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Assistants Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Assistants pour configurer le serveur"
@@ -887,7 +868,7 @@ msgstr ""
"Une erreur est survenue et semble difficile à résoudre correctement.\n"
"Vous pouvez continuer, mais à vos risques et périls."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -934,7 +915,7 @@ msgstr ""
"Pour cela, appuyez sur « F1 » lors du démarrage sur le CD-ROM, puis entrez « "
"text »."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Sélection des médias"
@@ -1133,29 +1114,29 @@ msgstr "Temps restant :"
msgid "(estimating...)"
msgstr "(estimation en cours…)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d paquetage"
msgstr[1] "%d paquetages"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Résumé"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configurer"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "non configuré"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1165,7 +1146,7 @@ msgstr ""
"Si vous ne désirez pas utiliser certains d'entre eux, vous pouvez les "
"désélectionner maintenant."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1178,7 +1159,7 @@ msgstr ""
"Celle-ci s'effectuera alors à partir du disque dur et les paquetages "
"resteront disponibles une fois le système installé."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Copier entièrement les CD"
@@ -1261,12 +1242,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Configuration IDE"
#: steps_interactive.pm:354
@@ -1442,7 +1423,7 @@ msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
"Assurez-vous que le média de mise à jour des modules est dans le lecteur %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Mises à jour"
@@ -1469,7 +1450,17 @@ msgstr ""
"\n"
"Voulez-vous paramétrer le média de mise à jour ?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "impossible d'ajouter le média"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Ré-essayer"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1491,28 +1482,28 @@ msgstr ""
"Souhaitez-vous installer les mises à jour ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s sur %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Matériel"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Carte son"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Possédez-vous une carte son ISA ?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1521,53 +1512,53 @@ msgstr ""
"Lancez « alsaconf » ou « sndconfig » après l'installation pour configurer la "
"carte son"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Aucune carte son détectée. Essayez avec « harddrake » après l'installation"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interface graphique"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Réseau et Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxies (serveurs mandataires)"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "configuré"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Niveau de sécurité"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Pare-feu"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "activé"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "désactivé"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
@@ -1575,17 +1566,17 @@ msgstr ""
"ce que vous désirez ?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Préparation du chargeur d'amorçage..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Merci d'être patient, cela peut prendre quelques minutes…"
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1594,17 +1585,17 @@ msgstr ""
"A ce niveau de sécurité, l'accès aux fichiers de la partition Windows sera "
"restreint à l'administrateur."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insérez une disquette vierge dans le lecteur %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Création de la disquette d'auto-installation…"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1615,12 +1606,12 @@ msgstr ""
"\n"
"Souhaitez-vous vraiment quitter maintenant ?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Félicitations"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Redémarrage"
@@ -1756,3 +1747,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Quitter"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Station de travail KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Bureau Plasma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Le bureau Plasma Desktop, l'environnement graphique de base avec une "
+#~ "collection d'outils en accompagnement"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/fur.po b/perl-install/install/share/po/fur.po
index 8dba6e916..0ab69190f 100644
--- a/perl-install/install/share/po/fur.po
+++ b/perl-install/install/share/po/fur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2004-06-28 17:41+0200\n"
"Last-Translator: Andrea Gracco <graccoandrea@tin.it>\n"
"Language-Team: furlan <gft@freelists.org>\n"
@@ -82,170 +82,165 @@ msgid ""
msgstr ""
#: any.pm:162
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
#, fuzzy, c-format
msgid "Network (HTTP)"
msgstr "Rêt"
-#: any.pm:164
+#: any.pm:163
#, fuzzy, c-format
msgid "Network (FTP)"
msgstr "Rêt"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Cartele"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr ""
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr ""
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr ""
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -290,7 +285,7 @@ msgstr ""
msgid "NFS"
msgstr "HFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rêt"
@@ -340,7 +335,7 @@ msgstr "Instale"
msgid "Configuration"
msgstr "Configurazion"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -362,22 +357,22 @@ msgstr ""
msgid "Bringing down the network"
msgstr ""
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "Instalazion in vore"
@@ -422,34 +417,34 @@ msgstr ""
msgid "No description"
msgstr "tes descrizions"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Al è intravignût un fal"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "A si è verificât un fal fatâl: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "Instalazion falade"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Instale atualizazions"
@@ -528,33 +523,33 @@ msgstr "Console"
msgid "Editors, shells, file tools, terminals"
msgstr ""
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Svilup"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentazion"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr ""
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -685,9 +680,9 @@ msgid "Graphical Environment"
msgstr "Ambient Grafic"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr ""
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Viôt le Configurazion"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -767,62 +762,50 @@ msgstr "Ambient Grafic"
#: share/meta-task/compssUsers.pl:194
#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Desktop"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, fuzzy, c-format
msgid "Other Graphical Desktops"
msgstr "Desktop grafic"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, fuzzy, c-format
msgid "Utilities"
msgstr "Filipinis"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr ""
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, fuzzy, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Viôt le Configurazion"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr ""
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "<b>Mageia Expert</b>"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr ""
@@ -836,7 +819,7 @@ msgstr ""
"Al è intravignût un fal, ma no sai ben cemût gjestîlu.\n"
"Continue a to azard."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -873,7 +856,7 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Selezion dal percors"
@@ -1070,36 +1053,36 @@ msgstr ""
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "pachet no cognossût"
msgstr[1] "pachet no cognossût"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr ""
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configure"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr ""
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1108,7 +1091,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1184,13 +1167,13 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
+msgid "CD/DVD"
msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
-msgstr ""
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
+msgstr "Configurazion"
#: steps_interactive.pm:354
#, c-format
@@ -1352,7 +1335,7 @@ msgstr ""
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Atualizazions"
@@ -1376,7 +1359,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Torne a meti in vore"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1390,113 +1383,113 @@ msgid ""
msgstr ""
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr ""
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr ""
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr ""
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr ""
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Rêt & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr ""
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr ""
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Nivel di Sigurece"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "disabilitât"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr ""
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1504,12 +1497,12 @@ msgid ""
"Do you really want to quit now?"
msgstr ""
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Congratulazions"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Torne a inviâ"
@@ -1646,6 +1639,13 @@ msgid ""
"Exit"
msgstr "Jessì"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Desktop"
+
#, fuzzy
#~ msgid "RazorQT Desktop"
#~ msgstr "Desktop"
diff --git a/perl-install/install/share/po/ga.po b/perl-install/install/share/po/ga.po
index 2266c96e1..a0d3a6ddd 100644
--- a/perl-install/install/share/po/ga.po
+++ b/perl-install/install/share/po/ga.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-09-12 18:04+0200\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Irish <ga@li.org>\n"
@@ -81,169 +81,164 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Líonra (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Líonra (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Líonra (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Cumraigh NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Comhadlann"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, fuzzy, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Earráid ag oscailt %s do scríobh: %s"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, fuzzy, c-format
msgid "Looking at packages already installed..."
msgstr "Roghnaigh pacáistí ..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Ag cúrdach pacáistí le húasgrádú..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -288,7 +283,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Líonra"
@@ -338,7 +333,7 @@ msgstr "Suiteáil"
msgid "Configuration"
msgstr "cumraíocht"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Is gá %s a fhormáidiú freisin"
@@ -360,22 +355,22 @@ msgstr "Ag tosnú suas an ghréasán"
msgid "Bringing down the network"
msgstr "Ag dúnadh síos an ghreasán"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "Pointe taca dublach %s"
@@ -420,34 +415,34 @@ msgstr ""
msgid "No description"
msgstr "Gan cur síos"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Tharla earráid"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr ""
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "Theip ag feistiú"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Ag feistiál pacáiste %s"
@@ -526,33 +521,33 @@ msgstr "Uirlisí Consóil"
msgid "Editors, shells, file tools, terminals"
msgstr ""
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Forbairt"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Doiciméadú"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr ""
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -683,9 +678,9 @@ msgid "Graphical Environment"
msgstr "Timpeallacht Ghrafach"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Stáisiún KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Stáisiún Oibre"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -764,63 +759,51 @@ msgid "A lightweight fast graphical environment"
msgstr "Timpeallacht Ghrafach"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Deasc"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Deasc Graphaicí Eile"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Uirlisí"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Freastalaí SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, fuzzy, c-format
msgid "Webmin"
msgstr "Seirbishí"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, fuzzy, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Cumraigh Idirlíon"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, fuzzy, c-format
msgid "Network Utilities/Monitoring"
msgstr "Cumraíocht Gréasánú"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "Bainteach le hIdirlíon"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, fuzzy, c-format
msgid "Wizards to configure server"
msgstr "Cumraigh printéir"
@@ -834,7 +817,7 @@ msgstr ""
"Ta earraid ann, níl a fhios agam conas é a cheartú.\n"
"Lean ort, ar do phriacal féin."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -871,7 +854,7 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Roghnú Grúpa Pacáistí"
@@ -1068,36 +1051,36 @@ msgstr "Am fagtha "
msgid "(estimating...)"
msgstr "Ag meastú"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pacáistí"
msgstr[1] "%d pacáistí"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Coimriú"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Cumraigh"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, fuzzy, c-format
msgid "not configured"
msgstr "Cumraigh"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1106,7 +1089,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1182,12 +1165,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Ag cumraigh IDE"
#: steps_interactive.pm:354
@@ -1350,7 +1333,7 @@ msgstr "Cumraíocht Iar-feistú"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Leasuithe"
@@ -1374,7 +1357,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Atriail"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1388,113 +1381,113 @@ msgid ""
msgstr ""
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s ar %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Crua-earraí"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Carta Fuaim"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, fuzzy, c-format
msgid "Do you have an ISA sound card?"
msgstr "An bhfuil ceann eile agat?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Comhéadan grafach"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Gréasán agus Idirlíon"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Ionadaithe"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "cumraithe"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Leibhéal Slándála"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Bac slándála"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "díchumasaithe"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Ag Ullmhaigh feistiú"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Cur isteach diosca folamh sa dioscthiomant %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr ""
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1502,12 +1495,12 @@ msgid ""
"Do you really want to quit now?"
msgstr ""
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Comhghairdeas"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Atosaigh"
@@ -1644,6 +1637,19 @@ msgid ""
"Exit"
msgstr "Scoir"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Stáisiún KDE"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Deasc"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Ag Ullmhaigh ríomhchlar thosnaithe..."
diff --git a/perl-install/install/share/po/gl.po b/perl-install/install/share/po/gl.po
index 77100c890..ab90f07c4 100644
--- a/perl-install/install/share/po/gl.po
+++ b/perl-install/install/share/po/gl.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Galician (http://www.transifex.com/projects/p/mageia/language/"
@@ -92,89 +92,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Rede (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Rede (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Rede (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Cal é o URL do sitio espello?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "O URL debe comezar por ftp:// ou por http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Contactando co sitio web de %s para obte-la lista de sitios espello "
"dispoñibles..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Erro ó contactar co sitio web de %s para obte-la lista de sitios espello "
"dispoñibles"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Escolla un sitio espello dende o que obte-los paquetes"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Configuración de NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Introduza o nome de máquina e o directorio do soporte NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Falta o nome de máquina"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "O directorio debe comezar por \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Cal é o nome de máquina da montaxe NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Directorio"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Suplementario"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -183,84 +178,84 @@ msgstr ""
"Non se puido atopar un ficheiro de lista de paquetes neste sitio espello.\n"
"Asegúrese de que a localización é a correcta."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Buscando os paquetes que xa están instalados..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Buscando paquetes para actualizar..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Eliminando paquetes antes de actualizar..."
@@ -310,7 +305,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rede"
@@ -360,7 +355,7 @@ msgstr "Instalación"
msgid "Configuration"
msgstr "Configuración"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Tamén debe formatar %s"
@@ -384,22 +379,22 @@ msgstr "Activando a rede"
msgid "Bringing down the network"
msgstr "Desactivando a rede"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Por favor, agarde, recuperando o ficheiro"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "Incapaz de engadir o soporte"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Copiando algúns paquetes dos discos para un uso posterior"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Copiando"
@@ -446,7 +441,7 @@ msgstr ""
msgid "No description"
msgstr "Sen descrición"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -455,27 +450,27 @@ msgstr ""
"Non se pode instalar algúns paquetes solicitados por %s:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Ocorreu un erro:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Ocorreu un erro moi grave: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "Erraron %d transaccións de instalación"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Errou a instalación de paquetes:"
@@ -558,34 +553,34 @@ msgstr "Ferramentas de Consola"
msgid "Editors, shells, file tools, terminals"
msgstr "Editores, shells, ferramentas de ficheiro, terminais"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Desenvolvemento"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""
"Bibliotecas de desenvolvemento de C e C++, programas e ficheiros include"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentación"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Libros e Howtos sobre Linux e o Software Libre"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Soporte para aplicacións de terceiros"
@@ -716,9 +711,9 @@ msgid "Graphical Environment"
msgstr "Ambiente Gráfico"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Estación de Traballo KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Estación de traballo"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -802,63 +797,51 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Outros Escritorios Gráficos"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilidades"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Servidor SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Servidor de Configuración Remota Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Monitorización/Utilidades de Rede"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
"Ferramentas de monitorización, accounting de procesos, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Asistentes de Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Asistentes para configurar o servidor"
@@ -872,7 +855,7 @@ msgstr ""
"Ocorreu un erro, e o programa non sabe como manexalo de\n"
"maneira limpa. Continúe baixo a súa propia responsabilidade."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -917,7 +900,7 @@ msgstr ""
"en modo texto. Para iso, prema 'F1' cando arrinque dende o CDROM,\n"
"e escriba 'text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Selección de Soportes"
@@ -1116,29 +1099,29 @@ msgstr "Tempo restante:"
msgid "(estimating...)"
msgstr "(estimando...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d paquete"
msgstr[1] "%d paquetes"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Resumo"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configurar"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "non configurado"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1147,7 +1130,7 @@ msgstr ""
"Atopáronse os seguintes soportes de instalación.\n"
"Se desexa saltar algún deles, pode deseleccionalo agora."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1160,7 +1143,7 @@ msgstr ""
"Esta continuará despois dende o disco duro e os paquetes permanecerán "
"dispoñibles unha vez que o sistema xa estea instalado."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Copiar CDs enteiros"
@@ -1236,12 +1219,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Configurando IDE"
#: steps_interactive.pm:354
@@ -1414,7 +1397,7 @@ msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
"Asegúrese de que o soporte de Módulos de Actualización está na unidade %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Actualizacións"
@@ -1438,7 +1421,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "Incapaz de engadir o soporte"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Volver tentar"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1460,28 +1453,28 @@ msgstr ""
"Desexa instala-las actualizacións?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s en %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Tarxeta de son"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Ten unha tarxeta de son ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1490,70 +1483,70 @@ msgstr ""
"Execute \"alsaconf\" ou \"sndconfig\" despois da instalación para configura-"
"la tarxeta de son"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Non se detectou ningunha tarxeta de son. Execute \"harddrake\" trala "
"instalación"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interface Gráfica"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Rede & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxys"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "configurado"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Nivel de Seguridade"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Cortalumes"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "activado"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "desactivado"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Non configurou as X. Está seguro de que desexa isto?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Sexa paciente, isto pode levar un anaco..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1562,17 +1555,17 @@ msgstr ""
"Con este nivel de seguridade, o acceso ós ficheiros da partición Windows "
"está restrinxido ó administrador."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira un disquete baleiro na unidade %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Creando un disquete de instalación automática..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1583,12 +1576,12 @@ msgstr ""
"\n"
"Desexa saír agora?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Noraboa"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Reiniciar"
@@ -1724,3 +1717,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Sair"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Estación de Traballo KDE"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/he.po b/perl-install/install/share/po/he.po
index f825949a0..ba71a3992 100644
--- a/perl-install/install/share/po/he.po
+++ b/perl-install/install/share/po/he.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 04:07+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/mageia/language/"
@@ -96,85 +96,80 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "תקליטור"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "רשת (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "רשת (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "רשת (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "כתובת URL של אתר המראה?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "על הכתובת להתחיל ב-//:ftp או ב-//:http"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "עליך לבחור את אתר המראה ממנו יורדו החבילות"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "הגדרת NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "נא להזין את שם המארח ואת התיקיה בה נמצא מקור ה-NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "שם המארח חסר"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "על התיקיה להתחיל ב=\"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "שם המארח של עיגון ה-NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "ספרייה"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "תוספים"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -182,84 +177,84 @@ msgid ""
msgstr ""
"אין אפשרות למצוא קובץ המכיל רשימת חבילות במקור זה. נא לוודא שהכתובת תקינה."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "מחפש חבילות שכבר מותקנות..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "מאתר חבילות שיש לשדרג..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "מסיר חבילות לפני השדרוג..."
@@ -308,7 +303,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "רשת"
@@ -358,7 +353,7 @@ msgstr "התקנה"
msgid "Configuration"
msgstr "הגדרות"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "חובה עליך לפרמט גם את %s"
@@ -382,22 +377,22 @@ msgstr "מאתחל את שירותי הרשת"
msgid "Bringing down the network"
msgstr "מוריד את שירותי הרשת"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "לא ניתן להוסיף את המקור"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "מעתיק מספר חבילות על הכוננים לשימוש עתידי"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "מעתיק את התקליטור לכונן הקשיח"
@@ -442,7 +437,7 @@ msgstr "אין מידע ב-xml למקור \"%s\", תוצאה חלקית בלבד
msgid "No description"
msgstr "ללא תיאור"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -451,27 +446,27 @@ msgstr ""
"לא ניתן להתקין חלק מהחבילות המבוקשות על ידי %s:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr ""
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "שגיאה חמורה אירעה : %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "אל תשאל שוב"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d התקנות נכשלו"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -553,33 +548,33 @@ msgstr "כלי מסוף"
msgid "Editors, shells, file tools, terminals"
msgstr "עורכים, מעטפות, כלי קבצים, מסופים"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "פיתוח"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "ספריות פיתוח בC וC++, תוכנות וקבצי include"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "מסמכים"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "ספרים ומדריכים לשימוש בלינוקס ותוכנה חופשית"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "תמיכה בתוכנות צד שלישי. Linux Standard Base"
@@ -710,9 +705,9 @@ msgid "Graphical Environment"
msgstr "סביבה גרפית"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "סביבת העבודה KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "תחנת עבודה"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -792,62 +787,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "סביבות עבודה אחרות"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "תוכנות שרות"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "שרת SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "שרת הגדרה תצורה מרחוק Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "כלי הגדרת וניטור רשת"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "כלי ניטור, בקרת תהליכים, tcpdump , nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "אשפי מנדריבה"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "אשפים להגדרת השרת שלך"
@@ -861,7 +844,7 @@ msgstr ""
"חלה תקלה, אך איני יודע איך לפתור אותה.\n"
"המשך הפעולה הינו באחריותך בלבד."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -901,7 +884,7 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1098,29 +1081,29 @@ msgstr "זמן נותר:"
msgid "(estimating...)"
msgstr "(מעריך...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d חבילה"
msgstr[1] "%d חבילות"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "סיכום ובדיקת הגדרות"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "הגדרות"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "לא מוגדר"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1129,7 +1112,7 @@ msgstr ""
"מקורות התוכנה הבאים זמינים להתקנה.\n"
"באפשרותך לדלג על חלק מהמקורות על ידי ביטול הסימונים המתאימים."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1141,7 +1124,7 @@ msgstr ""
"אם אפשרות זו מופעלת, ההתקנה תמשיך מהכונן הקשיח, וכל החבילות מתקליטורי ההתקנה "
"יהיו זמינות אחרי סיום ההתקנה מהכונן הקשיח."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "העתקת תקליטורים שלמים"
@@ -1217,12 +1200,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "מגדיר IDE"
#: steps_interactive.pm:354
@@ -1394,7 +1377,7 @@ msgstr "מבצע הגדרות לאחר-התקנה"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "נא לודא שהמקור לעידכונים בכונן %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "עדכונים"
@@ -1418,7 +1401,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "לא ניתן להוסיף את המקור"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "ניסיון נוסף"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1438,28 +1431,28 @@ msgstr ""
"זה ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s על %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "חומרה"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "כרטיס קול"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "האם יש לך כרטיס קול ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1468,85 +1461,85 @@ msgstr ""
"עליך להריץ את \"alsaconf\" או \"sndconfig\" אחרי ההתקנה בכדי להגדיר את כרטיס "
"הקול שלך"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "לא זוהו כרטיסי קול. יש לנסות את האשף \"harddrake\" לאחר ההתקנה"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "ממשק גרפי"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "רשת ואינטרנט"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "שרתים מתווכים"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "מוגדר"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "סף האבטחה המבוקש:"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "חומת אש"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "פועל"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "מנותק"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "לא הוגדר ממשק גרפי (X). האם אכן ברצונך לבחור אפשרות זו?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr "ברמת אבטחה זו, גישה לקבצים במחיצת החלונות תתאפשר רק למנהל המערכת."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "נא להכניס תקליטון ריק לכונן %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "יוצר תקליטון הפעלה אוטומטית..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1557,12 +1550,12 @@ msgstr ""
"\n"
"האם באמת ברצונך לצאת עכשיו?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "ברכותינו!"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "הפעלה מחדש"
@@ -1698,3 +1691,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "יציאה"
+
+#~ msgid "CD-ROM"
+#~ msgstr "תקליטור"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "סביבת העבודה KDE"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/hi.po b/perl-install/install/share/po/hi.po
index c6611963f..1096aafa4 100644
--- a/perl-install/install/share/po/hi.po
+++ b/perl-install/install/share/po/hi.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 04:07+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Hindi (http://www.transifex.com/projects/p/mageia/language/"
@@ -86,169 +86,164 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "सीडी-रॉम"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr ""
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr ""
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "एक मिरर का चयन करें जहाँ से पैकेजों को प्राप्त करना है"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "डिरेक्ट्री"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr ""
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "पहिले से संसाधित पैकेजों को देखा जा रहा है..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "उन्नयन के लिये पैकेजों को खोजा जा रहा है..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -297,7 +292,7 @@ msgstr "एफटीपी"
msgid "NFS"
msgstr "एनएफ़एस"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "नेटवर्क"
@@ -347,7 +342,7 @@ msgstr ""
msgid "Configuration"
msgstr "संरचना"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "आपको %s को भी एकसार करना चाहिए"
@@ -372,22 +367,22 @@ msgstr "नेटवर्क को लाया जा रहा है"
msgid "Bringing down the network"
msgstr "नेटवर्क को लाया जा रहा है"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr ""
@@ -432,34 +427,34 @@ msgstr ""
msgid "No description"
msgstr "कोई वर्णन नहीं"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "एक त्रुटि हो गयी है"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "एक घातक त्रुटि घटित हुई है: %s "
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d संसाधन क्रिया-कलाप असफ़ल"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -540,33 +535,33 @@ msgstr "कन्सोल के औज़ार"
msgid "Editors, shells, file tools, terminals"
msgstr "अनेकों संपादक, कोश, संचिका औजार, टर्मिनल"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "विकास"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "सी और सी++ विकास लेखागार, कार्यक्रम और इन्क्लूड संचिकायें"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "प्रलेखन"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "लिनक्स और मुक्त सॉफ़्टवेयर पर किताबें और कैसे-करेंअस्तकें"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "एल०एस०बी०"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "लिनक्स मानकीकरण आधार ! त्रितीय पक्ष कार्यक्रमों को समर्थन"
@@ -697,9 +692,9 @@ msgid "Graphical Environment"
msgstr "सचित्र वातावरण"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "केडीई कार्यकेन्द्र"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "कार्यकेंद्र"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -780,62 +775,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "अन्य सचित्र डेस्कटाप"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "यूटिलिटीज़"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "एसएसएच सर्वर"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr ""
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr ""
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr ""
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr ""
@@ -850,7 +833,7 @@ msgstr ""
"किया जायें ।\n"
"अपने जोखिम पर जारी रहें । "
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -891,7 +874,7 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1088,36 +1071,36 @@ msgstr ""
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] ""
msgstr[1] ""
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "सारांश"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "संरचना"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "संरचित नहीं"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1126,7 +1109,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1202,12 +1185,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "आई०डी०ई०"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "आईडीई की संरचना की जा रही है"
#: steps_interactive.pm:354
@@ -1372,7 +1355,7 @@ msgstr "संसाधन-उपरान्त संरचना"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "उन्नयन"
@@ -1396,7 +1379,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, c-format
+msgid "Retry?"
+msgstr ""
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1418,114 +1411,114 @@ msgstr ""
"क्या आप इन अपडेटों को संसाधित करना चाहते है ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s पर %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "हार्डवेयर"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "सांउड कार्ड"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "क्या आपके पास एक आई०एस०ऐ० सांउड कार्ड है?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"कोई साउण्ड कार्ड नहीं खोजा जा सका । संसाधन के उपरान्त \"harddrake\" को उपयोग करके देखें"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "सचित्र इन्टरफ़ेस"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "नेटवर्क और इन्टरनेट"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "प्रोक्सियां"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "संरचित"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "सुरक्षा स्तर"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "अग्नि-भीतिका"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "सक्रिय है"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "निष्क्रिय"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "आपने एक्स को संरचित नहीं किया है । क्या आप वास्तव में ऐसा चाहते है?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr "इस सुरक्षा स्तर में, विण्डो विभाजन में संचिकाओं तक पहुँच सिर्फ़ प्रबंधक को हीप्राप्त है।"
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s में एक खाली फ़्लापी डालें"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "स्वतः संसाधन फ़्लापी का निर्माण किया जा रहा है..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1536,12 +1529,12 @@ msgstr ""
"\n"
"क्या आप वास्तव में बाहर निकलना चाहते है?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "बधाई हो"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "रीबूट"
@@ -1677,3 +1670,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "निकास"
+
+#~ msgid "CD-ROM"
+#~ msgstr "सीडी-रॉम"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "केडीई कार्यकेन्द्र"
+
+#~ msgid "IDE"
+#~ msgstr "आई०डी०ई०"
diff --git a/perl-install/install/share/po/hr.po b/perl-install/install/share/po/hr.po
index 2b242b227..be6c20fa1 100644
--- a/perl-install/install/share/po/hr.po
+++ b/perl-install/install/share/po/hr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:01+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/mageia/language/"
@@ -86,169 +86,164 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr ""
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr ""
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Kontaktiram %s web site za dobivanje popisa raspoloživih mirrora"
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg želite skinuti pakete"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Direktorij"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr ""
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr ""
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Tražim pakete koje mogu nadograditi"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -293,7 +288,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Mreža"
@@ -343,7 +338,7 @@ msgstr ""
msgid "Configuration"
msgstr "Postavke"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Morate također formatirati %s"
@@ -367,22 +362,22 @@ msgstr "Podižem mrežu"
msgid "Bringing down the network"
msgstr "Onemogućujem mrežu"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "nije moguće dodati medij"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopiranje u tijeku"
@@ -427,34 +422,34 @@ msgstr ""
msgid "No description"
msgstr "Bez opisa"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Došlo je do greške:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Nastupila je kobna pogreška: %s. "
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Ne pitaj ponovo"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr ""
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -535,33 +530,33 @@ msgstr "Konzolni Alati"
msgid "Editors, shells, file tools, terminals"
msgstr "Uređivači, ljuske, datotečni alati, terminali"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Razvoj"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C i C++ razvojne biblioteke, programi i uključujuće datoteke"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentacija"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Knjige i Howto-i o Linux-u i slobodnom software-u"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -692,9 +687,9 @@ msgid "Graphical Environment"
msgstr "Grafičko Okružje"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE radna stanica"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Radna stanica"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -777,62 +772,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Druga grafička radna okružja"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Pomoćni programi"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr ""
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr ""
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr ""
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr ""
@@ -846,7 +829,7 @@ msgstr ""
"Dogodila se greška, ali neznam kako s njom lijepo rukovati.\n"
"Nastavite dalje na vlastiti rizik."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -890,7 +873,7 @@ msgstr ""
"instalacije %s-a. Ukoliko se to desi, možete probati tekstualnu\n"
"instalaciju. Za to, pritisnite `F1' kada podižete CDROM, i unesite `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1089,7 +1072,7 @@ msgstr ""
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1097,29 +1080,29 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Sažetak"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Podešavanje"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr ""
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1128,7 +1111,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1204,12 +1187,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Podešavam IDE"
#: steps_interactive.pm:354
@@ -1374,7 +1357,7 @@ msgstr "Postava nakon instalacije"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Nadogradnje"
@@ -1398,7 +1381,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "nije moguće dodati medij"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Pokušaj ponovno"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1412,114 +1405,114 @@ msgid ""
msgstr ""
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s na %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Sklopovlje"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Zvučna kartica"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Da li imate ISA zvučnu karticu?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije pronađena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr ""
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Mreža i Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr ""
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr ""
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Sigurnosna Razina"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Vatrozid"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "onemogućeno"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Umetnite praznu disketu u pogon %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1530,12 +1523,12 @@ msgstr ""
"\n"
"Želite li zaista završiti?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Čestitamo, pobijedili ste!"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Ponovno pokretanje sustava"
@@ -1671,3 +1664,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Izađi"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE radna stanica"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/hu.po b/perl-install/install/share/po/hu.po
index a8e60426c..373cc6312 100644
--- a/perl-install/install/share/po/hu.po
+++ b/perl-install/install/share/po/hu.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-11-21 14:46+0000\n"
"Last-Translator: Zoltan Siposs <zoltan.siposs@gmail.com>\n"
"Language-Team: Hungarian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -94,111 +94,106 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Hálózat (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Hálózat (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Hálózat (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "A tükörkiszolgáló címe?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Az URL-nek ftp:// vagy http:// előtaggal kell kezdődnie"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Kapcsolódás a %s webkiszolgálójához; az elérhető tükörkiszolgálók listájának "
"lekérdezése..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Nem sikerült lekérdezni az elérhető tükörkiszolgálók listáját a %s "
"webkiszolgálójától"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Válassz tükörkiszolgálót a csomagok letöltéséhez!"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS-beállítás"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Adja meg az NFS-adathordozó gépnevét és könyvtárát"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Gépnév hiányzik"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "A könyvtárnak \"/\" jellel kell kezdődnie"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Az NFS-csatolás gépneve?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Könyvtár"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Kiegészítő"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "A tükörkiszolgálón nem található fejléclista"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core tároló"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted tároló"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nem szabad tároló"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -207,23 +202,23 @@ msgstr ""
"A számítógépben található néhány eszköznek szüksége van nem szabad firmware-"
"re annak érdekében, hogy a nyílt forrású meghajtóprogramok működhessenek."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "A \"%s\" engedélyezése szükséges."
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
"A \"%s\" a rendszer és az alkalmazások különböző összetevőit tartalmazza."
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "A \"%s\" nem szabad szoftvereket tartalmaz.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -232,7 +227,7 @@ msgstr ""
"Különböző eszközök működéséhez szükséges firmware-ket is tartalmaz (pl. ATI/"
"AMD videokártyák, hálózati kártyák, RAID vezérlők,...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -241,7 +236,7 @@ msgstr ""
"A \"%s\" olyan szoftvereket tartalmaz, amelyek a szoftver-szabadalmak miatt "
"egyes országokban nem terjeszthetők."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
@@ -249,27 +244,27 @@ msgstr ""
"A \"%s\" tárolóból származó szoftvereket is tartalmaz, melyek további "
"képességekkel lettek újrafordítva."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Itt lehet további adathordozókat engedélyezni."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Ez az adatforrás frissítőcsomagokat tartalmaz a \"%s\" számára."
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "A már telepített csomagok vizsgálata..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "A frissítendő csomagok keresése..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Csomagok eltávolítása a frissítés előtt..."
@@ -318,7 +313,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Hálózat"
@@ -368,7 +363,7 @@ msgstr "Telepítés"
msgid "Configuration"
msgstr "Beállítás"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Meg kell formázni ezt is: %s"
@@ -392,22 +387,22 @@ msgstr "A hálózatkezelés elindítása"
msgid "Bringing down the network"
msgstr "A hálózatkezelés leállítása"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Kérem várjon, fájl betöltése"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "sikertelen a csomagforrás hozzáadása"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Bizonyos csomagok lemezre másolása későbbi használatra"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Másolás folyamatban"
@@ -454,7 +449,7 @@ msgstr ""
msgid "No description"
msgstr "Nincs leírás"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -463,27 +458,27 @@ msgstr ""
"A(z) %s által kért bizonyos csomagok nem telepíthetők:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Hiba lépett fel:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Végzetes hiba történt: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Ne kérdezze mégegyszer"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d telepítési művelet nem sikerült"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Sikertelen csomagtelepítések:"
@@ -565,33 +560,33 @@ msgstr "Parancssori eszközök"
msgid "Editors, shells, file tools, terminals"
msgstr "Szövegszerkesztők, parancsértelmezők, fájlkezelők, terminálprogramok"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Fejlesztés"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C/C++ fejlesztőkönyvtárak, programok és include-fájlok"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentáció"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Könyvek és HOGYAN-ok a Linuxról és a szabad szoftverekről"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Külső társaságok alkalmazásainak támogatása."
@@ -722,9 +717,9 @@ msgid "Graphical Environment"
msgstr "Grafikus környezet"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE munkaállomás"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Munkaállomás"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -810,63 +805,50 @@ msgstr "Egy könnyű, gyors grafikus környezet"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasma Desktop"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"A Plasma Desktop, az alap grafikus környezet néhány kiegészítő eszközzel."
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Más grafikus környezetek"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, stb."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Segédprogramok"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH kiszolgáló"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin kiszolgáló távoli beállításhoz"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Hálózati programok/hálózatfigyelés"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Figyelőeszközök, folyamatszámlázás, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia varázslók"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Varázslók a kiszolgáló beállítására"
@@ -880,7 +862,7 @@ msgstr ""
"Hiba történt, de nem lett megfelelően lekezelve.\n"
"Csak akkor lépjen tovább, ha biztos abban, hogy ez nem fog gondot okozni."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -926,7 +908,7 @@ msgstr ""
"szöveges módú telepítéssel: CD-ről való rendszerindítást követően nyomjon\n"
"\"F1\"-et, majd írja be azt, hogy \"text\"."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Adathordozó kiválasztása"
@@ -1125,29 +1107,29 @@ msgstr "Hátralevő idő:"
msgid "(estimating...)"
msgstr "(becslés...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d csomag"
msgstr[1] "%d csomag"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Összefoglalás"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Beállítás"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "nincs beállítva"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1156,7 +1138,7 @@ msgstr ""
"A rendszer a következő telepítési adathordozókat találta.\n"
"Ha szeretné kihagyni valamelyiket, távolítsa el annak kijelölését."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1169,7 +1151,7 @@ msgstr ""
"Ez esetben a telepítés a merevlemezről folytatódik, és annak végeztével a "
"csomagok elérhetők maradnak."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Teljes CD-k másolása"
@@ -1252,12 +1234,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE beállítások"
#: steps_interactive.pm:354
@@ -1433,7 +1415,7 @@ msgstr ""
"Tegye be a frissítési modulokat tartalmazó adathordozót a(z) \"%s\" "
"meghajtóba"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Frissítések"
@@ -1461,7 +1443,17 @@ msgstr ""
"\n"
"Beállítsuk most a frissítési tárolót?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "sikertelen a csomagforrás hozzáadása"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Újra"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1481,28 +1473,28 @@ msgstr ""
"Szeretné feltelepíteni a frissítéseket?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s ezen: %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardver"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Hangkártya"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Van ISA hangkártyája?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1511,70 +1503,70 @@ msgstr ""
"A hangkártya beállításához futtassa az \"alsaconf\" vagy az \"sndconfig\" "
"programot a telepítés után."
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"A telepítő nem talált hangkártyát. Futtassa a \"harddrake\" programot a "
"telepítés után."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafikus felület"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Hálózat és internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxyk"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "beállítva"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Biztonsági szint"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Tűzfal"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktiválva"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "kikapcsolva"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Az X grafikus rendszert nem állította be. Biztosan megfelel így?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "A rendszerindító memóriaképfájl előkészítése..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Egy kis türelmét kérem..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1583,17 +1575,17 @@ msgstr ""
"Ezen a biztonsági szinten csak a rendszergazda érheti el a windowsos "
"partíción levő fájlokat."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Tegyen egy üres floppyt a(z) \"%s\" meghajtóba"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Automatikus telepítőfloppy készítése..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1604,12 +1596,12 @@ msgstr ""
"\n"
"Biztos, hogy ki akar lépni?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Gratulálunk"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Újraindítás"
@@ -1745,3 +1737,21 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Kilépés"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE munkaállomás"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasma Desktop"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "A Plasma Desktop, az alap grafikus környezet néhány kiegészítő eszközzel."
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/id.po b/perl-install/install/share/po/id.po
index c33aaba5d..77aa54ad7 100644
--- a/perl-install/install/share/po/id.po
+++ b/perl-install/install/share/po/id.po
@@ -19,7 +19,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 13:27+0000\n"
"Last-Translator: Kiki <kiki.syahadat@yahoo.co.id>\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mageia/"
@@ -101,87 +101,82 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Jaringan (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Jaringan (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Jaringan (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL dari mirror?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL harus diawali dengan ftp:// atau http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Menghubungi situs web %s untuk mendapatkan daftar mirror yang tersedia..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Gagal menghubungi situs web %s untuk mendapatkan daftar mirror yang tersedia"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Pilih mirror di mana Anda ingin mengambil paket"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Pengaturan NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Silakan masukkan hostname dan direktori media NFS Anda"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Hostname tidak ada"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Direktori harus dimulai dengan \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Hostname dari mount NFS ?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Direktori"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Media bantu"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -190,22 +185,22 @@ msgstr ""
"Tidak bisa menemukan file daftar paket pada mirror ini. Pastikan lokasinya "
"benar."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Rilis"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Rilis"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Rilis"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -214,22 +209,22 @@ msgstr ""
"Beberapa hardware pada komputer Anda memerlukan beberapa firmwares non free "
"agar driver free software bisa bekerja."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Anda harus menghidupkan \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" berisi beberapa bagian dari sistem dan aplikasinya"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" berisi software non free.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -239,7 +234,7 @@ msgstr ""
"(misal: beberapa perangkat grafis ATI/AMD, beberapa perangkat jaringan, "
"beberapa perangkat RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -248,7 +243,7 @@ msgstr ""
"\"%s\" berisi software yang tidak bisa didistribusikan di setiap negara "
"karena masalah paten software."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
@@ -256,28 +251,28 @@ msgstr ""
"Juga berisi software dari \"%s\" yang dibangun ulang dengan kemampuan "
"tambahan."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
"Di sini Anda bisa menghidupkan lebih banyak media jika Anda menginginkannya"
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Media ini menyediakan update paket untuk media \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Melihat paket yang sudah terinstall..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Menemukan paket untuk diupgrade..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Menghapus paket sebelum upgrade..."
@@ -326,7 +321,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Jaringan"
@@ -376,7 +371,7 @@ msgstr "Instalasi"
msgid "Configuration"
msgstr "Konfigurasi"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Anda juga harus memformat %s"
@@ -401,22 +396,22 @@ msgstr "Menaikkan jaringan"
msgid "Bringing down the network"
msgstr "Menurunkan jaringan"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Silakan tunggu, mengambil file"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "tidak bisa menambah media"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Menyalin beberapa paket pada disk untuk digunakan di kemudian hari"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Penyalinan sedang berjalan"
@@ -462,7 +457,7 @@ msgstr ""
msgid "No description"
msgstr "Tidak ada deskripsi"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -471,27 +466,27 @@ msgstr ""
"Beberapa paket yang diminta oleh %s tidak bisa diinstall:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Sebuah error terjadi:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Sebuah error fatal terjadi: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Jangan tanya lagi"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "Transaksi instalasi %d gagal"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Instalasi paket gagal:"
@@ -574,33 +569,33 @@ msgstr "Peralatan Konsol"
msgid "Editors, shells, file tools, terminals"
msgstr "Editor, shell, peralatan file, terminal"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Pengembangan"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Librari, program dan file yang disertakan untuk pengembangan C dan C++"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentasi"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Buku dan Howto untuk Linux dan Free Software"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Dukungan aplikasi pihak ketiga"
@@ -731,9 +726,9 @@ msgid "Graphical Environment"
msgstr "Lingkungan Grafis"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Workstation KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Workstation"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -819,64 +814,50 @@ msgstr "Sebuah lingkungan grafis yang cepat dan ringan"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Desktop Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Desktop Plasma, lingkungan grafis dasar dengan sekumpulan peralatan yang "
-"menyertainya"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Desktop Grafis Lainnya"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, dsb"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilitas"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Server SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Server Konfigurasi Remote Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Utilitas/Monitoring Jaringan"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Peralatan monitoring, penghitungan proses, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Wizard Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Wizard untuk mengkonfigurasi server"
@@ -890,7 +871,7 @@ msgstr ""
"Terjadi error yang tidak diketahui cara yang baik untuk menanganinya.\n"
"Lanjutkan dengan resiko yang Anda tanggung sendiri."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -936,7 +917,7 @@ msgstr ""
"teks.\n"
"Untuk melakukannya, tekan `F1' saat booting pada CDROM, lalu masukkan `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Pemilihan Media"
@@ -1135,28 +1116,28 @@ msgstr "Waktu tersisa:"
msgid "(estimating...)"
msgstr "(memperkirakan...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d paket"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Ringkasan"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfigurasi"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "tidak terkonfigurasi"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1165,7 +1146,7 @@ msgstr ""
"Media instalasi berikut telah ditemukan.\n"
"Jika Anda ingin melewati beberapa, Anda bisa tidak memilihnya."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1178,7 +1159,7 @@ msgstr ""
"Proses kemudian akan dilanjutkan dari hard disk dan paket akan tetap "
"tersedia setelah sistem terinstall."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Salin seluruh CD"
@@ -1261,12 +1242,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Mengkonfigurasi IDE"
#: steps_interactive.pm:354
@@ -1440,7 +1421,7 @@ msgstr "Konfigurasi pasca instalasi"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Silakan pastikan bahwa media Modul Update ada di drive %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Update"
@@ -1468,7 +1449,17 @@ msgstr ""
"\n"
"Apakah Anda ingin mengatur media update?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "tidak bisa menambah media"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Coba lagi"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1489,28 +1480,28 @@ msgstr ""
"Apakah Anda ingin menginstall update?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s pada %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Perangkat suara"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Apakah Anda memiliki perangkat suara ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1519,69 +1510,69 @@ msgstr ""
"Jalankan \"alsaconf\" atau \"sndconfig\" setelah instalasi untuk "
"mengkonfigurasi perangkat suara Anda"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Tidak ada perangkat suara terdeteksi. Coba \"harddrake\" setelah instalasi"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Antarmuka grafis"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Jaringan & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxy"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "terkonfigurasi"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Level Keamanan"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "diaktifkan"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "dimatikan"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Anda belum mengkonfigurasi X. Apakah Anda yakin menginginkan ini?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Menyiapkan program startup awal..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Harap bersabar, ini mungkin akan memakan waktu..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1590,17 +1581,17 @@ msgstr ""
"Pada level keamanan ini, akses ke file di dalam partisi Windows terbatas "
"pada administrator."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Masukkan floppy kosong ke drive %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Membuat instalasi otomatis floppy..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1611,12 +1602,12 @@ msgstr ""
"\n"
"Apakah Anda ingin keluar sekarang?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Selamat"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Reboot"
@@ -1752,3 +1743,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Keluar"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Workstation KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Desktop Plasma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Desktop Plasma, lingkungan grafis dasar dengan sekumpulan peralatan yang "
+#~ "menyertainya"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/is.po b/perl-install/install/share/po/is.po
index bc7793637..130d516ce 100644
--- a/perl-install/install/share/po/is.po
+++ b/perl-install/install/share/po/is.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-02-13 05:25+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/mageia/"
@@ -90,86 +90,81 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "Geisladrif"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Net (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Net (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Net (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Vefslóð að spegli?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Slóð verður að byrja á ftp:// eða http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Hef samband við %s vefinn til að sækja lista yfir fáanlega spegla..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Mistókst að tengjast við %s vefinn til að sækja lista yfir fáanlega spegla"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Veldu spegilvélina þaðan sem á að sækja pakkanna"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS uppsetning"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Sláðu inn vélarnafn og möppu sem inniheldur NFS miðil"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Vélarnafn vantar"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Möppunafn verður að byrja á \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Vélarnafn á NFS tengipunkti?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Mappa"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Aukalegt"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -178,84 +173,84 @@ msgstr ""
"Finn ekki pakkalista-skrá á þessum spegli. Athugaðu hvort staðsetningin sé "
"rétt."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Athuga þegar uppsetta pakka..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Leita að pökkum til að uppfæra..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Fjarlægi pakka áður en uppfærsla hefst..."
@@ -304,7 +299,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Net"
@@ -354,7 +349,7 @@ msgstr "Set inn"
msgid "Configuration"
msgstr "Stillingar"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Þú verður einnig að forsníða %s"
@@ -379,22 +374,22 @@ msgstr "Keyri upp netið"
msgid "Bringing down the network"
msgstr "Keyri niður netið"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Bíðið, sæki skrá"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "get ekki bætt við miðli"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Afrita nokkra pakka á diska til notkunar síðar"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Afritun í gangi"
@@ -441,7 +436,7 @@ msgstr ""
msgid "No description"
msgstr "Engin lýsing til"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -450,27 +445,27 @@ msgstr ""
"Suma pakka sem %s þarfnast, er ekki hægt að setja inn:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Villa kom upp:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Banvæn villa kom upp: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d Innsetningarfærslur brugðust"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Innsetning pakka tókst ekki:"
@@ -553,33 +548,33 @@ msgstr "Skjától"
msgid "Editors, shells, file tools, terminals"
msgstr "Ritlar, skeljar, skráatól, skjáhermar"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Forritun"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C og C++ undirforritasöfn, forrit og lýsingaskrár"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Handbækur"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Bækur og leiðbeiningar um Linux og frjálsan hugbúnað"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Stuðningur fyrir forrit þriðja aðila"
@@ -710,9 +705,9 @@ msgid "Graphical Environment"
msgstr "Myndrænt umhverfi"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE Vinnustöð"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Vinnustöð"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -792,62 +787,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Aðrir gluggastjórar"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Tól"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH Miðlari"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin, stillingar á fjartengdri tölvu um vef"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Netforrit/Neteftirlit"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Eftirlitstól, vinna með notendur, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia Ráðgjafar"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Ráðgjafar til að stilla miðlara"
@@ -861,7 +844,7 @@ msgstr ""
"Óþekkt villa kom upp sem ekki er hægt að meðhöndla.\n"
"Haltu áfram á eigin ábyrgð."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -907,7 +890,7 @@ msgstr ""
"Til þess að gera það, ýttu á F1 þegar þú ræsir af\n"
"geisladisknum og sláðu síðan inn `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Val á miðlum"
@@ -1104,29 +1087,29 @@ msgstr "Tími eftir:"
msgid "(estimating...)"
msgstr "(áætla...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakki"
msgstr[1] "%d pakkar"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Yfirlit"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Stilla"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "ekki stillt"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1135,7 +1118,7 @@ msgstr ""
"Eftirfarandi uppsetningar-miðlar hafa fundist.\n"
"Ef þú vilt sleppa einhverjum af þeim, þá getur þú af-valið þá núna."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1148,7 +1131,7 @@ msgstr ""
"Síðan mun uppsetning halda áfram frá disknum og pakkarnir verða til staðar "
"þegar kerfið er að fullu uppsett."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Afrita alla geisladiska"
@@ -1224,12 +1207,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Uppsetning IDE"
#: steps_interactive.pm:354
@@ -1403,7 +1386,7 @@ msgstr "Lokastillingar"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Staðfestu að Uppfærslu-miðill sé í drifi %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Uppfærslur"
@@ -1427,7 +1410,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "get ekki bætt við miðli"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Reyna aftur"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1448,28 +1441,28 @@ msgstr ""
"Viltu sækja uppfærslurnar?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s á %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Vélbúnaður"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Hljóðkort"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Er kannski ISA hljóðkort í vélinni?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1478,69 +1471,69 @@ msgstr ""
"Keyrðu \"alsaconf\" eða \"sndconfig\" eftir uppsetningu til að stilla "
"hljóðkortið þitt"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Ekkert hljóðkort fannst. Reyndu að keyra \"harddrake\" eftir uppsetningu"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Myndrænt viðmót"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Staðarnet og Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Sel"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "stillt"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Öryggisþrep"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Eldveggur"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "virkt"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "óvirkt"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Þú hefur ekki sett upp X, ertu viss um að þú viljir þetta?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Verið þolinmóð þetta getur tekið nokkra stund..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1549,17 +1542,17 @@ msgstr ""
"Í þessu öryggisþrepi er aðgangur að Windows disksneiðum takmarkaður við "
"kerfisstjóra."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Settu tóman diskling í drif %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Bý til diskling fyrir sjálfvirka uppsetningu..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1570,12 +1563,12 @@ msgstr ""
"\n"
"Viltu virkilega hætta núna?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Til hamingju"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Endurræsa"
@@ -1712,5 +1705,14 @@ msgid ""
"Exit"
msgstr "Hætta"
+#~ msgid "CD-ROM"
+#~ msgstr "Geisladrif"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE Vinnustöð"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Set upp ræsistjórann..."
diff --git a/perl-install/install/share/po/it.po b/perl-install/install/share/po/it.po
index e4198a3c3..4c8114b2d 100644
--- a/perl-install/install/share/po/it.po
+++ b/perl-install/install/share/po/it.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mageia/language/"
@@ -92,89 +92,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Rete (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Rete (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Rete (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL del mirror?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "L'URL deve iniziare con ftp:// o http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Contattando il sito web %s per ottenere l'elenco dei mirror disponibili..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"È fallito il contatto col sito web %s per ottenere la lista dei mirror "
"disponibili"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Scegli un mirror da cui recuperare i pacchetti"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Configurazione NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
"Immetti il nome dell'host e della directory che userai come supporto NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Manca il nome dell'host"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Una directory deve iniziare con \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Nome dell'host da montare con NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Directory"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Aggiuntivo"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -183,22 +178,22 @@ msgstr ""
"Impossibile trovare su questo mirror il file con l'elenco dei pacchetti. "
"Assicurati che l'indirizzo sia esatto."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -207,22 +202,22 @@ msgstr ""
"Alcuni dispositivi hardware sul tuo elaboratore necessitano di firmware "
"proprietari affinché il software libero dei driver possa funzionare."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Dovresti abilitare \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" contiene varie parti del sistema e delle sue applicazioni"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" contiene software non libero.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -232,7 +227,7 @@ msgstr ""
"(eg: qualche scheda grafica ATI/AMD, qualche scheda di rete, qualche scheda "
"RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -241,35 +236,35 @@ msgstr ""
"\"%s\" contiene software che non può essere distribuito in qualsiasi paese a "
"causa di brevetti software."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
"Contiene inoltre software da \"%s\" ricostruito con funzionalità aggiuntive."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Qui puoi abilitare più fonti se lo desideri."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
"Questa fonte fornisce aggiornamenti dei pacchetti provenienti da \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Ricerca dei pacchetti già installati..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Ricerca dei pacchetti da aggiornare..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Rimozione dei pacchetti prima di aggiornare..."
@@ -319,7 +314,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rete"
@@ -369,7 +364,7 @@ msgstr "Installazione"
msgid "Configuration"
msgstr "Configurazione"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "È necessario formattare anche %s"
@@ -393,22 +388,22 @@ msgstr "Attivazione della rete..."
msgid "Bringing down the network"
msgstr "Disattivazione della rete..."
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Attendi, recupero file in corso"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "impossibile aggiungere la fonte"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Copia di alcuni pacchetti sui dischi per un'utilizzazione futura"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Copia in corso"
@@ -455,7 +450,7 @@ msgstr ""
msgid "No description"
msgstr "Nessuna descrizione"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -464,27 +459,27 @@ msgstr ""
"Alcuni pacchetti richiesti da %s non possono essere installati:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Si è verificato un errore:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Si è verificato un errore fatale: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Non chiedere più"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d transazioni dell'installazione fallite"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Installazione dei pacchetti non riuscita:"
@@ -567,33 +562,33 @@ msgstr "Programmi da riga di comando"
msgid "Editors, shells, file tools, terminals"
msgstr "Editor, shell, gestione file, terminali"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Sviluppo"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Librerie di sviluppo, programmi e file \"include\" per C e C++"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentazione"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Libri e Howto su Linux e sul Software Libero"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Supporto per applicazioni di terze parti"
@@ -724,9 +719,9 @@ msgid "Graphical Environment"
msgstr "Ambiente grafico"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Postazione di lavoro grafica con KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Postazione di lavoro"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -812,64 +807,50 @@ msgstr "Un ambiente grafico veloce e leggero"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Desktop Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Il desktop Plasma, l'ambiente grafico di base con una collezione di "
-"strumenti che lo accompagnano"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Altri desktop grafici"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, etc"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilità"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Server SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Server Webmin per la configurazione remota"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Utilità/Monitoraggio della rete"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Strumenti di monitoraggio, accounting dei processi, tcpdump, nmap,..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Assistenti Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Procedure guidate per la configurazione del server"
@@ -883,7 +864,7 @@ msgstr ""
"Si è verificato un errore non gestibile automaticamente.\n"
"Puoi continuare a tuo rischio e pericolo."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -928,7 +909,7 @@ msgstr ""
"provare un'installazione testuale. Per questo, premi `F1' \n"
"quando si avvia il CD-ROM, quindi digita `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Selezione delle fonti d'installazione"
@@ -1127,29 +1108,29 @@ msgstr "Tempo restante:"
msgid "(estimating...)"
msgstr "(stima in corso...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pacchetto"
msgstr[1] "%d pacchetti"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Riepilogo"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configura"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "non configurata"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1158,7 +1139,7 @@ msgstr ""
"Sono state trovate queste fonti d'installazione.\n"
"Se vuoi ignorarne qualcuna, la puoi deselezionare ora."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1171,7 +1152,7 @@ msgstr ""
"Si proseguirà così dal disco rigido e i pacchetti rimarranno disponibili una "
"volta che il sistema è completamente installato."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Copia tutti i CD"
@@ -1254,12 +1235,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Sto configurando IDE"
#: steps_interactive.pm:354
@@ -1434,7 +1415,7 @@ msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
"Assicurati che gli \"Update Modules\" siano leggibili dal dispositivo %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Aggiornamenti"
@@ -1458,7 +1439,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "impossibile aggiungere la fonte"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Riprova"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1480,28 +1471,28 @@ msgstr ""
"Vuoi installare gli aggiornamenti?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s in %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Scheda audio"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Hai una scheda audio ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1510,69 +1501,69 @@ msgstr ""
"Lancia \"alsaconf\" o \"sndconfig\" dopo l'installazione per configurare la "
"scheda audio"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nessuna scheda audio rilevata. Prova con \"harddrake\" dopo l'installazione."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interfaccia grafica"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Rete e Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxy"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "configurato"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Livello di sicurezza"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "attivato"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "disabilitato"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Non hai configurato X. Sei sicuro di non volerlo fare?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Sto preparando l'installazione..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Sii paziente, potrebbe servire un po' di tempo..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1581,17 +1572,17 @@ msgstr ""
"A questo livello di sicurezza, l'accesso ai file delle partizioni Windows è "
"riservato all'amministratore."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inserisci un floppy vuoto nell'unità %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Sto creando il floppy di installazione automatica..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1602,12 +1593,12 @@ msgstr ""
"\n"
"Vuoi veramente interrompere adesso?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Congratulazioni"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Riavvia"
@@ -1743,3 +1734,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Esci"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Postazione di lavoro grafica con KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Desktop Plasma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Il desktop Plasma, l'ambiente grafico di base con una collezione di "
+#~ "strumenti che lo accompagnano"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/ja.po b/perl-install/install/share/po/ja.po
index 06167095b..97e04d4dc 100644
--- a/perl-install/install/share/po/ja.po
+++ b/perl-install/install/share/po/ja.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Japanese (http://www.transifex.com/MageiaLinux/mageia/"
@@ -91,87 +91,82 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "ネットワーク (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "ネットワーク (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "ネットワーク (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "ミラーの URL"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL は ftp:// または http:// で始まらなければなりません"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "%s のサイトに接続してミラーのリストを取得しています..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"%s ウェブサイトへの接続に失敗したため、利用可能なミラーのリストを取得できませ"
"んでした"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "パッケージを取得するミラーを選択"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS の設定"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "NFS メディアのホスト名とディレクトリを入力してください"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "ホスト名がありません"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "ディレクトリは \"/\" で始まらなければなりません"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "NFS マウントのホスト名"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "ディレクトリ"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "補助"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -180,84 +175,84 @@ msgstr ""
"パッケージリストのファイルが見つかりません。ミラーの場所が正しいか確認してく"
"ださい。"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "インストール済みパッケージを探しています..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "更新するパッケージを探しています..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "アップグレードする前にパッケージを削除しています..."
@@ -306,7 +301,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "ネットワーク"
@@ -357,7 +352,7 @@ msgstr "インストール"
msgid "Configuration"
msgstr "設定"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "%s もフォーマットしてください"
@@ -381,22 +376,22 @@ msgstr "ネットワークを確立"
msgid "Bringing down the network"
msgstr "ネットワークを切断"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "ファイルを取得しています。お待ちください。"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "メディアを追加できません"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "後で利用するためにパッケージをディスクにコピー"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "コピーしています"
@@ -442,7 +437,7 @@ msgstr ""
msgid "No description"
msgstr "説明なし"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -451,27 +446,27 @@ msgstr ""
"%s が要求するいくつかのパッケージをインストールできません:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr ""
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "致命的なエラーが発生: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "次回から確認しない"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d 件のインストールが失敗しました"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -552,33 +547,33 @@ msgstr "コンソールツール"
msgid "Editors, shells, file tools, terminals"
msgstr "エディタ, シェル, ファイル関連ツール, ターミナル"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "開発用"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C/C++ の開発ライブラリ, プログラム, include ファイル"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "ドキュメント"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Linux/フリーソフト関連の文書とHowto"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base, サードパーティのアプリケーションをサポート"
@@ -709,9 +704,9 @@ msgid "Graphical Environment"
msgstr "グラフィカル環境"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE ワークステーション"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "ワークステーション"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -791,62 +786,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "その他のグラフィカルデスクトップ"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "ユーティリティ"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH サーバ"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin リモート設定サーバ"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "ネットワークユーティリティ/モニタリング"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "モニタリングツール, プロセス管理, tcpdump, nmap..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia ウィザード"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "サーバ設定ウィザード"
@@ -860,7 +843,7 @@ msgstr ""
"エラーが発生しました。しかし対処する方法がわかりません。\n"
"自己責任で続けてください。"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -904,7 +887,7 @@ msgstr ""
"インストールを試してみてください。\n"
"CD-ROM から起動 -> F1 を押す -> 'text' と入力"
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "メディアの選択"
@@ -1102,28 +1085,28 @@ msgstr "残り時間:"
msgid "(estimating...)"
msgstr "(試算しています...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d 個のパッケージ"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "まとめ"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "設定"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "設定されていません"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1132,7 +1115,7 @@ msgstr ""
"次のインストールメディアを検出しました。\n"
"使用しないものがあればここで選択を解除してください。"
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1144,7 +1127,7 @@ msgstr ""
"そうするとインストーラはハードドライブからインストールを続けます。コピーされ"
"たパッケージはインストール完了後も利用できます。"
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "CD 全体をコピー"
@@ -1220,12 +1203,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE を設定"
#: steps_interactive.pm:354
@@ -1397,7 +1380,7 @@ msgstr "インストール後の設定"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "更新モジュールメディアがドライブ %s に入っていることを確認してください"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "更新"
@@ -1421,7 +1404,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "メディアを追加できません"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "再試行"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1442,28 +1435,28 @@ msgstr ""
"更新されたパッケージをインストールしますか?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%2$s の %1$s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "ハードウェア"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "サウンドカード"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "ISA サウンドカードをお使いですか?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1472,70 +1465,70 @@ msgstr ""
"インストール後に alsaconf か sndconfig を実行してサウンドカードを設定してくだ"
"さい。"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"サウンドカードが見つかりません。インストール後に harddrake で再度設定を試みて"
"ください。"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "グラフィカルインターフェース"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "ネットワークとインターネット"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "プロキシ"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "設定済み"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "セキュリティレベル"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "ファイアウォール"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "有効"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "無効"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "X が設定されていません。本当によろしいですか?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "しばらく時間がかかります。お待ちください。"
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1544,17 +1537,17 @@ msgstr ""
"このセキュリティレベルでは、Windows パーティションのファイルへのアクセスが管"
"理者のみに限定されます。"
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "空のフロッピーをドライブ %s に入れてください"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "インストール自動化フロッピーを作成中..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1565,12 +1558,12 @@ msgstr ""
"\n"
"本当に終了しますか?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "おめでとうございます"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "再起動"
@@ -1706,3 +1699,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "終了"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE ワークステーション"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/ko.po b/perl-install/install/share/po/ko.po
index 410ca7fb7..2947b1bfc 100644
--- a/perl-install/install/share/po/ko.po
+++ b/perl-install/install/share/po/ko.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:22+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Korean (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -91,85 +91,80 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "망(HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "망(FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "망(NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "미러사이트의 (URL)주소를 적어주십시오."
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL 주소는 ftp:// 또는 http:// 로 시작되어야 합니다."
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "유효한 미러 목록을 받기 위해 %s 홈페이지에 접속 중..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "%s 홈페이지에 접속하여 미러사이트목록을 받는 데 실패했습니다."
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "패키지를 받을 미러 사이트를 선택하시오."
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "망 파일 시스템 (NFS) 구성"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "NFS 매체의 호스트 이름과 디렉토리를 입력해 주십시요."
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "호스트 이름을 찾을 수 없습니다"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "디렉토리는 \"/\"로 시작되어야 합니다."
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "망 파일 시스템(NFS)의 호스트 이름을 설치합니까?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "디렉토리"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "추가"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -177,84 +172,84 @@ msgid ""
msgstr ""
"미러 사이트에서 패키지 리스트를 찾을 수 없습니다. 이 위치에 만드시겠습니까?"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "이미 설치된 패키지 찾는 중..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "업그레이드할 패키지를 검색중..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "업그레이드된 패키지를 제거하는 중..."
@@ -303,7 +298,7 @@ msgstr "FTP(파일 전송규약)"
msgid "NFS"
msgstr "NFS(망 파일 시스템)"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "망"
@@ -353,7 +348,7 @@ msgstr ""
msgid "Configuration"
msgstr "설정"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "%s도 포맷해야 합니다."
@@ -377,22 +372,22 @@ msgstr "망 활성화 중..."
msgid "Bringing down the network"
msgstr "망 해제 중..."
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "추후 사용하기 위해 디스크에 패키지 복사중... "
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "복사 진행중"
@@ -437,34 +432,34 @@ msgstr ""
msgid "No description"
msgstr "설명 없음"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr ""
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr ""
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr ""
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -545,33 +540,33 @@ msgstr "콘솔 도구"
msgid "Editors, shells, file tools, terminals"
msgstr "에디터, 쉘, 파일도구, 터미널"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "개발"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C/C++ 개발 라이브러리, 프로그램 및 헤더파일"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "문서"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "리눅스 및 자유 소프트웨어에 대한 서적과 Howto문서"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "리눅스 기본 규격(Linux Standard Base)"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "리눅스 기본 규격. 외부 애플리케이션 지원"
@@ -702,9 +697,9 @@ msgid "Graphical Environment"
msgstr "그래픽 환경"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "K 데스크탑 환경 기반 워크스테이션"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "워크스테이션"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -784,62 +779,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "기타 그래픽 데스크탑"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "유틸리티"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH 서비스"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr ""
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin 원격 설정 서버"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "망 유틸리티들/감시"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "감시 도구, 프로세스 관리, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr ""
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "서버 설정 도우미"
@@ -853,7 +836,7 @@ msgstr ""
"오류가 발생했지만, 처리할 수 없습니다.\n"
"위험을 감수하려면 계속하세요."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -894,7 +877,7 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1091,28 +1074,28 @@ msgstr ""
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] ""
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "요약설명"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "설정"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "설정되지 않음"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1121,7 +1104,7 @@ msgstr ""
"다음 설치 매체를 찾았습니다.\n"
"설치 하지 않으려면 설치해제하십시오."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1133,7 +1116,7 @@ msgstr ""
"그러면 하드 드라이브에 설치한 후에도 패키지는 시스템에 남아서 재설치가 가능합"
"니다."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "전체 CD 복사"
@@ -1209,12 +1192,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE 설정중"
#: steps_interactive.pm:354
@@ -1387,7 +1370,7 @@ msgstr "설치 후 환경설정"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "업데이트 모듈 매체가 %s 드라이브에 있도록 하십시오."
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "업데이트"
@@ -1411,7 +1394,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "재시도"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1430,28 +1423,28 @@ msgstr ""
"업데이트를 설치 하시겠습니까?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s (%s 컴퓨터)"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "하드웨어"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "사운드 카드"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "ISA 사운드 카드가 있습니까?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1460,70 +1453,70 @@ msgstr ""
"사운드 카드를 설정하려면 설치 후에\n"
"「alsaconf」 또는 「sndconfig」명령을 실행해주십시요."
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"사운드 카드가 발견되지 않았습니다.\n"
"설치 후에「harddrake」명령을 실행해주십시요."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "시작시 바로 X-Window 실행"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "망과 인터넷"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "프록시"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "재설정되었습니다."
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "보안 등급"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "방화벽"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "활성화"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "금지"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "X 설정이 되지 않았습니다. 설정하시겠습니까?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1532,17 +1525,17 @@ msgstr ""
"이 보안 등급에서는 윈도우즈 파티션에서의 파일 접근이 관리자에 의해 제한 됩니"
"다."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s 드라이브에 빈 플로피 디스크를 넣으세요"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "자동 설치 플로피 디스크 생성 중"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1553,12 +1546,12 @@ msgstr ""
"\n"
"정말 지금 종료 하시겠습니까?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "축하합니다."
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "다시 시작"
@@ -1694,3 +1687,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "종료"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "K 데스크탑 환경 기반 워크스테이션"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/ky.po b/perl-install/install/share/po/ky.po
index 15f6bf74e..fd8a0363f 100644
--- a/perl-install/install/share/po/ky.po
+++ b/perl-install/install/share/po/ky.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-ky\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2009-04-18 19:08+0600\n"
"Last-Translator: Ilyas Bakirov <just_ilyas@yahoo.com>\n"
"Language-Team: Kyrgyz\n"
@@ -90,86 +90,81 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Желе (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Желе (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Тармак (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Күзгүсүнүн URL'и?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL ftp:// же http:// менен башталышы керек"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Бар болгон күзгүлөр тизмесин %s веб сайтындан алынууда..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Бар болгон күзгүлөр тизмесин %s веб сайтындан алынууда ийгиликсиз айяктады..."
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Пакеттерди алуучу күзгүнү тандаңыз"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS орнотуу"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "NFS топтомунун компьютер атын жана директориясын кириңиз"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Түйюндүн аты көрсөтүлгөн жок"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Директория \"/\" белги менен башталышы керек"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "NFS туташуунун түйюн аты ?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Каталог"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Кошумча"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -178,84 +173,84 @@ msgstr ""
"Бул күзгүдө пакеттердин тизмеси атбылган жок. Жайгашуусунун тууралыгын "
"текшериңиз."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, fuzzy, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "\"%s\" ичинен бардык пакеттерди аттап өтүү"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Орнотулган пакеттер изделип жатат..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Жаңыланычуу пакеттер изделип жатат..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Жаңылоодон мурда пакеттер өчүрүлүп жатат..."
@@ -305,7 +300,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Желе"
@@ -355,7 +350,7 @@ msgstr "Орнотуу"
msgid "Configuration"
msgstr "Конфигурациялоо"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Сиз %s дагы форматташыңыз керек"
@@ -380,22 +375,22 @@ msgstr "Тармак көтөрүлүүдө"
msgid "Bringing down the network"
msgstr "Тармак өчүрүлүүдө"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Күтө туруңуз, файл жүктөлүп жатат"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "булак кошулган жок"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Кээбир пакеттерди келечекте колдонуу үчүн дискке көчүрүп жатат"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Көчүрүү жүрүүдө"
@@ -442,7 +437,7 @@ msgstr ""
msgid "No description"
msgstr "Баяндалбады"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -451,27 +446,27 @@ msgstr ""
"%s менен талап кылынган кээбир пакеттер орнотула алган жок:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Жаңылыштык орун алды:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Фаталдык ката пайда болду: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d орнотуу транзакциялары ишке ашпады"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Пакеттердин орнотулушу ийгиликсиз аяктады:"
@@ -557,34 +552,34 @@ msgstr "Консоль куралдары"
msgid "Editors, shells, file tools, terminals"
msgstr "Редакторлор, шелдер, файл куралдары, терминалдар"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Иштеп түзүү"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""
"C жана C++ иштеп чыгуу библиотекалары, программалар жана include файлдары"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Документация"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Linux жана Free Software жөнүндөгү китептер жана HOWTOлар"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -717,9 +712,9 @@ msgid "Graphical Environment"
msgstr "Графикалык чөйрө"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE иш станциясы"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Иш станциясы"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -808,65 +803,51 @@ msgstr ""
"графикалык чөйрө"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Менчик иш столу"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"K Desktop Environment - негизги графикалык чөйрө, кошумча куралдар "
-"коллекциясы менен"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Башка графикалык иш столдору"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Enlightenment, Fvwm, ж.б. "
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Утилиталар"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH сервери"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin узактан башкаруу сервери"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Тармак аспаптары/Мониторинг"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Мониторинг аспаптар, процесс эсептүүчүлөр, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia Усталары"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Серверди ырастоо усталары"
@@ -880,7 +861,7 @@ msgstr ""
"Жаңылыштык орун алды, бирок мен аны кантип туура иштетүүнү билбейм.\n"
"Мындан ары тобокелге салып өзүңүз улантыңыз."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -925,7 +906,7 @@ msgstr ""
"орнотууну текшерип көрүңүз. Ал үчүн, дисктен жүктөлүп жаткан учурда\n"
"`F1' клавишасын басып `text' сөзүн кириңиз."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Пакеттердин группасын тандоо"
@@ -1124,28 +1105,28 @@ msgstr "Калган убакыт:"
msgid "(estimating...)"
msgstr "(болжолдуу убакыт..)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d- пакет"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Жыйынтык"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Конфигурация"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "конфигурацияланбаган"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1154,7 +1135,7 @@ msgstr ""
"Төмөнкү орнотуу булактары табылды.\n"
"Эгерде кээбирин аттап өтүүнү кааласаңыз, анда аларды тандабай өтүңүз."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1167,7 +1148,7 @@ msgstr ""
"Андан кийин орнотуу компьютер дискинен улантылат жана пакеттер толук "
"системанын орнотулуп бүткөндөн кийин калышат."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "CD дискти толугу менен көчүрүү"
@@ -1250,12 +1231,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE конфигурацияланууда"
#: steps_interactive.pm:354
@@ -1428,7 +1409,7 @@ msgstr "Орнотуулуштан кийинки ырастоолор"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "%s ичинде Update Modules топтомунун бар экендигин текшерип көрүңүз"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Жаңылоолор"
@@ -1452,7 +1433,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "булак кошулган жок"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Кайталоо"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1474,28 +1465,28 @@ msgstr ""
"Пакеттер орнотулсунбу?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s %s'да"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Техникалык жабдуу"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Добуш картасы"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Сизде ISA добуш карточкасы барбы?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1504,70 +1495,70 @@ msgstr ""
"Үн картасын ырастоо үчүн орнотуудан кийин \"alsaconf\" же \"sndconfig\" "
"коммандаларын аткарыңыз"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Эч кандай добуш карточкасы табылган жок. Орнотуудан кийин \"harddrake\" "
"кайталап көрүңүз"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Графикалык интерфейс"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Тармак жана Интернет"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Проксилер"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "ырасталды"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Коосуздук деңгээли"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Файервол"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "активдештирилди"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "өчүк"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Сиз X'ти ырастаган жоксуз.Чындап ушуну каалайсызбы?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Орнотуу даярдалууда"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Күтө туруңуз, бул бир нече убакытты алышы мүмкүн..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1576,17 +1567,17 @@ msgstr ""
"Бул коопсудук деңгээлде Windows бөлүмүндө жайгашкан файларда жетүү жалгыз "
"гана администраторга уруксат берилген."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s ичине бош флоппи дискти киргизиңиз"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Авто орнотуу флоппини түзүү..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1597,12 +1588,12 @@ msgstr ""
"\n"
"Сиз чындап азыр чыгууну каалайсызбы?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Конфигурациялар"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Кайра жүктөө"
@@ -1739,6 +1730,27 @@ msgid ""
"Exit"
msgstr "Чыгуу"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE иш станциясы"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Менчик иш столу"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "K Desktop Environment - негизги графикалык чөйрө, кошумча куралдар "
+#~ "коллекциясы менен"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Система жүктөөгүч даярдалууда..."
diff --git a/perl-install/install/share/po/lt.po b/perl-install/install/share/po/lt.po
index 74177e3c0..cd1227b75 100644
--- a/perl-install/install/share/po/lt.po
+++ b/perl-install/install/share/po/lt.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-12-20 22:56+0000\n"
"Last-Translator: Moo\n"
"Language-Team: Lithuanian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -92,107 +92,102 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Tinklas (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Tinklas (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Tinklas (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Tinklavietės URL?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Pasirink atvaizdį (mirror), iš kurio imti paketus"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Aplankas"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr ""
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Pagrindinė laida"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nelaisvoji laida"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -202,62 +197,62 @@ msgstr ""
"kompiuteryje esanti, aparatinė įranga, reikalauja nelaisvosios programinės "
"aparatinės įrangos."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Jūs turėtumėte įjungti \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Čia, jeigu norite, galite įjungti daugiau laikmenų."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Apžvelgiami jau įdiegti paketai..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Ieškoma atnaujintinų paketų"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -302,7 +297,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Tinklas"
@@ -352,7 +347,7 @@ msgstr "Įdiegimas"
msgid "Configuration"
msgstr "Nustatymai"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -378,22 +373,22 @@ msgstr "Paleidžiamas tinklas"
msgid "Bringing down the network"
msgstr "Išjungiamas tinklas"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopijavimas eigoje"
@@ -438,34 +433,34 @@ msgstr ""
msgid "No description"
msgstr "Nėra aprašymo"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Įvyko klaida:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr ""
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Kitą kartą nebeklausti"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d įdiegimo operacijos nepavyko"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -547,33 +542,33 @@ msgstr "Konsolės įrankiai"
msgid "Editors, shells, file tools, terminals"
msgstr "Redaktoriai, apvalkalai (shells), failų įrankiai, terminalai"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Programavimas"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C bei C++ kūrimo bibliotekos, programos ir include failai"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentacija"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Knygos ir HOWTO apie Linux ir Free Software"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr ""
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -704,8 +699,8 @@ msgid "Graphical Environment"
msgstr "Grafinė aplinka"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
msgstr "KDE darbo stotis"
#: share/meta-task/compssUsers.pl:153
@@ -790,62 +785,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Kiti grafiniai darbalaukiai"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Naudės"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr ""
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr ""
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr ""
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr ""
@@ -859,7 +842,7 @@ msgstr ""
"Įvyko klaida, bet aš nežinau, kaip su ja gražiai susitvarkyti.\n"
"Tęsk darbą savo paties rizika."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -903,7 +886,7 @@ msgstr ""
"%s. Jei taip atsitiktų, gali pabandyti tekstinį diegimo būdą:\n"
"Kai užsikrauna iš CDROM'o, paspausk `F1', o tada įvesk \"text\"."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Laikmenos pasirinkimas"
@@ -1101,7 +1084,7 @@ msgstr "Liko laiko:"
msgid "(estimating...)"
msgstr "(apskaičiuojama...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1109,29 +1092,29 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Apibendrinimas"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Nustatyti"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr ""
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1140,7 +1123,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1216,12 +1199,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Nustatome IDE"
#: steps_interactive.pm:354
@@ -1389,7 +1372,7 @@ msgstr "Konfigūracija po įdiegimo"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Atnaujinimai"
@@ -1416,7 +1399,17 @@ msgstr ""
"\n"
"Ar norite nustatyti atnaujinimų laikmeną?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, c-format
+msgid "Retry?"
+msgstr ""
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1430,113 +1423,113 @@ msgid ""
msgstr ""
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s iš %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Aparatinė įranga"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr ""
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr ""
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr ""
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Tinklas & Internetas"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Tarpinės stotys (proxies)"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr ""
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Saugumo lygis"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Užkarda"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "uždraustas"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Ruošiama pradinės paleisties programa..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Būkite kantrūs, tai gali šiek tiek užtrukti..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Įdėk tuščią diskelį į kaupiklį %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Kuriamas automatinio įdiegimo diskelis"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1547,12 +1540,12 @@ msgstr ""
"\n"
"Ar tu nori išeiti dabar?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Sveikinimai"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Paleisti iš naujo"
@@ -1688,3 +1681,9 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Išeiti"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/ltg.po b/perl-install/install/share/po/ltg.po
index 8e1479b15..035e7f06d 100644
--- a/perl-install/install/share/po/ltg.po
+++ b/perl-install/install/share/po/ltg.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2006-09-24 17:51+0200\n"
"Last-Translator: Māris Laureckis <marlau@inbox.lv>\n"
"Language-Team: Latgalian <linux@latgola.lv>\n"
@@ -87,87 +87,82 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Teiklys (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Teiklys (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Teiklys (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Voi spūguļservera URL?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL juosasuoc ar ftp:// voi http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Pīsaslādzu %s teimekļam, lai sajimtu pīejamū spūguļserveru sarokstu..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Dasasliegšona %s teimekļam cīta naveiksmi, lai sajimtu pīejamū spūguļserveru "
"sarokstu"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Izavielejit spūguļserveri, nu kura jimt pakūtnis"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS uzstuodeišona"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Lyudzu, īvodit hosta vuordu i jiusu NFS datu nesieja katalogu"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Kaids ir NFS monteišonys hosta vuords?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Katalogs"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -176,84 +171,84 @@ msgstr ""
"Iz ituo spūguļservera navar atrast pakūtņu saroksta failu. Puorbaudit, voi "
"atsarūn pareizā vītā."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Mekleju jau īprīkš uzinstaleituos pakūtnis..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Mekleju uzlobuojamuos pakūtnis"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Teik nūdzāstys pakūtnis pyrms atjaunynuošonys..."
@@ -302,7 +297,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Teiklys"
@@ -352,7 +347,7 @@ msgstr "Instalaceja"
msgid "Configuration"
msgstr "Konfiguraceja"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Jiusim ir juoformatej ari %s"
@@ -376,22 +371,22 @@ msgstr "Īdorbynoju teiklu"
msgid "Bringing down the network"
msgstr "Atslādzu teiklu"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Teik kopātys dažys pakūtnis lītuošonai nuokūtnē"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Nūteik kopeišona"
@@ -436,34 +431,34 @@ msgstr ""
msgid "No description"
msgstr "Nav aproksta"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Atkluota kliuda"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Nūtikuse fatala kliuda: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d instalacejis transakcejis naizadeve"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Instaleju pakūtni %s"
@@ -546,33 +541,33 @@ msgstr "Konsolis reiki"
msgid "Editors, shells, file tools, terminals"
msgstr "Redaktori, čaulys, failu reiki, terminali"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Izstruode"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C i C++ izstruodis bibliotekys, programmys i īkļautī faili"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentaceja"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Gruomotys i vaicuojumu par Linux i Breivū programmaturu"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linuks Standarta Bāze. Trešū izstruoduoju aplikaceju atbolsts"
@@ -703,9 +698,9 @@ msgid "Graphical Environment"
msgstr "Grafiskuo vide"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE dorba staceja"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Dorba staceja"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -794,65 +789,51 @@ msgstr ""
"viersmys reikim"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "IceWm Dorba viersma"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"K Desktop Environment, golvonuo grafiskuo vide kūpā ar papyldus reiku "
-"kolekceju"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Cytys grafiskuos dorba viersmys"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Enlightenment, Fvwm u.c."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilitys"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH servers"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin attuolynuotuos konfiguracejis servers "
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Teikla utilitys/puorraudzeiba"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Puorraudzeibys reiki, procesu uzskaite, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia paleigi"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Servera konfiguracejis paleigi"
@@ -866,7 +847,7 @@ msgstr ""
"Nūtyka klaida, bet es nazynu, kai tū korekti apstruoduot.\n"
"Turpynuot iz jiusu poša riska."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -911,7 +892,7 @@ msgstr ""
"instaleišonu. Lai tū izdareitu,\n"
"nūspīdit`F1', kod nūteik īluode nu CDROM, tod īvodit `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Pakūtņu grupu izviele"
@@ -1110,29 +1091,29 @@ msgstr "Atlykušais laiks"
msgid "(estimating...)"
msgstr "Aptuvenais nūviertiejums"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakūtnis"
msgstr[1] "%d pakūtnis"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Kūpsavylkums"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfigurēt"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "nav konfigurāts"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1141,7 +1122,7 @@ msgstr ""
"Atrosti sekojūši instalacejis datu nesieji.\n"
"Ja jius gribit izlaist dažus nu tim, jius tagad varit nūjimt atzeimi nu tim."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1154,7 +1135,7 @@ msgstr ""
"Taidā veidā turpynuosīs nu cītuo diska un pakūtnis byus pīejamys cikom "
"sistema tiks piļneibā uzinstaleita."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopēt vysu kompaktdisku"
@@ -1230,12 +1211,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Teik konfigurāts IDE"
#: steps_interactive.pm:354
@@ -1407,7 +1388,7 @@ msgstr "Piecinstaleišonys konfigureišona"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Lyudzu, puorsalīcynojit ka Update Modules atsarū īkuortā %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Atjaunynuojumi"
@@ -1431,7 +1412,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Atjaunuot"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1454,28 +1445,28 @@ msgstr ""
"Voi jius gribit instalēt atjaunynuojumus?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s iz %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Aparatura"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Skanis karte"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Vai jiusim ir ISA skanis karte?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1484,52 +1475,52 @@ msgstr ""
"Piec instaleišonys palaidit \"alsaconf\" voi \"sndconfig\", lai konfigurātu "
"jiusu skanis karti"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Nav atrosta skanis karte. Piec instaleišonys izmieginit \"harddrake\""
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafiskuo saskarne"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Teiklys & Internets"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Storpnīkserveri"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "konfigurāts"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Drūšeibys leimiņs"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Guņsmyurs"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktivizāts"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "atslāgts"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
@@ -1537,17 +1528,17 @@ msgstr ""
"gribit?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Sagataveju instaleišonu"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1556,17 +1547,17 @@ msgstr ""
"Šymā drūšeibys leiminī, pīeeja Windows sadalis failim ir tikai "
"administratoram."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Īlicit tukšu disketi īkuortā %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Sagataveju auto instaleišonys disketi"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1577,12 +1568,12 @@ msgstr ""
"\n"
"Voi tīšom gribit izīt tagad?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Apsveicam"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Puorsuoknēt"
@@ -1719,6 +1710,27 @@ msgid ""
"Exit"
msgstr "Izīt"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE dorba staceja"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "IceWm Dorba viersma"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "K Desktop Environment, golvonuo grafiskuo vide kūpā ar papyldus reiku "
+#~ "kolekceju"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Sagataveju suokneituoju"
diff --git a/perl-install/install/share/po/lv.po b/perl-install/install/share/po/lv.po
index bcc753fbf..e06518408 100644
--- a/perl-install/install/share/po/lv.po
+++ b/perl-install/install/share/po/lv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 04:07+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Latvian (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -86,171 +86,166 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr ""
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr ""
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Pieslēdzos %s tīmeklim, lai saņemtu pieejamo spoguļserveru sarakstu "
"sarakstu..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Izvēlieties spoguļserveri, no kura ņemt pakotnes"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Katalogs"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr ""
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Meklēju jau iepriekš uzinstalētās pakotnes..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Meklēju uzlabojamās pakotnes"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -299,7 +294,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Tīkls"
@@ -349,7 +344,7 @@ msgstr ""
msgid "Configuration"
msgstr "Konfigurācija"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Jums ir jāformatē arī %s"
@@ -373,22 +368,22 @@ msgstr "Iedarbinu tīklu"
msgid "Bringing down the network"
msgstr "Atslēdzu tīklu"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr ""
@@ -433,34 +428,34 @@ msgstr ""
msgid "No description"
msgstr ""
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr ""
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr ""
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr ""
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -541,33 +536,33 @@ msgstr "Konsoles rīki"
msgid "Editors, shells, file tools, terminals"
msgstr "Redaktori, čaulas, failu rīki, termināļi"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Izstrāde"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C un C++ izstrādes bibliotēkas, programmas un include faili"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentācija"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Grāmatas un Howto faili par Linux un Brīvo programmatūru"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -698,9 +693,9 @@ msgid "Graphical Environment"
msgstr "Grafiskā vide"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE darbastacija"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Darbastacija"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -783,62 +778,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Citas grafiskās darbavirsmas"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilites"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH serveris"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr ""
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr ""
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr ""
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr ""
@@ -852,7 +835,7 @@ msgstr ""
"Atklāta kļūda, bet es nezinu, kā ar to pareizi apieties.\n"
"Turpiniet, ja vēlaties riskēt."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -897,7 +880,7 @@ msgstr ""
"Lai to izdarītu, nospiediet`F1', ka notiek ielāde no CDROM, tad ievadiet\n"
"`text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1095,7 +1078,7 @@ msgstr ""
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1103,29 +1086,29 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Kopsavilkums"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfigurēt"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr ""
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1134,7 +1117,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1210,12 +1193,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Konfigurēju IDE"
#: steps_interactive.pm:354
@@ -1384,7 +1367,7 @@ msgstr "Pēcinstalēšanas konfigurēšana"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Atjaunināt"
@@ -1408,7 +1391,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, c-format
+msgid "Retry?"
+msgstr ""
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1422,113 +1415,113 @@ msgid ""
msgstr ""
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s uz %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Dzelži"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Skaņas karte"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Vai Jums ir ISA skaņas karte?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Nav atrasta skaņu karte. Pēc instalēšanas izmēģiniet \"harddrake\""
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr ""
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Tīkls & Internets"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr ""
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr ""
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Drošības Līmenis"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Ugunssiena"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "aizliegts"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ielieciet tukšu disketi iekārtā %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Sagatavoju auto instalēšanas disketi"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1539,12 +1532,12 @@ msgstr ""
"\n"
"Vai tiešām vēlaties iziet tūlīt?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Apsveicam"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Pārstartēt"
@@ -1680,3 +1673,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Iziet"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE darbastacija"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/mk.po b/perl-install/install/share/po/mk.po
index f0a27255e..fd15319f9 100644
--- a/perl-install/install/share/po/mk.po
+++ b/perl-install/install/share/po/mk.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-mk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2006-09-24 20:39-0700\n"
"Last-Translator: Zoran Dimovski <zoki.dimovski@gmail.com>\n"
"Language-Team: Macedonian <mkde-l10n@lists.sourceforge.net>\n"
@@ -94,173 +94,168 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Мрежа (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Мрежа (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Мрежа (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL на огледалото?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL-то мора да започнува со „ftp://“ или „http://“"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Контактирање со веб сајтот на %s за добивање на листата на огледала..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Не може да се воспостави врска веб страница на „%s“ за да се добие листата "
"на достапни огледала"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Изберете огледало од кое да се преземат пакетите"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Поставување на „NFS“"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
"Ве молиме внесете го името на домаќинот и директориумот на вашиот „NFS“ "
"медиум"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Име на домаќинот каде е монтиран „NFS“ ?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Директориум"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Не мојажам да ја пронајдам hdlist датотеката на ова огледало"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Барање пакети што се веќе инсталирањен..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Барање пакети за надградба..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Отстранување на пакети поради надградување..."
@@ -310,7 +305,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Мрежа"
@@ -360,7 +355,7 @@ msgstr "Инсталација"
msgid "Configuration"
msgstr "Конфигурација"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Мора да го форматирате и %s"
@@ -385,22 +380,22 @@ msgstr "Подигање на мрежата"
msgid "Bringing down the network"
msgstr "Спуштање на мрежата"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Копирање на некои пакети на дискот за понатамошна употреба"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Копирањето е во тек"
@@ -445,34 +440,34 @@ msgstr ""
msgid "No description"
msgstr "Нема опис"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Се случи грешка"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Се случи фаталната грешка: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d неуспешни трансакциии на инсталацијата"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Инсталирање на пакетот %s"
@@ -555,33 +550,33 @@ msgstr "Конзолски алатки"
msgid "Editors, shells, file tools, terminals"
msgstr "Уредувачи, школки, алатки за датотеки, терминали"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Развој"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Развивачки датотеки за „C“ и „C++“, програми и „include“ датотеки"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Документација"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Книги и „Како да“ за „Linux“ и слободен софтвер"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "„Linux Standard Base“. Поддршка за апликации од други фирми"
@@ -712,9 +707,9 @@ msgid "Graphical Environment"
msgstr "Графичка околина"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "„KDE“ работна станица"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Работна станица"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -799,65 +794,51 @@ msgstr ""
"Графичка околина со кориснички пакет на алатки и алатки за работната површина"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "„IceWm“ работна површина"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"„К“ работна околина, основната графичка околина со додатна колекција на "
-"придружни алатки"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Други графички работни околини"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Enlightenment, Fvwm, итн."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Помошни алатки"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH Сервер"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "„Webmin“"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "„Webmin“ оддалечен сервер за конфигурирање"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Мрежни помошни алатки/надгледување"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Алатки за надгледување, раководење на процеси, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "„Mageia“ волшебници"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Волшебници за конфигурирање на сервер"
@@ -871,7 +852,7 @@ msgstr ""
"Се случи грешка, но не знам како добро да се справам со неа.\n"
"Продолжете на сопствен ризик."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -916,7 +897,7 @@ msgstr ""
"За тоа, притиснете \"F1\" кога ќе се подигне цедеромот, и потоа внесете\n"
"\"text\"."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Групна селекција на пакети"
@@ -1116,29 +1097,29 @@ msgstr "Преостанато време "
msgid "(estimating...)"
msgstr "Проценка"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d пакети"
msgstr[1] "%d пакети"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Резиме"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Конфигурирај"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "не е конфигурирано"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1147,7 +1128,7 @@ msgstr ""
"Пронајдени се следниве инсталациски медиуми.\n"
"Ако сакате да отстранете некои, можете сега да ги дештиклирате."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1160,7 +1141,7 @@ msgstr ""
"Потоа, инсталацијата ќе продолжи од хард дискот и пакетите ќе бидат достапни "
"се додека системот е целосно инсталиран."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Копирај ги сите CD-а"
@@ -1236,12 +1217,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Конфигурирање на IDE"
#: steps_interactive.pm:354
@@ -1413,7 +1394,7 @@ msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
"Ве молиме проверете дали медиумот со модулите за надградување е во уредот %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Надградби"
@@ -1437,7 +1418,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Поврати"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1459,28 +1450,28 @@ msgstr ""
"Дали сакате да ги инсталирате надградбите?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s на %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Хардвер(машински дел)"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Звучна картичка"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Дали имате ISA звучна картичка?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1489,70 +1480,70 @@ msgstr ""
"По инсталацијата вклучете \"alsaconf\" или \"sndconfig\" за да ја "
"конфигурирате звучаната картичка"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Не е детектирана звучна картичка. Обидете се со \"harddrake\" по "
"инсталацијата"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Графички интерфејс"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Мрежа и Интернет"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Прокси"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "конфигурирано"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Ниво на сигурност"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "активиран"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "оневозможено"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Се уште го ш конфигурирано Х. Дали навистина сакаш да го направиш ова?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Подготовка на инсталацијата"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1561,17 +1552,17 @@ msgstr ""
"Во ова безбедносно ниво, пристап до датотеките кои се наоѓаат на „Windows“ "
"партицијата е дозволен само на администраторот."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Внесете празна дискета во %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Создавање дискета за авто-инсталација..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1582,12 +1573,12 @@ msgstr ""
"\n"
"Дали навистина сакате сега да напуштите?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Честитки"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Рестартирај"
@@ -1724,6 +1715,27 @@ msgid ""
"Exit"
msgstr "Излез"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "„KDE“ работна станица"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "„IceWm“ работна површина"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "„К“ работна околина, основната графичка околина со додатна колекција на "
+#~ "придружни алатки"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Подговтвување на подигачот..."
diff --git a/perl-install/install/share/po/mn.po b/perl-install/install/share/po/mn.po
index 888f5ad3c..991a95cd5 100644
--- a/perl-install/install/share/po/mn.po
+++ b/perl-install/install/share/po/mn.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2004-01-02 00:35+0100\n"
"Last-Translator: Sanlig Badral <Badral@openmn.org>\n"
"Language-Team: Mongolian <openmn-core@lists.sf.net>\n"
@@ -85,170 +85,165 @@ msgid ""
msgstr ""
#: any.pm:162
-#, c-format
-msgid "CD-ROM"
-msgstr "КД-РОМ"
-
-#: any.pm:163
#, fuzzy, c-format
msgid "Network (HTTP)"
msgstr "Сүлжээ"
-#: any.pm:164
+#: any.pm:163
#, fuzzy, c-format
msgid "Network (FTP)"
msgstr "Сүлжээ"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, fuzzy, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "сайт жигсаалт аас."
-#: any.pm:253
+#: any.pm:252
#, fuzzy, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "сайт жигсаалт аас."
-#: any.pm:263
+#: any.pm:262
#, fuzzy, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Сонгох"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Лавлах"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, fuzzy, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "%s: %s-ийг холбож чадахгүй: %s\n"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr ""
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr ""
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -293,7 +288,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "ТЭ"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Сүлжээ"
@@ -345,7 +340,7 @@ msgstr "Суулгалт"
msgid "Configuration"
msgstr "Тохиргоо"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -367,22 +362,22 @@ msgstr ""
msgid "Bringing down the network"
msgstr ""
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "ямх"
@@ -427,34 +422,34 @@ msgstr ""
msgid "No description"
msgstr "Тайлбар алга"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr ""
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr ""
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "Суулгалт боломжтой"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Суулгалтын ангилалыг сонгох"
@@ -533,33 +528,33 @@ msgstr ""
msgid "Editors, shells, file tools, terminals"
msgstr "Засварлагчууд"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Хөгжүүлэл"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, fuzzy, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C C"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Баримтжуулалт"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr ""
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, fuzzy, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Стандарт"
@@ -691,8 +686,8 @@ msgstr ""
#: share/meta-task/compssUsers.pl:152
#, fuzzy, c-format
-msgid "KDE Workstation"
-msgstr "KDE"
+msgid "Plasma Workstation"
+msgstr "LAN Тохируулга"
#: share/meta-task/compssUsers.pl:153
#, fuzzy, c-format
@@ -772,62 +767,50 @@ msgstr "аас"
#: share/meta-task/compssUsers.pl:194
#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Ширээний компьютер"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "Ажилын талбар аас"
-
-#: share/meta-task/compssUsers.pl:199
-#, fuzzy, c-format
msgid "Other Graphical Desktops"
msgstr "Бусад"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Цонх"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, fuzzy, c-format
msgid "Utilities"
msgstr "Филлипинни"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, fuzzy, c-format
msgid "Webmin"
msgstr "Вэб дуран"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, fuzzy, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Терминал Сервер"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, fuzzy, c-format
msgid "Network Utilities/Monitoring"
msgstr "Сүлжээ толидох"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "Мандрива удирдлагын төв"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, fuzzy, c-format
msgid "Wizards to configure server"
msgstr "\"%s\" хэвлэгч дээр хэвлэж байна"
@@ -839,7 +822,7 @@ msgid ""
"Continue at your own risk."
msgstr ""
-#: steps.pm:458
+#: steps.pm:460
#, fuzzy, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -876,7 +859,7 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr "бол Та вы текст текст."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Пакет Групп"
@@ -1073,36 +1056,36 @@ msgstr "Үлдэж буй хугацаа"
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "Тааруухан багц"
msgstr[1] "Тааруухан багц"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Дүгнэлт"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Тохируулах"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr ""
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1111,7 +1094,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1187,12 +1170,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
+msgid "CD/DVD"
msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE-г тохируулах"
#: steps_interactive.pm:354
@@ -1355,7 +1338,7 @@ msgstr "Суулгалтын тохируулгыг батал"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, fuzzy, c-format
msgid "Updates"
msgstr "Шинэчлэх"
@@ -1379,7 +1362,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Сэргээх"
+
+#: steps_interactive.pm:770
#, fuzzy, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1393,113 +1386,113 @@ msgid ""
msgstr "Та г вы Интернэт г вы?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s -д %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Техник хангамж"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Дууны карт"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Та ISA дууны карттай юу?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, fuzzy, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr "Ажиллуулах"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, fuzzy, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Үгүй Reyna"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr ""
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, fuzzy, c-format
msgid "Network & Internet"
msgstr "Сүлжээ"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, fuzzy, c-format
msgid "Proxies"
msgstr "Польш"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, fuzzy, c-format
msgid "configured"
msgstr "Тохируулах"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Хамгаалалтын төвшин"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "хаалттай"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Та Х-г тохируулаагүй байна. Та үүнийг хийхдээ итгэлтэй байна уу?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Суулгалтын бэлтгэл"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, fuzzy, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Оруулах ямх"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, fuzzy, c-format
msgid "Creating auto install floppy..."
msgstr "Үүсгэж байна."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, fuzzy, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1507,12 +1500,12 @@ msgid ""
"Do you really want to quit now?"
msgstr "г вы?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, fuzzy, c-format
msgid "Congratulations"
msgstr "Баяр хүргэе!"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Дахин ачаал"
@@ -1649,6 +1642,23 @@ msgid ""
"Exit"
msgstr "Гарах"
+#~ msgid "CD-ROM"
+#~ msgstr "КД-РОМ"
+
+#, fuzzy
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Ширээний компьютер"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr "Ажилын талбар аас"
+
#, fuzzy
#~ msgid ""
#~ "A lightweight & fast graphical environment with user-friendly set of "
diff --git a/perl-install/install/share/po/ms.po b/perl-install/install/share/po/ms.po
index 358123ca0..95ee5db59 100644
--- a/perl-install/install/share/po/ms.po
+++ b/perl-install/install/share/po/ms.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2008-05-01 14:16+0800\n"
"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
"Language-Team: Malay <translation-team-ms@lists.sourceforge.net>\n"
@@ -81,170 +81,165 @@ msgid ""
msgstr ""
#: any.pm:162
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
#, fuzzy, c-format
msgid "Network (HTTP)"
msgstr "Pelayan Rangkaian"
-#: any.pm:164
+#: any.pm:163
#, fuzzy, c-format
msgid "Network (FTP)"
msgstr "Pelayan FTP"
-#: any.pm:165
+#: any.pm:164
#, fuzzy, c-format
msgid "Network (NFS)"
msgstr "Pelayan Rangkaian"
-#: any.pm:224
+#: any.pm:223
#, fuzzy, c-format
msgid "URL of the mirror?"
msgstr "URL untuk IG"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: any.pm:293
+#: any.pm:290
#, fuzzy, c-format
msgid "NFS setup"
msgstr "Tetapan Halaman"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, fuzzy, c-format
msgid "Hostname missing"
msgstr "Pakej Hilang"
-#: any.pm:299
+#: any.pm:296
#, fuzzy, c-format
msgid "Directory must begin with \"/\""
msgstr "Nama Direktori mesti dimulakan dengan slash"
-#: any.pm:303
+#: any.pm:300
#, fuzzy, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Perkongsian NFS Terlekap"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Direktori"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, fuzzy, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Ralat pada baris %d: %s"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, fuzzy, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Langkau semua pakej dari media \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr ""
-#: any.pm:634
+#: any.pm:631
#, fuzzy, c-format
msgid "Finding packages to upgrade..."
msgstr "Mencari pakej untuk dinaiktaraf..."
-#: any.pm:653
+#: any.pm:650
#, fuzzy, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Ralat berlaku bila mencari pakej untuk dinaiktaraf."
@@ -289,7 +284,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rangkaian"
@@ -339,7 +334,7 @@ msgstr "Pemasangan sekecil mungkin"
msgid "Configuration"
msgstr "Konfigurasikan"
-#: install2.pm:210
+#: install2.pm:211
#, fuzzy, c-format
msgid "You must also format %s"
msgstr "Anda mesti masukkan direktori."
@@ -361,22 +356,22 @@ msgstr "Pelayan Rangkaian Lama"
msgid "Bringing down the network"
msgstr "Pelayan Rangkaian Lama"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "&Dalam pelayar web"
@@ -423,34 +418,34 @@ msgstr ""
msgid "No description"
msgstr "Tiada keterangan"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Ralat telah berlaku"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, fuzzy, c-format
msgid "A fatal error occurred: %s."
msgstr "Ralat berlaku bila cuba menyalin cekupan skrin."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "Pelaksanaan gpg gagal (%d)\n"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Memasang pakej %s"
@@ -529,33 +524,33 @@ msgstr "Alatan Pentadbiran"
msgid "Editors, shells, file tools, terminals"
msgstr "Penyunting fail"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Pembangunan"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, fuzzy, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Pustaka dan fail selitan untuk Oaf."
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentasi"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, fuzzy, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "dan on dan Bebas"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, fuzzy, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Asas"
@@ -687,8 +682,8 @@ msgstr "Internet Bergrafik"
#: share/meta-task/compssUsers.pl:152
#, fuzzy, c-format
-msgid "KDE Workstation"
-msgstr "Menu KDE"
+msgid "Plasma Workstation"
+msgstr "StesyenKerja"
#: share/meta-task/compssUsers.pl:153
#, fuzzy, c-format
@@ -768,62 +763,50 @@ msgstr "A pengguna dan"
#: share/meta-task/compssUsers.pl:194
#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Persekitaran Desktop"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "Desktop Persekitaran asas"
-
-#: share/meta-task/compssUsers.pl:199
-#, fuzzy, c-format
msgid "Other Graphical Desktops"
msgstr "Pada Semua Desktop"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utiliti"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, fuzzy, c-format
msgid "SSH Server"
msgstr "Pelayan FTP"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, fuzzy, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Alatan tetapan pelayan dan klien fax"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, fuzzy, c-format
msgid "Network Utilities/Monitoring"
msgstr "Aplet pengawas rangkaian"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "Mageia Galaxy"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, fuzzy, c-format
msgid "Wizards to configure server"
msgstr "Sila tetapkan pelayan PXE"
@@ -838,7 +821,7 @@ msgstr ""
"dengan baik.\n"
"Teruskan atas risiko anda."
-#: steps.pm:458
+#: steps.pm:460
#, fuzzy, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -875,7 +858,7 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Barisatas pilihan (toggle)"
@@ -1076,36 +1059,36 @@ msgstr "Masa Himpun"
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "Pelihat Pakej"
msgstr[1] " Pakej"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Ringkasan"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Buat konfigurasi"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, fuzzy, c-format
msgid "not configured"
msgstr "Tiada"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1114,7 +1097,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, fuzzy, c-format
msgid "Copy whole CDs"
msgstr "Main CD audio"
@@ -1190,12 +1173,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
#, fuzzy, c-format
-msgid "Configuring IDE"
+msgid "Configuring CD/DVD"
msgstr "IDE Anjuta"
#: steps_interactive.pm:354
@@ -1360,7 +1343,7 @@ msgstr "Tetapan pasca pemasangan"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Kemaskini"
@@ -1384,7 +1367,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Ulangcuba"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1407,113 +1400,113 @@ msgstr ""
"Adakah anda mahu memasang kemaskini tersebut?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s pada %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Perkakasan"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Kad bunyi"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr ""
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Tiada kad bunyi dikesan. Cuba \"harddrake\" selepas pemasangan."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Antaramuka Bergrafik"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Rangkaian & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proksi"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "ditetapkan"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Tahap Keselamatan"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "dimatikan"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Pemasangan sekecil mungkin"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Masukkan cakera liut kosong dalam pemacu %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Mencipta cakera liut auto pasang..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1521,12 +1514,12 @@ msgid ""
"Do you really want to quit now?"
msgstr ""
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Tahniah"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Boot semula"
@@ -1663,6 +1656,26 @@ msgid ""
"Exit"
msgstr "Keluar"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#, fuzzy
+#~ msgid "KDE Workstation"
+#~ msgstr "Menu KDE"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Persekitaran Desktop"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr "Desktop Persekitaran asas"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Menyediakan pemuatboot..."
diff --git a/perl-install/install/share/po/mt.po b/perl-install/install/share/po/mt.po
index d8d15427c..4f8be233c 100644
--- a/perl-install/install/share/po/mt.po
+++ b/perl-install/install/share/po/mt.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mt\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2004-10-04 18:45+0200\n"
"Last-Translator: Ramon Casha <ramon.casha@linux.org.mt>\n"
"Language-Team: Maltese <mt@li.org>\n"
@@ -85,171 +85,166 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Network (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Network (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL tal-mera?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Qed nikkuntattja l-website ta' %s biex nikseb lista tal-mirja disponibbli"
-#: any.pm:253
+#: any.pm:252
#, fuzzy, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Qed nikkuntattja l-website ta' %s biex nikseb lista tal-mirja disponibbli"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Agħżel mera minn fejn trid iġġib il-pakketti"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Direttorju"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Ma nistax insib fajl hdlist fuq din il-mera"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Qed naqra l-pakketti diġà nstallati..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Qed insib pakketti x'naġġorna"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -298,7 +293,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "PFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Network"
@@ -348,7 +343,7 @@ msgstr "Qed ninstalla"
msgid "Configuration"
msgstr "Konfigurazzjoni"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Trid ukoll tifformattja %s"
@@ -372,22 +367,22 @@ msgstr "Qed intella' n-network"
msgid "Bringing down the network"
msgstr "Qed inniżżel in-network"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "Għaddej l-għarfien"
@@ -432,34 +427,34 @@ msgstr ""
msgid "No description"
msgstr "fid-deskrizzjonijiet"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Inqalgħet problema"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Inqalgħet problema fatali: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d tranżazzjonijiet ta' installazzjoni fallew"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Qed jinstalla il-pakkett %s"
@@ -541,33 +536,33 @@ msgstr "Għodda tal-konsol"
msgid "Editors, shells, file tools, terminals"
msgstr "Edituri, shells, għodda tal-fajls, terminals"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Żviluppar"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Libreriji, programmi u fajls għal żviluppar C u C++"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentazzjoni"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Kotba u \"HOWTO\" dwar il-Linux u Softwer Ħieles"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Sapport ta' programmi ta' terzi partiti"
@@ -698,9 +693,9 @@ msgid "Graphical Environment"
msgstr "Ambjent Grafiku"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Stazzjon KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Workstation"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -781,65 +776,51 @@ msgid "A lightweight fast graphical environment"
msgstr "Ambjent grafiku b' għażla ta' programmi u għodda faċli"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Desktop"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"K Desktop Environment, l-interfaċċja grafika bażi, b'għażla ta' għodda "
-"jakkumpanjawha"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Desktops Grafiċi Oħrajn"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, eċċ"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, fuzzy, c-format
msgid "Utilities"
msgstr "Filippini"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Server SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, fuzzy, c-format
msgid "Webmin"
msgstr "Webcam"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, fuzzy, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Konfigurazzjoni tat-Terminal Server"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, fuzzy, c-format
msgid "Network Utilities/Monitoring"
msgstr "Monitoraġġ tan-network"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "<b>Prodotti Mageia</b>"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, fuzzy, c-format
msgid "Wizards to configure server"
msgstr "Ma stajtx nikkonfigura l-printer \"%s\"!"
@@ -853,7 +834,7 @@ msgstr ""
"Inqalgħet problema, imma ma nafx kif nieħu ħsieba sew.\n"
"Tista' tkompli b'riskju tiegħek"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -897,7 +878,7 @@ msgstr ""
"l-%s. Jekk jiġri dan, ipprova installazzjoni testwali. Għal dan,\n"
"agħfas F1 meta titla' s-CD, imbagħad ittajpja \"text\"."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Għażla ta' gruppi ta' pakketti"
@@ -1095,29 +1076,29 @@ msgstr "Ħin li fadal "
msgid "(estimating...)"
msgstr "Qed nieħu stima"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakketti"
msgstr[1] "%d pakketti"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Sommarju"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Ikkonfigura"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "mhux konfigurat"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1126,7 +1107,7 @@ msgstr ""
"Dawn is-sorsi ta' installazzjoni instabu.\n"
"Jekk trid taqbeż uħud minnhom, tista' tneħħi l-marka issa."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1135,7 +1116,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1211,12 +1192,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Qed nikkonfigura IDE"
#: steps_interactive.pm:354
@@ -1389,7 +1370,7 @@ msgstr "Konfigurazzjoni ta' wara l-installazzjoni"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Aġġornamenti"
@@ -1413,7 +1394,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Irrestawra"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1437,28 +1428,28 @@ msgstr ""
"Trid tinstalla dawn l-aġġornamenti?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s fuq %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Ħardwer"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Kard awdjo"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Għandek kard tal-awdjo ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1467,70 +1458,70 @@ msgstr ""
"Ħaddem \"alsaconf\" jew \"sndconfig\" wara l-installazzjoni biex "
"tikkonfigura l-kard awdjo."
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Ebda kard tal-awdjo ma nstabet. Ipprova ħaddem \"harddrake\" wara l-"
"installazzjoni"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interfaċċja grafika"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Network u internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxies"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "konfigurat"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Livell ta' sigurtà"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewallr"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "attivat"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "mitfi"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Għadek ma kkonfigurajtx X. Żgur trid hekk?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Qed nipprepara l-installazzjoni"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1539,17 +1530,17 @@ msgstr ""
"F'dan il-livell ta' sigurtà, l-aċċess għall-fajls fuq il-partizzjoni tal-"
"Windows huwa ristrett għall-amministratur."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Daħħal flopi vojta fid-drajv %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Qed jinħoloq flopi awto-installazzjoni"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1560,12 +1551,12 @@ msgstr ""
"\n"
"Trid toħroġ issa?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Prosit"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Irributja"
@@ -1702,6 +1693,27 @@ msgid ""
"Exit"
msgstr "Oħroġ"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Stazzjon KDE"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Desktop"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "K Desktop Environment, l-interfaċċja grafika bażi, b'għażla ta' għodda "
+#~ "jakkumpanjawha"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Qed nipprepara l-bootloader"
diff --git a/perl-install/install/share/po/nb.po b/perl-install/install/share/po/nb.po
index e4d332b43..ead473d48 100644
--- a/perl-install/install/share/po/nb.po
+++ b/perl-install/install/share/po/nb.po
@@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mageia/"
@@ -100,88 +100,83 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Nettverk (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Nettverk (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Nettverk (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Nettadresse til speilet?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL må starte med ftp:// eller http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Kontakter nettstedet til %s for å få listen over tilgjengelige speil … "
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Klarte ikke å kontakte nettstedet til %s for å få listen over tilgjengelige "
"speil"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Velg et speil som pakkene kan hentes fra"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS-oppsett"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Tast inn vertsnavnet og mappen til ditt NFS-medie"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Vertsnavn mangler"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Mappenavnet må starte med \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Vertsnavn til NFS-monteringen ?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Mappe"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Ekstra"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -190,84 +185,84 @@ msgstr ""
"Kan ikke finne pakkelistefil på dette speilet. Kontrollér at adressen er "
"riktig."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Ser på pakker som allerede er installert … "
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Finner pakker som skal oppgraderes … "
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Fjerner pakker før oppgradering … "
@@ -317,7 +312,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Nettverk"
@@ -367,7 +362,7 @@ msgstr "Installasjon"
msgid "Configuration"
msgstr "Oppsett"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Du må også formatere %s"
@@ -391,22 +386,22 @@ msgstr "Henter opp nettverket"
msgid "Bringing down the network"
msgstr "Tar ned nettverket"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Vennligst vent, henter fil"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "kunne ikke legge til medium"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopiér noen pakker på disken for framtidig bruk"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopiering pågår"
@@ -451,7 +446,7 @@ msgstr "Ingen xml-info for mediet «%s», bare delvis resultat for pakke %s"
msgid "No description"
msgstr "Ingen beskrivelse"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -460,27 +455,27 @@ msgstr ""
"Noen pakker krevet av %s kan ikke installeres\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "En feil oppstod:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Det oppsto en kritisk feil: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Ikke spør igjen"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d mislykket installasjonstransaksjon"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Installasjon av pakker feilet:"
@@ -563,33 +558,33 @@ msgstr "Konsollverktøy"
msgid "Editors, shells, file tools, terminals"
msgstr "Tekstprogrammer, skall, filverktøy, terminaler"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Utvikling"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C- og C++-utviklingsbibliotek, -programmer og include-filer"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentasjon"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Bøker og Howto's om Linux og fri programvare"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Støtte for tredjeparts programvare"
@@ -720,9 +715,9 @@ msgid "Graphical Environment"
msgstr "Grafisk miljø"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE-arbeidsstasjon"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Arbeidsstasjon"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -806,62 +801,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Andre grafiske skrivebord"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Verktøy"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH-tjener"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin Fjernadministrasjonstjener"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Nettverks-verktøy/overvåkning"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Overvårkningsverktøy, prosessbokføring, tcpdump, nmap, … "
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia-veivisere"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Veivisere til å sette opp tjener"
@@ -876,7 +859,7 @@ msgstr ""
"måte.\n"
"Fortsett på eget ansvar."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -920,7 +903,7 @@ msgstr ""
"tekstmodus\n"
"i stedet. Trykk `F1' ved oppstart av CD-ROM, skriv så `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Medievalg"
@@ -1119,29 +1102,29 @@ msgstr "Tid som gjenstår:"
msgid "(estimating...)"
msgstr "(beregner … )"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakke"
msgstr[1] "%d pakker"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Oppsummering"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Sett opp"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "ikke satt opp"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1150,7 +1133,7 @@ msgstr ""
"Følgende installasjonsmedia har blitt funnet.\n"
"Hvis du vill hoppe over noen av de kan du velge de vekk nå."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1163,7 +1146,7 @@ msgstr ""
"Den vil da fortsette fra harddisken og pakkene vil forbli tilgjengelige når "
"systemet er fullstendig installert."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopiér hele CDer"
@@ -1239,12 +1222,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Setter opp IDE"
#: steps_interactive.pm:354
@@ -1419,7 +1402,7 @@ msgstr "Oppsett etter installering"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Vennligst forsikre deg om at medie med oppdaterte moduler er i %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Oppdateringer"
@@ -1443,7 +1426,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "kunne ikke legge til medium"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Prøv igjen"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1463,28 +1456,28 @@ msgstr ""
"Ønsker du å installere oppdateringene?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s på %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Maskinvare"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Lydkort"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA-lydkort?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1493,52 +1486,52 @@ msgstr ""
"Kjør «alsaconf» eller «sndconfig» etter installasjonen for å sette opp "
"lydkortet ditt"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Lydkort ikke oppdaget. Prøv \"harddrake\" etter installasjonen"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafisk grensesnitt"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Nettverk & internett"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Mellomtjenere"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "satt opp"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Sikkerhetsnivå"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Brannmur"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktivert"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "deaktiver"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
@@ -1546,17 +1539,17 @@ msgstr ""
"ikke vil gjøre dette?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Vennligst vær tålmodig, dette kan ta en stund … "
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1565,17 +1558,17 @@ msgstr ""
"I dette sikkerhetsnivået er tilgang til Windows-partisjonen forbeholdt "
"administratoren."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sett inn en tom diskett i stasjon %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Oppretter diskett for autoinstallasjon … "
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1586,12 +1579,12 @@ msgstr ""
"\n"
"Ønsker du virkelig å avslutte nå?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Gratulerer"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Restart"
@@ -1727,3 +1720,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Avslutt"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE-arbeidsstasjon"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/nl.po b/perl-install/install/share/po/nl.po
index dff867030..877a6699f 100644
--- a/perl-install/install/share/po/nl.po
+++ b/perl-install/install/share/po/nl.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drakx_install\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-20 07:42+0200\n"
"Last-Translator: Marja van Waes <marja@mageia.org>\n"
"Language-Team: Dutch <i18n-nl@ml.mageia.org>\n"
@@ -96,89 +96,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "cd-rom"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Netwerk (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Netwerk (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Netwerk (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL van de mirror?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL dient te starten met ftp:// of http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Er wordt verbinding gemaakt met de %s website om een lijst met beschikbare "
"spiegelservers te verkrijgen..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Er kon geen verbinding gemaakt worden met %s website om een lijst met "
"beschikbare spiegelservers te verkrijgen"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Kies een mirror om de pakketten van af te halen"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS-configuratie"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Vul de hostnaam en map van uw NFS media in"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Hostnaam ontbreekt"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Map dient te beginnen met \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Hostnaam van het NFS-koppelpunt?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Map"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Aanvullend"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -187,22 +182,22 @@ msgstr ""
"Kan hdlist-bestand op deze mirror niet vinden. Controleer of de locatie "
"klopt."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core-uitgave"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted-uitgave"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree-uitgave"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -211,22 +206,22 @@ msgstr ""
"Bepaalde hardware in uw machine behoeft niet-vrije firmware alvorens de "
"vrije stuurprogrammatuur kan werken."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "U dient \"%s\" in te schakelen"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" bevat de diverse onderdelen van de systemen en hun toepassingen"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" bevat niet-vrije software.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -236,7 +231,7 @@ msgstr ""
"laten werken (bijv: bepaalde ATI/AMD-grafische kaarten, bepaalde "
"netwerkkaarten, bepaalde RAID-kaarten, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -245,7 +240,7 @@ msgstr ""
"\"%s\" bevat software welke niet in alle landen vrijelijk gedistribueerd kan "
"worden als gevolg van software patenten."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
@@ -253,27 +248,27 @@ msgstr ""
"Het bevat ook software uit \"%s\" welke herbouwd is met additionele "
"mogelijkheden."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Hier kunt u indien gewenst meerdere media inschakelen."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Dit medium biedt updates voor \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Inventarisatie van reeds geïnstalleerde pakketten…"
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Zoeken naar pakketten om op te waarderen…"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Verwijderen van pakketten vóór opwaardering..."
@@ -323,7 +318,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Netwerk"
@@ -373,7 +368,7 @@ msgstr "Installatie"
msgid "Configuration"
msgstr "Configuratie"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "U dient tevens %s te formatteren"
@@ -397,22 +392,22 @@ msgstr "Bezig met opstarten van het netwerk"
msgid "Bringing down the network"
msgstr "Bezig met stoppen van het netwerk"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Even geduld, bestand wordt opgehaald"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "niet in staat medium toe te voegen"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopiëren van enkele pakketten op diskettes voor toekomstig gebruik"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Bezig met kopiëren"
@@ -458,7 +453,7 @@ msgstr ""
msgid "No description"
msgstr "Geen omschrijving"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -467,27 +462,27 @@ msgstr ""
"Sommige door %s gevraagde pakketten kunnen niet worden geïnstalleerd:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Er is een fout opgetreden:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Er is een fatale fout opgetreden: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Vraag niet nogmaals"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d installatie-transacties mislukt"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Installatie van pakketten mislukt:"
@@ -570,33 +565,33 @@ msgstr "Hulpprogramma's voor de opdrachtregel"
msgid "Editors, shells, file tools, terminals"
msgstr "Editors, shells, bestandsbeheer, terminals"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Ontwikkeling"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C and C++ ontwikkelingsbibliotheken, programma's en include-bestanden"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentatie"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Boeken en Howto's over Linux en Vrije Software"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standaard-Basis. Ondersteuning voor toepassingen van derden."
@@ -727,9 +722,9 @@ msgid "Graphical Environment"
msgstr "Grafische omgeving"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE-werkomgeving"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Werkstation"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -817,64 +812,50 @@ msgstr "Een snelle lichtgewicht grafische omgeving"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasma-werkomgeving"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"De Plasma-werkomgeving, de basis-grafische omgeving met een verzameling van "
-"bijbehorende programma's"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Andere grafische omgevingen"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, enz"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Hulpprogramma's"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH-server"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin-server voor configuratie op afstand"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Netwerk-hulpprogramma's/observatie"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Observatieprogramma's, bijhouden van processen, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia-wizards"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Wizards om server te configureren"
@@ -888,7 +869,7 @@ msgstr ""
"Er is een fout opgetreden waarvoor de juiste afhandeling onbekend is.\n"
"Als u verdergaat, is dit op eigen risico."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -933,7 +914,7 @@ msgstr ""
"tekstinstallatie proberen. Druk 'F1' bij het opstarten van de disc, en toets "
"dan in: 'text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Mediaselectie"
@@ -1132,29 +1113,29 @@ msgstr "Resterende tijd:"
msgid "(estimating...)"
msgstr "(schatten…)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakket"
msgstr[1] "%d pakketten"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Overzicht"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configureren"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "niet geconfigureerd"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1163,7 +1144,7 @@ msgstr ""
"De volgende installatiemedia zijn gevonden.\n"
"Indien u sommige wilt overslaan, kunt u ze nu deselecteren."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1176,7 +1157,7 @@ msgstr ""
"De installatie gaat dan door vanaf de harde schijf en de pakketten blijven "
"beschikbaar zodra het systeem volledig geïnstalleerd is."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Hele cd's kopiëren"
@@ -1259,12 +1240,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE-Configuratie"
#: steps_interactive.pm:354
@@ -1439,7 +1420,7 @@ msgstr "Configuratie na installatiestap"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Zorg ervoor dat de Update Modules-media zich in station %s bevindt"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Updates"
@@ -1467,7 +1448,17 @@ msgstr ""
"\n"
"Wilt u de updatemedia instellen?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "niet in staat medium toe te voegen"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Opnieuw proberen"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1488,28 +1479,28 @@ msgstr ""
"Wenst u de bijgewerkte pakketten te installeren?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s op %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Apparatuur"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Geluidskaart"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Heeft u een ISA geluidskaart?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1518,68 +1509,68 @@ msgstr ""
"Voer \"alsaconf\" of \"sndconfig\" na de installatie uit om uw geluidskaart "
"te configureren"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Geen geluidskaart bespeurd. Probeer \"harddrake\" na de installatie"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafische interface"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Netwerk & internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxy's"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "geconfigureerd"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Beveiligingsniveau"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "geactiveerd"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "uitgeschakeld"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "U heeft X niet geconfigureerd. Weet u zeker dat u dit wilt?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Bezig met voorbereiden van het initiële startprogramma..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Een moment geduld, dit kan even duren…"
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1588,17 +1579,17 @@ msgstr ""
"In dit beveiligingsniveau wordt toegang tot de bestanden op de Windows-"
"partitie voorbehouden aan de systeembeheerder."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Plaats een lege diskette in station %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Aanmaken van auto-installatiediskette…"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1609,12 +1600,12 @@ msgstr ""
"\n"
"Weet u zeker dat u op dit moment wilt afsluiten?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Gefeliciteerd"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Herstarten"
@@ -1751,6 +1742,25 @@ msgid ""
"Exit"
msgstr "Afsluiten"
+#~ msgid "CD-ROM"
+#~ msgstr "cd-rom"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE-werkomgeving"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasma-werkomgeving"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "De Plasma-werkomgeving, de basis-grafische omgeving met een verzameling "
+#~ "van bijbehorende programma's"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Klaarmaken van opstartlader…"
diff --git a/perl-install/install/share/po/nn.po b/perl-install/install/share/po/nn.po
index 85a0540fa..14a8cf030 100644
--- a/perl-install/install/share/po/nn.po
+++ b/perl-install/install/share/po/nn.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2010-02-07 16:39+0100\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
@@ -87,87 +87,82 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Nettverk (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Nettverk (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Nettverk (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Adresse til spegelen?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Adresser må starta med «ftp://» eller «http://»."
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Kontaktar %s-nettstaden for oversikt over speglar …"
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Klarte ikkje få kontakt med %s-nettstaden for å henta oversikt over "
"tilgjengelege speglar."
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Vel spegelen du vil installera pakkar frå"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS-oppsett"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Skriv inn vertsnamn og mappe til NFD-media"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Manglar vertsnam"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Mappa må begynna med «/»"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Vertsnamn til NFS-montering:"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Katalog"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Tillegg"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -175,84 +170,84 @@ msgid ""
msgstr ""
"Finn ikkje pakkelistfila på denne spegelen. Sjå til at adressa er rett."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, fuzzy, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Hopp over alle pakkar frå mediet «%s»"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Ser på allereie installerte pakkar …"
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Ser etter pakkar å oppgradera …"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Fjernar pakkar for oppgradering …"
@@ -301,7 +296,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Nettverk"
@@ -351,7 +346,7 @@ msgstr "Installering"
msgid "Configuration"
msgstr "Oppsett"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Du må òg formatera «%s»"
@@ -375,22 +370,22 @@ msgstr "Koplar til nettverket"
msgid "Bringing down the network"
msgstr "Koplar frå nettverket"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Hentar fil. Vent litt …"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "klarte ikkje leggja til medium"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopierer nokre pakkar til harddisken for seinare bruk"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopierer filer"
@@ -436,7 +431,7 @@ msgstr ""
msgid "No description"
msgstr "Inga skildring"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -445,27 +440,27 @@ msgstr ""
"Nokre pakkar som %s krev kan ikkje installerast:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Det oppstod ein feil:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Det oppstod ein kritisk feil: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Ikkje spør igjen"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "feil med %d installasjonstransaksjonar"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Feil ved installering av pakkar:"
@@ -548,33 +543,33 @@ msgstr "Konsollverktøy"
msgid "Editors, shells, file tools, terminals"
msgstr "Skriveprogram, skal, filverktøy og terminalprogram."
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Utvikling"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Utviklingsbibliotek, program og deklarasjonsfiler for C og C++"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Hjelpetekst"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Bøker og hjelpeoppskrifter for Linux og fri programvare"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base – støtte for tredjepartsprogram"
@@ -705,9 +700,9 @@ msgid "Graphical Environment"
msgstr "Grafisk miljø"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE-arbeidsstasjon"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Arbeidstasjon"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -792,63 +787,51 @@ msgstr ""
"program og skrivebordsverktøy"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Sjølvvalt skrivebord"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "Skrivebordsmiljøet KDE, med ei samling tilhøyrande verktøy"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Andre grafiske skrivebord"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Enlightenment, Fvwm, med fleire"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Verktøy"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH-tenar"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin-fjernoppsettenar"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Nettverksverktøy og -overvaking"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Overvakingsverktøy, prosesshandsaming, tcpdump, nmap, med meir"
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia-vegvisarar"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Vegvisarar for tenaroppsett"
@@ -861,7 +844,7 @@ msgid ""
msgstr "Det oppstod ein kritisk feil. Hald fram på eige ansvar."
# skip-rule: passiv
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -905,7 +888,7 @@ msgstr ""
"Du kan då installera i tekstmodus i staden for. Trykk «F1» ved oppstart av\n"
"CD-plata, og skriv «text» om du ønskjer dette."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Medieval"
@@ -1104,29 +1087,29 @@ msgstr "Tid igjen:"
msgid "(estimating...)"
msgstr "(estimerer …)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakke"
msgstr[1] "%d pakkar"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Samandrag"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Set opp"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "ikkje sett opp"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1135,7 +1118,7 @@ msgstr ""
"Fann desse installasjonsmedia.\n"
"Om du ikkje ønskjer å bruka alle, kan du velja vekk dei du ikkje treng no."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1148,7 +1131,7 @@ msgstr ""
"Installasjonen vil då helda fram frå harddisken, og pakkane vil vera lett "
"tilgjengeleg òg etter at systemet er installert og sett opp."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopier CD-ane"
@@ -1231,12 +1214,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Set opp IDE"
#: steps_interactive.pm:354
@@ -1409,7 +1392,7 @@ msgstr "Oppsett etter installering"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Sjå til at oppdateringsmediet er i stasjon %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Oppdateringar"
@@ -1433,7 +1416,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "klarte ikkje leggja til medium"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Prøv på nytt"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1457,28 +1450,28 @@ msgstr ""
"Ønskjer du å installera oppdateringane?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s på %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Maskinvare"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Lydkort"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Har du eit ISA-lydkort?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1486,52 +1479,52 @@ msgid ""
msgstr ""
"Køyr «sndconfig» etter installasjonen er ferdig for å setja opp lydkortet."
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Fann ingen lydkort. Køyr «harddrake» etter installasjonen er ferdig."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafisk grensesnitt"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Nettverk og Internett"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Mellomtenarar"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "oppsett"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Tryggleiksnivå"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Brannmur"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "påslått"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "avslått"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
@@ -1539,17 +1532,17 @@ msgstr ""
"ikkje vil ha det?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Førebur installasjon"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Ver tålmodig. Dette kan ta ei stund …"
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1558,17 +1551,17 @@ msgstr ""
"Med dette tryggleiksnivået er det berre administratoren som får tilgang til "
"filer på Windows-partisjonen."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Set inn ein tom diskett i stasjon «%s»"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Lagar diskett for automatisk installasjon …"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1579,12 +1572,12 @@ msgstr ""
"\n"
"Er du sikker på at du vil avslutta?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Gratulerer"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Start på nytt"
@@ -1721,6 +1714,25 @@ msgid ""
"Exit"
msgstr "Avslutt"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE-arbeidsstasjon"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Sjølvvalt skrivebord"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr "Skrivebordsmiljøet KDE, med ei samling tilhøyrande verktøy"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Førebur oppstartslastar …"
diff --git a/perl-install/install/share/po/pa_IN.po b/perl-install/install/share/po/pa_IN.po
index 5107fb88a..9a0e79b7d 100644
--- a/perl-install/install/share/po/pa_IN.po
+++ b/perl-install/install/share/po/pa_IN.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-03-27 17:55+0530\n"
"Last-Translator: Jaswinder Singh Phulewala <jaswinderphulewala@yahoo.com>\n"
"Language-Team: Punjabi <punlinux-i18n@lists.soruceforge.net>\n"
@@ -86,169 +86,164 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "ਨੈੱਟਵਰਕ (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "ਨੈੱਟਵਰਕ (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "ਪ੍ਰਤਿਬਿੰਬ ਦਾ URL?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, fuzzy, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "ਉਪਲੱਬਧ ਪ੍ਰਤੀਬਿੰਬਾਂ ਦੀ ਸੂਚੀ ਵੇਖਣ ਲਈ ਮੈਂਡਰਿਵ-ਲੀਨਕਸ ਵੈਬ ਸਾਈਟ ਨਾਲ ਸੰਪਰਕ ਜਾਰੀ ਹੈ..."
-#: any.pm:253
+#: any.pm:252
#, fuzzy, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "ਉਪਲੱਬਧ ਪ੍ਰਤੀਬਿੰਬਾਂ ਦੀ ਸੂਚੀ ਵੇਖਣ ਲਈ ਮੈਂਡਰਿਵ-ਲੀਨਕਸ ਵੈਬ ਸਾਈਟ ਨਾਲ ਸੰਪਰਕ ਜਾਰੀ ਹੈ..."
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "ਪੈਕੇਜ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਪ੍ਰਤੀਬਿੰਬ ਚੁਣੋ"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "ਡਾਇਰੈਕਟਰੀ"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "ਇਸ ਪ੍ਰਤੀਬਿੰਬ ਤੇ ਪੈਕੇਜ ਸੂਚੀ ਫਾਇਲ ਨਹੀਂ ਲੱਭ ਸਕੀ। ਜਾਂਚ ਕਰੋ ਕਿ ਸਥਿਤੀ ਠੀਕ ਹੈ।"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "ਪਹਿਲਾਂ ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜਾਂ ਸੀ ਜਾਂਚ ਕਰ ਰਿਹਾ ਹੈ..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "ਨਵੀਨੀਕਰਨ ਲਈ ਪੈਕੇਜਾਂ ਦੀ ਖੋਜ..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -297,7 +292,7 @@ msgstr "ਵੈਬ/FTP"
msgid "NFS"
msgstr "PFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "ਨੈੱਟਵਰਕ"
@@ -347,7 +342,7 @@ msgstr "ਇੰਸਟਾਲ ਹੋ ਰਹੇ ਹਨ"
msgid "Configuration"
msgstr "ਸੰਰਚਨਾ"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "ਤੁਹਾਨੂੰ %s ਵੀ ਫਾਰਮਿਟ ਕਰਨਾ ਜਰੂਰੀ ਹੈ"
@@ -371,22 +366,22 @@ msgstr "ਨੈੱਟਵਰਕ ਚਲਾਇਆ ਜਾ ਰਿਹਾ ਹੈ"
msgid "Bringing down the network"
msgstr "ਨੈੱਟਵਰਕ ਬੰਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "ਨਕਲ ਜਾਰੀ ਹੈ"
@@ -431,34 +426,34 @@ msgstr ""
msgid "No description"
msgstr "ਕੋਈ ਵੇਰਵਾ ਨਹੀ"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "ਇੱਕ ਗਲਤੀ ਆਈ ਹੈ"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "ਘਾਤਕ ਗਲਤੀ ਆਈ: %s"
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d ਇੰਸਟਾਲੇਸ਼ਨ ਸੰਚਾਰ ਅਸਫਲ"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "%s ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋ ਰਹੀ ਹੈ"
@@ -539,33 +534,33 @@ msgstr "ਕੰਸੋਲ ਸੰਦ"
msgid "Editors, shells, file tools, terminals"
msgstr "ਸੰਪਾਦਕ, ਸ਼ੈੱਲ, ਫਾਇਲ ਸੰਦ, ਟਰਮੀਨਲ"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "ਵਿਕਾਸ"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C ਅਤੇ C++ ਵਿਕਾਸ ਲਾਇਬ੍ਰੇਰੀਆਂ, ਪ੍ਰੋਗਰਾਮ ਅਤੇ ਸ਼ਾਮਿਲ ਫਾਇਲਾਂ"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "ਦਸਤਾਵੇਜ਼"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "ਲੀਨਕਸ ਅਤੇ ਮੁਕਤ ਸਾਫਟਵੇਅਰ ਉੱਪਰ ਕਿਤਾਬਾਂ ਅਤੇ Howto's"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "ਲੀਨਕਸ ਮਿਆਰੀ ਮੁੱਢ। ਤੀਜੀ ਪਾਰਟੀ ਕਾਰਜ ਸਹਿਯੋਗ"
@@ -696,9 +691,9 @@ msgid "Graphical Environment"
msgstr "ਗਰਾਫੀਕਲ ਵਾਤਾਵਰਨ"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "ਕੇ ਡੀ ਈ ਵਰਕਸਟੇਸ਼ਨ"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "ਵਰਕਸਟੇਸ਼ਨ"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -777,63 +772,51 @@ msgid "A lightweight fast graphical environment"
msgstr "ਉਪਭੋਗੀ-ਅਨੁਕੂਲ ਕਾਰਜ ਸਮੂਹ ਅਤੇ ਵਿਹੜਾ ਸੰਦਾਂ ਨਾਲ ਇੱਕ ਗਰਾਫੀਕਲ ਵਾਤਾਵਰਨ"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "ਵਿਹੜਾ"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "ਕੇ ਵਿਹੜਾ ਵਾਤਾਵਰਨ, ਸਾਥੀ ਸੰਦਾਂ ਦੇ ਭੰਡਾਰ ਨਾਲ ਮੁੱਢਲਾ ਗਰਾਫਿਕਲ ਵਾਤਾਵਰਨ"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "ਹੋਰ ਗਰਾਫੀਕਲ ਵਿਹੜੇ"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ਆਦਿ"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "ਸਹੂਲਤਾਂ"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH ਸਰਵਰ"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin ਰਿਮੋਟ ਸੰਰਚਨਾ ਸਰਵਰ"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "ਨੈੱਟਵਰਕ ਸਹੂਲਤਾਂ/ਪ੍ਰਬੰਧਨ"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "ਪ੍ਰਬੰਧਨ ਸੰਦ, ਕਾਰਜ ਅਕਾਊਂਟਿੰਗ, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "ਮੈਂਡਰਿਵ-ਸਾਫਟ ਤਖਤੀ"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "ਸਰਵਰ ਸੰਰਚਨਾ ਲਈ ਤਖਤੀ"
@@ -847,7 +830,7 @@ msgstr ""
"ਗਲਤੀ ਹੋਈ ਹੈ, ਪਰ ਮੈਂ ਨਹੀਂ ਜਾਣਦਾ ਕਿ ਇਸ ਦਾ ਕਿਸ ਤਰਾਂ ਪ੍ਰਬੰਧਨ ਕਰਨਾ ਹੈ।\n"
"ਆਪਣੇ ਖਤਰੇ ਤੇ ਜਾਰੀ ਕਰੋ।"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -890,7 +873,7 @@ msgstr ""
"ਆ ਸਕਦੀ ਹੈ। ਜੇ ਅਜਿਹਾ ਹੋਇਆ, ਤੁਸੀਂ ਪਾਠ ਇੰਸਟਾਲੇਸ਼ਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ। ਇਸ ਲਈ,\n"
"`F1' ਦਬਾਓ ਜਦੋਂ CDROM ਤੋਂ ਬੂਟ ਕਰਦੇ ਹੋ, ਫਿਰ `ਪਾਠ' ਭਰੋ।"
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "ਪੈਕੇਜ ਸਮੂਹ ਚੋਣ"
@@ -1087,29 +1070,29 @@ msgstr "ਬਾਕੀ ਸਮਾਂ"
msgid "(estimating...)"
msgstr "ਅਨੁਮਾਨ ਜਾਰੀ ਹੈ"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d ਪੈਕੇਜ"
msgstr[1] "%d ਪੈਕੇਜ"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "ਸਾਰ"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "ਸੰਰਚਨਾ"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "ਸੰਰਚਿਤ ਨਹੀਂ"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1118,7 +1101,7 @@ msgstr ""
"ਹੇਠਲੇ ਇੰਸਟਾਲੇਸ਼ਨ ਮਾਧਿਅਨ ਲੱਭੇ ਹਨ।\n"
"ਜੇ ਤੁਸੀਂ ਇਹਨਾਂ ਵਿੱਚੋਂ ਕੁਝ ਛੱਡਣੇ ਚਾਹੁੰਦੇ ਹੋ, ਤੁਸੀਂ ਹੁਣ ਰੱਦ ਕਰ ਸਕਦੇ ਹੋ।"
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1130,7 +1113,7 @@ msgstr ""
"ਇਹ ਫਿਰ ਹਾਰਡ ਡਰਾਈਵ ਤੋਂ ਜਾਰੀ ਕਰੇਗਾ ਅਤੇ ਪੈਕੇਜ ਸਿਸਟਮ ਪੂਰੀ ਤਰਾਂ ਇੰਸਟਾਲ ਹੋਣ ਤੋਂ ਬਾਅਦ ਵੀ ਉਪਲੱਬਧ "
"ਰਹਿਣਗੇ।"
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "ਪੂਰੀ CDs ਨਕਲ ਕਰੋ"
@@ -1206,12 +1189,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE ਸੰਰਚਨਾ ਹੋ ਰਹੀ ਹੈ"
#: steps_interactive.pm:354
@@ -1381,7 +1364,7 @@ msgstr "ਪੋਸਟ-ਇੰਸਟਾਲ ਸੰਰਚਨਾ"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "ਨਵਿਨੀਕਰਨ"
@@ -1405,7 +1388,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "ਮੁੜ-ਪ੍ਰਾਪਤ"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1419,113 +1412,113 @@ msgid ""
msgstr ""
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s, %s ਉੱਪਰ"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "ਜੰਤਰ"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "ਸਾਊਂਡ ਕਾਰਡ"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "ਕੀ ਤੁਹਾਡੇ ਕੋਲ ISA ਸਾਊਂਡ ਕਾਰਡ ਹੈ?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr "ਆਪਣੀ ਸਾਊਂਡ ਕਾਰਡ ਸੰਰਚਨਾ ਲਈ ਇੰਸਟਾਲੇਸ਼ਨ ਮਗਰੋਂ \"alsaconf\" ਜਾਂ \"sndconfig\" ਚਲਾਓ"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "ਕੋਈ ਸਾਊਂਡ ਕਾਰਡ ਨਹੀਂ ਲੱਭਿਆ। ਇੰਸਟਾਲੇਸ਼ਨ ਮਗਰੋਂ \"harddrake\" ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "ਗਰਾਫੀਕਲ ਇੰਟਰਫੇਸ"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "ਨੈੱਟਵਰਕ ਤੇ ਇੰਟਰਨੈੱਟ"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "ਪਰਾਕਸੀ"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "ਸੰਰਚਿਤ"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "ਸੁਰੱਖਿਆ ਪੱਧਰ"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "ਫਾਇਰਵਾਲ"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "ਸਰਗਰਮ"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "ਅਯੋਗ"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "ਤੁਸੀਂ X ਸੰਰਚਿਤ ਨਹੀਂ ਕੀਤਾ। ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਸ ਨੂੰ ਚਾਹੁੰਦੇ ਹੋ?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਤਿਆਰੀ ਹੋ ਰਹੀ ਹੈ"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr "ਇਸ ਸੁਰੱਖਿਆ ਪੱਧਰ ਵਿੱਚ, Windows ਭਾਗ ਵਿਚਲੀ ਫਾਇਲਾਂ ਵਰਤਣ ਲਈ ਪ੍ਰਬੰਧਕ ਨੂੰ ਮਨਾਹੀ ਹੈ।"
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "ਡਰਾਈਵ %s ਵਿੱਚ ਖਾਲੀ ਫਲਾਪੀ ਪਾਓ"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "ਸਵੈ ਇੰਸਟਾਲ ਫਲਾਪੀ ਬਣਾ ਰਿਹਾ ਹੈ..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1536,12 +1529,12 @@ msgstr ""
"\n"
"ਕੀ ਤੁਸੀਂ ਹੁਣ ਯਕੀਨਨ ਬਾਹਰ ਜਾਣਾ ਹੈ?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "ਮੁਬਾਰਕਾਂ"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "ਮੁੜ-ਚਾਲੂ"
@@ -1678,6 +1671,25 @@ msgid ""
"Exit"
msgstr "ਬਾਹਰ"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "ਕੇ ਡੀ ਈ ਵਰਕਸਟੇਸ਼ਨ"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "ਵਿਹੜਾ"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr "ਕੇ ਵਿਹੜਾ ਵਾਤਾਵਰਨ, ਸਾਥੀ ਸੰਦਾਂ ਦੇ ਭੰਡਾਰ ਨਾਲ ਮੁੱਢਲਾ ਗਰਾਫਿਕਲ ਵਾਤਾਵਰਨ"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "ਬੂਟ-ਲੋਡਰ ਤਿਆਰ ਕਰ ਰਿਹਾ ਹੈ..."
diff --git a/perl-install/install/share/po/pl.po b/perl-install/install/share/po/pl.po
index ad2968be4..88e81683b 100644
--- a/perl-install/install/share/po/pl.po
+++ b/perl-install/install/share/po/pl.po
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 04:07+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mageia/language/"
@@ -104,85 +104,80 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Sieć (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Sieć (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Sieć (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Adres URL dla serwera zwierciadlanego?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Adres URL musi zaczynać się od ftp:// lub http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Łączenie ze stroną %s w celu pobrania listy dostępnych serwerów..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "Łączenie ze stroną %s w celu pobrania listy dostępnych serwerów"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Wybierz serwer lustrzany, z którego chcesz pobrać pakiety"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Konfiguracja NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Wprowadź nazwę komputera i katalog nośnika NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Brak nazwy hosta"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Oznaczenie katalogu musi się zaczynać od znaku \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Nazwa komputera udostępniające udziały NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Katalog"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Dodatkowe"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -191,22 +186,22 @@ msgstr ""
"Nie można znaleźć listy pakietów na tym serwerze. Sprawdź poprawność "
"lokalizacji."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -215,22 +210,22 @@ msgstr ""
"Niektóre urządzenia w twoim komputerze wymagają nie-wolnego firmware, aby "
"wolne sterowniki mogły działać."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Warto włączyć \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" zawiera różne komponenty systemu oraz aplikacje"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" zawiara nie-wolne oprogramowanie.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -239,7 +234,7 @@ msgstr ""
"Zawiera również firmware niezbędne do działania niektórych urządzeń (jak: "
"niektóre karty ATI/AMD, niektóre karty sieciowe, kontrolery RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -248,33 +243,33 @@ msgstr ""
"\"%s\" zawiara oprogramowanie, które w niektórych krajach nie może być "
"dystrybuowane ze względu na patenty."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "Zawiera również oprogramowanie z \"%s\" "
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Możesz włączyć więcej nośników jeśli chcesz."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Ten nośnik zawiera aktualizacje pakietów dla nośnika \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Wyszukiwanie już zainstalowanych pakietów..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Wyszukiwanie pakietów do uaktualnienia..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Usuwanie pakietów w celu wykonania aktualizacji..."
@@ -323,7 +318,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Sieć"
@@ -373,7 +368,7 @@ msgstr "Instalacja"
msgid "Configuration"
msgstr "Konfiguracja"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Należy także sformatować %s"
@@ -397,22 +392,22 @@ msgstr "Uruchamianie sieci"
msgid "Bringing down the network"
msgstr "Zatrzymywanie sieci"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Proszę czekać. Pobieranie pliku"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "dodanie nośnika było niemożliwe"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopiowanie wybranych pakietów do późniejszego wykorzystania"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopiowanie w toku"
@@ -459,7 +454,7 @@ msgstr ""
msgid "No description"
msgstr "Brak opisu"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -468,27 +463,27 @@ msgstr ""
"Niektóre pakiety wymagane przez %s nie mogą zostać zainstalowane:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Wystąpił błąd:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Wystąpił poważny błąd: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Nie pytaj ponownie"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d transakcji instalacyjnych zakończonych niepowodzeniem"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Instalowanie pakietów nie powiodło się:"
@@ -571,33 +566,33 @@ msgstr "Narzędzia konsolowe"
msgid "Editors, shells, file tools, terminals"
msgstr "Edytory, powłoki, narzędzia plikowe, terminale"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Programowanie"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Biblioteki programistyczne C i C++, programy i pliki nagłówkowe"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentacja"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Książki i dokumenty HOWTO o Linuksie i Otwartym Oprogramowaniu"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Obsługa aplikacji firm trzecich"
@@ -728,9 +723,9 @@ msgid "Graphical Environment"
msgstr "Środowisko graficzne"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Stacja KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Stacja robocza"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -818,64 +813,50 @@ msgstr "Lekkie i szybkie środowisko graficzne"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Pulpit Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Środowisko graficzne Plasma Desktop, podstawowe środowisko graficzne ze "
-"zbiorem narzędzi towarzyszących"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Inne środowiska graficzne"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, itd."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Narzędzia"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Serwer SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Serwer konfiguracji zdalnej Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Narzędzia sieciowe/monitorowanie"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Narzędzia do monitorowania, księgowania procesów, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Druidy Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Druidy do konfiguracji serwera"
@@ -889,7 +870,7 @@ msgstr ""
"Wystąpił jakiś błąd i nie wiadomo, jak poprawnie go obsłużyć.\n"
"Kontynuuj na własną odpowiedzialność."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -933,7 +914,7 @@ msgstr ""
"%s. Jeśli tak się dzieje, spróbuj instalacji w trybie tekstowym.\n"
"Aby tak zrobić, naciśnij F1 podczas startu z CD i wpisz 'text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Wybór nośników"
@@ -1130,7 +1111,7 @@ msgstr "Pozostały czas:"
msgid "(estimating...)"
msgstr "(szacowanie...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1138,22 +1119,22 @@ msgstr[0] "pakiet"
msgstr[1] "%d pakietów"
msgstr[2] "%d pakietów"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Różne"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfiguruj"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "nie skonfigurowano"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1162,7 +1143,7 @@ msgstr ""
"Znaleziono poniższe nośniki instalacyjne.\n"
"Jeśli chcesz pominąć któreś z nich, możesz je teraz odznaczyć."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1175,7 +1156,7 @@ msgstr ""
"Instalacja będzie kontynuowana z dysku twardego a skopiowane pakiety będą "
"dostępne po zakończeniu instalacji."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Skopiuj wszystkie płyty CD"
@@ -1258,12 +1239,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Konfiguracja IDE"
#: steps_interactive.pm:354
@@ -1437,7 +1418,7 @@ msgstr "Konfiguracja poinstalacyjna"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Upewnij się, że nośnik Update Modules znajduje się w napędzie %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Aktualizacje"
@@ -1461,7 +1442,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "dodanie nośnika było niemożliwe"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Ponów próbę"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1482,28 +1473,28 @@ msgstr ""
"Czy chcesz zainstalować uaktualnienia ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s na %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Sprzęt"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Karta dźwiękowa"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Czy posiadasz kartę dźwiękową ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1512,70 +1503,70 @@ msgstr ""
"Uruchom \"alsaconf\" lub \"sndconfig\" po zakończeniu instalacji aby "
"skonfigurować kartę dźwiękową"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Karta dźwiękowa nie została wykryta. Wypróbuj \"harddrake\" po zakończeniu "
"instalacji"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interfejs graficzny"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Sieć i Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Serwery pośredniczące"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "skonfigurowano"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Poziom bezpieczeństwa"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Zapora sieciowa"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktywowano"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "wyłączono"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Nie masz skonfigurowanego systemu X Window. Czy na pewno chcesz tego?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Przygotowywanie programu rozruchowego..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Proszę o cierpliwość, to może potrwać chwilę..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1584,17 +1575,17 @@ msgstr ""
"W tym poziomie zabezpieczeń, dostęp do plików na partycji Windows jest "
"ograniczony do administratora."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Włóż pustą dyskietkę do stacji %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Tworzenie dyskietki automatycznej instalacji..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1605,12 +1596,12 @@ msgstr ""
"\n"
"Czy na pewno chcesz teraz zakończyć?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Gratulacje"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Uruchom ponownie"
@@ -1746,3 +1737,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Wyjdź"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Stacja KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Pulpit Plasma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Środowisko graficzne Plasma Desktop, podstawowe środowisko graficzne ze "
+#~ "zbiorem narzędzi towarzyszących"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/pt.po b/perl-install/install/share/po/pt.po
index bd5b1e63e..f7fc58f28 100644
--- a/perl-install/install/share/po/pt.po
+++ b/perl-install/install/share/po/pt.po
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-06-18 13:43+0000\n"
"Last-Translator: MMSRS\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mageia/"
@@ -99,88 +99,83 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Rede (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Rede (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Rede (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL do espelho?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "O URL deve começar por ftp:// ou http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"A contactar o sítio 'web' %s para obter a lista de espelhos disponíveis..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Falha ao contactar o sítio 'web' %s para obter a lista de espelhos "
"disponíveis"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Escolha um espelho para transferir os pacotes"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Configuração NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Por favor indique o nome da máquina e o directório da sua média NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Nome da máquina em falta"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "O directório deve começar por \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Nome da máquina da montagem NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Directório"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Suplementar"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -189,84 +184,84 @@ msgstr ""
"Não é possível encontrar o ficheiro hdlist neste espelho. Certifique-se que "
"a localização está correcta."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Lançamento do Núcleo"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Lançamento Não Gratuito"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Deverá ativar \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" contém as várias partes dos sistemas e das suas aplicações"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" não contém programas gratuitos.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Este disco fornece o pacote de atualizações para \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "A verificar os pacotes já instalados..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "A procurar pacotes para actualizar..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "A remover pacotes antes de actualizar..."
@@ -316,7 +311,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rede"
@@ -366,7 +361,7 @@ msgstr "Instalação"
msgid "Configuration"
msgstr "Configuração"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Deve também formatar %s"
@@ -390,22 +385,22 @@ msgstr "A ligar a rede"
msgid "Bringing down the network"
msgstr "A desligar a rede"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Por favor aguarde, a obter o ficheiro"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "não é possível adicionar média"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "A copiar alguns pacotes no disco para uso futuro"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Cópia em progresso"
@@ -451,7 +446,7 @@ msgstr ""
msgid "No description"
msgstr "Nenhuma descrição"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -460,27 +455,27 @@ msgstr ""
"Alguns pacotes pedidos por %s não podem ser instalados:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Ocorreu um erro:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Ocorreu um erro fatal: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Não perguntar novamente"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d transacções de instalação falhadas"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Instalação dos pacotes falhada:"
@@ -564,33 +559,33 @@ msgid "Editors, shells, file tools, terminals"
msgstr ""
"Editores, Linha de Comandos (shell), ferramentas de ficheiros, terminais"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Desenvolvimento"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C e C++ bibliotecas de programação, programas e ficheiros 'include'"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentação"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Livros e Howto's sobre o Linux e Programas Livres"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Base Padrão do Linux (LSB). Suporte a aplicações terceiras."
@@ -721,9 +716,9 @@ msgid "Graphical Environment"
msgstr "Ambiente Gráfico"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Estação de Trabalho KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Estação de Trabalho"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -807,63 +802,51 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Ambiente de Trabalho Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Outros Ambientes Gráficos"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, etc."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilidades"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Servidor SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Servidor de Configuração Remota Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Utilidades de Rede/Monitorização"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
"Monitorização de ferramentas, contabilidade de processos, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Assistentes Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Assistentes para configurar o servidor"
@@ -877,7 +860,7 @@ msgstr ""
"Ocorreu um erro, mas é possível saber como resolver correctamente.\n"
"Continue a seu próprio risco."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -921,7 +904,7 @@ msgstr ""
"o %s. Se isso ocorrer, pode tentar uma instalação em modo texto.\n"
"Para isso, prima `F1' quando arrancar do CDROM, e depois digite `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Selecção de Média"
@@ -1119,29 +1102,29 @@ msgstr "Tempo restante:"
msgid "(estimating...)"
msgstr "(a estimar...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pacote"
msgstr[1] "%d pacotes"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Sumário"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configurar"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "não configurado"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1150,7 +1133,7 @@ msgstr ""
"A seguinte média de instalação foi encontrada.\n"
"Se quer evitar alguns deles, pode desmarcá-los agora."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1163,7 +1146,7 @@ msgstr ""
"Continuará a partir do disco rígido e os pacotes permanecerão disponíveis "
"assim que o sistema estiver instalado."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Copiar todos os CDs"
@@ -1246,12 +1229,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "A configurar IDE"
#: steps_interactive.pm:354
@@ -1425,7 +1408,7 @@ msgstr ""
"Por favor certifique-se que a média Módulos de Actualização está no "
"dispositivo %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Actualizações"
@@ -1449,7 +1432,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "não é possível adicionar média"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Tentar novamente"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1470,28 +1463,28 @@ msgstr ""
"Deseja instalar as actualizações ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s em %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Material"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Placa de Som"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Tem alguma placa de som ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1500,68 +1493,68 @@ msgstr ""
"Execute \"alsaconf\" ou \"sndconfig\" após a instalação para configurar a "
"sua placa de som"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Nenhuma placa de som detectada. Tente \"harddrake\" após a instalação"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interface gráfico"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Rede e Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxies"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "configurado"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Nível de Segurança"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "activado"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "desactivado"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Não configurou o X. Tem certeza que deseja fazer isto?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "A preparar o programa inicial de arranque..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Seja paciente, isto pode demorar algum tempo..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1570,17 +1563,17 @@ msgstr ""
"Neste nível de segurança, o acesso aos ficheiros na partição do Windows é "
"limitado ao administrador."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira uma disquete vazia no dispositivo %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "A criar disquete de auto-instalação..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1591,12 +1584,12 @@ msgstr ""
"\n"
"Deseja realmente sair agora?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Parabéns"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Reiniciar"
@@ -1732,3 +1725,15 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Sair"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Estação de Trabalho KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Ambiente de Trabalho Plasma"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/pt_BR.po b/perl-install/install/share/po/pt_BR.po
index 31aa44142..5b21d2c2f 100644
--- a/perl-install/install/share/po/pt_BR.po
+++ b/perl-install/install/share/po/pt_BR.po
@@ -19,7 +19,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 23:32+0000\n"
"Last-Translator: Marcio Andre Padula <padula1000@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
@@ -102,86 +102,81 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Rede (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Rede (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Rede (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL do Servidor?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "A URL deve começar com ftp:// ou http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Acessando o site do %s para pegar a lista de servidores disponíveis..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Falha acessando o site do %s em busca da lista de servidores disponíveis"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Escolha um servidor de onde pegar os pacotes "
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Configuração NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Entre o hostname e o diretório da sua mídia NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Hostname faltando"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "O diretório deve começar com \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Hostname do ponto de montagem NFS"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Diretório"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Suplementar"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -190,22 +185,22 @@ msgstr ""
"Não encontro uma lista de pacotes neste servidor. Verifique se a localização "
"está correta."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Núcleo de Lançamento"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Lançamento Tainted"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Lançamento nonfree"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -214,22 +209,22 @@ msgstr ""
"Alguns hardware em sua máquina precisa de alguns firmwares non-free para que "
"os drivers de software livre para trabalhar."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Você deve habilitar o \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" contém várias partes do sistema e suas aplicações"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" contém software non-free. \n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -239,7 +234,7 @@ msgstr ""
"operar (por exemplo: algumas placas gráficas ATI/AMD, algumas placas de "
"rede, algumas placas RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -248,33 +243,33 @@ msgstr ""
"\"%s\" Contém um software que não pode ser distribuído em todos os países "
"devido a patentes de software."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "Também contém software \"%s\" reconstruir com recursos adicionais."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Aqui você pode ativar mais mídia, se quiser."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Este meio fornece atualizações de pacotes para o meio \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Verificando pacotes já instalados..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Encontrando pacotes para atualizar..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Removendo pacotes antes de atualizar..."
@@ -323,7 +318,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rede"
@@ -373,7 +368,7 @@ msgstr "Instalação"
msgid "Configuration"
msgstr "Configuração"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Você também deve formatar %s"
@@ -397,22 +392,22 @@ msgstr "Ativando a rede"
msgid "Bringing down the network"
msgstr "Desativando a rede"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Aguarde, obtendo o arquivo"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "incapaz de adicionar mídia"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Copiando alguns pacotes em disco para uso posterior"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Cópia em progresso"
@@ -458,7 +453,7 @@ msgstr ""
msgid "No description"
msgstr "Sem descrição"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -467,27 +462,27 @@ msgstr ""
"Alguns pacotes requeridos por %s não podem ser instalados:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Um erro ocorreu:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Ocorreu um erro fatal: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Não pergunte novamente"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d Instalação Falhou"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Instalação dos programas falhou:"
@@ -570,33 +565,33 @@ msgstr "Ferramentas de Console"
msgid "Editors, shells, file tools, terminals"
msgstr "Editores, shells, ferramentas de arquivos, terminais"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Desenvolvimento"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Bibliotecas de desenvolvimento C e C++, programas e arquivos include"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentação"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Livros, documentos e tutoriais sobre Linux e Software Livre"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Suporte a aplicativos de terceiros"
@@ -728,9 +723,9 @@ msgid "Graphical Environment"
msgstr "Ambiente Gráfico"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Ambiente KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Estação de Trabalho"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -815,65 +810,51 @@ msgstr "O lightweight é um ambiente gráfico, rápido e leve"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasma Área de Trabalho"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"É um ambiente gráfico básico com uma coleção de ferramentas que acompanham a "
-"Área de Trabalho Plasma"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Outros ambientes de Área de trabalho"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, etc"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilitários"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Servidor SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Servidor de Configuração Remota Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Utilitários de Rede/Monitoramento"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
"Ferramentas de monitoração, contabilização de processos, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Assistentes Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Assistentes para configurar o servidor"
@@ -887,7 +868,7 @@ msgstr ""
"Um erro ocorreu, mas não é possível tratá-lo.\n"
"Continue por sua própria conta e risco."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -931,7 +912,7 @@ msgstr ""
"instalação do %s. Se isso ocorrer, você pode tentar instalar usando o\n"
"modo texto. Para isso, aperte 'F1' na tela de inicialização e escreva 'text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Seleção de Mídia"
@@ -1130,29 +1111,29 @@ msgstr "Restam:"
msgid "(estimating...)"
msgstr "(estimando...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pacote"
msgstr[1] "%d pacotes"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Resumo"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configurar"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "não configurado"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1161,7 +1142,7 @@ msgstr ""
"As seguintes mídias de instalação foram encontradas.\n"
"Se você deseja ignorar alguma delas, você pode desmarcá-la agora."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1174,7 +1155,7 @@ msgstr ""
"A instalação irá continuar a partir do seu disco rígido e os pacotes "
"continuarão disponíveis após a instalação ser finalizada."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Copiar todos os CDs"
@@ -1258,12 +1239,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Configurando IDE"
#: steps_interactive.pm:354
@@ -1438,7 +1419,7 @@ msgstr "Configuração pós-instalação"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Certifique-se que a mídia Atualizar Módulos está no drive %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Atualizações"
@@ -1464,7 +1445,17 @@ msgstr ""
"Para configurar essas mídia, você precisará estar conectado na internet.\n"
"Você quer configurar o suporte de atualização?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "incapaz de adicionar mídia"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Tentar Novamente"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1485,28 +1476,28 @@ msgstr ""
"Você deseja instalar estas atualizações?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s em %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Placa de som"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Você tem alguma placa de som ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1515,69 +1506,69 @@ msgstr ""
"Execute \"alsaconf\"ou \"sndconfig\" após a instalação para configurar sua "
"placa de som"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nenhuma placa de som detectada. Tente o \"harddrake\" após a instalação"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interface gráfica"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Rede & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxies"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "configurado"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Nível de Segurança"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "Ativado"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "Desativado"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Você não configurou o sistema X. Você quer realmente deixar assim?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Preparando para iniciar programa..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Aguarde, pode demorar um pouco..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1586,17 +1577,17 @@ msgstr ""
"Neste nível de segurança, o acesso aos arquivos em partições Windows é "
"restrita apenas para o administrador."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insira um disquete vazio no drive %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Criando disquete de instalação automática..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1607,12 +1598,12 @@ msgstr ""
"\n"
"Você realmente quer sair agora?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Parabéns"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Reiniciar"
@@ -1748,3 +1739,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Sair"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Ambiente KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasma Área de Trabalho"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "É um ambiente gráfico básico com uma coleção de ferramentas que "
+#~ "acompanham a Área de Trabalho Plasma"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/ro.po b/perl-install/install/share/po/ro.po
index 123b05033..348becb68 100644
--- a/perl-install/install/share/po/ro.po
+++ b/perl-install/install/share/po/ro.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-29 14:31+0000\n"
"Last-Translator: Florin Cătălin RUSSEN <cfrussen@yahoo.co.uk>\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/mageia/language/"
@@ -92,89 +92,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Rețea (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Rețea (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Rețea (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Adresa URL a serverului alternativ?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Adresa URL trebuie să înceapă cu ftp:// sau http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Se contactează situl %s pentru obținerea listei de servere alternative "
"disponibile ..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Nu s-a putut contacta situl %s pentru obținerea listei de servere "
"alternative disponibile"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Alegeți un server alternativ de pe care să descărcați pachetele"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Configurare NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Introduceți numele gazdei și directorului mediului NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Lipsește numele gazdei"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Directorul trebuie să înceapă cu \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Numele de gazdă al montajului NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Director"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Suplimentar"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -183,22 +178,22 @@ msgstr ""
"Nu s-a găsit lista de pachete pe acest server alternativ. Asigurați-vă că "
"adresa este corectă."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Ediția de bază"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Ediția nuanțată"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Ediția proprietară"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -207,22 +202,22 @@ msgstr ""
"Anumite componente materiale din configurația de față necesită un microcod "
"proprietar pentru funcționarea corectă a piloților."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Ar trebui să activați „%s”"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "„%s” conține diverse părți din sistem și aplicațiile sale"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "„%s” conține aplicații proprietare.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -232,7 +227,7 @@ msgstr ""
"(ex: unele plăci grafice ATI/AMD, unele plăci de rețea, unele plăci "
"RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -241,34 +236,34 @@ msgstr ""
"„%s” conține aplicații care nu pot fi distribuite în toate țările din cauza "
"brevetelor."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
"Conține și aplicații din „%s” recompilate cu funcționalități suplimentare."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Aici puteți activa mai multe medii dacă doriți."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Acest mediu furnizează actualizări pentru mediul „%s”"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Se caută pachetele deja instalate..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Se caută pachetele de actualizat..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Se înlătură pachetele înainte de actualizare..."
@@ -318,7 +313,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rețea"
@@ -368,7 +363,7 @@ msgstr "Instalare"
msgid "Configuration"
msgstr "Configurare"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Trebuie să formatați și %s"
@@ -393,22 +388,22 @@ msgstr "Se pornește rețeaua"
msgid "Bringing down the network"
msgstr "Se oprește rețeaua"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Așteptați, se preia fișierul"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "mediul nu poate fi adăugat"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Se copiază unele pachete pe discuri pentru utilizare ulterioară"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Copiere în curs"
@@ -455,7 +450,7 @@ msgstr ""
msgid "No description"
msgstr "Nici o descriere"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -464,27 +459,27 @@ msgstr ""
"Unele pachete cerute de %s nu pot fi instalate:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "S-a produs o eroare:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "A apărut o eroare fatală: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Nu mai întreba"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d operațiuni de instalare eșuate"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Instalarea pachetelor a eșuat:"
@@ -567,33 +562,33 @@ msgstr "Unelte de consolă"
msgid "Editors, shells, file tools, terminals"
msgstr "Editoare, interpretoare, terminale, unelte de fișiere"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Dezvoltare"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Biblioteci de dezvoltare C și C++, programe și fișiere include"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentație"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Cărți și ghiduri despre Linux și programele libere"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Baza standard Linux. Suport pentru aplicații terțe."
@@ -724,9 +719,9 @@ msgid "Graphical Environment"
msgstr "Mediu grafic de lucru"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Stație de lucru KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Stație de lucru"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -809,62 +804,50 @@ msgstr "Un mediu grafic lejer și rapid"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Birou Plasma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "Biroul Plasma, mediul grafic de bază cu o colecție de unelte asociate"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Alte medii grafice"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, etc."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utilitare"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Server SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Serverul de configurare distantă Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Utilitare rețea/Supraveghere"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Unelte de supraveghere, evidența proceselor, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Asistenții Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Asistenți pentru configurarea de server"
@@ -878,7 +861,7 @@ msgstr ""
"S-a produs o eroare, dar nu poate fi interpretată în mod corect.\n"
"Continuați pe propriul risc."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -924,7 +907,7 @@ msgstr ""
"„F1”\n"
"la pornirea de pe CD-ROM, apoi introduceți „text”."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Selectare mediu"
@@ -1123,7 +1106,7 @@ msgstr "Timp rămas: "
msgid "(estimating...)"
msgstr "(se estimează...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1131,22 +1114,22 @@ msgstr[0] "%d pachete"
msgstr[1] "%d pachet"
msgstr[2] "%d pachete"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Sumar"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configurează"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "neconfigurat"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1155,7 +1138,7 @@ msgstr ""
"Au fost găsite următoarele medii de instalare.\n"
"Dacă doriți să săriți peste unele din ele, le puteți deselecta acum."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1168,7 +1151,7 @@ msgstr ""
"Se va continua de pe discul dur, iar pachetele vor rămîne disponibile după "
"instalarea sistemului."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Copiază CD-urile în întregime"
@@ -1253,12 +1236,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Se configurează IDE"
#: steps_interactive.pm:354
@@ -1431,7 +1414,7 @@ msgstr "Configurare post-instalare"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Asigurați-vă că mediul cu modulele de actualizare este în unitatea %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Actualizări"
@@ -1459,7 +1442,17 @@ msgstr ""
"\n"
"Sigur doriți să configurați mediile de actualizare?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "mediul nu poate fi adăugat"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Reîncearcă"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1481,28 +1474,28 @@ msgstr ""
"Doriți să instalați actualizările?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s pe %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Componente materiale"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Placă de sunet"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Aveți o placă de sunet ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1511,69 +1504,69 @@ msgstr ""
"Lansați „alsaconf” sau „sndconfig” după instalare pentru a vă configura "
"placa de sunet"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nu s-a detectat nici o placă de sunet. Încercați „harddrake” după instalare"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interfață grafică"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Rețea & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Servere proxy"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "configurat"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Nivel de securitate"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Parafoc"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "activat"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "dezactivat"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Nu ați configurat X11. Sigur doriți acest lucru?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Se pregătește pornirea programului inițial..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Aveți răbdare, va dura ceva timp..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1582,17 +1575,17 @@ msgstr ""
"La acest nivel de securitate, accesul la fișierele de pe partiția Windows "
"este permis doar administratorului."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Introduceți o dischetă goală în unitatea %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Se creează discheta de auto-instalare..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1603,12 +1596,12 @@ msgstr ""
"\n"
"Chiar vreți să abandonați acum?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Felicitări"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Repornește"
@@ -1744,3 +1737,21 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Ieșire"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Stație de lucru KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Birou Plasma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Biroul Plasma, mediul grafic de bază cu o colecție de unelte asociate"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/ru.po b/perl-install/install/share/po/ru.po
index 448ff0c0e..75cd8eef2 100644
--- a/perl-install/install/share/po/ru.po
+++ b/perl-install/install/share/po/ru.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-06-23 14:14+0300\n"
"Last-Translator: AlexL <loginov.alex.valer@gmail.com>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mageia/language/"
@@ -101,89 +101,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Сеть (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Сеть (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Сеть (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Адрес зеркала?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Адрес должен начинаться с ftp:// или http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Устанавливается соединение с веб-сайтом %s для загрузки списка доступных "
"пакетов..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Не удалось соединиться с веб-сайтом %s, чтобы загрузить список доступных "
"зеркал"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Выберите зеркало, с которого будут загружены пакеты"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Настройка NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Укажите имя компьютера и каталог ресурса NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Не указано имя компьютера"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Имя каталога должно начинаться с \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Имя компьютера для монтирования NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Каталог"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Дополнительный"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -192,22 +187,22 @@ msgstr ""
"Невозможно найти список пакетов на этом зеркале. Проверьте правильность "
"адреса."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -217,22 +212,22 @@ msgstr ""
"микропрограммы с закрытым кодом, необходимые для работы драйверов с открытым "
"кодом."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Следует включить \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "В \"%s\" содержатся различные части операционной системы и её программ"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "В \"%s\" содержатся несвободные программы.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -242,7 +237,7 @@ msgstr ""
"устройств (например, некоторых видеокарт ATI/AMD, некоторых сетевых карт, "
"некоторых карт RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -252,7 +247,7 @@ msgstr ""
"свободно распространять в некоторых странах из-за нарушения патентных прав "
"на это программное обеспечение."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
@@ -260,27 +255,27 @@ msgstr ""
"Также в \"%s\" содержатся пакеты, собранные с дополнительными возможностями, "
"использование которых ограничивается патентами."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Здесь вы можете включить дополнительные хранилища, если это вам нужно."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "В этом источнике содержатся обновления пакетов из источника \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Выполняется поиск установленных пакетов..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Выполняется поиск пакетов для обновления..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Удаляются пакеты перед обновлением..."
@@ -329,7 +324,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Сеть"
@@ -379,7 +374,7 @@ msgstr "Установка"
msgid "Configuration"
msgstr "Настройка"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Также необходимо отформатировать %s"
@@ -404,22 +399,22 @@ msgstr "Поднимается сеть"
msgid "Bringing down the network"
msgstr "Опускается сеть"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Подождите, идёт загрузка"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "не удалось добавить источник"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "На диск копируются пакеты для использования в будущем"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Идёт копирование"
@@ -466,7 +461,7 @@ msgstr ""
msgid "No description"
msgstr "Описания нет"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -475,27 +470,27 @@ msgstr ""
"Некоторые пакеты, запрошенные %s, не могут быть установлены:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Произошла ошибка:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Произошла критическая ошибка: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Больше не спрашивать"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d установочных транзакций не удались"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Не удалось установить пакет:"
@@ -578,33 +573,33 @@ msgstr "Утилиты для консоли"
msgid "Editors, shells, file tools, terminals"
msgstr "Редакторы, командные оболочки, файловые утилиты, терминалы"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Разработка"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Библиотеки для разработки на C и C++, программы и заголовочные файлы"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Документация"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Книги и документация по Linux и свободному программному обеспечению"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Поддержка приложений сторонних разработчиков."
@@ -735,9 +730,9 @@ msgid "Graphical Environment"
msgstr "Графическое окружение"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Рабочая станция KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Рабочая станция"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -822,64 +817,50 @@ msgstr "Быстрая и нетребовательная к ресурсам
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasma Desktop"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Базовая графическая среда Plasma Desktop и набор инструментов для работы с "
-"ней"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Другие графические рабочие столы"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm и т.п."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Утилиты"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Сервер SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Сервер удалённой настройки Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Сетевые утилиты/Мониторинг"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Утилиты мониторинга, учёт процессов, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Мастеры настройки Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Мастеры настройки сервера"
@@ -893,7 +874,7 @@ msgstr ""
"Произошла ошибка, но я не знаю, как её корректно обработать.\n"
"Продолжайте на свой собственный страх и риск."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -938,7 +919,7 @@ msgstr ""
"текстовом режиме. Для этого после загрузки с диска нажмите `F1',\n"
"а затем наберите 'text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Выбор источника"
@@ -1135,7 +1116,7 @@ msgstr "Оставшееся время:"
msgid "(estimating...)"
msgstr "(вычисляется...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1144,22 +1125,22 @@ msgstr[1] "%d пакеты"
msgstr[2] "%d пакеты"
msgstr[3] "%d пакеты"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Сводка"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Настройка"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "не настроен"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1168,7 +1149,7 @@ msgstr ""
"Найдены следующие источники для установки.\n"
"Если нужно пропустить некоторые из них, сейчас с них можно снять флажки."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1181,7 +1162,7 @@ msgstr ""
"После этого установка продолжится с жёсткого диска, и пакеты будут доступны "
"после полной установки системы."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Целиком скопировать компакт-диски"
@@ -1265,12 +1246,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Настраивается IDE"
#: steps_interactive.pm:354
@@ -1444,7 +1425,7 @@ msgstr "Настройка после установки"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Проверьте наличие носителя 'Update Modules' в устройстве %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Обновления"
@@ -1472,7 +1453,17 @@ msgstr ""
"\n"
"Вы хотите сконфигурировать источники с обновлениями?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "не удалось добавить источник"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Повторить"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1494,28 +1485,28 @@ msgstr ""
"Установить эти обновления?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s на %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Оборудование"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Звуковая карта"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Есть ли у вас звуковая карта ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1524,70 +1515,70 @@ msgstr ""
"Для настройки звуковой карты запустите после установки утилиту \"alsaconf\" "
"или \"sndconfig\"."
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Звуковая карта не обнаружена. Попробуйте запустить после установки утилиту "
"\"harddrake\" "
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Графический интерфейс"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Сеть и Интернет"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Прокси"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "настроен"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Уровень безопасности"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Файервол"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "включен"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "выключен"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Х-сервер ещё не настроен. Вы точно уверены в своих действиях?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Подготовка начального загрузчика..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Подождите, это может занять некоторое время..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1596,17 +1587,17 @@ msgstr ""
"На данном уровне безопасности доступ к файлам на разделе Windows разрешён "
"только администратору. "
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Вставьте чистую дискету в дисковод %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Создается дискета автоматической установки..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1617,12 +1608,12 @@ msgstr ""
"\n"
"Действительно завершить работу?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Поздравляем"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Перезагрузка"
@@ -1759,5 +1750,24 @@ msgid ""
"Exit"
msgstr "Выход"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Рабочая станция KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasma Desktop"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Базовая графическая среда Plasma Desktop и набор инструментов для работы "
+#~ "с ней"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Подготавливается начальный загрузчик..."
diff --git a/perl-install/install/share/po/sc.po b/perl-install/install/share/po/sc.po
index b53bc8954..d8c61d175 100644
--- a/perl-install/install/share/po/sc.po
+++ b/perl-install/install/share/po/sc.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-sc\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-09-14 11:29+0100\n"
"Last-Translator: Antoni Pistis <antonio.pistis@virgilio.it>\n"
"Language-Team: Sardu\n"
@@ -83,169 +83,164 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Arretza (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Arretza (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Arretza (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL de su sprigu?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Cuntatu su jassu web de %s po tenni sa lista de is sprigus..."
-#: any.pm:253
+#: any.pm:252
#, fuzzy, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "Cuntatu su jassu web de %s po tenni sa lista de is sprigus..."
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Assètiu NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Directory"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr ""
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Càstiu is pakitus jai aposentaus..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Agatu is pakitus po ajorronai..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Srèxinu is pakitus ki dui funt po ajorronai..."
@@ -290,7 +285,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Arretza"
@@ -340,7 +335,7 @@ msgstr "Seu aposentendi"
msgid "Configuration"
msgstr "Assètiu"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Depis formatai %s puru"
@@ -364,22 +359,22 @@ msgstr "Alluu s'arretza"
msgid "Bringing down the network"
msgstr "Studu s'arretza"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Còpia in cursu"
@@ -424,34 +419,34 @@ msgstr ""
msgid "No description"
msgstr "Nisçuna descriidura"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Faddina"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Faddina mortali: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d transatzionis de aposentadura faddias"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Sçobera tipu de aposentadura"
@@ -530,33 +525,33 @@ msgstr "Console"
msgid "Editors, shells, file tools, terminals"
msgstr ""
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Adelantamentu"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documentadura"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -687,9 +682,9 @@ msgid "Graphical Environment"
msgstr "Ambienti Gràfigu"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE Workstation"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Workstation"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -768,63 +763,51 @@ msgid "A lightweight fast graphical environment"
msgstr "Ambienti Gràfigu"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "IceWm Desktop"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Atras scrianias gràfigas"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Enlightenment, Fvwm, etc"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr ""
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Server SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr ""
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr ""
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr ""
@@ -838,7 +821,7 @@ msgstr ""
"Faddina. No sciu comenti ndi bessiri beni.\n"
"Sighi a perìgulu tuu."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -875,7 +858,7 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Càrriga/Sarva su sçoberu"
@@ -1073,36 +1056,36 @@ msgstr "Tempus ki abarrat "
msgid "(estimating...)"
msgstr "Seu carculendi"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pakitus"
msgstr[1] "%d pakitus"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Arresùmini"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Assètia"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "no assetiau"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1111,7 +1094,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Còpia totu is CD"
@@ -1187,12 +1170,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Assètiu IDE"
#: steps_interactive.pm:354
@@ -1358,7 +1341,7 @@ msgstr "Assètiu pusti-aposentadura"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Ajorronus"
@@ -1382,7 +1365,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Arrecasça"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1396,113 +1389,113 @@ msgid ""
msgstr ""
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s in %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Skeda de Sonu"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Tenis una skeda de sonu ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interfaci Gràfiga"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Arretza & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxy"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "assetiau"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Arrasu de Siguresa"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "abivau"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "disabivau"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "No as assetiau ancora X. Siguru ses ca bolis custu?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Apariçu s'aposentadura"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Intra unu floppy sbuidu in su trastu %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr ""
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1510,12 +1503,12 @@ msgid ""
"Do you really want to quit now?"
msgstr ""
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Cumprimentus"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Torra a allui"
@@ -1652,6 +1645,19 @@ msgid ""
"Exit"
msgstr "Bessi"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE Workstation"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "IceWm Desktop"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Apariçu su bootloader..."
diff --git a/perl-install/install/share/po/sk.po b/perl-install/install/share/po/sk.po
index 186e89d6d..60636acb3 100644
--- a/perl-install/install/share/po/sk.po
+++ b/perl-install/install/share/po/sk.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-07-15 19:14+0000\n"
"Last-Translator: Milan Baša <minkob@mail.t-com.sk>\n"
"Language-Team: Slovak (http://www.transifex.com/projects/p/mageia/language/"
@@ -94,107 +94,102 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Sieť (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Sieť (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Sieť (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL zrkadliaceho servera?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL musí začínať s ftp:// alebo http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Pripájam sa k web stránke %s pre stiahnutie zoznamu zrkadiel..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "Zlyhalo pripojenie ku web stránke %s pre stiahnutie zoznamu zrkadiel"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Vyberte zrkadlo, z ktorého si chcete stiahnuť balíky"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Nastavenie NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Zadajte prosím meno hostiteľa a priečinok pre vaše NFS médium"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Chýba meno hostiteľa"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Adresár musí začínať s \"/\" "
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Meno hostiteľa pre NFS bod pripojenia ?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Adresár"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Doplňujúci"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Nie je možné nájsť súbor hdlist na tomto zrkadliacom servery"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -203,22 +198,22 @@ msgstr ""
"Niektoré hardvérové súčasti na vašom počítači potrebujú nie slobodný (non "
"free) firmvér na to, aby mohli fungovať niektoré slobodné (free) ovládače. "
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Mali by ste povoliť \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" obsahuje rôzne časti systémov a ich aplikácie "
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" obsahuje nie slobodný (non free) softvér.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -227,7 +222,7 @@ msgstr ""
"Obsahuje tiež firmvér potrebný rôznymi zariadeniami k ich práci (napr. ATI/"
"AMD grafické karty, niektoré sieťové karty, RAID karty, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -236,33 +231,33 @@ msgstr ""
"\"%s\" obsahuje softvér ktorý nemôže byť distribuovaný v každej krajine "
"kvôli softvérovým patentom."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "Tiež obsahuje prebudovaný softvér z \"%s\" s dodatočnými možnosťami."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Tu môžete povoliť ďalšie zdroje ak si prajete."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Tento zdroj poskytuje aktualizácie pre zdroj \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Hľadám balíky, ktoré sú už nainštalované..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Hľadám balíky pre aktualizáciu..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Odstránenie balíkov pred aktualizáciou..."
@@ -312,7 +307,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Sieť"
@@ -362,7 +357,7 @@ msgstr "Inštalaácia"
msgid "Configuration"
msgstr "Konfigurácia"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Taktiež musíte naformátovať %s"
@@ -386,23 +381,23 @@ msgstr "Spúšťam prácu so sieťou"
msgid "Bringing down the network"
msgstr "Ukončuje sa práca so sieťou"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Prosím čakajte, získava sa súbor"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "Nie je možné pridať zdroj"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
"Prebieha kopírovanie niektorých balíčkov na disk kvôli budúcemu použitiu"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Prebieha kopírovanie"
@@ -449,7 +444,7 @@ msgstr ""
msgid "No description"
msgstr "Bez popisu"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -458,27 +453,27 @@ msgstr ""
"Niektoré balíky vyžadované %s nemôžu byť nainštalované:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Nastala chyba:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Nastala fatálna chyba: %s"
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Nepýtať sa znovu"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d inštalačná transakcia zlyhala"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Zlyhala inštalácia balíkov:"
@@ -561,33 +556,33 @@ msgstr "Konzolové nástroje"
msgid "Editors, shells, file tools, terminals"
msgstr "Editory, shelly, súborové nástroje, terminály"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Vývojárska"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C a C++ vývojove knižnice, programy a include súbory"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentácia"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Knihy a návody pre Linux a iný voľný softvér"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Aplikačná podpora od tretej strany"
@@ -718,9 +713,9 @@ msgid "Graphical Environment"
msgstr "Grafické prostredie"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE pracovná stanica"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Pracovná stanica"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -801,63 +796,50 @@ msgstr "Odľahčené rýchle grafické prostredie"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasma grafická plocha"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Plasma grafická plocha, základné grafické prostredie s množstvom nástrojov "
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Iné grafické prostredia"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, atď."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Utility"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH server"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Vzdialená konfigurácia servera pomocou Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Sieťové utility/Monitoring"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Monitorovacie nástroje, účtovanie procesov, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Sprievodcovia Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Sprievodcovia pre konfiguráciu servera"
@@ -871,7 +853,7 @@ msgstr ""
"Vyskytla sa chyba a neviem ju úplne vyriešiť.\n"
"Pokračujte na vlastnú zodpovednosť."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -914,7 +896,7 @@ msgstr ""
"inštaláciou %s. Ak sa tak stane, skúste textovú inštaláciu. Pre jej\n"
"spustenie stlačte `F1' po naštartovaní z CDROM a zadajte `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Výber zdroja"
@@ -1112,7 +1094,7 @@ msgstr "Zostávajúci čas:"
msgid "(estimating...)"
msgstr "(odhadujem...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1120,22 +1102,22 @@ msgstr[0] "%d balíka"
msgstr[1] "%d balíkov"
msgstr[2] "%d balíkov"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Zhrnutie"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfigurovať"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "nenakonfigurované"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1144,7 +1126,7 @@ msgstr ""
"Nasledovné inštalačné médiá boli nájdené.\n"
"Ak nechcete niektoré z nich použiť, odznačte ich teraz."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1156,7 +1138,7 @@ msgstr ""
"Potom bude inštalácia pokračovať z pevného disku a balíky budú dostupné aj "
"po kompletnej inštalácii."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopírovať kompletné CD"
@@ -1239,12 +1221,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Konfigurácia IDE"
#: steps_interactive.pm:354
@@ -1418,7 +1400,7 @@ msgstr "Poinštalačná konfigurácia"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Presvedčte sa prosím, že aktualizačný zdroj je v mechanike %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Aktualizácie"
@@ -1446,7 +1428,17 @@ msgstr ""
"\n"
"Chcete nastaviť aktualizačný zdroj?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "Nie je možné pridať zdroj"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Opakovať"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1468,28 +1460,28 @@ msgstr ""
"Želáte si nainštalovať aktualizácie balíčkov?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s na %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardvér"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Zvuková karta"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Máte nejakú ISA zvukovú kartu?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1498,68 +1490,68 @@ msgstr ""
"Po inštalácii spustite \"alsaconf\" alebo \"sndconfig\" ak chcete nastaviť "
"zvukovú kartu"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Zvuková karta nebola nájdená. Skúste \"harddrake\" po inštalácii"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafické rozhranie"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Sieť a Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxy"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "nakonfigurované"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Úroveň bezpečnosti"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktivované"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "zakázané"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Nemáte nakonfigurovaný X Window systém. Ste si istí, že to tak chcete?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Pripravuje sa spúšťací program..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Buďte trpezlivý, môže to chvíľu trvať..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1568,17 +1560,17 @@ msgstr ""
"V rámci tejto bezpečnostnej úrovne je prístup k súborom na Windows oblasti "
"umožnený iba pre administrátora."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Vložte čistú disketu do mechaniky %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Pripravuje sa autoinštalačná disketa..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1589,12 +1581,12 @@ msgstr ""
"\n"
"Naozaj chcete teraz skončiť?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Gratulujeme"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Reštart"
@@ -1730,3 +1722,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Koniec"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE pracovná stanica"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasma grafická plocha"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Plasma grafická plocha, základné grafické prostredie s množstvom "
+#~ "nástrojov "
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/sl.po b/perl-install/install/share/po/sl.po
index dcaf99ca9..0f91edd5f 100644
--- a/perl-install/install/share/po/sl.po
+++ b/perl-install/install/share/po/sl.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drakx_install\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 19:56+0200\n"
"Last-Translator: Filip Komar <filip.komar@gmail.com>\n"
"Language-Team: Slovenian <lugos-slo@lugos.si>, Translation list <mageia-"
@@ -94,89 +94,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Omrežje (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Omrežje (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Omrežje (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Lokacija zrcalnega strežnika?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Lokacija se mora začeti z ftp:// ali s http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Vzpostavljanje povezave s spletno stranjo %s in pridobivanje seznama "
"dosegljivih zrcalnih strežnikov ..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Vzpostavljanje povezave s spletno stranjo %s in pridobivanje seznama "
"dosegljivih zrcalnih strežnikov ni uspelo"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Izberite zrcalni strežnik, s katerega želite pridobiti pakete"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Namestitev prek NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Vnesite ime gostitelja in ime mape vašega vira NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Manjka ime gostitelja"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Mapa se mora pričeti z »/«"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Ime gostitelja vira NFS"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Mapa"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Dodatno"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -185,22 +180,22 @@ msgstr ""
"Na tem zrcalnem strežniku ne najdem seznama paketov. Prepričajte se, da je "
"lokacija prava."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Glavni (core) - izdajni"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Patentno zaščiteni (tainted) - izdajni"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Lastniški (nonfree) - izdajni"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -209,23 +204,23 @@ msgstr ""
"Nekateri deli vaše strojne opreme za pravilno delovanje odprtokodnih "
"gonilnikov potrebujejo lastniško strojno programsko opremo."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Priporočljivo je omogočiti vir »%s«"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
"Vir »%s« vsebuje različne sistemske dele in pripadajočo programsko opremo"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "Vir »%s« vsebuje lastniško programsko opremo.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -235,7 +230,7 @@ msgstr ""
"nekaterih naprav (npr.: nekatere grafične kartice ATI/AMD, določene mrežne "
"kartice, nekatere kartice RAID) ..."
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -244,33 +239,33 @@ msgstr ""
"Vir »%s« vsebuje programsko opremo, ki je zaradi patentne zaščite v "
"nekaterih državah ni možno prosto razširjati."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "Vsebuje tudi pakete iz vira »%s«, a z dodatnimi zmožnostmi."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Tu lahko po želji omogočite več virov."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Ta vir ponuja posodobitve paketov za vir »%s«"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Pregledovanje že nameščenih paketov ..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Iskanje paketov za posodobitev ..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Odstranjevanje paketov pred posodobitvijo ..."
@@ -320,7 +315,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Omrežje"
@@ -370,7 +365,7 @@ msgstr "Namestitev"
msgid "Configuration"
msgstr "Nastavitev"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Formatirati morate tudi %s"
@@ -395,22 +390,22 @@ msgstr "Priklapljanje omrežja"
msgid "Bringing down the network"
msgstr "Izklapljanje omrežja"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Počakajte. Pridobivanje datoteke ..."
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "dodajanje vira ni bilo možno"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopiranje nekaterih paketov na disk, za kasnejšo uporabo"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopiranje poteka"
@@ -455,7 +450,7 @@ msgstr "Za vir »%s« ni metapodatkov, zato rezultati za paket %s niso popolni"
msgid "No description"
msgstr "Brez opisa"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -464,27 +459,27 @@ msgstr ""
"Nekaj paketov, ki jih zahteva %s ni mogoče namestiti:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Prišlo je do napake:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Zgodila se je usodna napaka: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Ne sprašuj več"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "Spodletelo je %d namestitvenih transakcij"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Nameščanje paketov ni uspelo:"
@@ -567,33 +562,33 @@ msgstr "Konzolna orodja"
msgid "Editors, shells, file tools, terminals"
msgstr "Urejevalniki, lupine, datotečna orodja, terminali"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Razvoj"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Razvojne knjižnice, programi in datoteke z glavami za C in C++"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentacija"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Knjige in priročniki o Linuxu in prostem programju"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Standardna osnova Linuxa (LSB). Podpora programom tretjih oseb"
@@ -724,9 +719,9 @@ msgid "Graphical Environment"
msgstr "Grafično okolje"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Delovna postaja KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Delovna postaja"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -810,62 +805,50 @@ msgstr "Majhno in hitro grafično okolje"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Namizje Plazma"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "Namizje Plazma, osnovno grafično okolje z zbirko pripadajočih orodij"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Druga grafična namizja"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, FVWM ..."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Pripomočki"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Strežnik SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Strežnik Webmin za oddaljeno nastavljanje"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Omrežni pripomočki/nadzorovanje"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Nadzorna orodja, knjigovodstvo procesov, tcpdump, nmap ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Magejini čarovniki"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Čarovniki za nastavitev strežnikov"
@@ -879,7 +862,7 @@ msgstr ""
"Prišlo je do napake, ki je sistem ne zna odpraviti na ustrezen način.\n"
"Nadaljujte na lastno odgovornost."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -924,7 +907,7 @@ msgstr ""
"v besedilnem načinu.\n"
"Po zagonu z namestitvenega nosilca pritisnite »F1« in vnesite »text«."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Izbira virov"
@@ -1123,7 +1106,7 @@ msgstr "Preostali čas:"
msgid "(estimating...)"
msgstr "(izračunavanje ...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1132,22 +1115,22 @@ msgstr[1] "%d paketa"
msgstr[2] "%d paketi"
msgstr[3] "%d paketov"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Povzetek"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Nastavitev"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "ni nastavljeno"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1156,7 +1139,7 @@ msgstr ""
"Na voljo so naslednji viri za namestitev.\n"
"Če želite, lahko katerega izmed njih sedaj izločite."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1169,7 +1152,7 @@ msgstr ""
"V tem primeru bo namestitev potekala s trdega diska, paketi pa bodo ostali "
"na voljo tudi po zaključeni namestitvi."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Prekopiraj vsebino nosilcev"
@@ -1252,12 +1235,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Nastavljanje IDE"
#: steps_interactive.pm:354
@@ -1430,7 +1413,7 @@ msgstr "Nastavitev po namestitvi"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Prepričajte se, da je nosilec »Posodobitev modulov« v pogonu %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Posodobitve"
@@ -1457,7 +1440,17 @@ msgstr ""
"\n"
"Ali želite nastaviti spletne posodobitvene vire?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "dodajanje vira ni bilo možno"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Poskusi znova"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1478,28 +1471,28 @@ msgstr ""
"Ali želite namestiti posodobitve?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s na %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Strojna oprema"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Zvočna kartica"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Ali imate zvočno kartico na vodilu ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1508,70 +1501,70 @@ msgstr ""
"Za nastavitev zvočne kartice po namestitvi zaženite »alsaconf« ali "
"»sndconfig«."
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Ne zaznam zvočne kartice. Po namestitvi jo poskusite nastaviti s pomočjo "
"»harddrake«."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafična kartica"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Omrežje in internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Posredniški strežniki"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "nastavljeno"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Stopnja varnosti"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Požarni zid"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktivirano"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "onemogočeno"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Grafičnega strežnika niste nastavili. Ali to zares želite?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Pripravljanje začetnega zagonskega programa ..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Potrpite. To lahko traja dalj časa ..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1580,17 +1573,17 @@ msgstr ""
"Na tej varnostni stopnji je dostop do datotek na razdelku za Windows "
"dovoljen samo skrbniku sistema (root)."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "V pogon %s vstavite prazno disketo"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Ustvarjanje diskete za samodejno namestitev ..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1601,12 +1594,12 @@ msgstr ""
"\n"
"Ali res želite končati?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Čestitke"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Ponovni zagon"
@@ -1743,6 +1736,24 @@ msgid ""
"Exit"
msgstr "Izhod"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Delovna postaja KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Namizje Plazma"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Namizje Plazma, osnovno grafično okolje z zbirko pripadajočih orodij"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Pripravljanje zagonskega nalagalnika ..."
diff --git a/perl-install/install/share/po/sq.po b/perl-install/install/share/po/sq.po
index e1813981e..15d030428 100644
--- a/perl-install/install/share/po/sq.po
+++ b/perl-install/install/share/po/sq.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-06-10 17:51+0000\n"
"Last-Translator: Ardit Dani <ardit.dani@gmail.com>\n"
"Language-Team: Albanian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -91,86 +91,81 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Rrjeti (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Rrjeti (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Rrjeti (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL e pasqyrës?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL duhet të filloj me http:// ose https://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Lidhje në sitin %s për të pranuar listën e lirë të pasqyreve..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Dështoi kontaktuari %s faqen për të marrë listën e pasqyrave në dispozicion"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Zgjedheni një pasqyre nga e cila do ti transferoni pakot"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Ndërtimi NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Ju lutemi shkruani pritësin dhe skedarin tuaj të medias NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Pritësi mungon"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Skedari duhet të fillojë me \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Pritësi i montuesit NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Repertori"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Plotësues"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -179,22 +174,22 @@ msgstr ""
"Nuk mund të gjeni një dokument listë pakete në këtë pasqyrë. Sigurohuni "
"vendi është e saktë."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Lëshim Bërthamë"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Lëshim Prishur"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Lëshim Jofalas"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -203,22 +198,22 @@ msgstr ""
"Disa pajisje-elektronikenë kompjuterin tuaj ka nevojë për disa udhzues jo të "
"lirë në mënyrë që drejtuesit e programevetë lirë të punojnë."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Ju duhet të mundësoni \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" përmban pjesë të ndryshme të sistemet dhe aplikimet e saj"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" përmban programe jo të lirë.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -228,7 +223,7 @@ msgstr ""
"vepruar (p.sh: disa karta grafike ATI/AMD, disa kartat e rrjetit, disa karta "
"RAID, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -237,33 +232,33 @@ msgstr ""
"\"%s\" përmban programe që nuk mund të shpërndahet në çdo vend për shkak të "
"patentave të programit."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "Ai gjithashtu përmban program nga \"%s\" rindërtuar me aftësi shtesë."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Këtu ju mund të mundësoni më shumë media në qoftë se ju dëshironi."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Ky medium ofron përditësime paketë për të mesëm \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Kërkimi i pakove veqse të instaluara..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Gjetja pakove azhurnuese..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Heqja paketave para përmirësimit..."
@@ -312,7 +307,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rrjeti"
@@ -363,7 +358,7 @@ msgstr "Instalimi"
msgid "Configuration"
msgstr "Konfigurimi"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Ju duhet njashtu ta formatoni %s"
@@ -388,22 +383,22 @@ msgstr "Nisja e rrjetit (network)"
msgid "Bringing down the network"
msgstr "Ndalja e rrjetit (network)"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Ju lutem prisni, rikthim i skedarit"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "e pamundur shtimi medies"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopjimi disa paketa në disqe për përdorim në të ardhmen"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopjimi në progres"
@@ -450,7 +445,7 @@ msgstr ""
msgid "No description"
msgstr "Asnjë përshkrim"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -459,27 +454,27 @@ msgstr ""
"Disa paketa të kërkuara nga %s nuk mund të instalohen:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Një gabim ndodhi:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Një gabim fatal është paraqitur: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Mos pyesni përsëri"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "Instalimi i transmetimit të %d dështio"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Instalimi i paketave dështoj:"
@@ -562,33 +557,33 @@ msgstr "Vegla në konsolë"
msgid "Editors, shells, file tools, terminals"
msgstr "Botues, interpretues, vegla skedaresh, terminale"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Zhvillimi"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Bibloteka ndërtuese e C dhe C++, programe dhe skedare me përfshirje"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentacioni"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Libra dhe Howto's për Linux dhe Softver gratis"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Bazë Standarde e Linux. Përkrahë aplikacione të pjesës së tretë"
@@ -719,9 +714,9 @@ msgid "Graphical Environment"
msgstr "Mjedis Grafikë"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Stacioni punues KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Stacion punues"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -804,62 +799,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Mjedise të Tjera Grafike në Tryezë"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Shërbime"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Server SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr ""
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Magjistari Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Magjistarët për të konfiguruar serverin"
@@ -873,7 +856,7 @@ msgstr ""
"Një gabim është paraqitur, dhe me sa duket është vështir të zgjidhet.\n"
"Ju mund të vazhdoni, mirëpo ju jeni përgjegjës për ndonji gabim eventual."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -919,7 +902,7 @@ msgstr ""
"`F1' kut të niseni me një nisje të udhëzuar në CDROM, dhe fytni urdhërin "
"`text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1118,36 +1101,36 @@ msgstr "Koha e mbetur:"
msgid "(estimating...)"
msgstr "(vlerësim...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d paketë"
msgstr[1] "%d paketat"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Përmbledhje"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfiguroje"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "i pa konfiguruar"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1156,7 +1139,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopjo tërë CDtë"
@@ -1232,12 +1215,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Konfigurimi i IDE"
#: steps_interactive.pm:354
@@ -1407,7 +1390,7 @@ msgstr "Konfigurimi i postit-instalues"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Azhurnime"
@@ -1431,7 +1414,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "e pamundur shtimi medies"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Riprovo"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1453,114 +1446,114 @@ msgstr ""
"A dëshironi t'instaloni këto azhurnime ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s mbi %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardver"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Kartelë zëri"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "A posedoni një kartelë zëri ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Asnjë kartelë e zbuluar. Provo \"harddrake\" mbasë instalimit"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Interfaci grafik"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Rrjeti & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr ""
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "konfiguruar"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Nivel i Sigurisë"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Mur i Zjarrt"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktivizuar"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "i nxënë"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
"Ju nuk e keni konfiguruar serverin X. A jeni i sigurt, se e dëshironi këtë?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Futni një disketë të zbrazët në lexuesin e disketave %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Krijimi i një diskete auto instaluese..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1571,12 +1564,12 @@ msgstr ""
"\n"
"A dëshironi me të vërtetë ti braktisni tani?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Urime"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Rinise (riboot)"
@@ -1720,3 +1713,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Braktise"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Stacioni punues KDE"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/sr.po b/perl-install/install/share/po/sr.po
index b9e1fc94a..2e98b7ef9 100644
--- a/perl-install/install/share/po/sr.po
+++ b/perl-install/install/share/po/sr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2004-09-15 13:33+0200\n"
"Last-Translator: Toma Jankovic <tomaja@net.yu>\n"
"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
@@ -90,86 +90,81 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Мрежа (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Мрежа (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Мрежа (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "УРЛ мирора?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "УРЛ мора почињати са ftp:// или http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Контактирајте %s web сајт да би добили листу доступних mirror-а..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Неуспешно успостављање везе са %s web сајт ради листе доступних mirror-а"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Изаберите mirror са ког ћете скинути пакете"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Подешавање NFS-а"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Унесите име домаћина-hostname и директоријум вашег NFS медија"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Недостаје име домаћина-hostname"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Директоријум мора почети са \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Име домаћина-hostname за монтирање NFS ?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Директоријум"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Додатни"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -178,84 +173,84 @@ msgstr ""
"Не могу пронађем листу пакета на овом мирору. проверите да ли локација "
"исправна."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Тражим већ инсталиране пакете..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Тражим пакете за ажурирање..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Уклањам старе пакете..."
@@ -304,7 +299,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Мрежа"
@@ -354,7 +349,7 @@ msgstr "Инсталација"
msgid "Configuration"
msgstr "Конфигурација"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Морате и %s да форматирате"
@@ -379,22 +374,22 @@ msgstr "Приступам мрежу"
msgid "Bringing down the network"
msgstr "Одступам од мреже"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Копирање неких поакета на дискове ради касније употребе"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Копирање у току"
@@ -439,34 +434,34 @@ msgstr ""
msgid "No description"
msgstr "Без описа"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Хм,појавила се грешка"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Појавила се фатална грешка: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d инстлациона трансакција није успела"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Инсталирам пакет %s"
@@ -549,33 +544,33 @@ msgstr "Конзолни алати"
msgid "Editors, shells, file tools, terminals"
msgstr "едитори,шелови, алати за датотеке, терминали"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Развојна"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C и C++ развојне библиотеке, програми и пропратне датотеке"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Документација"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Књиге и Како? (Howto's) за Linux и Бесплатни Софтвер"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Линуксова Стандардна База. Подршка за Third party апликаицје"
@@ -706,9 +701,9 @@ msgid "Graphical Environment"
msgstr "Графичко Окружење"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE падна станица"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Радна станица"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -796,64 +791,51 @@ msgstr ""
"NFS server, SMB server, Proxy серверих апликација и десктопалата"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "IceWm Десктоп"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"K Десктоп окружење, основно графичко окружење са колекцијом пратећих алата"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Други графички десктопови"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr " Window Maker, Enlightenment, Fvwm, итд"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Алати"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH Сервер"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin сервер за даљинску контролу"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Мрежни алати/Мониторинг"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Алати за мониторинг, управљање процесима, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia Чаробњаци"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Чаробњаци за подешавање сервера"
@@ -867,7 +849,7 @@ msgstr ""
"Грешка, али незнам како да је разрешим.\n"
"Наставите на ваш ризик!"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -913,7 +895,7 @@ msgstr ""
"постигли,\n"
"притисните `F1' при стартању са CDROM-а, а онда укуцајте `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Одабир група пакета"
@@ -1110,7 +1092,7 @@ msgstr "Преостало време"
msgid "(estimating...)"
msgstr "Процењујем"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1118,22 +1100,22 @@ msgstr[0] "%d пакета"
msgstr[1] "%d пакета"
msgstr[2] "%d пакета"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Сажетак"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Подеси"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "није подешено"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1142,7 +1124,7 @@ msgstr ""
"Пронађени су следећи инсталациони медији.\n"
"Уколико желите да прескочите неке од њих, деселектујте их сада."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1154,7 +1136,7 @@ msgstr ""
"Након тога ће инсталција наставити са хард диска а пакети ће остати доступни "
"и када се заврши инсталација."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Копирање целог CDа"
@@ -1230,12 +1212,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Конфигурација IDE"
#: steps_interactive.pm:354
@@ -1409,7 +1391,7 @@ msgstr "Постинсталациона конфигурација"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Проверите да ли се у уређају %s налази медиј за ажурирање модула"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Ажурирање"
@@ -1433,7 +1415,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Обнови"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1454,28 +1446,28 @@ msgstr ""
"да ли желите да инсталирате update-ове ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s на %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Хардвер"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Звучна картица"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Да ли имате ISA звучну картицу?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1484,69 +1476,69 @@ msgstr ""
"Покрените \"alsaconf\" или \"sndconfig\" након иснталације да би подесили "
"своју звучну картицу"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Није детектована звучна картица. Покрените \"harddrake\" након инсталације"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Графички интерфејс"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Мрежа и Интернет"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Проксији"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "подешено"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Ниво сигурности"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Заштитни зид (Firewall)"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "Активирано"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "онемогућено"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Нисте подесили X. Да ли сте сигурни да желите то?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Припремам инсталацију"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1555,17 +1547,17 @@ msgstr ""
"У овом сугурносном нивоу приступ фајловима на Windows партицији је дозвољен "
"само администраторима."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Убаците празну дискету у уређај %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Креирам ауто инсталациони флопи"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1576,12 +1568,12 @@ msgstr ""
"\n"
"Да ли стварно желите да завршите ?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Честитке"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Рестарт"
@@ -1718,6 +1710,26 @@ msgid ""
"Exit"
msgstr ""
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE падна станица"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "IceWm Десктоп"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "K Десктоп окружење, основно графичко окружење са колекцијом пратећих алата"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Припремам стартер..."
diff --git a/perl-install/install/share/po/sr@Latn.po b/perl-install/install/share/po/sr@Latn.po
index a393016cf..876fcc5bc 100644
--- a/perl-install/install/share/po/sr@Latn.po
+++ b/perl-install/install/share/po/sr@Latn.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2004-09-15 13:33+0200\n"
"Last-Translator: Toma Jankovic_<tomaja@net.yu>\n"
"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
@@ -90,86 +90,81 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Mreža (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Mreža (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Mreža (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL mirora?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL mora počinjati sa ftp:// ili http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Kontaktirajte %s web sajt da bi dobili listu dostupnih mirror-a..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Neuspešno uspostavljanje veze sa %s web sajt radi liste dostupnih mirror-a"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kog ćete skinuti pakete"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Podešavanje NFS-a"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Unesite ime domaćina-hostname i direktorijum vašeg NFS medija"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Nedostaje ime domaćina-hostname"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Direktorijum mora početi sa \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Ime domaćina-hostname za montiranje NFS ?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Direktorijum"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Dodatni"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -178,84 +173,84 @@ msgstr ""
"Ne mogu pronađem listu paketa na ovom miroru. proverite da li lokacija "
"ispravna."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Tražim već instalirane pakete..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Tražim pakete za ažuriranje..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Uklanjam stare pakete..."
@@ -304,7 +299,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Mreža"
@@ -354,7 +349,7 @@ msgstr "Instalacija"
msgid "Configuration"
msgstr "Konfiguracija"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Morate i %s da formatirate"
@@ -379,22 +374,22 @@ msgstr "Pristupam mrežu"
msgid "Bringing down the network"
msgstr "Odstupam od mreže"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopiranje nekih poaketa na diskove radi kasnije upotrebe"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopiranje u toku"
@@ -439,34 +434,34 @@ msgstr ""
msgid "No description"
msgstr "Bez opisa"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Hm,pojavila se greška"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Pojavila se fatalna greška: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d instlaciona transakcija nije uspela"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Instaliram paket %s"
@@ -549,33 +544,33 @@ msgstr "Konzolni alati"
msgid "Editors, shells, file tools, terminals"
msgstr "editori,šelovi, alati za datoteke, terminali"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Razvojna"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C i C++ razvojne biblioteke, programi i propratne datoteke"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentacija"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Knjige i Kako? (Howto's) za Linux i Besplatni Softver"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux-ova Standardna Baza. Podrška za Third party aplikaicje"
@@ -706,9 +701,9 @@ msgid "Graphical Environment"
msgstr "Grafičko Okruženje"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE padna stanica"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Radna stanica"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -796,64 +791,51 @@ msgstr ""
"NFS server, SMB server, Proxy serverih aplikacija i desktopalata"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "IceWm Desktop"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"K Desktop okruženje, osnovno grafičko okruženje sa kolekcijom pratećih alata"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Drugi grafički desktopovi"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr " Window Maker, Enlightenment, Fvwm, itd"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Alati"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH Server"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin server za daljinsku kontrolu"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Mrežni alati/Monitoring"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Alati za monitoring, upravljanje procesima, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia Čarobnjaci"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Čarobnjaci za podešavanje servera"
@@ -867,7 +849,7 @@ msgstr ""
"Greška, ali neznam kako da je razrešim.\n"
"Nastavite na vaš rizik!"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -913,7 +895,7 @@ msgstr ""
"postigli,\n"
"pritisnite `F1' pri startanju sa CDROM-a, a onda ukucajte `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Odabir grupa paketa"
@@ -1110,7 +1092,7 @@ msgstr "Preostalo vreme"
msgid "(estimating...)"
msgstr "Procenjujem"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1118,22 +1100,22 @@ msgstr[0] "%d paketa"
msgstr[1] "%d paketa"
msgstr[2] "%d paketa"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Sažetak"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Podesi"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "nije podešeno"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1142,7 +1124,7 @@ msgstr ""
"Pronađeni su sledeći instalacioni mediji.\n"
"Ukoliko želite da preskočite neke od njih, deselektujte ih sada."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1154,7 +1136,7 @@ msgstr ""
"Nakon toga će instalcija nastaviti sa hard diska a paketi će ostati dostupni "
"i kada se završi instalacija."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopiranje celog CDa"
@@ -1230,12 +1212,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Konfiguracija IDE"
#: steps_interactive.pm:354
@@ -1409,7 +1391,7 @@ msgstr "Postinstalaciona konfiguracija"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Proverite da li se u uređaju %s nalazi medij za ažuriranje modula"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Ažuriranje"
@@ -1433,7 +1415,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Obnovi"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1454,28 +1446,28 @@ msgstr ""
"da li želite da instalirate update-ove ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s na %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardver"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Zvučna kartica"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Da li imate ISA zvučnu karticu?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1484,69 +1476,69 @@ msgstr ""
"Pokrenite \"alsaconf\" ili \"sndconfig\" nakon isntalacije da bi podesili "
"svoju zvučnu karticu"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije detektovana zvučna kartica. Pokrenite \"harddrake\" nakon instalacije"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafički interfejs"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Mreža i Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proksiji"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "podešeno"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Nivo sigurnosti"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Zaštitni zid (Firewall)"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "Aktivirano"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "onemogućeno"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Niste podesili X. Da li ste sigurni da želite to?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Pripremam instalaciju"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1555,17 +1547,17 @@ msgstr ""
"U ovom sugurnosnom nivou pristup fajlovima na Windows particiji je dozvoljen "
"samo administratorima."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ubacite praznu disketu u uređaj %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Kreiram auto instalacioni flopi"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1576,12 +1568,12 @@ msgstr ""
"\n"
"Da li stvarno želite da završite ?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Čestitke"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Restart"
@@ -1718,6 +1710,27 @@ msgid ""
"Exit"
msgstr "Izlaz"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE padna stanica"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "IceWm Desktop"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "K Desktop okruženje, osnovno grafičko okruženje sa kolekcijom pratećih "
+#~ "alata"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Pripremam starter..."
diff --git a/perl-install/install/share/po/sv.po b/perl-install/install/share/po/sv.po
index 26b52416e..13c336777 100644
--- a/perl-install/install/share/po/sv.po
+++ b/perl-install/install/share/po/sv.po
@@ -19,7 +19,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Michael Eklund <willard@null.net>\n"
"Language-Team: Swedish (http://www.transifex.com/projects/p/mageia/language/"
@@ -102,110 +102,105 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Nätverk (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Nätverk (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Nätverk (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Spegelns URL?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "En URL måste börja med ftp:// eller http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Kontaktar %s webbplats för att hämta listan över tillgängliga speglar..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Det gick inte att kontakta %s webbplats för att hämta listan över "
"tillgängliga speglar"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Välj en webbplats där du vill hämta paketen från."
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Konfigurera NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Ange namn och katalog för ditt NFS-media"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Värdnamn saknas"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Katalogen måste börja med \"/\""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Värdnamn för NFS-anslutning ?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Katalog"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Tillägg"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Kan inte hitta hdlist-filen på denna spegel"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -214,22 +209,22 @@ msgstr ""
"Viss hårdvara i din dator behöver några firmwares från nonfree för att de "
"fria drivrutinerna ska fungera."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Du borde aktivera \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" innehåller olika delar för systemet och dess program"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" innehåller nonfree-mjukvara.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -239,7 +234,7 @@ msgstr ""
"fungera (t.ex. några grafikkort från ATI/AMD, nätverkskort och RAID-"
"kort, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -248,33 +243,33 @@ msgstr ""
"\"%s\" innehåller mjukvara som inte kan distribueras i alla länder på grund "
"av mjukvarupatent."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "Det innehåller även mjukvara från \"%s\" med extra möjligheter."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Här kan du aktivera fler medier om du vill."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Det här mediet erbjuder paket-uppdateringar för mediet \"%s\""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Söker efter paket som redan är installerade..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Söker efter paket att uppdatera..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Tar bort paket före uppgradering..."
@@ -323,7 +318,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Nätverk"
@@ -373,7 +368,7 @@ msgstr "Installation"
msgid "Configuration"
msgstr "Konfiguration"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Du måste också formatera %s"
@@ -397,22 +392,22 @@ msgstr "Startar nätverket"
msgid "Bringing down the network"
msgstr "Stoppar nätverket"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Var god vänta, hämtar filen"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "kan inte lägga till media"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Kopierar några paket till hårddisken för senare användning"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopiering pågår"
@@ -458,7 +453,7 @@ msgstr ""
msgid "No description"
msgstr "Ingen beskrivning"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -467,27 +462,27 @@ msgstr ""
"Vissa paket som krävs av %s kan inte installeras:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Ett fel inträffade:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Ett allvarligt fel inträffade: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Fråga inte igen"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d installationstransaktioner misslyckades"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Installation av paket misslyckades:"
@@ -570,33 +565,33 @@ msgstr "Konsollverktyg"
msgid "Editors, shells, file tools, terminals"
msgstr "Editorer, skal, filverktyg, terminaler"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Utveckling"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Utvecklingsbibliotek, program och include-filer för C och C++"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentation"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Böcker och \"Howto's\" om Linux och fri mjukvara"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Stöd för tredjepartsprogram"
@@ -727,9 +722,9 @@ msgid "Graphical Environment"
msgstr "Grafisk miljö"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE-arbetsstation"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Arbetsstation"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -814,64 +809,50 @@ msgstr "En lätt och snabb grafisk miljö"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasmaskrivbord"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Plasmaskrivbordet. En grundläggande grafisk miljö med en samling av "
-"medföljande verktyg."
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Andra grafiska skrivbordsmiljöer"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, mfl."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Verktyg"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH-server"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Fjärrkonfiguration med Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Nätverksverktyg/övervakning"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Övervakningsverktyg, processhantering, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageiaguider"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Guider för att konfigurera servern"
@@ -886,7 +867,7 @@ msgstr ""
"bra sätt.\n"
"Fortsätt på egen risk."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -931,7 +912,7 @@ msgstr ""
"installationen istället. För att göra det tryck F1 när du startar\n"
"från cd-skivan, skriv sedan \"text\"."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Val av media"
@@ -1130,29 +1111,29 @@ msgstr "Återstående tid:"
msgid "(estimating...)"
msgstr "(uppskattar...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d paketet"
msgstr[1] "%d paket"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Sammanfattning"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Konfigurera"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "Inte inställt"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1161,7 +1142,7 @@ msgstr ""
"Följande installationskällor har hittats.\n"
"Du kan välja bort de du inte vill använda dig av."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1174,7 +1155,7 @@ msgstr ""
"Installationen kommer sedan att fortsätta från hårddisken och paketen kommer "
"fortsättningsvis att vara tillgängliga när systemet är färdiginstallerat."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Kopiera hela CD-skivor"
@@ -1257,12 +1238,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Konfigurerar IDE"
#: steps_interactive.pm:354
@@ -1436,7 +1417,7 @@ msgstr "Bearbetar installerade paket"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Kontrollera att media för uppdateringsmoduler finns i enhet %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Uppdateringar"
@@ -1463,7 +1444,17 @@ msgstr ""
"\n"
"Vill du ange uppdateringsmedia?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "kan inte lägga till media"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Försök igen"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1486,28 +1477,28 @@ msgstr ""
"Vill du installera uppdateringarna?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s på %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hårdvara"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Ljudkort"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Har du ett ISA-ljudkort?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1516,68 +1507,68 @@ msgstr ""
"Kör \"alsaconf\" eller \"sndconfig\" efter installationen för att "
"konfigurera ljudkortet."
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Inget ljudkort hittades. Prova \"harddrake\" efter installationen."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafiskt gränssnitt"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Nätverk & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxyservrar"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "konfigurerad"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Säkerhetsnivå:"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Brandvägg"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "aktiverad"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "inaktiverad"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Du har inte konfigurerat X. Är du säker på att du vill göra detta?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Förbereder initiellt uppstartsprogram..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Ha tålamod, detta kan ta en stund..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1586,17 +1577,17 @@ msgstr ""
"På den här säkerhetsnivån är tillgång till Windowspartitionen begränsad till "
"administratören."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sätt in en tom diskett i enhet %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Skapar automatisk installationsdiskett"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1607,12 +1598,12 @@ msgstr ""
"\n"
"Vill du verkligen avbryta nu?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Grattis"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Starta om"
@@ -1748,3 +1739,22 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Avsluta"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE-arbetsstation"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasmaskrivbord"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Plasmaskrivbordet. En grundläggande grafisk miljö med en samling av "
+#~ "medföljande verktyg."
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/ta.po b/perl-install/install/share/po/ta.po
index a0db1278c..709938cfd 100644
--- a/perl-install/install/share/po/ta.po
+++ b/perl-install/install/share/po/ta.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX 1.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2002-09-06 00:35+0800\n"
"Last-Translator: prabu anand <prabu_anand2000@yahoo.com>\n"
"Language-Team: Tamil <tamilinix@yahoogroups.com>\n"
@@ -86,170 +86,165 @@ msgid ""
msgstr ""
#: any.pm:162
-#, c-format
-msgid "CD-ROM"
-msgstr "சிடி இயக்கி"
-
-#: any.pm:163
#, fuzzy, c-format
msgid "Network (HTTP)"
msgstr "வலையமைப்பு %s"
-#: any.pm:164
+#: any.pm:163
#, fuzzy, c-format
msgid "Network (FTP)"
msgstr "வலையமைப்பு %s"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, fuzzy, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "தற்ேபாதுள்ள இணைப் பதிப்புதளங்களை அறிய மாண்ட்ேரக் இணையதளம் தொடர்புகொள்ளப்படுகிறது"
-#: any.pm:253
+#: any.pm:252
#, fuzzy, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "தற்ேபாதுள்ள இணைப் பதிப்புதளங்களை அறிய மாண்ட்ேரக் இணையதளம் தொடர்புகொள்ளப்படுகிறது"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "பொதிகளை எங்கிருந்து இறக்க விரும்புகிறீர்கள்"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "அடைவு"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, fuzzy, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "இதை திறக்க முடியவில்ைல%s: %s\n"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "ஏற்கனவே நிறுவப்பட்டுள்ள பொதிகள் பார்ைவயிடப்படுகின்றன"
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "மேம்படுத்தப்பட வேண்டிய பொதிகள் அறியப்படுகின்றன"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -294,7 +289,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "வலையமைப்பு"
@@ -344,7 +339,7 @@ msgstr "நிறுவப்படுகிறது"
msgid "Configuration"
msgstr "வடிவமைப்புகள்"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "நீங்கள் %s இதனையும் வடிவுட்ட வேண்டும்"
@@ -368,22 +363,22 @@ msgstr "வலையமைப்பாக்கங்கள் ஏற்றப
msgid "Bringing down the network"
msgstr "வலையமைப்பாக்கங்கள் முடக்கப்படுகிறது"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "இன்னும் தேடுதல் நடைபெறுகிறது"
@@ -428,34 +423,34 @@ msgstr ""
msgid "No description"
msgstr "இவரிக்க வில்லை"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "பிழை நேர்ந்துள்ளது மன்னிக்கவும்"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr ""
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, fuzzy, c-format
msgid "%d installation transactions failed"
msgstr "நிறுவுதலில் பிழை நேர்ந்துள்ளது"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "%s பொதி நிறுவப்படுகிறது"
@@ -534,33 +529,33 @@ msgstr "முனையக் கருவிகள்"
msgid "Editors, shells, file tools, terminals"
msgstr "முனையம்,தொகுப்பாளர்கள், கோப்பு மேலாளர்கள் மற்றும் ஓடுகள்"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "உருவாக்கம்"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C மற்றும் C++ நூலக நிரல்கள்"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "உதவிநூல்"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "புத்தகங்கள் மற்றும் எப்படிச் செய்வது போன்ற உதவி நூல்"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "LSB- லினக்ஸ் தரக்கட்டுப்பாட்டுக்கு தேவையான நிரல்கள்."
@@ -691,9 +686,9 @@ msgid "Graphical Environment"
msgstr "வரைவியல்வழி சூழல்கள்"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Kசாளரமைப்பு பணிக்கணினி"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "வேலைக்களம்"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -772,63 +767,51 @@ msgid "A lightweight fast graphical environment"
msgstr "ஓர் பயன்படுத்துவதற்கு எளிதான வரைவியல்வழி மேலாளர்"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "மேசைசெயலி"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "Kசாளரமைப்பு- ஓர் பயன்படுத்துவதற்கு எளிதான வரைவியல்வழி மேலாளர்"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "மற்ற வரைவியல்வழி மேலாளர்கள்"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "குேனாம், ஐஸ்விம் ஆகிய பயன்படுத்துவதற்கு எளிதான வரைவியல்வழி மேலாளர்கள்"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "உதவிக்கருவிகள்"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, fuzzy, c-format
msgid "SSH Server"
msgstr "சேவையகம்"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, fuzzy, c-format
msgid "Webmin"
msgstr "வலைபடக் கருவி"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, fuzzy, c-format
msgid "Webmin Remote Configuration Server"
msgstr "பரிமாறி வடிவமைப்பு"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, fuzzy, c-format
msgid "Network Utilities/Monitoring"
msgstr "வலையமைப்பாக்க வடிவமைப்பு "
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "மாண்ட்ேரக் கட்டுப்பட்டு மையம்"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, fuzzy, c-format
msgid "Wizards to configure server"
msgstr "அச்சுப்ெபாறி \"%s\" வடிவமைப்பு ெவற்றியடையவில்ைல"
@@ -842,7 +825,7 @@ msgstr ""
"பிழை நேர்ந்துள்ளது மன்னிக்கவும் எனக்கு என்ன செய்வதென்று தெரியவில்ைல\n"
"தொடர்ந்து செல்வது உங்கள் பொறுப்பு"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -886,7 +869,7 @@ msgstr ""
"மாண்ட்ேரக் லினக்ஸ் நிறுவுவதில் பிழை ஏற்படலாம். நீங்கள் உரைவழி நிறுவலாம்,\n"
"சிடியில் நிறுவ தொடங்கும் போது `F1' என அழுத்தி விட்டு, `text'. என அடிக்கவும்"
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "பொதிகள் குழுத் தேர்வு"
@@ -1083,36 +1066,36 @@ msgstr "தேவைப்படும் நேரம்"
msgid "(estimating...)"
msgstr "கணக்கிடப்படுகிறது"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d பொதிகள்"
msgstr[1] "%d பொதிகள்"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "உரை"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "வடிவமை"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "வடிவமைக்கப்படவில்ைல"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1121,7 +1104,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1197,12 +1180,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE வடிவமைக்கப்படுகிறது..."
#: steps_interactive.pm:354
@@ -1375,7 +1358,7 @@ msgstr "நிறுவியபின் சேய்ய வேண்டிய
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "புதுப்பித்தல்கள்"
@@ -1399,7 +1382,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "மீளச்செய்"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1420,114 +1413,114 @@ msgstr ""
"இவற்ைற நிறுவ விருப்பமா ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s இல் %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "வன்பொருள்"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "ஒலியட்ைட"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "உங்களிடம் ISA ஒலியட்ைட ஏதேனும் உள்ளனவா?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, fuzzy, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr "\"sndconfig\" என்ற நிரல் மூலம் உங்கள் ஒலியட்ைடயை வடிவமைக்க முடியும்"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"ஒலியட்ைட ஏதும் கண்டுபிடிக்க முடியவில்ைல. டிரேக்வன்ெபாருள் மாயாவியை பயன்படுத்துங்கள்"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "வரைவியல்வழி"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "வலையமைப்பும் இணையமும்"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, fuzzy, c-format
msgid "Proxies"
msgstr "பயனர்குறிப்பு: "
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, fuzzy, c-format
msgid "configured"
msgstr "மறுவடிவமை"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "பாதுகாப்பு நிலை"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "நெருப்புச்சுவர்"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, fuzzy, c-format
msgid "activated"
msgstr "இப்போது துவக்கு"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "முடமாக்கப்பட்டுள்ளது"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "நிறுவுதல் தொடங்குகிறது"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "வெற்று நெகிழ்வட்ைட %s இயக்கியில் உள்ளிடவும்"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "தானியங்கி நிறுவல்வட்ைட உருவாக்கவும்"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1538,12 +1531,12 @@ msgstr ""
"\n"
"நீங்கள் நிச்சயம் நிறுவுதலை விட்டு வெளியேற விரும்புகிறீர்களா?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "வாழ்த்துக்கள்"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "மறுெதாடக்கம்"
@@ -1680,6 +1673,25 @@ msgid ""
"Exit"
msgstr "வெளிச்ெசல்"
+#~ msgid "CD-ROM"
+#~ msgstr "சிடி இயக்கி"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Kசாளரமைப்பு பணிக்கணினி"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "மேசைசெயலி"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr "Kசாளரமைப்பு- ஓர் பயன்படுத்துவதற்கு எளிதான வரைவியல்வழி மேலாளர்"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "துவங்குநிரலை உருவாக்குகிறேன்..."
diff --git a/perl-install/install/share/po/tg.po b/perl-install/install/share/po/tg.po
index c225cc14a..228398726 100644
--- a/perl-install/install/share/po/tg.po
+++ b/perl-install/install/share/po/tg.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-tg\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-09-17 16:03+0500\n"
"Last-Translator: Victor Ibragimov <youth_opportunities@tajikngo.org>\n"
"Language-Team: Tajik\n"
@@ -93,174 +93,169 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Шабака (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Шабака (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Шабакаи (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL-и оина?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Барои ба даст даровардани рӯйхати қуттиҳои дастрас пайвастшавӣ ба %s "
"Linuxweb site ба роҳ монда шудааст..."
-#: any.pm:253
+#: any.pm:252
#, fuzzy, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Барои ба даст даровардани рӯйхати қуттиҳои дастрас пайвастшавӣ ба %s "
"Linuxweb site ба роҳ монда шудааст..."
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Оинаро интихоб намоед, ки аз он қуттиҳоро гирифта мешавад"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Танзими NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Феҳрист"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Пайдо кардани файли hdlist дар ин оина нашуда истодааст."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr ""
"Ҷустуҷи бастаи барномаҳои аллакай коргузорӣ шуда иҷро шуда истодааст..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Ҷустуҷӯи қуттиҳо барои нав намудан иҷро мешавад..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -310,7 +305,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Шабака"
@@ -360,7 +355,7 @@ msgstr "Коргузорӣ шуда истодааст"
msgid "Configuration"
msgstr "Батанзимдарорӣ"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Шумо бояд %s-ро шаклбандӣ намоед"
@@ -385,22 +380,22 @@ msgstr "Шабака оварда мешавад"
msgid "Bringing down the network"
msgstr "Шабака фаромада истодааст"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "Муаяйнкунӣ дар раванди иҷроиш қарор дорад"
@@ -445,34 +440,34 @@ msgstr ""
msgid "No description"
msgstr "Бе тавсифҳо"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "Хатогӣ рух дод"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Хатогии ҷиддӣ рӯй дод: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d коргузорӣ амалӣ нагардид"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Интихоби синфи коргузорӣ"
@@ -555,33 +550,33 @@ msgstr "Асбобҳои Нозиргоҳ"
msgid "Editors, shells, file tools, terminals"
msgstr "Муҳаррирон, пардозандаи фармонҳо, асбобҳои файлӣ, поёнаҳо"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Коркард"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Китобхонаи коркарди C ва C++, барномаҳо ва файлҳои дохилшаванда"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Санадсозӣ"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Китобҳо ва Чӣ тавр дар Linux ва Таъминоти Барномавии Озод"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Манбаи Низоммеъёри Linux. Пуштибонии замимаҳои коргардонони сеюм"
@@ -712,9 +707,9 @@ msgid "Graphical Environment"
msgstr "Муҳити Графикӣ"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Истгоҳи кории KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Истгоҳи корӣ"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -802,64 +797,51 @@ msgstr ""
"дошта"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Мизи Кории Ғалатёб"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"K Муҳити Мизи Корӣ, ин муҳити графикии асосӣ бо маҷмӯи асбобҳои ҳамроҳкунанда"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Дигар Мизҳои Кории Графикӣ"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, ва ғайра"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Дастгоҳҳо"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Хидматгори SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Батанзимдарори Хидматрасони Дурдасти Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Дастгоҳҳои Шабака/Дидабонӣ"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Дидабонии асбобҳо, ҳисоботи ҷараёнҳо, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Устодҳои Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Устод барои танзимдарории хидматрасон"
@@ -874,7 +856,7 @@ msgstr ""
"бароям.\n"
"Мувофиқи таваккали худ давом диҳед."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -919,7 +901,7 @@ msgstr ""
"коргузории матниро ба амал оред. Ҳангоми худборкунии CDROM ба`F1' ангушт "
"занед ва сониян ба `text' дохил шавед."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Интихоби Гурӯҳи Қуттиҳо"
@@ -1120,29 +1102,29 @@ msgstr "Вақти боқимонда "
msgid "(estimating...)"
msgstr "Баҳодиҳии тахминӣ"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d қуттиҳо"
msgstr[1] "%d қуттиҳо"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Ҷамбаст"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Танзим додан"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "танзимдода нашуда"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1152,7 +1134,7 @@ msgstr ""
"Агар баъзеи онҳоро партофтан хоҳед, онҳоро дар айни замон интихоб накарда "
"метавонед."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1161,7 +1143,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1237,12 +1219,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE ба танзим дароварда мешавад"
#: steps_interactive.pm:354
@@ -1415,7 +1397,7 @@ msgstr "Баъд аз пайкарабандӣ коргузорӣ мегарда
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Нав кардан"
@@ -1439,7 +1421,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Барқарор"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1463,28 +1455,28 @@ msgstr ""
"Оё шумо хоҳиши коргузорӣ намудани ин навигариҳо ҳастед?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s дар %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Сахтафзор"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Корти овоздор"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Шумо карти садои ISA доред?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1493,69 +1485,69 @@ msgstr ""
"Барои батанзимдарории корти овозии шумо баъди коргузорӣ \"alsaconf\" ё "
"\"sndconfig\"-ро корандозӣ намоед"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Корти овозӣ муайян нагардид. \"harddrake\"-ро баъди коргузорӣ кӯшиш намоед"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Интерфейси графикӣ"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Шабака ва Интернет"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Боваринок"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "танзимшуда"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Сатҳи Амният"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Фейрвол"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "фаъолшуда"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "ғайрифаъол"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Шумо X-ро ба танзим надаровардаед. Шумо дар ҳақиқат инро мехоҳед?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Коргузорӣ тайёр шуда истодааст"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1564,17 +1556,17 @@ msgstr ""
"Дар ин сатҳи бехатарӣ дастрасӣ ба файлҳо дар қисматҳои Windows таҳо ба "
"идоракунанда иҷозат дода мешаванд."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Дискети холиро ба гардон дохил намоед %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Диски нарми худкоргузорӣ офарида шуда истодааст..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1585,12 +1577,12 @@ msgstr ""
"\n"
"Шумо дар ҳақиқат баромадан мехоҳед?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Табрикот"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Бозхудборшавӣ"
@@ -1727,6 +1719,27 @@ msgid ""
"Exit"
msgstr "Хуруҷ"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Истгоҳи кории KDE"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Мизи Кории Ғалатёб"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "K Муҳити Мизи Корӣ, ин муҳити графикии асосӣ бо маҷмӯи асбобҳои "
+#~ "ҳамроҳкунанда"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Корандози худборшави аввала тайёр мешавад..."
diff --git a/perl-install/install/share/po/th.po b/perl-install/install/share/po/th.po
index d12a502e1..d06d3fde7 100644
--- a/perl-install/install/share/po/th.po
+++ b/perl-install/install/share/po/th.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-07-26 10:04+0000\n"
"Last-Translator: Rockers <sumorock@hotmail.com>\n"
"Language-Team: Thai (http://www.transifex.com/projects/p/mageia/language/"
@@ -87,169 +87,164 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "ซีดี-รอม"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr ""
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr ""
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "เลือกมิลเรอร์ไซต์ที่จะใช้ในการดาวน์โหลดแพ็คเก็จ"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "สารบัญ"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr ""
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr ""
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "กำลังหาแพ็คเก็จที่จะทำการอัพเกรด"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -294,7 +289,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "ระบบเครือข่าย"
@@ -344,7 +339,7 @@ msgstr ""
msgid "Configuration"
msgstr "ปรับแต่งค่า"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -368,22 +363,22 @@ msgstr "ระบบเน็ตเวิร์กกำลังจะทำง
msgid "Bringing down the network"
msgstr "ระบบเน็ตเวิร์กกำลังจะหยุดทำงาน"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr ""
@@ -428,34 +423,34 @@ msgstr ""
msgid "No description"
msgstr "ไม่มีคำอธิบายรายละเอียด"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "มีปัญหาเกิกขึ้น:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr ""
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr ""
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -534,33 +529,33 @@ msgstr ""
msgid "Editors, shells, file tools, terminals"
msgstr ""
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "พัฒนาซอฟท์แวร์ (Development)"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "คู่มือ"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr ""
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr ""
@@ -691,8 +686,8 @@ msgid "Graphical Environment"
msgstr "การทำงานแบบกราฟฟิก"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
msgstr "KDE"
#: share/meta-task/compssUsers.pl:153
@@ -773,62 +768,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Graphical Desktops อื่นๆ"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "อรรถประโยชน์"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr ""
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr ""
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr ""
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr ""
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr ""
@@ -842,7 +825,7 @@ msgstr ""
"มีความผิดพลาดเกิดขึ้น แต่โปรแกรมไม่สามารถแก้ไขได้\n"
"หากทำงานต่ออาจเกิดความเสียหายได้"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -886,7 +869,7 @@ msgstr ""
"%s ถ้าเป็นเช่นนั้น กรุณาทดลองติดตั้งแบบ text \n"
"กรุณากด F1 ขณะ boot จาก cdrom แล้วพิมพ์ text"
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1083,35 +1066,35 @@ msgstr "เวลาที่เหลือ:"
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "แพ็คเก็จ %d ชุด"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "รวมความ"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "การปรับแต่ง"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr ""
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1120,7 +1103,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1196,12 +1179,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "คอนฟิก IDE"
#: steps_interactive.pm:354
@@ -1368,7 +1351,7 @@ msgstr "การคอนฟิกหลังการติดตั้ง"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "อัพเดท"
@@ -1392,7 +1375,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, c-format
+msgid "Retry?"
+msgstr ""
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1406,113 +1399,113 @@ msgid ""
msgstr ""
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s บน %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "ฮาร์ดแวร์"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Sound card"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr ""
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr ""
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr ""
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "เน็ตเวิร์คกับอินเตอร์เน็ต"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr ""
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr ""
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "ระดับความปลอดภัย"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr ""
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "ไม่ใช้งาน"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr ""
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "ให้ใส่แผ่นฟล้อปปี้ลงในไดรว์ %s "
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "กำลังเตรียมการติดตั้งลงบน floppy"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1523,12 +1516,12 @@ msgstr ""
"\n"
"คุณต้องการออกจากการติดตั้งจริงๆหรือไม่?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "ยินดีด้วย"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr ""
@@ -1664,3 +1657,9 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "เลิกทำงาน"
+
+#~ msgid "CD-ROM"
+#~ msgstr "ซีดี-รอม"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/tl.po b/perl-install/install/share/po/tl.po
index 517a48e9c..61161276e 100644
--- a/perl-install/install/share/po/tl.po
+++ b/perl-install/install/share/po/tl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-tl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2004-09-15 13:35+0200\n"
"Last-Translator: Arys P. Deloso <arys@deloso.org>\n"
"Language-Team: Filipino <salinpinoy@comitus.net>\n"
@@ -83,174 +83,169 @@ msgid ""
msgstr ""
#: any.pm:162
-#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
#, fuzzy, c-format
msgid "Network (HTTP)"
msgstr "Network %s"
-#: any.pm:164
+#: any.pm:163
#, fuzzy, c-format
msgid "Network (FTP)"
msgstr "Network %s"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr ""
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Nakikipag-alam sa web site ng %s para makuha ang talaan ng mga available na "
"mirror..."
-#: any.pm:253
+#: any.pm:252
#, fuzzy, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Nakikipag-alam sa web site ng %s para makuha ang talaan ng mga available na "
"mirror..."
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Pumili ng mirror kung saan kukunin ang mga package"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Directory"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, fuzzy, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Hindi mahanap ang %s sa %s"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Naghahanap ng mga package na naka-install..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Naghahanap ng mga package na i-a-upgrade..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -300,7 +295,7 @@ msgstr "gFTP"
msgid "NFS"
msgstr "PFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Network"
@@ -350,7 +345,7 @@ msgstr "Nag-i-install"
msgid "Configuration"
msgstr "Configuration"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Dapat ninyo ring i-format ang %s"
@@ -375,22 +370,22 @@ msgstr "Ginagawang \"up\" ang network"
msgid "Bringing down the network"
msgstr "Ginagawang \"down\" ang network"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, fuzzy, c-format
msgid "Copying in progress"
msgstr "Tumatakbo ang pagtitiktik"
@@ -435,34 +430,34 @@ msgstr ""
msgid "No description"
msgstr "sa mga paglalarawan"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, fuzzy, c-format
msgid "An error occurred:"
msgstr "May \"error\" na nangyari"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "May nangyaring fatal error: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d transaksyong pag-i-install ay nabigo"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, fuzzy, c-format
msgid "Installation of packages failed:"
msgstr "Ini-install ang package na %s"
@@ -545,33 +540,33 @@ msgstr "Kagamitang Pang-Console"
msgid "Editors, shells, file tools, terminals"
msgstr "Mga editor, shell, file tool, terminal"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Paglinang (Development)"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "mga C at C++ development library, program at include file"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Dokumentasyon"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Mga Libro at Howto tungkol sa Linux at Free Software"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Suporta para sa mga third party application"
@@ -702,9 +697,9 @@ msgid "Graphical Environment"
msgstr "Graphical na Kapaligiran"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE Workstation"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Workstation"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -793,65 +788,51 @@ msgstr ""
"gamitin) na application at kagamitang pang-desktop"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Desktop"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Ang K Desktop Environment, ang pinakabatayang graphical environment na may "
-"koleksyon ng mga kasabay na kagamitan"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Ibang Mga Graphical Desktop"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, fuzzy, c-format
msgid "Utilities"
msgstr "Philippines"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH Server"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, fuzzy, c-format
msgid "Webmin"
msgstr "Webcam"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, fuzzy, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Configuration ng Terminal Server"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, fuzzy, c-format
msgid "Network Utilities/Monitoring"
msgstr "Pagmo-monitor ng Network"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, fuzzy, c-format
msgid "Mageia Wizards"
msgstr "<b>Mageia Store</b>"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, fuzzy, c-format
msgid "Wizards to configure server"
msgstr "Nabigong i-configure ang printer na \"%s\"!"
@@ -865,7 +846,7 @@ msgstr ""
"May \"error\" na nangyari, pero hindi ko alam kung paano ayusin\n"
"ng maganda. Mapanganib magpatuloy."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -911,7 +892,7 @@ msgstr ""
"CDROM,\n"
"at ipasok ang `text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, fuzzy, c-format
msgid "Media Selection"
msgstr "Pagpili ng Pangkat ng mga Package"
@@ -1110,36 +1091,36 @@ msgstr "Nalalabing oras "
msgid "(estimating...)"
msgstr "Nagkukuro-kuro"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, fuzzy, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d mga package"
msgstr[1] "%d mga package"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Kabuuan"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Configure"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "hindi na-configure"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
"If you want to skip some of them, you can unselect them now."
msgstr ""
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1148,7 +1129,7 @@ msgid ""
"available once the system is fully installed."
msgstr ""
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr ""
@@ -1224,12 +1205,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Kino-configure ang IDE"
#: steps_interactive.pm:354
@@ -1401,7 +1382,7 @@ msgstr "Configuration matapos ang install"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr ""
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Mga update"
@@ -1425,7 +1406,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Ibalik"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1449,28 +1440,28 @@ msgstr ""
"Gusto ninyong i-install ang mga update ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s sa %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Hardware"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Sound card"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Mayroon ba kayong ISA na sound card?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1479,71 +1470,71 @@ msgstr ""
"Patakbuhin ang \"alsaconf\" o \"sndconfig\" pagkatapos mag-install para i-"
"configure ang iyong sound card"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Walang natiktikang sound card. Subukan ang \"harddrake\" pagkatapos mag-"
"install"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Graphical interface"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Network & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Mga Proxy"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "na-configure"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Level ng Seguridad"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Firewall"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "na-activate"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "na-disable"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
"Hindi pa ninyo na-configure ang X. Sigurado kayong gusto ninyong gawin ito?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Inihahanda ang pag-i-install"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1552,17 +1543,17 @@ msgstr ""
"Sa level ng seguridad na ito, ang access sa mga file na nasa partisyon ng "
"Windows ay limitado sa tagapangasiwa."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Magsuksok ng blangkong floppy sa drive %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Lumilikha ng auto install floppy..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1573,12 +1564,12 @@ msgstr ""
"\n"
"Gusto ninyo ba talagang sumuko ngayon?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Maligayang bati"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "I-reboot"
@@ -1715,6 +1706,27 @@ msgid ""
"Exit"
msgstr "Exit"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE Workstation"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Desktop"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Ang K Desktop Environment, ang pinakabatayang graphical environment na "
+#~ "may koleksyon ng mga kasabay na kagamitan"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Inihahanda ang bootloader..."
diff --git a/perl-install/install/share/po/tr.po b/perl-install/install/share/po/tr.po
index cd0ade290..abed55150 100644
--- a/perl-install/install/share/po/tr.po
+++ b/perl-install/install/share/po/tr.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 02:01+0300\n"
"Last-Translator: Atilla ÖNTAŞ <tarakbumba@gmail.com>\n"
"Language-Team: Mageia Turkish Translation Team <i18n-tr@ml.mageia.org>\n"
@@ -96,85 +96,80 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Ağ (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Ağ (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Ağ (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Yansının URL bağlantı adresi?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL bağlantı adresi ftp:// veya http:// ile başlamak zorundadır."
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Yansı adreslerini almak için %s web sayfasına bağlantı kuruluyor..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "Yansı adreslerini almak için %s web sayfasına bağlantı kurma başarısız"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri alacağınız bir yansı adresi seçiniz"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS kurulumu"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "NFS kaynağı için bir sunucu adı ve dizini giriniz."
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Makine adı yok"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Dizin \"/\" ile başlamalıdır."
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "NFS bağı için sunucu adı?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Dizin"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Tamamlayıcı"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -183,22 +178,22 @@ msgstr ""
"Bu yansı üzerinde paket listesi bulunamadı. Yerinin doğru olduğundan emin "
"olun."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Core Release"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Tainted Release"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Nonfree Release"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -207,22 +202,22 @@ msgstr ""
"Makinenizdeki bazı donanımların özgür yazılım sürücülerinin çalışması için, "
"özgür olmayan üretici yazılımına gereksinimi vardır."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "\"%s\" etkinleştirmelisiniz"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" sistemlerin çeşitli parçalarını ve uygulamalarını içerir"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" özgür olmayan yazılım içerir.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -231,7 +226,7 @@ msgstr ""
"Belirli aygıtların çalışması için gereken üretici yazılımlarını da içerir "
"(örn: bazı ATI/AMD ekran kartları, bazı ağ kartları, bazı RAID kartları, ...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -239,33 +234,33 @@ msgid ""
msgstr ""
"\"%s\" yazılım patentlerinden dolayı her ülkede dağıtılamayan yazılım içerir."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "İlave yeteneklerle yenilenen \"%s\" adresinden yazılım da içerir."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "İsterseniz burada daha fazla ortam etkinleştirebilirsiniz."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "Bu araç \"%s\" ortamı için paket güncellemelerini sağlar"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Kurulu paketler inceleniyor..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Yükseltilecek paketler bulunuyor"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Yükseltmeye hazırlık olmak üzere paketler kaldırılıyor..."
@@ -314,7 +309,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Ağ"
@@ -364,7 +359,7 @@ msgstr "Kurulum"
msgid "Configuration"
msgstr "Yapılandırma"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Ayrıca %s biçemlendirilmelidir"
@@ -388,22 +383,22 @@ msgstr "Ağ bağlanıyor"
msgid "Bringing down the network"
msgstr "Ağ ayrılıyor"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Dosya alınıyor. Lütfen bekleyin"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "ortam eklenemiyor"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Bazı paketler sonradan kullanım için disklere kopyalanıyor"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Kopyalama sürüyor"
@@ -449,7 +444,7 @@ msgstr ""
msgid "No description"
msgstr "Tanımlanmamış"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -458,27 +453,27 @@ msgstr ""
"%s tarafından istenen bazı paketler kurulamaz:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Bir hata oluştu:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Bir ölümcül hata oluştu: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Yeniden sorma"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d kurulum yönergesi başarısız oldu"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Paket kurulumu başarısız oldu:"
@@ -561,33 +556,33 @@ msgstr "Konsol Araçları"
msgid "Editors, shells, file tools, terminals"
msgstr "Metin düzenleyiciler, kabuklar, dosya araçları, terminaller"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Geliştirme"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C ve C++ geliştirme kütüphaneleri, programlar ve include dosyaları"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Belgeler"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Serbest Yazılım ve Linux üzerine Kitaplar ve Nasıl belgeleri"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standartları Temeli. Üçüncü parti uygulama desteği"
@@ -718,9 +713,9 @@ msgid "Graphical Environment"
msgstr "Grafik Ortamı"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE İş istasyonu"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "İş istasyonu"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -803,63 +798,50 @@ msgstr "Hafif ve hızlı bir grafiksel ortam"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasma Masaüstü"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Plasma Masaüstü, yardımcı araçlar ile birlikte gelen temel grafiksel ortam"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Diğer Görsel Masaüstleri"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, v.b."
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Araçlar"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH Sunucu"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin Uzak Yapılandırma Sunucusu"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Ağ Araçları/İzleme"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "İzleme araçları, işlem sayımı, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia Sihirbazları"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Sunucuyu yapılandırmak için Sihirbazlar"
@@ -873,7 +855,7 @@ msgstr ""
"Bir hata oluştu, ancak sebebi saptanamadı.\n"
"Devam edebilirsiniz, ama risk size ait!"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -918,7 +900,7 @@ msgstr ""
"Bunun için CDROM'dan açtıktan sonra `F1'e basın, ve komut satırına\n"
"`text' yazın."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Paket Grubu Seçimi"
@@ -1115,29 +1097,29 @@ msgstr "Kalan süre :"
msgid "(estimating...)"
msgstr "(tahminen...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d adet paket"
msgstr[1] "%d adet paket"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Özet"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Yapılandır"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "yapılandırılmamış"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1146,7 +1128,7 @@ msgstr ""
"Şu kurulum medyası bulundu.\n"
"Bu bazılarını geçmek isterseniz, şimdi seçimden çıkarabilirsiniz."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1158,7 +1140,7 @@ msgstr ""
"Sabit diskten kuruluma devam edilecek ve paketler sistem tamamen "
"kurulduğunda da hazır olacaktır."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "CD'lerin tamamını kopyala"
@@ -1242,12 +1224,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE yapılandırması"
#: steps_interactive.pm:354
@@ -1419,7 +1401,7 @@ msgstr "Kurulum sonrası yapılandırma"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Lütfen Update Module medyasının %s sürcüsünde olduğuna emin olun"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Güncellemeler"
@@ -1447,7 +1429,17 @@ msgstr ""
"\n"
"Güncelleme ortamını ayarlamak istiyor musunuz?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "ortam eklenemiyor"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Yeniden Dene"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1472,28 +1464,28 @@ msgstr ""
"Güncellemeleri kurmak istiyor musunuz ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s üstündeki %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Donanım"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Ses Kartı"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Bir ISA ses kartınız var mı?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1502,68 +1494,68 @@ msgstr ""
"Ses kartınızı yapılandırmak için kurulumdan sonra \"sndconfig\" aracını "
"çalıştırın."
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Ses kartı bulunamadı. Kurulumdan sonra \"harddrake\" ile deneyin."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafiksel arabirim"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Ağ & İnternet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Vekil Sunucular"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "yapılandırıldı"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Güvenlik Seviyesi"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Güvenlik Duvarı"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "etkinleştirilmiş"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "pasifleştirilmiş"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "X'i yapılandırmadınız. Bunu yapmak istediğinizden emin misiniz?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Birincil başlangıç uygulaması hazırlanıyor..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Sabredin, bu biraz zaman alabilir..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1572,17 +1564,17 @@ msgstr ""
"Bu güvenlik seviyesinde, Windows bölümündeki dosyalara erişim yönetici "
"lehine kısıtlanmıştır."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sürücüsüne boş bir disket yerleştirin"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Otomatik kurulum disketi hazırlanıyor"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1593,12 +1585,12 @@ msgstr ""
"\n"
"Gerçekten çıkmak istiyormusunuz?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Tebrikler"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Yeniden başlat"
@@ -1735,5 +1727,23 @@ msgid ""
"Exit"
msgstr "Çıkış"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE İş istasyonu"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasma Masaüstü"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Plasma Masaüstü, yardımcı araçlar ile birlikte gelen temel grafiksel ortam"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Önyükleyici hazırlanıyor"
diff --git a/perl-install/install/share/po/uk.po b/perl-install/install/share/po/uk.po
index bf195dd61..e22e10630 100644
--- a/perl-install/install/share/po/uk.po
+++ b/perl-install/install/share/po/uk.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drakx_install\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 07:09+0300\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Ukrainian <kde-i18n-uk@kde.org>\n"
@@ -89,88 +89,83 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Мережа (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Мережа (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Мережа (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Посилання на дзеркало?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Посилання має починатися з ftp:// або http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Встановлення зв’язку з веб-сайтом %s для отримання списку доступних дзеркал…"
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Не вдалося встановити зв’язок з веб-сайтом %s для отримання списку доступних "
"дзеркал"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Виберіть сервер, з якого звантажити пакунки"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Встановлення NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Введіть назву машини або теку з носієм NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Немає назви машини"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Назва каталогу має починатися з «/»"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "Назва комп'ютера для монтування NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Каталог"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Додатковий"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -179,22 +174,22 @@ msgstr ""
"На цьому дзеркалі не вдалося знайти перелік пакунків. Переконайтеся, що його "
"розташування вказано правильно."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr "Основне (випуск)"
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr "Сумнівні (випуск)"
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr "Невільні (випуск)"
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
@@ -204,26 +199,26 @@ msgstr ""
"мікропрограми з закритим кодом, потрібні для роботи драйверів з відкритим "
"кодом."
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "Вам слід уможливити встановлення зі сховища «%s»"
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
"У сховищі «%s» містяться різноманітні частини операційної системи та її "
"програм"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
"У сховищі «%s» містяться пакунки з програмним забезпеченням, яке не є "
"вільним.\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -233,7 +228,7 @@ msgstr ""
"пристроїв (наприклад деяких відеокарток ATI/AMD, деяких мережевих карток, "
"деяких карток RAID…)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
@@ -243,7 +238,7 @@ msgstr ""
"вільно поширювати у деяких країнах через порушення патентних прав на це "
"програмне забезпечення."
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
@@ -251,27 +246,27 @@ msgstr ""
"Також у сховищі «%s» містяться пакунки, які зібрано з додатковими "
"можливостями, використання яких обмежується патентним законодавством."
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "Тут ви можете увімкнути додаткові сховища, якщо це вам потрібно."
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "У цьому сховищі містяться оновлення пакунків зі сховища «%s»"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Переглядається список вже встановлених пакунків…"
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Шукаємо пакунки для поновлення…"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Вилучаємо пакунків перед поновленням…"
@@ -321,7 +316,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Мережа"
@@ -371,7 +366,7 @@ msgstr "Встановлення"
msgid "Configuration"
msgstr "Налаштовування"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Вам потрібно також відформатувати %s"
@@ -397,22 +392,22 @@ msgstr "Вмикаю мережу"
msgid "Bringing down the network"
msgstr "Вимикаю мережу"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Зачекайте, перевіряється файл"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "неможливо додати носій"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Копіювання деяких пакунків на диски для пізнішого використання"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Триває копіювання"
@@ -459,7 +454,7 @@ msgstr ""
msgid "No description"
msgstr "Немає опису"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -468,27 +463,27 @@ msgstr ""
"Деякі пакунки, необхідні для варіанта %s, неможливо встановити:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Сталася помилка:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Сталася невиправна помилка: %s"
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Більше не питати"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d запит на встановлення завершився невдало"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Встановлення пакунку невдале:"
@@ -571,33 +566,33 @@ msgstr "Засоби для консолі"
msgid "Editors, shells, file tools, terminals"
msgstr "Редактори, командні оболонки, файлові засоби та термінали"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Розробка"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Бібліотеки для програмування в C, C++, програми та файли include"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Документація"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Книжки та поради з Linux та вільного програмного забезпечення"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Стандартна база Linux. Підтримка програм сторонніх виробників"
@@ -728,9 +723,9 @@ msgid "Graphical Environment"
msgstr "Графічне середовище"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Робоча станція KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Робоча станція"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -818,63 +813,50 @@ msgstr "Швидке, невибагливе до ресурсів графіч
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Стільниця Плазми"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-"Стільниця Плазми — основне графічне середовище з набором допоміжних засобів"
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Інші графічні стільниці"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, тощо"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Інструменти"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Сервер SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Сервер віддаленого налаштування Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Мережеві інструменти/Слідкування за мережею"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Інструменти для слідкування, облік процесів, tcpdump, nmap…"
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Помічники Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Помічники для налаштування сервера"
@@ -888,7 +870,7 @@ msgstr ""
"Сталася помилка, але спосіб належного усування її наслідків невідомий.\n"
"Ви можете ризикнути і продовжити встановлення."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -933,7 +915,7 @@ msgstr ""
"завантаження\n"
"з компакт-диска, а потім введіть «text»."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Вибір носія"
@@ -1132,7 +1114,7 @@ msgstr "Залишилося часу:"
msgid "(estimating...)"
msgstr "(наближене обчислення…)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
@@ -1141,22 +1123,22 @@ msgstr[1] "%d пакунки"
msgstr[2] "%d пакунків"
msgstr[3] "%d пакунків"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Підсумки"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Налаштувати"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "не налаштовано"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1165,7 +1147,7 @@ msgstr ""
"Було знайдено наступні носії встановлення.\n"
"Якщо ви не хочете використовувати деякі з них, зніміть з них позначку вибору."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1178,7 +1160,7 @@ msgstr ""
"Після цього встановлення продовжиться з твердого диска і пакунки залишаться "
"доступними після повного встановлення системи."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Копіювати компакт-диски повністю."
@@ -1261,12 +1243,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Налаштування IDE"
#: steps_interactive.pm:354
@@ -1440,7 +1422,7 @@ msgstr "Налаштування після встановлення"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Переконайтеся, чи джерело Update Modules знаходиться в носії %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Поновлення"
@@ -1468,7 +1450,17 @@ msgstr ""
"\n"
"Хочете налаштувати сховище пакунків для оновлення?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "неможливо додати носій"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Ще раз"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1490,28 +1482,28 @@ msgstr ""
"Ви хочете встановити ці поновлення?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s на %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Обладнання"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Звукова картка"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Чи маєте ви звукові карти ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1520,68 +1512,68 @@ msgstr ""
"Виконайте \"alsaconf\" або \"sndconfig\" після встановлення, щоб налаштувати "
"звукову карту"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Звукових карт не виявлено. Спробуйте \"harddrake\" після встановлення"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Графічний інтерфейс"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Мережа та Інтернет"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Проксі"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "налаштовано"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Рівень безпеки"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Захисний шлюз"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "увімкнено"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "вимкнено"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Ви не налаштувати X. Ви впевнені, що дійсно цього хочете?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "Приготування початкової програми запуску…"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Зачекайте, це може тривати довго…"
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1590,17 +1582,17 @@ msgstr ""
"На цьому рівні безпеки доступ до файлів на розділі Windows дозволений тільки "
"адміністратору."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Вставте чисту дискету в дисковод %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Створення дискети для автоматичного встановлення…"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1611,12 +1603,12 @@ msgstr ""
"\n"
"Ви дійсно хочете припинити зараз?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Вітання"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Перезавантажити"
@@ -1753,6 +1745,25 @@ msgid ""
"Exit"
msgstr "Вихід"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Робоча станція KDE"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Стільниця Плазми"
+
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr ""
+#~ "Стільниця Плазми — основне графічне середовище з набором допоміжних "
+#~ "засобів"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "Готуємо завантажувач…"
diff --git a/perl-install/install/share/po/uz.po b/perl-install/install/share/po/uz.po
index b4ed8588f..3fc4788ed 100644
--- a/perl-install/install/share/po/uz.po
+++ b/perl-install/install/share/po/uz.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: uz@cyrillic\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2010-01-07 11:35+0500\n"
"Last-Translator: Nurali Abdurahmonov <mavnur@gmail.com>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
@@ -91,89 +91,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "Kompakt-disk"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Tarmoq (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Tarmoq (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Tarmoq (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Oynaning manzili (URL)"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Manzil ftp:// yoki http:// bilan boshlanishi kerak"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Mavjud boʻlgan oynalarning roʻyxatini olish uchun %s sayti bilan aloqa "
"oʻrnatilmoqda..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Mavjud boʻlgan oynalarning roʻyxatini olish uchun %s sayti bilan aloqa "
"oʻrnatib boʻlmadi"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Paketlarni olish uchun oynani tanlang"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS orqali oʻrnatish"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "NFS toʻplamining kompyuter nomini va direktoriyani kiriting"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Kompyuterning nomi koʻrsatilmagan"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Direktoriya \"/\" belgi bilan boshlashi kerak"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "NFS serverining xost nomi"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Direktoriya"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Qoʻshimcha"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -182,84 +177,84 @@ msgstr ""
"Oynada paketlar roʻyxatini topib boʻlmadi. Manzil (URL) toʻgʻri "
"koʻrsatilganligini tekshiring."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, fuzzy, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "\"%s\" toʻplamidan hamma paketlarga eʼtibor berilmasin"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Allaqachon oʻrnatilgan paketlar qidirilmoqda..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Yangilash uchun paketlar qidirilmoqda..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Yangilashdan avval paketlar olib tashlanmoqda..."
@@ -308,7 +303,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Tarmoq"
@@ -359,7 +354,7 @@ msgstr "Oʻrnatish"
msgid "Configuration"
msgstr "Moslash"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Siz %s'ni ham format qilishingiz kerak"
@@ -383,22 +378,22 @@ msgstr "Tarmoq ishga tushirilmoqda"
msgid "Bringing down the network"
msgstr "Tarmoq oʻchirilmoqda"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Iltimos kutib turing, fayl olinmoqda"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "manbani qoʻshib boʻlmadi"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Baʼzi paketlardan diskka nusxa olinmoqda"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Nusxa olish davom etmoqda"
@@ -443,7 +438,7 @@ msgstr ""
msgid "No description"
msgstr "Taʼrif yoʻq"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -452,27 +447,27 @@ msgstr ""
"%s talab qiladigan baʼzi paketlarni oʻrnatib boʻlmaydi:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Xato roʻy berdi:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Juda jiddiy xato roʻy berdi: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d oʻrnatish tranzaksiyasi muvaffaqiyatsiz tugadi"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Paketlarni oʻrnatib boʻlmadi:"
@@ -555,33 +550,33 @@ msgstr "Konsol vositalari"
msgid "Editors, shells, file tools, terminals"
msgstr "Tahrirchilar, konsollar, fayl vositalari, terminallar"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Tuzish"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C va C++ tuzish kutubxonalari, vositalar va xeder fayllar"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Qoʻllanmalar"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Linux va erkin dasturlar haqida kitoblar va Howto'lar"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Uchinchi tomon dastur tuzuvchilari qoʻllanuvi"
@@ -712,9 +707,9 @@ msgid "Graphical Environment"
msgstr "Grafik muhit"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE stansiyasi"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Ish stansiyasi"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -801,64 +796,52 @@ msgstr ""
"yengil va tez ishlovchi grafik muhit"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Boshqa ish stoli"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "KDE - vositalar toʻplami bilan birga asosiy grafik muhit"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Boshqa grafik ish stollari"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Enlightenment, Fvwm, va hokazo"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Vositalar"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH serveri"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin masofadan boshqarish serveri"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Tarmoq vositalari/Nazorat qilish"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr ""
"Nazorat qilish vositalari, vazifalar hisobotchilari, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia yordamchilari"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Serverni moslash uchun yordamchilar"
@@ -872,7 +855,7 @@ msgstr ""
"Xatolik yuz berdi ammo uning sababi aniqlanmadi.\n"
"Tavvakkal qilgan holda davom etishingiz mumkin."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -918,7 +901,7 @@ msgstr ""
"Buning uchun diskdan yuklanayotganda `F1' tugmasini bosing va `text' deb "
"yozing."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Manbani tanlash"
@@ -1117,28 +1100,28 @@ msgstr "Qolgan vaqt:"
msgid "(estimating...)"
msgstr "(chamalanmoqda)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d-ta paket"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Hisobot"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Moslash"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "moslanmagan"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1147,7 +1130,7 @@ msgstr ""
"Quyidagi oʻrnatish manbalari aniqlandi.\n"
"Faqat tanlangan manbalar oʻrnatish uchun ishlatiladi."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1159,7 +1142,7 @@ msgstr ""
"nusxa olish mumkin.\n"
"Oʻrnatish toʻliq tugagandan soʻng ular tizimga maʼlum boʻladi."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Butun diskdan nusxa olish"
@@ -1235,12 +1218,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE'ni moslash"
#: steps_interactive.pm:354
@@ -1411,7 +1394,7 @@ msgstr "Oʻrnatishdan keyin moslash"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "%s ichida Update Modules toʻplami mavjudligini tekshirib koʻring"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Yangilanishlar"
@@ -1435,7 +1418,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "manbani qoʻshib boʻlmadi"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Qaytadan urinish"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1459,28 +1452,28 @@ msgstr ""
"Yangilanishlarni oʻrnatishni istaysizmi?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s %s'da"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Asbob-uskunalar"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Tovush karta"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Sizda ISA tovush kartasi bormi?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1489,70 +1482,70 @@ msgstr ""
"Oʻrnatishdan keyin, tovush kartangizni moslash uchun, \"sndconfig\" yoki "
"\"alsaconf\" dasturini ishga tushiring"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Tovush kartasi topilmadi. Oʻrnatishdan keyin \"harddrake\" dasturini sinab "
"koʻring."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Grafik interfeys"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Tarmoq va Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proksilar"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "moslangan"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Xavfsizlik darajasi"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Fayervol"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "ishlayapti"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "oʻchirilgan"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Siz X'ni moslamadingiz. Rostdan buni istaysizmi?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Oʻrnatishga tayyorlanmoqda"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Kutib turing, bu biroz vaqt olishi mumkin..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1561,17 +1554,17 @@ msgstr ""
"Ushbu xavfsizlik daraja qoʻllanilganda diskning Windows qismidagi fayllarga "
"faqat administrator murojaat qilishi mumkin."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Boʻsh disketni %s uskunasiga qoʻying"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Avto-oʻrnatish disketi yaratilmoqda..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1582,12 +1575,12 @@ msgstr ""
"\n"
"Rostdan chiqishni istaysizmi?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Tabriklaymiz!"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Oʻchirib-yoqish"
@@ -1724,6 +1717,25 @@ msgid ""
"Exit"
msgstr "Chiqish"
+#~ msgid "CD-ROM"
+#~ msgstr "Kompakt-disk"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE stansiyasi"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Boshqa ish stoli"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr "KDE - vositalar toʻplami bilan birga asosiy grafik muhit"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "OT yuklagichi tayyorlanmoqda..."
diff --git a/perl-install/install/share/po/uz@cyrillic.po b/perl-install/install/share/po/uz@cyrillic.po
index bc6c09c61..de41e5330 100644
--- a/perl-install/install/share/po/uz@cyrillic.po
+++ b/perl-install/install/share/po/uz@cyrillic.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: uz@cyrillic\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2010-01-07 11:35+0500\n"
"Last-Translator: Nurali Abdurahmonov <mavnur@gmail.com>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
@@ -91,89 +91,84 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "Компакт-диск"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Тармоқ (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Тармоқ (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Тармоқ (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Ойнанинг манзили (URL)"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Манзил ftp:// ёки http:// билан бошланиши керак"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr ""
"Мавжуд бўлган ойналарнинг рўйхатини олиш учун %s сайти билан алоқа "
"ўрнатилмоқда..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Мавжуд бўлган ойналарнинг рўйхатини олиш учун %s сайти билан алоқа ўрнатиб "
"бўлмади"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Пакетларни олиш учун ойнани танланг"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS орқали ўрнатиш"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "NFS тўпламининг компьютер номини ва директорияни киритинг"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "Компьютернинг номи кўрсатилмаган"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Директория \"/\" белги билан бошлаши керак"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "NFS серверининг хост номи"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Директория"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Қўшимча"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -182,84 +177,84 @@ msgstr ""
"Ойнада пакетлар рўйхатини топиб бўлмади. Манзил (URL) тўғри "
"кўрсатилганлигини текширинг."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, fuzzy, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "\"%s\" тўпламидан ҳамма пакетларга эътибор берилмасин"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Аллақачон ўрнатилган пакетлар қидирилмоқда..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Янгилаш учун пакетлар қидирилмоқда..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Янгилашдан аввал пакетлар олиб ташланмоқда..."
@@ -308,7 +303,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Тармоқ"
@@ -359,7 +354,7 @@ msgstr "Ўрнатиш"
msgid "Configuration"
msgstr "Мослаш"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Сиз %s'ни ҳам формат қилишингиз керак"
@@ -383,22 +378,22 @@ msgstr "Тармоқ ишга туширилмоқда"
msgid "Bringing down the network"
msgstr "Тармоқ ўчирилмоқда"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "Илтимос кутиб туринг, файл олинмоқда"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "манбани қўшиб бўлмади"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Баъзи пакетлардан дискка нусха олинмоқда"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Нусха олиш давом этмоқда"
@@ -443,7 +438,7 @@ msgstr ""
msgid "No description"
msgstr "Таъриф йўқ"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -452,27 +447,27 @@ msgstr ""
"%s талаб қиладиган баъзи пакетларни ўрнатиб бўлмайди:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Хато рўй берди:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Жуда жиддий хато рўй берди: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d ўрнатиш транзакцияси муваффақиятсиз тугади"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "Пакетларни ўрнатиб бўлмади:"
@@ -555,33 +550,33 @@ msgstr "Консол воситалари"
msgid "Editors, shells, file tools, terminals"
msgstr "Таҳрирчилар, консоллар, файл воситалари, терминаллар"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Тузиш"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C ва C++ тузиш кутубхоналари, воситалар ва хедер файллар"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Қўлланмалар"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Linux ва эркин дастурлар ҳақида китоблар ва Howto'лар"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base. Учинчи томон дастур тузувчилари қўллануви"
@@ -712,9 +707,9 @@ msgid "Graphical Environment"
msgstr "График муҳит"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE станцияси"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Иш станцияси"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -801,63 +796,51 @@ msgstr ""
"ва тез ишловчи график муҳит"
#: share/meta-task/compssUsers.pl:194
-#, fuzzy, c-format
-msgid "Plasma Desktop"
-msgstr "Бошқа иш столи"
-
-#: share/meta-task/compssUsers.pl:195
-#, fuzzy, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr "KDE - воситалар тўплами билан бирга асосий график муҳит"
-
-#: share/meta-task/compssUsers.pl:199
#, c-format
msgid "Other Graphical Desktops"
msgstr "Бошқа график иш столлари"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, fuzzy, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Enlightenment, Fvwm, ва ҳоказо"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Воситалар"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH сервери"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin масофадан бошқариш сервери"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Тармоқ воситалари/Назорат қилиш"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Назорат қилиш воситалари, вазифалар ҳисоботчилари, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia ёрдамчилари"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Серверни мослаш учун ёрдамчилар"
@@ -871,7 +854,7 @@ msgstr ""
"Хатолик юз берди аммо унинг сабаби аниқланмади.\n"
"Тавваккал қилган ҳолда давом этишингиз мумкин."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -916,7 +899,7 @@ msgstr ""
"воситасидан фойдаланиб кўринг,\n"
"Бунинг учун дискдан юкланаётганда `F1' тугмасини босинг ва `text' деб ёзинг."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "Манбани танлаш"
@@ -1114,28 +1097,28 @@ msgstr "Қолган вақт:"
msgid "(estimating...)"
msgstr "(чамаланмоқда)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d-та пакет"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Ҳисобот"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Мослаш"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "мосланмаган"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1144,7 +1127,7 @@ msgstr ""
"Қуйидаги ўрнатиш манбалари аниқланди.\n"
"Фақат танланган манбалар ўрнатиш учун ишлатилади."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1156,7 +1139,7 @@ msgstr ""
"олиш мумкин.\n"
"Ўрнатиш тўлиқ тугагандан сўнг улар тизимга маълум бўлади."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Бутун дискдан нусха олиш"
@@ -1232,12 +1215,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "IDE'ни мослаш"
#: steps_interactive.pm:354
@@ -1407,7 +1390,7 @@ msgstr "Ўрнатишдан кейин мослаш"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "%s ичида Update Modules тўплами мавжудлигини текшириб кўринг"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Янгиланишлар"
@@ -1431,7 +1414,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "манбани қўшиб бўлмади"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Қайтадан уриниш"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1454,28 +1447,28 @@ msgstr ""
"Янгиланишларни ўрнатишни истайсизми?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s %s'да"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Асбоб-ускуналар"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Товуш карта"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Сизда ISA товуш картаси борми?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1484,70 +1477,70 @@ msgstr ""
"Ўрнатишдан кейин, товуш картангизни мослаш учун, \"sndconfig\" ёки \"alsaconf"
"\" дастурини ишга туширинг"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Товуш картаси топилмади. Ўрнатишдан кейин \"harddrake\" дастурини синаб "
"кўринг."
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "График интерфейс"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Тармоқ ва Интернет"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Проксилар"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "мосланган"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Хавфсизлик даражаси"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Файервол"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "ишлаяпти"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "ўчирилган"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Сиз X'ни мосламадингиз. Ростдан буни истайсизми?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, fuzzy, c-format
msgid "Preparing initial startup program..."
msgstr "Ўрнатишга тайёрланмоқда"
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "Кутиб туринг, бу бироз вақт олиши мумкин..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1556,17 +1549,17 @@ msgstr ""
"Ушбу хавфсизлик даража қўлланилганда дискнинг Windows қисмидаги файлларга "
"фақат администратор мурожаат қилиши мумкин."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Бўш дискетни %s ускунасига қўйинг"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Авто-ўрнатиш дискети яратилмоқда..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1577,12 +1570,12 @@ msgstr ""
"\n"
"Ростдан чиқишни истайсизми?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Табриклаймиз!"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Ўчириб-ёқиш"
@@ -1719,6 +1712,25 @@ msgid ""
"Exit"
msgstr "Чиқиш"
+#~ msgid "CD-ROM"
+#~ msgstr "Компакт-диск"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE станцияси"
+
+#, fuzzy
+#~ msgid "Plasma Desktop"
+#~ msgstr "Бошқа иш столи"
+
+#, fuzzy
+#~ msgid ""
+#~ "The Plasma Desktop, the basic graphical environment with a collection of "
+#~ "accompanying tools"
+#~ msgstr "KDE - воситалар тўплами билан бирга асосий график муҳит"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "ОТ юклагичи тайёрланмоқда..."
diff --git a/perl-install/install/share/po/vi.po b/perl-install/install/share/po/vi.po
index f38fdd7de..5dc9e88ba 100644
--- a/perl-install/install/share/po/vi.po
+++ b/perl-install/install/share/po/vi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 04:07+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Vietnamese (http://www.transifex.com/projects/p/mageia/"
@@ -85,169 +85,164 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Mạng (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Mạng (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr ""
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "URL của mirror?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr ""
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Đang kết nối với website của %s để lấy danh sách các mirrors hiệncó..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Chọn một mirror để tải các gói về"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr ""
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr ""
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr ""
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr ""
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr ""
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Thư mục"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr ""
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "Không thể tìm tập tin hdlist trên mirror này"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Kiểm tra các gói đã được cài đặt..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Đang tìm các gói để nâng cấp"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr ""
@@ -296,7 +291,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Mạng"
@@ -346,7 +341,7 @@ msgstr ""
msgid "Configuration"
msgstr "Cấu hình"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Cũng phải định dạng %s"
@@ -370,22 +365,22 @@ msgstr "Bật chức năng mạng"
msgid "Bringing down the network"
msgstr "Tắt chức năng mạng"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr ""
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Đang sao chép"
@@ -430,34 +425,34 @@ msgstr ""
msgid "No description"
msgstr "Không có mô tả"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr ""
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "Xả ra lỗi trầm trọng: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "Đừng hỏi nữa "
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d phiên giao dịch cài đặt lỗi"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -538,34 +533,34 @@ msgstr "Các công cụ console"
msgid "Editors, shells, file tools, terminals"
msgstr "Các trình soạn thảo, các tiện ích tập tin, các thiết bị đầu cuối"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Phát triển"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr ""
"Các thư viện phát triển C và C++, các chương trình và các tập tin đi kèm"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Tài liệu"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Các sách, how-to cho Linux và phần mềm miễn phí"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Cơ Sở Về Chuẩn Linux (LSB). Hỗ trợ ứng dụng cho hãng thứ ba."
@@ -696,9 +691,9 @@ msgid "Graphical Environment"
msgstr "Môi trường đồ hoạ"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Máy trạm"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -780,62 +775,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Các màn hình nền đồ hoạ khác"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Tiện ích"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Máy chủ SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Cấu hình máy chủ từ xa Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Giám sát và công cụ mạng"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Các công cụ theo dõi, quản lý tiến trình, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Đồ thuật Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Đồ thuật cấu hình máy chủ"
@@ -849,7 +832,7 @@ msgstr ""
"Có lỗi xảy ra, không rõ cách giải quyết thích hợp.\n"
"Tiếp tục với rủi ro."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -893,7 +876,7 @@ msgstr ""
"chế độ văn bản bằng cách nhấn phím `F1' khi khởi động từ CDROM, rồi nhập "
"`text'."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1090,28 +1073,28 @@ msgstr ""
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d các gói"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Tóm tắt"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Cấu hình"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "chưa được cấu hình"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1120,7 +1103,7 @@ msgstr ""
"Phát hiện thấy phương tiện cài đặt sau đây.\n"
"Nếu không dùng, hãy bỏ chọn chúng."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1133,7 +1116,7 @@ msgstr ""
"Sau đó tiếp tục tiến hành cài đặt từ đĩa cứng và các gói vẫn sẵn dùng ngay "
"sau khi cài đặt xong hệ thống."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Sao chép toàn bộ CD"
@@ -1209,12 +1192,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Đang cấu hình IDE"
#: steps_interactive.pm:354
@@ -1385,7 +1368,7 @@ msgstr "Cấu hình sau khi cài đặt"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "Hãy đảm bảo là phương tiện Update Modules có trong drive %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Cập nhật"
@@ -1409,7 +1392,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, c-format
+msgid "Retry?"
+msgstr ""
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1430,28 +1423,28 @@ msgstr ""
"Bạn có muốn cài đặt các gói cập nhật không ?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s trên %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Phần cứng"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Card âm thanh"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Bạn có card âm thanh ISA không ?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1460,69 +1453,69 @@ msgstr ""
"Chạy lệnh \"alsaconf\" hoặc \"sndconfig\" sau khi cài đặt để cấu hìnhcard âm "
"thanh"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Không phát hiện được card âm thanh nào. Hãy thử \"harddrake\" sau khi cài đặt"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Giao diện đồ họa"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Mạng & Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Proxies"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "đã cấu hình"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Mức Bảo Mật"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Tường lửa"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "Đã kích hoạt"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "Đã tắt"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "Chưa đặt cấu hình cho X. Bạn có chắc là muốn như vậy không ?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1531,17 +1524,17 @@ msgstr ""
"Với mức bảo mật này, chỉ người quản trị mới có quyền truy cậpvào các tập tin "
"trong phân vùng Windows."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Nạp một đĩa mềm trắng vào ổ %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Đang tạo đĩa mềm cài đặt tự động"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1552,12 +1545,12 @@ msgstr ""
"\n"
"Bạn thực sự muốn thoát ra bây giờ?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Chúc mừng"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Khởi động lại"
@@ -1693,3 +1686,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Thoát ra"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/wa.po b/perl-install/install/share/po/wa.po
index 421249443..f0ee2ed5e 100644
--- a/perl-install/install/share/po/wa.po
+++ b/perl-install/install/share/po/wa.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-21 04:07+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Walloon (http://www.transifex.com/projects/p/mageia/language/"
@@ -94,87 +94,82 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "Plake lazer"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "Rantoele (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "Rantoele (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "Rantoele (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "Hårdêye do muroe?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "Li hårdêye doet cmincî avou «ftp://» ou «http://»"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "Dj' atôtche li waibe da %s po-z aveur li djivêye des muroes k' i gn a"
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr ""
"Dji n' a savou atôtchî l' waibe da %s po-z aveur li djivêye des muroes k' i "
"gn a"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Tchoezixhoz on muroe po nd aberweter des pacaedjes foû"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "Apontiaedje NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "Tapez l' no d' lodjoe eyet l' ridant di vosse sopoirt NFS"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "I manke li no d' lodjoe"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "Li ridant doet cmincî avou «/»"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "No d' lodjoe do montaedje NFS?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "Ridant"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "Di rawete"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
@@ -183,84 +178,84 @@ msgstr ""
"Dji n' sai trover l' djivêye di fitchîs so ç' muroe ci. Acertinez vs ki "
"l' eplaeçmint est corek."
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr ""
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "Dji cwir après les pacaedjes ki sont ddja astalés..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Dji cwir après les pacaedjes a mete a djoû"
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "Dji oistêye des pacaedjes divant d' fé l' metaedje a djoû..."
@@ -310,7 +305,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "Rantoele"
@@ -360,7 +355,7 @@ msgstr "Astalaedje"
msgid "Configuration"
msgstr "Apontiaedje"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "Vos dvoz abwesner eto %s"
@@ -384,22 +379,22 @@ msgstr "Metant li rantoele en alaedje"
msgid "Bringing down the network"
msgstr "Dj' arestêye li rantoele"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr ""
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr ""
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "Dji copeye sacwants pacaedjes sol deure plake po pus tård"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "Dji copeye..."
@@ -446,34 +441,34 @@ msgstr ""
msgid "No description"
msgstr "Nou discrijhaedje"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
"%s"
msgstr ""
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "Åk n' a nén stî:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "I gn a-st avou èn aroke moirt: %s."
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr ""
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "I gn a-st avou %d transaccions d' astalaedje k' ont fwait berwete"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr ""
@@ -556,33 +551,33 @@ msgstr "Usteyes pol conzôle"
msgid "Editors, shells, file tools, terminals"
msgstr "Aspougneus, shells, usteyes po fitchîs, terminås"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "Programaedje"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "Livreyes di programaedje C et C++, programes et fitchîs *.h"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "Documintåcion"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Lives et Howtos so GNU/Linux et les libes programes"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Li «Linux Standard Base». Sopoirt po les programes tîces"
@@ -713,9 +708,9 @@ msgid "Graphical Environment"
msgstr "Evironmint grafike"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "Posse éndjolrece KDE"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "Posse éndjolrece"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -799,62 +794,50 @@ msgstr ""
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "Ôtes sicribannes grafikes"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr ""
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "Usteyes"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "Sierveu SSH"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Sierveu d' apontiaedje då lon Webmin"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "Usteyes rantoele/Corwaitaedje"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "Usteyes di corwaitaedje, contaedje des process, tcpdump, nmap, ..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Macreas Mageia"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "Macreas po-z apontyî on sierveu"
@@ -868,7 +851,7 @@ msgstr ""
"Åk n' a nén stî, et dji n' sai cmint m' saetchî l' cou foû des\n"
"strons. Si vos continouwez, vos dvroz tirer vosse plan tot seu."
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -914,7 +897,7 @@ msgstr ""
"astalåcion e môde tecse. Po çoula, tchoûkîz sol tape «F1» a l' enondaedje\n"
"et poy tapez «text»."
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr ""
@@ -1113,29 +1096,29 @@ msgstr ""
msgid "(estimating...)"
msgstr ""
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d pacaedje"
msgstr[1] "%d pacaedjes"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "Rascourti éndjolreye"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "Apontyî"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "nén apontyî"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1145,7 +1128,7 @@ msgstr ""
"Si vos vloz passer houte di sacwants d' zels, vos les ploz asteure "
"distchoezi."
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1158,7 +1141,7 @@ msgstr ""
"L' astalaedje si frè-st adon a pårti del deure plake, eyet les pacaedjes "
"vont dmorer disponibes on côp ki l' sistinme serè astalé."
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "Copyî les plakes lazer en etir"
@@ -1234,12 +1217,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "Apontiant les éndjins IDE"
#: steps_interactive.pm:354
@@ -1416,7 +1399,7 @@ msgstr ""
"Acertinez vs ki l' sopoirt di metaedje a djoû des modules est dins l' lijheu "
"%s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "Metaedjes a djoû"
@@ -1440,7 +1423,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, c-format
+msgid "Failure when adding medium"
+msgstr ""
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "Rissayî"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1461,28 +1454,28 @@ msgstr ""
"Voloz vs astaler les pacaedjes metous a djoû?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%s so %s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "Éndjolreye"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "Cåte son"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "Avoz vs ene cåte son ISA?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
@@ -1491,52 +1484,52 @@ msgstr ""
"Enondez «alsaconf» ou «sndconfig» après l' astalåcion po-z apontyî vosse "
"cåte son"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Nole cåte son di detectêye. Sayîz «harddrake» après l' astalåcion"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "Eterface grafike"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "Rantoele locåle & daegnrece"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "Procsis"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "apontyî"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "Livea di såvrité"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "Côpe feu"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "metou en alaedje"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "dismetou"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""
@@ -1544,17 +1537,17 @@ msgstr ""
"Estoz vs seur di voleur çoula?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr ""
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr ""
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
@@ -1563,17 +1556,17 @@ msgstr ""
"Dins ç' livea di såvrité chal, l' accès åzès fitchîs des pårticions Windows "
"n' est possibe ki po l' manaedjeu di l' éndjole."
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Metoz ene blanke plakete divins li lijheu %s"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "Dji fé li plakete d' enondaedje otomatike"
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1584,12 +1577,12 @@ msgstr ""
"\n"
"Voloz vs vormint cwiter asteure?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "Complumints"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "Renonder l' éndjole"
@@ -1725,3 +1718,12 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "Moussî foû"
+
+#~ msgid "CD-ROM"
+#~ msgstr "Plake lazer"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "Posse éndjolrece KDE"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/install/share/po/zh_CN.po b/perl-install/install/share/po/zh_CN.po
index b0931b1f9..3ac204b5c 100644
--- a/perl-install/install/share/po/zh_CN.po
+++ b/perl-install/install/share/po/zh_CN.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-02-13 05:25+0000\n"
"Last-Translator: xiao wenming <xwm-citcc5@hotmail.com>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mageia/"
@@ -94,169 +94,164 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "网络 (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "网络 (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "网络 (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "镜像的 URL?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL 必须以 ftp:// 或 http:// 开始"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "正在连接 %s 网站获得可用镜像的列表..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "连接 %s 网站以获得可用镜像的列表失败"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "选择一个镜像网站来取得软件包"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "NFS 设置"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "请输入您 NFS 介质的主机名和目录"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "缺少主机名"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "目录必须以“/”开头"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "NFS 挂载的主机名?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "目录"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "赠品"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "无法在此镜像上找到软件包列表文件。请确定位置正确。"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr ""
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr ""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr ""
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" 包含非自由软件。\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
"ATI/AMD graphic cards, some network cards, some RAID cards, ...)"
msgstr ""
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr ""
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr ""
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr ""
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr ""
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "正在查找已经安装过的软件包..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "正在寻找可升级的程序..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "正在删除由于更新所致的软件包..."
@@ -305,7 +300,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "网络"
@@ -355,7 +350,7 @@ msgstr "安装"
msgid "Configuration"
msgstr "配置"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "您还必须格式化 %s"
@@ -379,22 +374,22 @@ msgstr "正在启动网络"
msgid "Bringing down the network"
msgstr "正在禁用网络"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "请稍候,正在获取文件"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "无法添加介质"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "正在将软件包复制到磁盘中以备后用"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "复制进行中"
@@ -439,7 +434,7 @@ msgstr "未找到介质“%s”的 XML 信息,只返回软件包 %s 的部分
msgid "No description"
msgstr "无描述"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -448,27 +443,27 @@ msgstr ""
"%s 所请求的某些软件包无法安装:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "发生了一个错误:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "发生了一个致命错误: %s。"
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "不要再次询问"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d 个安装交易失败"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "安装软件包失败:"
@@ -549,33 +544,33 @@ msgstr "控制台工具"
msgid "Editors, shells, file tools, terminals"
msgstr "编辑器, shell, 文件工具, 终端"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "开发"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C 和 C++ 开发库, 程序及头文件"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "文档"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "有关 Linux 和自由软件的书籍和指南"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "Linux Standard Base。第三方应用程序支持"
@@ -706,9 +701,9 @@ msgid "Graphical Environment"
msgstr "图形环境"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE 工作站"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "工作站"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -788,62 +783,50 @@ msgstr "一种轻量级的快速图形环境"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasma 桌面"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "其它图形桌面"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, 等等"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "工具"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH 服务器"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin 远程配置服务器"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "网络工具/监视"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "监视工具、进程统计、tcpdump、nmap……"
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia 向导"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "服务器配置向导"
@@ -857,7 +840,7 @@ msgstr ""
"发生错误, 可是我不知道该怎样处理才好。\n"
"继续下去会怎样就看您的运气了。"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -900,7 +883,7 @@ msgstr ""
"如果您真的遇到问题的话,可以试试文本安装。要进入文本安装,请在启动时按“F1”,"
"然后输入“text”。"
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "介质选择"
@@ -1097,28 +1080,28 @@ msgstr "剩余时间:"
msgid "(estimating...)"
msgstr "(正在估计...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d 个软件包"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "摘要"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "配置"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "未配置"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1127,7 +1110,7 @@ msgstr ""
"找到了下列安装介质。\n"
"如果您想要跳过其中一些, 请不要选中。"
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1139,7 +1122,7 @@ msgstr ""
"然后,安装将会从硬盘继续进行。当系统安装完成后,软件包仍然保留,以供日后添加"
"软件使用。"
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "复制整张光盘"
@@ -1220,12 +1203,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "配置 IDE"
#: steps_interactive.pm:354
@@ -1394,7 +1377,7 @@ msgstr "安装后的配置"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "请确定更新模块介质位于驱动器 %s"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "更新"
@@ -1418,7 +1401,17 @@ msgid ""
"Do you want to setup the update media?"
msgstr ""
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "无法添加介质"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "重试"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1438,113 +1431,113 @@ msgstr ""
"您是否要安装升级包?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "位于 %2$s 上的 %1$s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "硬件"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "声卡"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "您有 ISA 声卡吗?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr "安装之后运行“alsaconf”或“sndconfig”来配置您的声卡"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "没有检测到声卡。请在安装之后尝试“Drak 硬件配置”。"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "图形界面"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "网络和 Internet"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "代理服务器"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "已配置"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "安全级别"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "防火墙"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "已激活"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "已禁用"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "您还没有配置过 X。您真的想要这样吗?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "正在准备安装初始安装程序..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "请稍候,这可能需要一会儿..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr "在此安全级别中, 只有管理员才能访问 Windows 分区中的文件。"
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "请在驱动器 %s 中插入一张空白软盘"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "正在创建自动安装软盘..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1555,12 +1548,12 @@ msgstr ""
"\n"
"您真的要现在退出吗?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "恭喜"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "重新启动"
@@ -1697,5 +1690,17 @@ msgid ""
"Exit"
msgstr "退出"
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE 工作站"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasma 桌面"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
+
#~ msgid "Preparing bootloader..."
#~ msgstr "正在准备引导程序..."
diff --git a/perl-install/install/share/po/zh_TW.po b/perl-install/install/share/po/zh_TW.po
index 421e323af..b8b5441ca 100644
--- a/perl-install/install/share/po/zh_TW.po
+++ b/perl-install/install/share/po/zh_TW.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-20 22:53+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-28 13:40+0000\n"
"Last-Translator: You-Cheng Hsieh <yochenhsieh@gmail.com>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mageia/"
@@ -90,129 +90,124 @@ msgstr ""
#: any.pm:162
#, c-format
-msgid "CD-ROM"
-msgstr "CD-ROM"
-
-#: any.pm:163
-#, c-format
msgid "Network (HTTP)"
msgstr "網路 (HTTP)"
-#: any.pm:164
+#: any.pm:163
#, c-format
msgid "Network (FTP)"
msgstr "網路 (FTP)"
-#: any.pm:165
+#: any.pm:164
#, c-format
msgid "Network (NFS)"
msgstr "網路 (NFS)"
-#: any.pm:224
+#: any.pm:223
#, c-format
msgid "URL of the mirror?"
msgstr "映像站的 URL?"
-#: any.pm:230
+#: any.pm:229
#, c-format
msgid "URL must start with ftp:// or http://"
msgstr "URL 開頭必須是 ftp:// 或 http://"
-#: any.pm:248
+#: any.pm:247
#, c-format
msgid "Contacting %s web site to get the list of available mirrors..."
msgstr "請到 %s 網站取得映射站台清單..."
-#: any.pm:253
+#: any.pm:252
#, c-format
msgid "Failed contacting %s web site to get the list of available mirrors"
msgstr "到 %s 網站取得映射站台清單失敗"
-#: any.pm:263
+#: any.pm:262
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "選取要用來抓取程式套件檔的 FTP 映射站台"
-#: any.pm:293
+#: any.pm:290
#, c-format
msgid "NFS setup"
msgstr "設定 NFS"
-#: any.pm:294
+#: any.pm:291
#, c-format
msgid "Please enter the hostname and directory of your NFS media"
msgstr "請輸入您的 NFS 媒介的主機和目錄名稱"
-#: any.pm:298
+#: any.pm:295
#, c-format
msgid "Hostname missing"
msgstr "沒有主機名稱"
-#: any.pm:299
+#: any.pm:296
#, c-format
msgid "Directory must begin with \"/\""
msgstr "目錄必須以「/」開始"
-#: any.pm:303
+#: any.pm:300
#, c-format
msgid "Hostname of the NFS mount ?"
msgstr "NFS 掛載點的主機名稱?"
-#: any.pm:304
+#: any.pm:301
#, c-format
msgid "Directory"
msgstr "目錄"
-#: any.pm:334
+#: any.pm:331
#, c-format
msgid "Supplementary"
msgstr "補充"
-#: any.pm:369
+#: any.pm:366
#, c-format
msgid ""
"Can't find a package list file on this mirror. Make sure the location is "
"correct."
msgstr "無法在這個映像站上找到套件列表檔。請確定位址是正確的。"
-#: any.pm:394
+#: any.pm:391
#, c-format
msgid "Core Release"
msgstr ""
-#: any.pm:396
+#: any.pm:393
#, c-format
msgid "Tainted Release"
msgstr ""
-#: any.pm:398
+#: any.pm:395
#, c-format
msgid "Nonfree Release"
msgstr ""
-#: any.pm:436
+#: any.pm:433
#, c-format
msgid ""
"Some hardware on your machine needs some non free firmwares in order for the "
"free software drivers to work."
msgstr "您的機器上的某些硬體需要非自由的軔體才能夠讓自由的驅動程式運作。"
-#: any.pm:437
+#: any.pm:434
#, c-format
msgid "You should enable \"%s\""
msgstr "您應該啟用 \"%s\""
-#: any.pm:475
+#: any.pm:472
#, c-format
msgid "\"%s\" contains the various pieces of the systems and its applications"
msgstr "\"%s\" 包含各種系統元件和應用程式"
-#: any.pm:476
+#: any.pm:473
#, c-format
msgid "\"%s\" contains non free software.\n"
msgstr "\"%s\" 包含非自由的軟體套件。\n"
-#: any.pm:477
+#: any.pm:474
#, c-format
msgid ""
"It also contains firmwares needed for certain devices to operate (eg: some "
@@ -221,40 +216,40 @@ msgstr ""
"它也包含某些裝置運作時所需要的軔體(如:某些 ATI/AMD 顯示卡、網路卡、RAID介面"
"卡...)"
-#: any.pm:478
+#: any.pm:475
#, c-format
msgid ""
"\"%s\" contains software that can not be distributed in every country due to "
"software patents."
msgstr "\"%s\" 包含因為軟體專利而無法在所有國家散佈的軟體套件。"
-#: any.pm:479
+#: any.pm:476
#, c-format
msgid ""
"It also contains software from \"%s\" rebuild with additional capabilities."
msgstr "它也包含了 \"%s\" 中以不同方式編譯的軟體套件。"
-#: any.pm:485
+#: any.pm:482
#, c-format
msgid "Here you can enable more media if you want."
msgstr "您可以在這裡啟用更多媒體。"
-#: any.pm:502
+#: any.pm:499
#, c-format
msgid "This medium provides package updates for medium \"%s\""
msgstr "這個媒體包含 \"%s\" 媒體的套件更新"
-#: any.pm:600
+#: any.pm:597
#, c-format
msgid "Looking at packages already installed..."
msgstr "正在查看已經安裝過的套件..."
-#: any.pm:634
+#: any.pm:631
#, c-format
msgid "Finding packages to upgrade..."
msgstr "正在搜尋要升級的套件..."
-#: any.pm:653
+#: any.pm:650
#, c-format
msgid "Removing packages prior to upgrade..."
msgstr "移除套件以更新..."
@@ -303,7 +298,7 @@ msgstr "FTP"
msgid "NFS"
msgstr "NFS"
-#: any.pm:1382 steps_interactive.pm:948
+#: any.pm:1382 steps_interactive.pm:973
#, c-format
msgid "Network"
msgstr "網路"
@@ -353,7 +348,7 @@ msgstr "安裝"
msgid "Configuration"
msgstr "組態設定"
-#: install2.pm:210
+#: install2.pm:211
#, c-format
msgid "You must also format %s"
msgstr "您也必須要格式化 %s"
@@ -377,22 +372,22 @@ msgstr "啟動網路"
msgid "Bringing down the network"
msgstr "關閉網路"
-#: media.pm:404
+#: media.pm:407
#, c-format
msgid "Please wait, retrieving file"
msgstr "請稍後,正在取回檔案"
-#: media.pm:712
+#: media.pm:714
#, c-format
msgid "unable to add medium"
msgstr "無法新增媒體"
-#: media.pm:752
+#: media.pm:754
#, c-format
msgid "Copying some packages on disks for future use"
msgstr "正在複製一些程式套件到磁碟以供稍後使用"
-#: media.pm:805
+#: media.pm:807
#, c-format
msgid "Copying in progress"
msgstr "複製進行中"
@@ -437,7 +432,7 @@ msgstr "\"%s\" 媒體沒有 XML 資訊,所以 %s 套件只會有部份內容
msgid "No description"
msgstr "沒有描述"
-#: pkgs.pm:286
+#: pkgs.pm:288
#, c-format
msgid ""
"Some packages requested by %s cannot be installed:\n"
@@ -446,27 +441,27 @@ msgstr ""
"無法安裝 %s 要求的某些套件:\n"
"%s"
-#: pkgs.pm:382 pkgs.pm:409
+#: pkgs.pm:384 pkgs.pm:411
#, c-format
msgid "An error occurred:"
msgstr "發生一個錯誤:"
-#: pkgs.pm:401
+#: pkgs.pm:403
#, c-format
msgid "A fatal error occurred: %s."
msgstr "發生了一個致命的錯誤:%s。"
-#: pkgs.pm:895 pkgs.pm:937
+#: pkgs.pm:897 pkgs.pm:939
#, c-format
msgid "Do not ask again"
msgstr "不要再詢問"
-#: pkgs.pm:911
+#: pkgs.pm:913
#, c-format
msgid "%d installation transactions failed"
msgstr "%d 個安裝執行失敗"
-#: pkgs.pm:912
+#: pkgs.pm:914
#, c-format
msgid "Installation of packages failed:"
msgstr "安裝套件失敗:"
@@ -547,33 +542,33 @@ msgstr "Console 工具"
msgid "Editors, shells, file tools, terminals"
msgstr "編輯器、shell、檔案工具、終端機"
-#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:206
-#: share/meta-task/compssUsers.pl:208
+#: share/meta-task/compssUsers.pl:58 share/meta-task/compssUsers.pl:201
+#: share/meta-task/compssUsers.pl:203
#, c-format
msgid "Development"
msgstr "程式開發"
-#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:209
+#: share/meta-task/compssUsers.pl:59 share/meta-task/compssUsers.pl:204
#, c-format
msgid "C and C++ development libraries, programs and include files"
msgstr "C/C++ 發展環境,包含編譯器、程式庫與及一些引入檔"
-#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:213
+#: share/meta-task/compssUsers.pl:63 share/meta-task/compssUsers.pl:208
#, c-format
msgid "Documentation"
msgstr "文件檔案"
-#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:214
+#: share/meta-task/compssUsers.pl:64 share/meta-task/compssUsers.pl:209
#, c-format
msgid "Books and Howto's on Linux and Free Software"
msgstr "Linux 系統與自由軟體的書籍、HOWTO 文件"
-#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:217
+#: share/meta-task/compssUsers.pl:68 share/meta-task/compssUsers.pl:212
#, c-format
msgid "LSB"
msgstr "LSB"
-#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:218
+#: share/meta-task/compssUsers.pl:69 share/meta-task/compssUsers.pl:213
#, c-format
msgid "Linux Standard Base. Third party applications support"
msgstr "LSB 的支援,包含第三類協力廠商軟體支援"
@@ -704,9 +699,9 @@ msgid "Graphical Environment"
msgstr "圖形環境"
#: share/meta-task/compssUsers.pl:152
-#, c-format
-msgid "KDE Workstation"
-msgstr "KDE 工作站"
+#, fuzzy, c-format
+msgid "Plasma Workstation"
+msgstr "工作站"
#: share/meta-task/compssUsers.pl:153
#, c-format
@@ -786,62 +781,50 @@ msgstr "一個輕量且快速的圖形環境"
#: share/meta-task/compssUsers.pl:194
#, c-format
-msgid "Plasma Desktop"
-msgstr "Plasma 桌面"
-
-#: share/meta-task/compssUsers.pl:195
-#, c-format
-msgid ""
-"The Plasma Desktop, the basic graphical environment with a collection of "
-"accompanying tools"
-msgstr ""
-
-#: share/meta-task/compssUsers.pl:199
-#, c-format
msgid "Other Graphical Desktops"
msgstr "其他圖型桌面軟體"
-#: share/meta-task/compssUsers.pl:200
+#: share/meta-task/compssUsers.pl:195
#, c-format
msgid "Window Maker, Fvwm, etc"
msgstr "Window Maker, Fvwm, 等"
-#: share/meta-task/compssUsers.pl:223
+#: share/meta-task/compssUsers.pl:218
#, c-format
msgid "Utilities"
msgstr "工具軟體"
-#: share/meta-task/compssUsers.pl:225 share/meta-task/compssUsers.pl:226
+#: share/meta-task/compssUsers.pl:220 share/meta-task/compssUsers.pl:221
#, c-format
msgid "SSH Server"
msgstr "SSH 伺服主機"
-#: share/meta-task/compssUsers.pl:230
+#: share/meta-task/compssUsers.pl:225
#, c-format
msgid "Webmin"
msgstr "Webmin"
-#: share/meta-task/compssUsers.pl:231
+#: share/meta-task/compssUsers.pl:226
#, c-format
msgid "Webmin Remote Configuration Server"
msgstr "Webmin 遠端設定伺服器"
-#: share/meta-task/compssUsers.pl:235
+#: share/meta-task/compssUsers.pl:230
#, c-format
msgid "Network Utilities/Monitoring"
msgstr "網路工具/監控"
-#: share/meta-task/compssUsers.pl:236
+#: share/meta-task/compssUsers.pl:231
#, c-format
msgid "Monitoring tools, processes accounting, tcpdump, nmap, ..."
msgstr "監控工具、程序管理、tcpdump、nmap..."
-#: share/meta-task/compssUsers.pl:240
+#: share/meta-task/compssUsers.pl:235
#, c-format
msgid "Mageia Wizards"
msgstr "Mageia 精靈"
-#: share/meta-task/compssUsers.pl:241
+#: share/meta-task/compssUsers.pl:236
#, c-format
msgid "Wizards to configure server"
msgstr "用來設定伺服器的精靈"
@@ -855,7 +838,7 @@ msgstr ""
"發生了一個錯誤,但我不知道該如何妥善處置它。\n"
"要繼續安裝工作的話請小心。"
-#: steps.pm:458
+#: steps.pm:460
#, c-format
msgid ""
"Some important packages did not get installed properly.\n"
@@ -897,7 +880,7 @@ msgstr ""
"您的系統資源不足,可能在安裝 %s 時會發生問題。如果真的發生問題,您可以試著改"
"用文字介面安裝。只要在用光碟開機後的選單中按下 F1,並輸入 text 即可。"
-#: steps_gtk.pm:242 steps_gtk.pm:757
+#: steps_gtk.pm:242 steps_gtk.pm:754
#, c-format
msgid "Media Selection"
msgstr "選擇安裝媒介"
@@ -1094,28 +1077,28 @@ msgstr "剩餘時間:"
msgid "(estimating...)"
msgstr "(正在估計...)"
-#: steps_gtk.pm:631
+#: steps_gtk.pm:627
#, c-format
msgid "%d package"
msgid_plural "%d packages"
msgstr[0] "%d 個套件"
-#: steps_gtk.pm:687 steps_interactive.pm:809 steps_list.pm:43
+#: steps_gtk.pm:684 steps_interactive.pm:834 steps_list.pm:43
#, c-format
msgid "Summary"
msgstr "總結"
-#: steps_gtk.pm:706
+#: steps_gtk.pm:703
#, c-format
msgid "Configure"
msgstr "設定"
-#: steps_gtk.pm:723 steps_interactive.pm:805 steps_interactive.pm:961
+#: steps_gtk.pm:720 steps_interactive.pm:830 steps_interactive.pm:986
#, c-format
msgid "not configured"
msgstr "未被設定"
-#: steps_gtk.pm:766 steps_interactive.pm:315
+#: steps_gtk.pm:763 steps_interactive.pm:315
#, c-format
msgid ""
"The following installation media have been found.\n"
@@ -1124,7 +1107,7 @@ msgstr ""
"已經找到下列的安裝媒介。\n"
"如果您想略過它們,您現在可以將它們取消選取。"
-#: steps_gtk.pm:782 steps_interactive.pm:321
+#: steps_gtk.pm:779 steps_interactive.pm:321
#, c-format
msgid ""
"You have the option to copy the contents of the CDs onto the hard disk drive "
@@ -1136,7 +1119,7 @@ msgstr ""
"件\n"
"在安裝完畢之後仍然可以繼續使用。"
-#: steps_gtk.pm:784 steps_interactive.pm:323
+#: steps_gtk.pm:781 steps_interactive.pm:323
#, c-format
msgid "Copy whole CDs"
msgstr "複製整張光碟"
@@ -1217,12 +1200,12 @@ msgstr ""
#: steps_interactive.pm:264
#, c-format
-msgid "IDE"
-msgstr "IDE"
+msgid "CD/DVD"
+msgstr ""
#: steps_interactive.pm:264
-#, c-format
-msgid "Configuring IDE"
+#, fuzzy, c-format
+msgid "Configuring CD/DVD"
msgstr "正在設定 IDE"
#: steps_interactive.pm:354
@@ -1392,7 +1375,7 @@ msgstr "安裝後的設定"
msgid "Please ensure the Update Modules media is in drive %s"
msgstr "請確定更新模組媒介位於磁碟機 %s 中"
-#: steps_interactive.pm:739 steps_list.pm:47
+#: steps_interactive.pm:739 steps_interactive.pm:769 steps_list.pm:47
#, c-format
msgid "Updates"
msgstr "更新"
@@ -1418,7 +1401,17 @@ msgstr ""
"要設定這些來源,您需要有可運作的網路連線。\n"
"您想要設定更新來源嗎?"
-#: steps_interactive.pm:764
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Failure when adding medium"
+msgstr "無法新增媒體"
+
+#: steps_interactive.pm:762
+#, fuzzy, c-format
+msgid "Retry?"
+msgstr "重試"
+
+#: steps_interactive.pm:770
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -1438,113 +1431,113 @@ msgstr ""
"您想要安裝更新嗎?"
#. -PO: example: lilo-graphic on /dev/hda1
-#: steps_interactive.pm:853
+#: steps_interactive.pm:878
#, c-format
msgid "%s on %s"
msgstr "%2$s 上的 %1$s"
-#: steps_interactive.pm:888 steps_interactive.pm:895 steps_interactive.pm:908
-#: steps_interactive.pm:925 steps_interactive.pm:940
+#: steps_interactive.pm:913 steps_interactive.pm:920 steps_interactive.pm:933
+#: steps_interactive.pm:950 steps_interactive.pm:965
#, c-format
msgid "Hardware"
msgstr "硬體"
-#: steps_interactive.pm:909 steps_interactive.pm:926
+#: steps_interactive.pm:934 steps_interactive.pm:951
#, c-format
msgid "Sound card"
msgstr "音效卡"
-#: steps_interactive.pm:929
+#: steps_interactive.pm:954
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "您有 ISA 音效卡嗎?"
-#: steps_interactive.pm:931
+#: steps_interactive.pm:956
#, c-format
msgid ""
"Run \"alsaconf\" or \"sndconfig\" after installation to configure your sound "
"card"
msgstr "請在安裝完畢後,執行 \"alsaconf\" 或 \"sndconfig\" 來設定您的音效卡"
-#: steps_interactive.pm:933
+#: steps_interactive.pm:958
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "沒偵測到任何音效卡。請在安裝後嘗試 \"harddrake\" 進行設定"
-#: steps_interactive.pm:941
+#: steps_interactive.pm:966
#, c-format
msgid "Graphical interface"
msgstr "圖形介面"
-#: steps_interactive.pm:947 steps_interactive.pm:959
+#: steps_interactive.pm:972 steps_interactive.pm:984
#, c-format
msgid "Network & Internet"
msgstr "網路與網際網路"
-#: steps_interactive.pm:960
+#: steps_interactive.pm:985
#, c-format
msgid "Proxies"
msgstr "代理伺服器"
-#: steps_interactive.pm:961
+#: steps_interactive.pm:986
#, c-format
msgid "configured"
msgstr "已設定"
-#: steps_interactive.pm:971
+#: steps_interactive.pm:996
#, c-format
msgid "Security Level"
msgstr "安全層級"
-#: steps_interactive.pm:991
+#: steps_interactive.pm:1016
#, c-format
msgid "Firewall"
msgstr "防火牆"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "activated"
msgstr "已啟用"
-#: steps_interactive.pm:995
+#: steps_interactive.pm:1020
#, c-format
msgid "disabled"
msgstr "已停用"
-#: steps_interactive.pm:1009
+#: steps_interactive.pm:1034
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr "您尚未設定 X。您確定您真的要這樣做?"
#. -PO: This is NOT the boot loader (just the kernel initrds)!!!!
-#: steps_interactive.pm:1059
+#: steps_interactive.pm:1065
#, c-format
msgid "Preparing initial startup program..."
msgstr "正在準備初始化啟動程式..."
-#: steps_interactive.pm:1041
+#: steps_interactive.pm:1066
#, c-format
msgid "Be patient, this may take a while..."
msgstr "請耐心等候,這要花一些時間..."
-#: steps_interactive.pm:1057
+#: steps_interactive.pm:1082
#, c-format
msgid ""
"In this security level, access to the files in the Windows partition is "
"restricted to the administrator."
msgstr "在這個安全層級中,只有管理者能夠存取位於 Windows 分割區的檔案。"
-#: steps_interactive.pm:1089
+#: steps_interactive.pm:1114
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "請在 %s 中插入一片空白磁片"
-#: steps_interactive.pm:1091
+#: steps_interactive.pm:1116
#, c-format
msgid "Creating auto install floppy..."
msgstr "正在製作自動安裝磁片..."
-#: steps_interactive.pm:1102
+#: steps_interactive.pm:1127
#, c-format
msgid ""
"Some steps are not completed.\n"
@@ -1555,12 +1548,12 @@ msgstr ""
"\n"
"您確定要結束安裝程式?"
-#: steps_interactive.pm:1112
+#: steps_interactive.pm:1137
#, c-format
msgid "Congratulations"
msgstr "恭喜"
-#: steps_interactive.pm:1115
+#: steps_interactive.pm:1140
#, c-format
msgid "Reboot"
msgstr "重新開機"
@@ -1696,3 +1689,15 @@ msgid ""
"_: Keep these entry short\n"
"Exit"
msgstr "離開"
+
+#~ msgid "CD-ROM"
+#~ msgstr "CD-ROM"
+
+#~ msgid "KDE Workstation"
+#~ msgstr "KDE 工作站"
+
+#~ msgid "Plasma Desktop"
+#~ msgstr "Plasma 桌面"
+
+#~ msgid "IDE"
+#~ msgstr "IDE"
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 4cd9f7af3..ac8644345 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-af\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-04-21 17:33+0200\n"
"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
"Language-Team: Afrikaans\n"
@@ -20,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -29,12 +29,12 @@ msgstr ""
msgid "Please wait"
msgstr "Wag asb."
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Besig met installasie van herlaaistelsel"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -45,12 +45,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -65,218 +65,218 @@ msgstr ""
"\n"
"Vanaf watter hardeyskyf geskied die selflaai?"
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Besig met installasie van herlaaistelsel"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: any.pm:351
+#: any.pm:355
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Eerste sektor van skyf (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Eerste sektor van skyf (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Eerste sektor van die 'root'-partisie"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Op Disket"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Mis hierdie stap"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Herlaaistelsel"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Herlaaistelsel om te gebruik"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Wagperiode voor verstekstelsel gelaai word"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Bekragtig ACPI"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Bekragtig ACPI"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Bekragtig ACPI"
-#: any.pm:418
+#: any.pm:422
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Bekragtig ACPI"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sekuriteit"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Wagwoord"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: any.pm:425
+#: any.pm:429
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "U kan nie 'n lêerstelsel met enkripsie vir hegpunt %s gebruik nie."
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Beeld"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "'Root'"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Aanlas"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Videomodus"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, fuzzy, c-format
msgid "Network profile"
msgstr "Netwerkkoppelvlak"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Naam"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Verstek"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Leë etiket word nie toegelaat nie"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "U moet 'n kernel-beeld spesifiseer"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "U moet 'n 'root-partisie spesifiseer"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Ander bedryfstelsel (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -285,47 +285,47 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "toegang na X-programme"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "toegang tot rpm-nutsprogramme"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "laat \"su\" toe"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "toegang tot administratiewe-lêers"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "toegang na netwerk-nutsprogramme"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "toegang na kompilasie-gereedskap"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: any.pm:830
+#: any.pm:875
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -333,149 +333,149 @@ msgid ""
msgstr ""
"Die gebruikernaam mag alleenlik uit kleinletter, nommers, '-' en '_' bestaan"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Hierdie naam is te lank"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Gebruiker ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Groep ID"
-#: any.pm:839
+#: any.pm:884
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Opsie %s moet 'n nommer wees!"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "Gebruikernaam"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Kies 'root' se wagwoord"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Ikoon"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Regte naam"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Aanteken naam"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Dop"
-#: any.pm:925
+#: any.pm:970
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "wag asseblief gedurende 'ttmkfdir'..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Outo-inteken"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Ek kan u rekenaar so opstel om een gebruiker outomaties in te teken."
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Wil u hierdie funksie gebruik?"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Vrystelling: "
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Sluit af"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Lisensieooreenkoms"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Verlaat"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Beskik u oor nog?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Aanvaar"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Weier"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Kies asb. 'n taal om te gebruik"
-#: any.pm:1106
+#: any.pm:1151
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -483,87 +483,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Alle tale"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Alle tale"
-#: any.pm:1142
+#: any.pm:1187
#, fuzzy, c-format
msgid "Language choice"
msgstr "selfdoen"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Land / Omgewing"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Kies asseblief u land"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier is die volle lys van beskikbare lande"
-#: any.pm:1200
+#: any.pm:1245
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Ander poorte"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Gevorderd"
-#: any.pm:1206
+#: any.pm:1251
#, fuzzy, c-format
msgid "Input method:"
msgstr "Netwerkmetode:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Geen"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Geen deling"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Laat alle gebruikers toe"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Aangepaste"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -578,32 +578,32 @@ msgstr ""
"\n"
"\"Aangepaste\" laat toe vir per-gebruiker verstellings.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "U kan uitvoer deur NFS of SMB te gebruik. Kies watter u wil gebruik."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Loods userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -613,54 +613,54 @@ msgstr ""
"U kan van 'userdrake' gebruik maak om gebruikers by heirdie\n"
"groep te voeg."
-#: any.pm:1458
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Tydsone"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Hardewareklok gestel vir GMT"
-#: any.pm:1528
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Hardewareklok gestel vir GMT"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP-bediener"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Outo-tydsinkronisasie met NTP"
@@ -987,7 +987,7 @@ msgstr "Domein-administrarteur se Wagwoord"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1027,12 +1027,12 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "U kan nie die herlaaistelsel op 'n %s partisie installeer nie\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1041,7 +1041,7 @@ msgstr ""
"U herlaaistelsel se konfigurasie moet opgedateer word omdat 'n partisie se "
"nommer verander het"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1050,7 +1050,7 @@ msgstr ""
"Die herlaaistelsel kan nie korrek geïnstalleer word nie. U moet in redding-"
"modus laai, kies dan \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Her-installeer herlaaistelsel"
@@ -1080,17 +1080,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minute"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minuut"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d sekondes"
@@ -1108,27 +1114,27 @@ msgstr ""
"is as 'n WebDAV-bediener). Indien u 'n 'WebDAV' hegpunt\n"
"wil heg, kies \"Nuwe\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nuwe"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Ontheg"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Heg"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Bediener"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1136,25 +1142,25 @@ msgstr "Bediener"
msgid "Mount point"
msgstr "Hegpunt"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opsies"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Verwyder"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Klaar"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1170,17 +1176,17 @@ msgstr "Klaar"
msgid "Error"
msgstr "Fout"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Voorsien asseblief die WebDAV-bediener se URL"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Die URL moet begin met http:// or https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1191,33 +1197,33 @@ msgstr "Die URL moet begin met http:// or https://"
msgid "Warning"
msgstr "Waarskuwing"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Wil u op hierdie knoppie klik?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Bediener: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Hegpunt: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Partisionering"
@@ -1248,9 +1254,9 @@ msgstr "Verlaat"
msgid "Continue"
msgstr "Gaan voort"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Hulp"
@@ -1281,63 +1287,63 @@ msgstr "Detail"
msgid "No hard disk drives found"
msgstr "Geen hardeskywe kon gevind word nie"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Onbekend"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "Verlaat"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Ruilarea"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Ander"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Leeg"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Lêerstelsel-tipes:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Hierdie partisie se grootte kan nie verstel word nie"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Gebruik ``%s'' instede."
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1386,7 +1392,7 @@ msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "U moet herlaai om die partisielys-veranderinge te aktiveer"
@@ -1667,7 +1673,7 @@ msgid "Where do you want to mount %s?"
msgstr "Waar wil u toestel %s heg?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Grootteverandering"
@@ -1712,7 +1718,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, fuzzy, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2149,8 +2155,8 @@ msgstr "Verander tipe"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Kanselleer"
@@ -2242,7 +2248,7 @@ msgstr ""
"'n Fout het voorgekom - geen geldige toestelle om die nuwe lêerstelsels op "
"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "U moet oor 'n ESP FAT32 partisie wat as /boot/EFI geheg is, beskik"
@@ -2455,7 +2461,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2466,7 +2472,7 @@ msgstr ""
"Skep 'n partisie of kliek op 'n bestaande een.\n"
"Kies dan Hegpunt en stel dit dan '/'."
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2477,42 +2483,42 @@ msgstr ""
"\n"
"Wil u steeds voortgaan?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Gebruik beskikbare spasie"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Tekort aan oop spasie vir die nuwe partisies"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Gebruik bestaande partisies"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Daar is geen bestaande partisies om te gebruik nie"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Bereken die grootte van die Microsoft Windows®partisie"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Gebruik die beskikbare spasie op die Windows-partisie"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Watter partisie se grootte wil u verander?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, fuzzy, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2520,12 +2526,12 @@ msgid ""
"the %s installation."
msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2560,75 +2566,75 @@ msgstr ""
"Andersins, klik op %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Volgende"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Partisionering"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Watter grootte wil u vir Microsoft Windows® behou? partisie %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Grootte"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Microsoft Windows®lêerstelselgrense word bereken"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-grootteverandering het gefaal: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Daar is geen FAT partisies om te verander nie(nie genoeg spasie nie)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Verwyder Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "Wis hele skyf"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Gespesialiseerde skyfpartisionering"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Gebruik fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2637,42 +2643,42 @@ msgstr ""
"U het nou partisie %s partisioneer.\n"
"Wanneer u klaar is, stoor u veranderinge met 'w'."
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Verlaat"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Ek kon geen plek vir installasie vind nie."
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partisionering het misluk: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
@@ -2715,22 +2721,22 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Hegpunte kan slegs alfa-numeriese karakters bevat"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2741,7 +2747,7 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:450
+#: fsedit.pm:453
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2751,7 +2757,7 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2761,12 +2767,12 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2777,19 +2783,19 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "U kan nie 'n lêerstelsel met enkripsie vir hegpunt %s gebruik nie."
-#: fsedit.pm:479
+#: fsedit.pm:482
#, fuzzy, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: fsedit.pm:481
+#: fsedit.pm:484
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2801,24 +2807,24 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lêergids moet altyd in die wortellêerstelsel bly"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "U benodig 'n ware lêerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie vir outo-toekenning beskikbaar nie"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Niks om te doen nie"
@@ -2828,238 +2834,238 @@ msgstr "Niks om te doen nie"
msgid "SATA controllers"
msgstr "SATA-beheerders"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID-beheerders"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA beheerders"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "Model kaart:"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-beheerders"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-beheerders"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-beheerders"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB beheerders"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, fuzzy, c-format
msgid "USB ports"
msgstr "USB-drukker"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-beheerders"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Brûe en stelselbeheerders"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disket"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Skyf"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD-skrywers"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Magnetiese band"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, fuzzy, c-format
msgid "AGP controllers"
msgstr "USB beheerders"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Videokaart"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV-kaart"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Ander MultiMedia-toestelle"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Klankkaart"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webkamera"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Verwerkers"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN toestelle"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernetkaart"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL toestelle"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Geheue"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Drukker"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Stuurstok"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Sleutelbord"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Muis"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, fuzzy, c-format
msgid "UPS"
msgstr "CUPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Skandeerder"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Onbekend/Ander"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3310,19 +3316,19 @@ msgstr "Tipe instemmer"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "OK"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ja"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3353,22 +3359,22 @@ msgstr "Voltooi"
msgid "Previous"
msgstr "Vorige"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, fuzzy, c-format
msgid "No file chosen"
msgstr "bestands-kieser"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Tuisgids nie beskikbaar nie."
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such directory"
msgstr "Nie 'n gids nie"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Nee soos lêer"
@@ -4650,7 +4656,7 @@ msgstr "Zambië"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
@@ -5204,7 +5210,7 @@ msgstr "Laat toe/Weier vir 'root' om direk in te teken."
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Laat toe/Verbied die vertoon van gebruikername op vertoonbestuurders\n"
" (display managers, bv. sddm en gdm)."
@@ -5574,8 +5580,8 @@ msgid "Direct root login"
msgstr "Direkte 'root' inteken"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Wys gebruikers op vertoonbestuurders (sddm en gdm)"
#: security/l10n.pm:20
@@ -6788,17 +6794,17 @@ msgstr "Russian Federation"
msgid "Yugoslavia"
msgstr "Yugoslavia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Is dit korrek?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Info"
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index dbc84f6fd..9e21cb11d 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2004-06-01 03:36+0100\n"
"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
"Language-Team: Amharic <am-translate@geez.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -23,12 +23,12 @@ msgstr ""
msgid "Please wait"
msgstr "እባክዎ ይጠብቁ"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "የአስጀማሪ ተከላ በመከናወን ላይ"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -39,12 +39,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -54,414 +54,414 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "የአስጀማሪ ተከላ በመከናወን ላይ"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "አስጀማሪውን የት መትከል ይፈልጋሉ?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr ""
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr ""
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "ፍሎፒ ላይ"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "ዝለል"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "የአጀማመር ዘይቤ ምርጫ"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "የአስጀማሪ ዋና ምርጫዎች"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "አስጀማሪያ"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "ጥቅም ላይ የሚውለው አስጀማሪ"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "የመጀመሪያ መሳሪያ"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr ""
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "ACPI አስቻል"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI አስቻል"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI አስቻል"
-#: any.pm:418
+#: any.pm:422
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI አስቻል"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "ደህንነት"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "ሚስጢራዊ ቃል"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "ሚስጢራዊ ቃላቱ አይመሳሰሉም"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "እባክዎ እንደገና ይሞክሩ"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "ሚስጢራዊ ቃል (እንደገና)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "ምስል"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "የቪዲዮ አሰራር ዘዴ"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:503
+#: any.pm:507
#, fuzzy, c-format
msgid "Network profile"
msgstr "የተጠቃሚው እይታ"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "መለያ"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "ቀዳሚ"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr ""
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr ""
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "ሊኑክስ"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "የአጀማመር ዘይቤ ምርጫ"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "የX ፕሮግራሞች ማሳያ"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "ፍቀድ \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s በፊት ተጨምሯል)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "እባክዎ የተጠቃሚ ስም ይስጡ"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "የተጠቃሚ ስሙ በጣም ረጅም ነው"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "ይህ የተጠቃሚ ስም በፊትም ነበር"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "የተጠቃሚ መለያ ቁጥር"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "የብድን መለያ ቁጥር"
-#: any.pm:839
+#: any.pm:884
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "(%f በሰነድ-ስም ይተካል፤ %l በመስመር ቁጥር)"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "የተጠቃሚ ስም"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "የroot ሚስጢራዊ ቃል ይምረጡ"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"የተጠቃሚ ስም ያስገቡ\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "ምልክት"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "እውነተኛ ስም"
-#: any.pm:870
+#: any.pm:915
#, fuzzy, c-format
msgid "Login name"
msgstr "Name=ዝምብለህ ይግባ"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "ሼል"
-#: any.pm:925
+#: any.pm:970
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "ሲያትም እባክዎ ይጠብቁ\n"
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "ይህንን ሁኔታ መጠቀም ይፈልጋሉ?"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "ቀዳሚ ተጠቃሚ ይምረጡ:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "ዝጋ"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "ውጣ"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "ሌላ አልዎት?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "ተቀበል"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "አትቀበል"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "እባክዎ መጠቀሚያ ቋንቋ ይምረጡ።"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -469,87 +469,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "ሁሉንም ቋንቋዎች"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "ሁሉንም ቋንቋዎች"
-#: any.pm:1142
+#: any.pm:1187
#, fuzzy, c-format
msgid "Language choice"
msgstr "የመመሪያ ገጾች"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "ሀገር / አካባቢ"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "እባክዎ ሀገሮን ይምረጡ።"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "እዚህ ያሉት ሀገሮች ሙሉ ዝርዝር ይገኛል"
-#: any.pm:1200
+#: any.pm:1245
#, fuzzy, c-format
msgid "Other Countries"
msgstr "ሌላ ምርጫዎች"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "ጠላቂ"
-#: any.pm:1206
+#: any.pm:1251
#, fuzzy, c-format
msgid "Input method:"
msgstr "የX ዘገባ የማስትገባት ዘዴ"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "ምንም"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "መጋራት የለም"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "ለሁሉም ተጠቃሚዎች ፍቀድ"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "ምርጫ"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -559,86 +559,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "userdrake አስጀምር"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "የሰአት ክልል"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "የሰአት ክልሎት የትኛው ነው?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
-#: any.pm:1528
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP ሰርቨር"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -961,7 +961,7 @@ msgid "Domain Admin Password"
msgstr "የዶሜን አስተዳዳሪ ሚስጢራዊ ቃል"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -996,26 +996,26 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "በ/boot ውስጥ በቂ ቦታ የለም"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "አስጀማሪውን እንደገና ይትከሉ"
@@ -1045,17 +1045,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d ደቂቃዎች"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 ደቂቃ"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d ሴኮንዶች"
@@ -1069,27 +1075,27 @@ msgid ""
"points, select \"New\"."
msgstr ""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "አዲስ"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr ""
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr ""
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "ሰርቨር"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1097,25 +1103,25 @@ msgstr "ሰርቨር"
msgid "Mount point"
msgstr ""
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "ምርጫዎች"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "አስወግድ"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "ጨርሷል"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1131,17 +1137,17 @@ msgstr "ጨርሷል"
msgid "Error"
msgstr "ስህተት"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "እባክዎ የWebDAV ሰርቨር URL ያስገቡ"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URLሉ በhttp:// ወይም በhttps:// መጀመር አለበት"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1152,33 +1158,33 @@ msgstr "URLሉ በhttp:// ወይም በhttps:// መጀመር አለበት"
msgid "Warning"
msgstr "ማስጠንቀቂያ"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "እዚህ ቁልፍ ላይ መጫን ይፈልጋሉ?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "ሰርቨር:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr ""
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "ምርጫዎች: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr ""
@@ -1209,9 +1215,9 @@ msgstr "ውጣ"
msgid "Continue"
msgstr "ቀጥል"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "እርዳታ"
@@ -1239,63 +1245,63 @@ msgstr "ዝርዝሮች"
msgid "No hard disk drives found"
msgstr "ቋሚ ዲስኮችን አልተገኙም"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "ያልታወቀ"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "ውጣ"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "ሌላ"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "ባዶ"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "የፋይል ሲስተም አይነቶች:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "ይዚህ ክፋይ መጠነ ተስተካካይ አይደለም"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "በመጀመሪያ “Unmount”ን ይጠቀሙ"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "በዚህ ፈንታ “%s”ን ይጠቀሙ"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1344,7 +1350,7 @@ msgstr ""
msgid "Do you want to save the /etc/fstab modifications?"
msgstr ""
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1616,7 +1622,7 @@ msgid "Where do you want to mount %s?"
msgstr "%sን የት መትከል ይፈልጋሉ?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "መጠን በማስተካከል ላይ"
@@ -1661,7 +1667,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2084,8 +2090,8 @@ msgstr "አይነት ለውጥ"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "ተወው"
@@ -2173,7 +2179,7 @@ msgid ""
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr ""
@@ -2367,7 +2373,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2375,7 +2381,7 @@ msgid ""
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2383,42 +2389,42 @@ msgid ""
"Continue anyway?"
msgstr ""
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "ነጻ ቦታ ተጠቀም"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, fuzzy, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "ወደ አዲሱ ክፋይ ፋይሎችን አንቀሳቅስ"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "የነበሩትን ክፋዮች ተጠቀም"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr ""
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "የMicrosoft Windows® ክፋይ መጠን በማስተካከል ላይ"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, fuzzy, c-format
msgid "Which partition do you want to resize?"
msgstr "ምን ማድረግ ይፈልጋሉ?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2426,12 +2432,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2452,117 +2458,117 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "የሚቀጥለው"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "መከፋፈል አልተሳካም: %s"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "የMicrosoft Windows® ክፋይ መጠን በማስተካከል ላይ"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "መጠን"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "የMicrosoft Windows® ክፋይ መጠን በማስተካከል ላይ"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "የFATን መጠን መለወጥ አልተሳካም: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Microsoft Windows®ን አስወግድ"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "ዲስኩን እንዳለ ደምስስ"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "የተለመደውን ዲስክ አከፋፈል"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "fdiskን ተጠቀም"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "ውጣ"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "የመትከያ ቦታ ማግኘት አልቻልኩም"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "መከፋፈል አልተሳካም: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2599,22 +2605,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2622,26 +2628,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2649,19 +2655,19 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2670,24 +2676,24 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "የሚሰራ ነገር የለም"
@@ -2697,238 +2703,238 @@ msgstr "የሚሰራ ነገር የለም"
msgid "SATA controllers"
msgstr "የSATA ተቆጣጣሪዎች"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "የRAID ተቆጣጣሪዎች"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA ተቆጣጣሪዎች"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "የካርድ ሞዴል፦"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "የFirewire ተቆጣጣሪዎች"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "የPCMCIA ተቆጣጣዊዎች"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "የSCSI ተቆጣጣዊዎች"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "የUSB ተቆጣጣቂዎች"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "የUSB ፖርቶች"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "የSMBus ተቆጣጣሪዎች"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "ድልድዮች እና ሲስተም ተቆጣጣሪዎች"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "ፍሎፒ"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "ዚፕ"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "ዲስክ"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "ሲዲ-ሮም"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "ዲሲ/ዲቪዲ አቃጣይ ፕሮግራሞች"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "ዲቪዲ-ሮም"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "ቴፕ"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "የAGP ተቆጣጣሪዎች"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "የቪዲዮ ካርድ"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "የቲቪ ካርድ"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "ሌሎች የመገናኛ ብዙሃን መሳሪያዎች"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "የድምጽ ካርድ"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "ዌብ-ካም"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr ""
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "የISDN ማመጣጠኛዎች"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "የኢተርኔት ካርድ"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "ሞደም"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "የADSL ማመጣጠኛዎች"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "ማስታወሻ"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "ማተሚያ"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "ጆይ ስቲክ"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "መተየቢያ"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "መጠቆሚያ"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr ""
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "ያልታወቀ/ሌሎች"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "ሲፒዩ #"
@@ -3150,19 +3156,19 @@ msgstr "የፋይሉ ዓይነት"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "እሺ"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "አዎ"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3193,22 +3199,22 @@ msgstr "ጨርስ"
msgid "Previous"
msgstr "የቀድሞው"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, fuzzy, c-format
msgid "No file chosen"
msgstr "የፋይል ምልክት"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "የቤት ዶሴ አልተገኘም።"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such directory"
msgstr "ዶሴ አይደለም"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such file"
msgstr "ፋይሉ `%s'ን የለም\n"
@@ -4485,7 +4491,7 @@ msgstr "ዛምቢያ"
msgid "Zimbabwe"
msgstr "ዚምቧቤ"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "ወደ %s እንኳን ደህና መጡ"
@@ -5004,7 +5010,7 @@ msgstr "የሚፈነጠቅ መመልከቻ ሲጀምር _አሳይ"
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5320,7 +5326,7 @@ msgstr "የሚፈነጠቅ መመልከቻ ሲጀምር _አሳይ"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6348,17 +6354,17 @@ msgstr "ራሺያ"
msgid "Yugoslavia"
msgstr "ዩጎዝላቪያ"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "ይህ ትክክል ነው?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "መረጃ"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 406f96bf9..5c3a2be83 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2011-05-19 13:12+0000\n"
"Last-Translator: salim salim <almusalimalmusalimah@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +16,7 @@ msgstr ""
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -25,12 +25,12 @@ msgstr ""
msgid "Please wait"
msgstr "الرجاء الانتظار"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "محمل الإقلاع قيد التثبيت"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,12 +46,12 @@ msgstr ""
"\n"
"أتريد تعيين رقم هويّة كتلة جديد؟"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "فشل تثبيت محمّل الإقلاع. حدث الخطأ التالي:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -66,218 +66,218 @@ msgstr ""
"\n"
"على أي قرص تقوم بالإقلاع؟"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr ""
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "أين تريد تثبيت محمّل الإقلاع؟"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "القطاع الأول من القرص (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "القطاع الأول من التجزيء الجذري"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "على قرص مرن"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "تخطّي"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "تهيئة أسلوب الإقلاع"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "خيارات محمّل الإقلاع الرئيسية"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "محمّل الإقلاع"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "محمّل الإقلاع المُستخدم"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "جهاز الإقلاع"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "توقيت ما قبل إقلاع الصورة الافتراضية"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "تمكين ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr ""
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr ""
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "الأمن"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "كلمة المرور"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطابقة"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "الرجاء المحاولة مجدداً"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "كلمة المرور (مجدداً)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "صورة"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "الجذر"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "إلحاق"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "وضعية الفيديو"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "سجلّ إعداد الشبكة "
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "تسمية"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "افتراضي"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "لا يُسمح بالتسميات الفارغة"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "يجب تحديد صورة النواة"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "يجب تحديد تجزيء جذر"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "هذه التسمية مستخدمة مسبقا"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل المُراد إضافته؟"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "لينكس"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "نظام تشغيل آخر (ويندوز...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -286,194 +286,194 @@ msgstr ""
"هذه هي المدخلات المختلفة في قائمة الإقلاع حتى الآن.\n"
"يمكنك إضافة مدخلات أخرى أو تغيير الموجودة."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "الوصول إلى برامج X"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "الوصول إلى أدوات rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "السماح بـ\"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "الوصول إلى ملفات الإدارة"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "الوصول إلى أدوات الشبكة"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "الوصول إلى أدوات التجميع"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(تمت إضافة %s مسبقا)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "الرجاء إعطاء اسم مستخدم"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "اسم المستخدم طويل جداً"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "هوية المستخدم"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "هوية المجموعة"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "ضع كلمة مرور المستخدم الجذر"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "أيقونة"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "اسم الدخول"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "الصدفة"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "انتظر من فضلك، جاري إضافة الوسائط..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "تسجيل دخول آلي"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "يمكن إعداد جهازك لتسجيل الدخول آلياً لمستخدم معين."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "اختيار المستخدم الافتراضي:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "اختيار مدير النوافذ الذي سيتم تشغيله:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "ملاحظات الإصدار"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "إغلاق"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "اتفاقية الترخيص"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "خروج"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "قبول"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "رفض"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "الرجاء اختيار لغة لاستخدامها"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -481,87 +481,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "ماجيّا"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "كل اللغات"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "كل اللغات"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "خيار اللغة"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "الدولة / الإقليم"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "الرجاء اختيار الدولة"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "هذه قائمة كاملة بكل الدول المتوفرة"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "دول أخرى"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "متقدم"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "طريقة الإدخال:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "لاشيء"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "لا مشاركة"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "السماح لكل المستخدمين"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "مخصّص"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -576,14 +576,14 @@ msgstr ""
"\n"
"\"مخصص\" يسمح لك بعمل إعدادات خاص لكل مستخدم.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr "NFS: نظام تقسيم ملفّات يونكس التّقليدي، بدعم أقلّ على ماك و ويندوز."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -592,18 +592,18 @@ msgstr ""
"SMB: نظام تقسيم ملفّات مستعمل من قبل ويندوز، ماك OS X و العديد من أنظمة لينكس "
"الحديثة."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "يمكنك التّصدير باستعمال NFS أو SMB. الرجاء اختيار أيّهما تريد استعماله."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "تشغيل userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -612,54 +612,54 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "تحتاج أن تقوم بالخروج والعودة مجدّداً حتى يسري مفعول التّغييرات"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "المنطقة الزمنية"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "ما هي منطقتك الزمنية؟"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "خادم NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "تزامن وقت آلي (باستخدام NTP)"
@@ -988,7 +988,7 @@ msgid "Domain Admin Password"
msgstr "كلمة المرور لمدير النطاق"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1028,19 +1028,19 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "لا توجد مساحة كافية في /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "يمكنك تثبيت محمّل الإقلاع على التجزيء %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "تهيئة محمّل الإقلاع يجب أن يحدّث لأنّ التجزيء تمّ إعادة ترقيمه"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1049,7 +1049,7 @@ msgstr ""
"لا يمكن تثبيت محمّل الإقلاع بشكل صحيح. يجب أن تقوم بإقلاع الإنقاذ وتختار \"%s"
"\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "إعادة تثبيت مُحمِّل الإقلاع"
@@ -1079,17 +1079,23 @@ msgstr "غ.ب."
msgid "TB"
msgstr "ت.ب."
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d دقائق"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "دقيقة واحدة"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d ثوان"
@@ -1107,27 +1113,27 @@ msgstr ""
"كخادم WebDAV). إذا كنت تريد إضافة نقاط تحميل\n"
"WebDAV، اختر \"جديد\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "جديد"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "فكّ"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "تركيب"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "خادم"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1135,25 +1141,25 @@ msgstr "خادم"
msgid "Mount point"
msgstr "مكان التركيب"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "خيارات"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "حذف"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "تم"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1169,17 +1175,17 @@ msgstr "تم"
msgid "Error"
msgstr "خطأ"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "الرجاء إدخال عنوان خادم WebDav"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "العنوان يجب أن يبدأ بـ http:// أو https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1190,33 +1196,33 @@ msgstr "العنوان يجب أن يبدأ بـ http:// أو https://"
msgid "Warning"
msgstr "تحذير"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr ""
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "الخادم: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "مكان التركيب:"
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "التجزئة"
@@ -1247,9 +1253,9 @@ msgstr "خروج"
msgid "Continue"
msgstr "استمرار"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "مساعدة"
@@ -1280,63 +1286,63 @@ msgstr "تفاصيل"
msgid "No hard disk drives found"
msgstr "تعذّر العثور على أقراص صلبة"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "مجهول"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "ويندوز"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "أخرى"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "فارغ"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "أنواع أنظمة الملفات:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr ""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "استخدام ``الفكّ'' أولا"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr ""
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1385,7 +1391,7 @@ msgstr "هل تريد الخروج بدون كتابة جدول التجزئة؟
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "هل تريد حفظ تعديلات /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "تحتاج إلى إعادة التثبيت لتفعيل التعديلات على جدول التجزئة"
@@ -1665,7 +1671,7 @@ msgid "Where do you want to mount %s?"
msgstr "أين تريد تركيب الجهاز %s؟"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "تغيير الحجم"
@@ -1710,7 +1716,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2143,8 +2149,8 @@ msgstr "تغيير النوع"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "إلغاء"
@@ -2236,7 +2242,7 @@ msgstr ""
"لقد ظهر خطأ - لم يعثر على أجهزة صالحة يمكن إنشاء أنظمة ملفات جديدة عليها. "
"تأكد من العتاد الخاص بك لمعرفة سبب هذه المشكلة"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "لديك تجزيء ESP FAT32 تم تحميلها على /boot/EFI"
@@ -2442,7 +2448,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "لا توجد مساحة تبديل كافية للقيام بالتثبيت، الرجاء زيادة مساحة التبديل"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2453,7 +2459,7 @@ msgstr ""
"لهذا الغرض انشئ تجزيء (أو اضغط على تجزيء موجودة).\n"
"ثم اختر ``مكان التركيب'' و اجعله `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2464,42 +2470,42 @@ msgstr ""
"\n"
"هل تريد المتابعة على أي حال؟"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "استخدام المساحة الفارغة"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "لا توجد مساحة فارغة لعمل التجزيئات الجديدة"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "استخدم التجزيئات الموجودة"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "لا يوجد تجزيء لاستخدامه"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "جاري حساب مساحة تجزيء ويندوز"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "أي تجزيء تريد تغيير حجمه؟"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2507,12 +2513,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2546,75 +2552,75 @@ msgstr ""
"عندما تكون متأكداً، اضغط %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "التالي"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr ""
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "ما حجم المساحة التي تريد إبقائها لويندوز على التجزيء %s؟"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "الحجم"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "تغيير حجم تجزيء ويندوز"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "فشل تغيير حجم FAT: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "لا توجد تجزيء FAT قابل لتغيير حجمها (أو لا توجد مساحة كافية متبقية)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "حذف ويندوز(TM)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr ""
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "كل التجزيئات و بياناتها ستضيع من على السواقة %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "تجزئة قرص مخصصة"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "استخدام fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2623,42 +2629,42 @@ msgstr ""
"يمكنك الآن تجزئة %s.\n"
"عندما تنتهي لا تنس الحفظ باستخدام `w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr ""
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "لا يمكنني العثور على مساحة فارغة للتثبيت"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "عثر معالج التجزئة في DrakX على الحلول التالية:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "فشلت التجزئة: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "لا يمكنك استخدام JFS للتجزئات أصغر من 16 ميغابايت"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "لا يمكنك استخدام ReiserFS للتجزئات أصغر من 32 ميغابايت"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "لا يمكنك استخدام JFS للتجزئات أصغر من 16 ميغابايت"
@@ -2701,22 +2707,22 @@ msgstr ""
"\n"
"هل أنت موافق على خسارة كل التجزيئات؟\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "يجب أن تبدأ أماكن التركيب بالعلامة /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "أماكن التركيب يجب أن تحتوي فقط على الحروف و/أو الآرقام"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "هناك تجزيء مع مكان التركيب %s مسبقاً\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2724,26 +2730,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2751,19 +2757,19 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2772,12 +2778,12 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "هذا الدليل يجب أن يكون في نظام الملفات الجذري"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2786,12 +2792,12 @@ msgstr ""
"تحتاج إلى نظام ملفات حقيقي (ext2/ext3، resierfs، xfs، أو jfs) لمكان التركيب "
"هذه\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "لا توجد مساحة كافية للتحديد الآلي"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "لا شيء لعمله"
@@ -2801,238 +2807,238 @@ msgstr "لا شيء لعمله"
msgid "SATA controllers"
msgstr "متحكّمات SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "متحكّمات RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "متحكمات (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr ""
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "متحكمات Firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "متحكمات PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "متحكمات SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "متحكمات USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "منافذ USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "متحكّمات SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "الجسور ومتحكمات النظام"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "القرص المرن"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "القرص الصّلب"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "القرص المدمج"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "أجهزة نسخ CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "شريط"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "متحكمات AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "بطاقة الفيديو"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "بطاقة التلفاز"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "أجهزة وسائط متعددة أخرى"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "بطاقة الصوت"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "كاميرات الوب"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "المُعالجات"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "مكيّفات ISDN"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "بطاقة Ethernet"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "المودم"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "مكيّفات ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "الذاكرة"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "طابعة"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "عصا الألعاب"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "لوحة المفاتيح"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "الماوس"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "مُزوّد الطاقة الغير منقطعة (UPS)"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "الماسح الضوئي"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "غير معروف/أخرى"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3276,19 +3282,19 @@ msgstr "نوع الموالف:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "موافق"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "نعم"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3319,22 +3325,22 @@ msgstr "انتهاء"
msgid "Previous"
msgstr "السابق "
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "لم يتم اختيار أي ملف"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "لقد اخترت دليلاً، وليس ملفاً"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "لا دليل كذلك"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "لا ملف كذلك"
@@ -4616,7 +4622,7 @@ msgstr "زامبيا"
msgid "Zimbabwe"
msgstr "زيمبابوي"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "أهلا في %s"
@@ -5159,10 +5165,10 @@ msgid "Allow direct root login."
msgstr ""
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
-msgstr ""
+"Allow the list of users on the system on display managers (kdm and gdm)."
+msgstr "سرد أسماء المستخدمين على مُدراء العرض (sddm وgdm("
#: security/help.pm:35
#, c-format
@@ -5496,8 +5502,8 @@ msgid "Direct root login"
msgstr "دخول المستخدم الجذر مباشر"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "سرد أسماء المستخدمين على مُدراء العرض (sddm وgdm("
#: security/l10n.pm:20
@@ -6667,17 +6673,17 @@ msgstr "روسيا الإتحادية"
msgid "Yugoslavia"
msgstr "يوغوسلافيا"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "هل هذا صحيح؟"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "لقد اخترت ملفاً، وليس دليلاً"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "المعلومات"
diff --git a/perl-install/share/po/ast.po b/perl-install/share/po/ast.po
index d444807a7..a7a0414ef 100644
--- a/perl-install/share/po/ast.po
+++ b/perl-install/share/po/ast.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-06-01 05:40+0000\n"
"Last-Translator: enolp <enolp@softastur.org>\n"
"Language-Team: Asturian (http://www.transifex.com/projects/p/mageia/language/"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -27,12 +27,12 @@ msgstr ""
msgid "Please wait"
msgstr "Por favor, espera"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalación del cargador d'arranque en progresu"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -49,13 +49,13 @@ msgstr ""
"\n"
"¿Asignar un ID de volume nuevu?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Falló la instalación del cargador d'arranque. Asocedió'l siguiente fallu:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -70,218 +70,218 @@ msgstr ""
"\n"
"¿En qué unidá tas arrancando?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Instalación del cargador d'arranque"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "¿Ú quies instalar el cargador d'arranque?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Sector primeru (MBR) de la unidá %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Sector primeru de la unidá (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Sector primeru de la partición raigañu"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Nel disquete"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Saltar"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuración del estilu d'arranque"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Opciones principales del cargador d'arranque"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Cargador d'arranque"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Cargador d'arranque pa usar"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Preséu d'arranque"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Opciones principales"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Retrasu enantes d'arrancar la imaxe por defeutu"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Habilitar ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Habilitar SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Habilitar APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Habilitar APIC llocal"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Seguranza"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contraseña"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Les contraseñes nun concasen"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Por favor, inténtalo de nueves"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nun pues usar una contraseña con %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contraseña (de nueves)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Imaxe"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Rique la contraseña p'arrancar"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Mou de videu"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Perfil de rede"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Por defeutu"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Nun s'almiten etiquetes baleres"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Tienes d'especificar una imaxe de kernel"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Tienes d'especificar una partición raigañu"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta yá ta n'usu"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "¿Qué triba d'entrada quies amestar?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Otru SO (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuración del cargador d'arranque"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -290,47 +290,47 @@ msgstr ""
"Equí tán les entraes nel to menú d'arranque.\n"
"Pues crear entraes adicionales o camudar les esistentes"
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "accesu a X programes"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "accesu a ferramientes rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "acceder a ficheros alministrativos"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "acceder a ferramientes de rede"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "acceder a ferramientes de compilación"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(yá s'amestó %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Por favor, da un nome d'usuariu"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -339,148 +339,148 @@ msgstr ""
"El nome d'usuariu tien d'entamar con una lletra minúscula siguida namái por "
"númberos, lletres minúscules, `-' y `_'"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "El nome d'usuariu ye perllargu"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Esti nome d'usuariu yá s'amestó"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID d'usuariu"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID del grupu"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s tien de ser un númberu"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Alministración d'usuariu"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Habilitar cuenta de convidáu"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Afitar contraseña d'alministrador (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Introducir un usuariu"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Iconu"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Nome real"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Nome d'aniciu sesión"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Por favor espera, amestando medios..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Aniciu sesión automáticu"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Pues configurar el to ordenador p'aniciar sesión automáticamente nun usuariu."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Usar carauterística"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Escoyer usuariu por defeutu:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escoyer l'alministrador de ventanes pa usar:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Notes de llanzamientu"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Zarrar"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Alcuerdu de llicencia"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Colar"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "¿Aceutes esta llicencia?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Aceutar"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Refugar"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Por favor, escueyi una llingua pa usar"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -491,87 +491,87 @@ msgstr ""
"llingua que te prestaría instalar. Tarán disponibles cuando la to\n"
"instalación tea completada y reanicies el to sistema."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Llingües múltiples"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Esbillar llingües adicionales"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Compatibilidá de codificación vieya (non UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Toles llingües"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Escoyeta de llingua"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "País / Rexón"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Por favor, escueyi'l to país"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Equí ta la llista completa de países disponibles"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Otros países"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avanzáu"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Métodu d'entrada:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Un res"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Ensin compartición"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permitir tolos usuarios"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalizáu"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -587,7 +587,7 @@ msgstr ""
"\n"
"\"Personalizáu\" permitirá una granularidá per usuariu.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -596,7 +596,7 @@ msgstr ""
"NFS: el sistema de compartición de ficheros tradicional d'Unix, con menos "
"sofitu en Mac y Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -605,19 +605,19 @@ msgstr ""
"NFS: un sistema de compartición de ficheros usáu por Windows, Mac OS X y "
"abondos sistemas Linux modernos."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Pues esportar usando NFS o SMB. Por favor, esbilla cuál te prestaría usar."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Llanzar userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -626,7 +626,7 @@ msgstr ""
"La compartición per usuariu usa'l grupu \"fileshare\".\n"
"Pues usar userdrake p'amestar un usuariu a esti grupu."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -635,49 +635,49 @@ msgstr ""
"Necesites zarrar sesión y tornar otra vegada pa que les camudancies faigan "
"efeutu. Primi Aceutar pa zarrar sesión agora."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Necesites zarrar sesión y tornar otra vegada pa que les camudancies faigan "
"efeutu"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Fusu horariu"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "¿Cuál ye'l to fusu horariu?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Axustes de data, reló y fusu horariu"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "¿Cuál ye la meyor hora?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (reló hardware afitáu a UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (reló hardware afitáu a la hora llocal)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Sirvidor NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización d'hora automática (usando NTP)"
@@ -1019,7 +1019,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1054,19 +1054,19 @@ msgstr ""
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Nun pues instalar el cargador d'arranque nuna partición %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1075,7 +1075,7 @@ msgstr ""
"El cargador d'arranque nun pue instalase correutamente. Tienes d'arrancar el "
"mou rescate y escoyer \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1105,18 +1105,24 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
-msgid "%d minutes"
+msgid "%02d:%02d"
msgstr ""
#: common.pm:290
#, c-format
-msgid "1 minute"
+msgid "%d minutes"
msgstr ""
#: common.pm:292
#, c-format
+msgid "1 minute"
+msgstr ""
+
+#: common.pm:294
+#, c-format
msgid "%d seconds"
msgstr ""
@@ -1129,27 +1135,27 @@ msgid ""
"points, select \"New\"."
msgstr ""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nuevu"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr ""
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr ""
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Sirvidor"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1157,25 +1163,25 @@ msgstr "Sirvidor"
msgid "Mount point"
msgstr ""
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opciones"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Desaniciar"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fecho"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1191,17 +1197,17 @@ msgstr "Fecho"
msgid "Error"
msgstr "Fallu"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr ""
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1212,33 +1218,33 @@ msgstr ""
msgid "Warning"
msgstr "Avisu"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr ""
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Sirvidor:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr ""
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr ""
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Particionáu"
@@ -1271,9 +1277,9 @@ msgstr ""
msgid "Continue"
msgstr "Continuar"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Ayuda"
@@ -1301,63 +1307,63 @@ msgstr "Detalles"
msgid "No hard disk drives found"
msgstr ""
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Desconocíu"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Otru"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr ""
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr ""
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr ""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr ""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr ""
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1406,7 +1412,7 @@ msgstr "¿Colar ensin grabar la tabla de particiones?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr ""
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1682,7 +1688,7 @@ msgid "Where do you want to mount %s?"
msgstr ""
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr ""
@@ -1727,7 +1733,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2150,8 +2156,8 @@ msgstr ""
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Encaboxar"
@@ -2239,7 +2245,7 @@ msgid ""
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr ""
@@ -2433,7 +2439,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2444,7 +2450,7 @@ msgstr ""
"Pa cumplir esto, crea una partición (o primi nuna esistente).\n"
"Dempués escueyi l'aición `\"Puntu de montaxe'' y afítalo a `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2452,42 +2458,42 @@ msgid ""
"Continue anyway?"
msgstr ""
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Usar espaciu llibre"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nun hai espaciu abondo p'allugar particiones nueves"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr ""
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr ""
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr ""
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2495,12 +2501,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2521,117 +2527,117 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Siguiente"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr ""
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Tamañu"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr ""
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr ""
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Desaniciar Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr ""
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Toles particiones y los sos datos desaniciaránse na unidá %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Particionáu de discu personalizáu"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr ""
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr ""
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr ""
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "L'encontu pal particiunáu DrakX alcontró les soluciones siguientes:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Equí ta'l conteníu dle to discu"
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particionáu fallíu: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2668,22 +2674,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Yá hai una partición col puntu de montaxe %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2691,26 +2697,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2718,19 +2724,19 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2739,24 +2745,24 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nun hai espaciu abondu pal allugamientu automáticu"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr ""
@@ -2766,238 +2772,238 @@ msgstr ""
msgid "SATA controllers"
msgstr ""
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr ""
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr ""
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr ""
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr ""
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr ""
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr ""
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr ""
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr ""
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr ""
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr ""
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr ""
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr ""
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Discu duru"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr ""
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr ""
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr ""
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr ""
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr ""
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr ""
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr ""
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr ""
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr ""
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr ""
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr ""
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr ""
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr ""
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Módem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr ""
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr ""
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr ""
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr ""
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Tecláu"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Mur"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr ""
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr ""
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr ""
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr ""
@@ -3219,19 +3225,19 @@ msgstr ""
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Aceutar"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Sí"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3262,22 +3268,22 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr ""
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr ""
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr ""
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr ""
@@ -4552,7 +4558,7 @@ msgstr ""
msgid "Zimbabwe"
msgstr ""
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr ""
@@ -5079,7 +5085,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5395,7 +5401,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6423,17 +6429,17 @@ msgstr "Federación rusa"
msgid "Yugoslavia"
msgstr ""
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr ""
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr ""
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Información"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index b618bb82a..c7d13a826 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-az\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-03-31 14:21+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Xahiş edirik, gözləyin"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -44,12 +44,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -64,219 +64,219 @@ msgstr ""
"\n"
"Hansı sürücü üstündən açılış edirsiniz?"
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yükləyicisini hara qurmaq istəyirsiniz?"
-#: any.pm:351
+#: any.pm:355
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Diskin ilk sektoru (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Kök bolməsinin ilk sektoru"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Disketə"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Keç"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Açılış Tərzi Quraşdırılması"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Sistem yükləyicisinin ana seçimləri"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Açılış yükləyicisi"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Açılış avadanlığı"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:418
+#: any.pm:422
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Təhlükəsizlik"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Şifrə"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Şifrələr uyğun gəlmir"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Xahiş edirik, təkrar sınayın"
-#: any.pm:425
+#: any.pm:429
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr ""
"%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Şifrə (təkrar)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Əks"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Kök"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Sonuna əlavə et"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Video modu"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Şəbəkə profili"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiket"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Ön Qurğulu"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Boş etiket qəbul edilmir"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Çəyirdək əksini bildirməlisiniz"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Kök bölməsini bildirməlisiniz"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Bu etiket onsuzda istifadə edilib"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Nə cür bir giriş əlavə etmək istəyirsiniz?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linuks"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Digər ƏS (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Açılış Tərzi Quraşdırılması"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -285,47 +285,47 @@ msgstr ""
"Buradakı bir birindən fərqli seçimlərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "X proqramlarına yetişmə icazəsi"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "rpm vasitələrinə yetişmə"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "\"su\" icazəsi ver"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "idarəvi fayllara yetişmə"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "şəbəkə vasitələrinə yetişmə"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "dərləmə vasitələrinə yetişmə"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Xahiş edirik, bir istifadəçi adı alın"
-#: any.pm:830
+#: any.pm:875
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -334,150 +334,150 @@ msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "İstifadəçi adı çox uzundur"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Bu istifadəçi adı onsuzda əlavə edilib"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "İstifadəçi ID'si"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Qrup ID'si"
-#: any.pm:839
+#: any.pm:884
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "%s seçimi rəqəm olmalıdır!"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "İstifadəçi adı"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Ali istifadəçi şifrəsini tə'yin et"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Bir istifadəçi daxil edin\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Timsal"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Həqiqi ad"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Giriş adı"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Qabıq"
-#: any.pm:925
+#: any.pm:970
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "ttmkfdir fəaliyyətdədir, xahiş edirik, gözləyin..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Kompüteriniz istifadəçinin avtomatik giriş etməsi üçün qurğulana bilər."
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Bu xüsusiyyəti istifadə etmək istəyirsiniz?"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "İşlətmək istədiyiniz pəncərə idarəçisini seçin:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Buraxılış:"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Bağla"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Lisenziya razılığı"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Çıx"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Başqası var?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Qəbul Et"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Rədd Et"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Xahiş edirik, istifadə ediləcək dili seçin"
-#: any.pm:1106
+#: any.pm:1151
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -488,87 +488,87 @@ msgstr ""
"dilləri seçin. Onlar qurulum tamamlanandan və sistem yenidən\n"
"başlayandan sonra istifadəyə hazır olacaqlar."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Bütün dillər"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Bütün dillər"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Dil seçkisi"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Ölkə / Bölgə"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Xahiş edirik, ölkənizi seçin"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Bütün mövcud ölkələrinn siyahısı"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Diqər Ölkələr"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Ətraflı"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Giriş yöntəmi:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Heç biri"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Bölüşmə yoxdur"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Bütün istifadəçilərə icazə ver"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Xüsusi"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -585,21 +585,21 @@ msgstr ""
"\"Xüsusi\" seçənəyi, hər istifadəçiyə fərqli icazə vermək üçün istifadə "
"edilir.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -607,12 +607,12 @@ msgstr ""
"NFS ya da SMB işlədərək ixrac edə bilərsiniz. Xahiş edirik, işlətmək "
"istədiyinizi seçin."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake-ni başlat"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -622,7 +622,7 @@ msgstr ""
"Bu qrupa istifadəçiləri əlavə etmək üçün userdrake'dən istifadə edə "
"bilərsiniz. "
-#: any.pm:1458
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -630,48 +630,48 @@ msgid ""
msgstr ""
"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Vaxt Zolağı"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Vaxt zolağınız hansıdır?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Avadanlıq saatı GMT'yə görə quruludur"
-#: any.pm:1528
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Avadanlıq saatı GMT'yə görə quruludur"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP Verici"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Avtomatik vaxt sinxronizasiyası (NTP vasitəsiylə)"
@@ -999,7 +999,7 @@ msgstr "Domen İdarəçi Şifrəsi"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1034,26 +1034,26 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Sistem yükləyicisini %s bölməsinə qura bilməzsiniz\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Sistem Yükləyicisini Yenidən Qur"
@@ -1083,17 +1083,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d dəqiqə"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 dəqiqə"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d saniyə"
@@ -1111,27 +1117,27 @@ msgstr ""
"olaraq quraşdırılmalıdır). İndi WebDAV bağlama nöqtələri əlavə etmək\n"
"üçün, \"Yeni\" düyməsinə basın."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Yeni"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Ayır"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Bağla"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Verici"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1139,25 +1145,25 @@ msgstr "Verici"
msgid "Mount point"
msgstr "Bağlama nöqtəsi"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Seçimlər"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Sil"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Qurtardı"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1173,17 +1179,17 @@ msgstr "Qurtardı"
msgid "Error"
msgstr "Xəta"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Xahiş edirik, WebDAV vericisi URL-ni daxil edin"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL http:// ya da https:// ilə başlamalıdır"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1194,33 +1200,33 @@ msgstr "URL http:// ya da https:// ilə başlamalıdır"
msgid "Warning"
msgstr "Xəbərdarlıq"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Bu düyməyə basmaq istəyirsiniz?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Verici:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Seçimlər: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Bölmələndirmə"
@@ -1251,9 +1257,9 @@ msgstr "Çıxış"
msgid "Continue"
msgstr "Davam et"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Yardım"
@@ -1285,63 +1291,63 @@ msgstr "Ətraflı"
msgid "No hard disk drives found"
msgstr "Sabit disk(lər) tapıla bilmədi"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Namə'lum"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "Çıxış"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Dəyiş-toqquş"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Digər"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Boş"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Fayl sistemi növü:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Bu bölmə ölçüləndirilə bilməz"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Əvvəlcə ``Ayır'-ı işlət"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Yerinə ``%s'' işlət"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1390,7 +1396,7 @@ msgstr "Bölmə cədvəli qeyd edilmədən çıxılsın?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Dəyişikliklər /etc/fstab faylına qeyd edilsin?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1672,7 +1678,7 @@ msgid "Where do you want to mount %s?"
msgstr "%s avadanlığını hara bağlamaq istəyirsiniz?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Ölçüləndirilir"
@@ -1718,7 +1724,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, fuzzy, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2153,8 +2159,8 @@ msgstr "Növünü dəyişdir"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Ləğv Et"
@@ -2246,7 +2252,7 @@ msgstr ""
"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "/boot/EFI ünvanına bağlanmış ESP FAT32 bölməniz olmalıdır"
@@ -2456,7 +2462,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik, əlavə edin"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2468,7 +2474,7 @@ msgstr ""
"ya da yeni birini başdan yaradın. Sonra \"Bağlama \n"
"Nöqtəsi\"gedişatını seçin va buranı '/' olaraq dəyişdirin."
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2478,42 +2484,42 @@ msgstr ""
"Dəyiş-toqquş sahəniz yoxdur\n"
"Davam edilsin?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Boş sahəni istifadə et"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Yeni bölmələr ayırmaq üçün kifayət qədər boş yer yoxdur"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Mövcud bölmələri işlət"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "İstifadə ediləcək mövcud bölmə yoxdur"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Microsoft Windows® bölməsin böyüklüyü hesablanır"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Windows bölməsindəki boş sahəni işlət"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Hansı bölmə ölçüləndirilsin?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2524,12 +2530,12 @@ msgstr ""
"kompüterinizi Microsoft Windows® ilə açın, ''defrag'' vasitəsini işlədin, "
"sonra %s qurulumunu yenidən başladın."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2562,54 +2568,54 @@ msgstr ""
"Hazır olanda, %s düyməsinə basın."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Sonrakı"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Bölmələndirmə"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Microsoft Windows® üçün hansı böyüklüyü saxlamaq istəyirsiniz %s bölməsi?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Böyüklük"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Microsoft Windows® bölməsi ölçüləndirilir"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT ölçüləndirilməsi bacarılmadı: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Ölçüləndiriləcək FAT bölməsi mövcud deyil (ya da lazımi yer yoxdur)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Microsoft Windows®'u Sil"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "Bütün diski sil"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2618,22 +2624,22 @@ msgstr ""
"Sizin birdən çox diskiniz var, linux qurmaq üçün hansını istifadə "
"edəcəksiniz?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s sürüsündəki mövcud bütün bölmələr və onlardakı mə'lumatitiriləcək"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Xüsusi disk bölmələndirməsi"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Fdisk istifadə et"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2642,42 +2648,42 @@ msgstr ""
"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Çıxış"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX bölmələndirmə sehirbazı bu çıxış yollarını tapdı:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Bölmələndirmə bacarılmadı: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "16MB'dan kiçik disk bölmələrində JFS istifadə edə bilməzsiniz"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "32MB'dən kiçik disk bölmələrində ReiserFS istifadə edə bilməzsiniz"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "16MB'dan kiçik disk bölmələrində JFS istifadə edə bilməzsiniz"
@@ -2721,22 +2727,22 @@ msgstr ""
"\n"
"Bütün bölmələri itirmək işinizə gəlir?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Bağlama nöqtələri ancaq alfanumerik hərf daxil edə bilər"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bağlama nöqtəsi %s olan bölmə mövcuddur\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2747,7 +2753,7 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2757,7 +2763,7 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:458
+#: fsedit.pm:461
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2767,12 +2773,12 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2783,20 +2789,20 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, fuzzy, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "%s bağlama nöqtəsi üçün LVM Məntiqi Həcmini istifadə edə bilməzsiniz"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2808,12 +2814,12 @@ msgstr ""
"etdiniz. /boot bölməsi olmadan heç bir açılış yükləyicisi bunu aça bilməz.\n"
"Xahiş edirik, /boot bölməsini əlavə etməyi unutmayın"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2822,12 +2828,12 @@ msgstr ""
"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2/3/4, reiserfs, xfs, "
"ya da jfs)ehtiyacınız var\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Avtomatik yerləşdirmə üçün kifayət qədər boş sahə yoxdur"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Ediləcək heçnə yoxdur"
@@ -2837,238 +2843,238 @@ msgstr "Ediləcək heçnə yoxdur"
msgid "SATA controllers"
msgstr "SATA idarəçiləri"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAİD idarəçiləri"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)İDE/ATA idarəçiləri"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "Kart modeli:"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire idarəçiləri"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCİA idarəçiləri"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSİ idarəçiləri"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB idarəçiləri"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, fuzzy, c-format
msgid "USB ports"
msgstr "USB çapçı"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus idarəçiləri"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Körpülər və sistem idarəçiləri"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disket"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Hard Disk"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD yazıcılar"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Kaset"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP idarəçiləri"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Video kartı"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Televiziya kartı"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Digər Multimediya avadanlıqları"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Səs kartı"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Veb kamerası"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "İşlədicilər"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN adapterləri"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Eternet Kartı"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL adapterləri"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Yaddaş"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Çapçı"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Oyun Çubuğu"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Klaviatura"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Siçan"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Darayıcı"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Na'məlum/Digərləri"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3317,19 +3323,19 @@ msgstr "Tuner növü:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Oldu"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Bəli"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3360,23 +3366,23 @@ msgstr "Qurtar"
msgid "Previous"
msgstr "Əvvəlki"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, fuzzy, c-format
msgid "No file chosen"
msgstr "fayl seçicisi"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr ""
"'/' adları sadəcə bir qovluq ola bilər, qətiyyan'iyyen bir açar ola bilməz"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such directory"
msgstr "Belə cərgə yoxdur!"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such file"
msgstr "Belə bir fayl yoxdur : `%s'\n"
@@ -4658,7 +4664,7 @@ msgstr "Zambiya"
msgid "Zimbabwe"
msgstr "Zimbabve"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoş Gəldiniz"
@@ -5308,7 +5314,7 @@ msgstr "Birbaşa ali istifadəçinin girişinə icazə ver/vermə"
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Sistemdəki ekran idarəçilərində (gdm və sddm) istifadəçilərin siyahısının "
"göstərilməsinə icazə Ver/Vermə."
@@ -5686,8 +5692,8 @@ msgid "Direct root login"
msgstr "Birbaşa ali istifadəçi girişi"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Ekran idarəçilərində (sddm və gdm) istifadəçiləri göstər"
#: security/l10n.pm:20
@@ -6883,17 +6889,17 @@ msgstr "Rusiya Federasiyası"
msgid "Yugoslavia"
msgstr "Yugoslaviya"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Bu düzdür?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, fuzzy, c-format
msgid "You have chosen a file, not a directory"
msgstr "Bir qovluq deyil, bir faylı bildirmək məcburiyyətindəsən .\n"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Mə'lumat"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 6405b9af7..4376baf71 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -23,12 +23,12 @@ msgstr ""
msgid "Please wait"
msgstr "Калі ласка, пачакайце"
-#: any.pm:258
+#: any.pm:262
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Усталяванне загрузчыку"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -39,12 +39,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнікла наступная памылка:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -54,218 +54,218 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Усталяванне загрузчыку"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: any.pm:351
+#: any.pm:355
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Першы сектар прылады (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Першы сектар прылады (MBR)"
-#: any.pm:355
+#: any.pm:359
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: any.pm:357
+#: any.pm:361
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Захаванне на дыскету"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Прапусціць"
-#: any.pm:387
+#: any.pm:391
#, fuzzy, c-format
msgid "Boot Style Configuration"
msgstr "Настройка IDE"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Галоўныя опцыі пачатковага загрузчыку"
-#: any.pm:405
+#: any.pm:409
#, fuzzy, c-format
msgid "Bootloader"
msgstr "Усталяванне загрузчыку"
-#: any.pm:406
+#: any.pm:410
#, fuzzy, c-format
msgid "Bootloader to use"
msgstr "Галоўныя опцыі пачатковага загрузчыку"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Загрузачная прылада"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr ""
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Сервер друку"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Сервер друку"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Бясьпека"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Пароль"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Паролі не супадаюць"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Паспрабуйце яшчэ раз"
-#: any.pm:425
+#: any.pm:429
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Паўтарыце пароль"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Вобраз"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Далучыць"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Відэа-рэжым"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, fuzzy, c-format
msgid "Network profile"
msgstr "Сеткавы інтэрфейс"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Метка"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Па дамаўленню"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Пустая метка не дазваляецца"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:522
+#: any.pm:526
#, fuzzy, c-format
msgid "You must specify a root partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Гэтая метка ўжо выкарыстоўваецца"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Які тып пункта жадаеце дадаць?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Іншая АС (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Настройка IDE"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -274,47 +274,47 @@ msgstr ""
"У меню маюцца наступныя пункты.\n"
"Вы можаце дадаць яшчэ, альбо змяніць існуючыя."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:815
+#: any.pm:860
#, fuzzy, c-format
msgid "access to administrative files"
msgstr "Выкарыстоўваць настройкі сыстэмнага адміністратара"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:817
+#: any.pm:862
#, fuzzy, c-format
msgid "access to compilation tools"
msgstr "Канфігурацыя сістэмных сэрвісаў"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(ужо дададзена %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Калі ласка, увядзіце імя карыстальніку"
-#: any.pm:830
+#: any.pm:875
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -323,149 +323,149 @@ msgstr ""
"Імя карыстальніку павінна змяшчаць літары толькі на ніжнім рэгістры, \n"
"лічбы, ‛-’ і ‛_’"
-#: any.pm:831
+#: any.pm:876
#, fuzzy, c-format
msgid "The user name is too long"
msgstr "Імя занадта доўгае"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Гэта імя карыстальніку ўжо дададзена"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID карыстальніка"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID групы"
-#: any.pm:839
+#: any.pm:884
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "UIN павінен утрымліваць толькі лічбы.\n"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "Карыстальнік"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Пароль для root"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Увядзіце імя карыстальніку\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Піктаграма"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Уласнае імя"
-#: any.pm:870
+#: any.pm:915
#, fuzzy, c-format
msgid "Login name"
msgstr "Гульня ў косьці"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Абалонка:"
-#: any.pm:925
+#: any.pm:970
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Падрыхтоўка ўсталяваньня"
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Аўтаматычны ўваход у сістэму"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Зачыніць гэтую тэчку"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Абярыце асноўнага карыстальніка:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Абярыце мэнэджар вокнаў:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Калі ласка, пачакайце"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Зачыніць"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Ліцэнзійная дамова"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Выхад"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Ці ёсць у вас іншы?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Прыняць"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Адказаць"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, fuzzy, c-format
msgid "Please choose a language to use"
msgstr "калі ласка, пазначце тып вашай мышы"
-#: any.pm:1106
+#: any.pm:1151
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -473,87 +473,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Вы можаце абраць іншыя мовы, якія будуць даступны пасля ўсталявання"
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Выбар мовы"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, fuzzy, c-format
msgid "All languages"
msgstr "Выбар мовы"
-#: any.pm:1142
+#: any.pm:1187
#, fuzzy, c-format
msgid "Language choice"
msgstr "Выбар мовы"
-#: any.pm:1196
+#: any.pm:1241
#, fuzzy, c-format
msgid "Country / Region"
msgstr "Краіна - рэгіён і мова"
-#: any.pm:1197
+#: any.pm:1242
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "калі ласка, пазначце тып вашай мышы"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1200
+#: any.pm:1245
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Парты вываду:"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Адмысловае"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Нічога"
-#: any.pm:1294
+#: any.pm:1339
#, fuzzy, c-format
msgid "No sharing"
msgstr "Нічога"
-#: any.pm:1294
+#: any.pm:1339
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Дадаць карыстальніка"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Па выбару"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -563,86 +563,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1497
+#: any.pm:1542
#, fuzzy, c-format
msgid "Timezone"
msgstr "Тэма"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Які ваш часавы пояс?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
-#: any.pm:1528
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
-#: any.pm:1530
+#: any.pm:1575
#, fuzzy, c-format
msgid "NTP Server"
msgstr "NIS сэервер:"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -966,7 +966,7 @@ msgid "Domain Admin Password"
msgstr "Яшчэ раз пароль:"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1001,26 +1001,26 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "Не хапае дыскавай прасторы ў /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, fuzzy, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Усталяванне загрузчыку"
@@ -1050,17 +1050,23 @@ msgstr "Гб"
msgid "TB"
msgstr ""
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d хвілін"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 хвіліна"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d секундаў"
@@ -1074,27 +1080,27 @@ msgid ""
"points, select \"New\"."
msgstr ""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Новы"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Разманціраваць"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Манціраванне"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Сервак"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1102,25 +1108,25 @@ msgstr "Сервак"
msgid "Mount point"
msgstr "Кропка манціравання"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Опцыі"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Выдаліць"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Зроблена"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1136,17 +1142,17 @@ msgstr "Зроблена"
msgid "Error"
msgstr "Памылка"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr ""
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1157,33 +1163,33 @@ msgstr ""
msgid "Warning"
msgstr "Увага!"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Вы жадаеце выкарыстоўваць aboot?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Паслужнік: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Пункт манціравання:"
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Опцыі: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, fuzzy, c-format
msgid "Partitioning"
msgstr "Прынтэр"
@@ -1214,9 +1220,9 @@ msgstr "Выход"
msgid "Continue"
msgstr "Працягнуць"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Дапамога"
@@ -1244,63 +1250,63 @@ msgstr "Падрабязнасці"
msgid "No hard disk drives found"
msgstr "Вызначэнне жорсткага дыску"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Невядома"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "Выход"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Вокны"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Іншыя"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Пуста"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Тыпы файлавых сістэмаў:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "Памеры якога раздзела вы жадаеце змяніць?"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Спачатку зрабіце ‟Unmount”"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Выкарыстоўвайце ‟%s” замест"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1349,7 +1355,7 @@ msgstr "Выйсці без запісу табліцы раздзелаў"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Ці жадаеце пратэсціраваць настройкі?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Каб мадыфікацыя табліцы раздзелаў здейснілася, патрэбна перазагрузка."
@@ -1626,7 +1632,7 @@ msgid "Where do you want to mount %s?"
msgstr "Куды вы жадаеце манціраваць прыладу %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Змяненне памераў"
@@ -1671,7 +1677,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2095,8 +2101,8 @@ msgstr "Змяніць тып раздзелу"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Адмена"
@@ -2186,7 +2192,7 @@ msgstr ""
"Памылка: для стварэння новых файлавых сістэмаў не знайдзены адпаведныя \n"
"прылады. Праверце абсталяванне для пошуку імавернай прычыны."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr ""
@@ -2381,7 +2387,7 @@ msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Не хапае месца ў буферы падкачкі (swap) для ўсталявання, павялічце яго."
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2392,7 +2398,7 @@ msgstr ""
"Для гэтага стварыце раздзел (альбо адзначце ўжо існуючы).\n"
"Потым абярыце ‟Кропка манціравання” і ўстанавіце яе ў ‛/’"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2403,42 +2409,42 @@ msgstr ""
"\n"
"Усё адно працягваць?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Выкарыстоўваць незанятую прастору"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Выкарыстоўваць існуючы раздзел"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Няма існуючых раздзелаў, якія можна выкарыстаць"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, fuzzy, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Выкарыстоўваць незанятую прастору на раздзеле Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Памеры якога раздзела вы жадаеце змяніць?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, fuzzy, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2448,12 +2454,12 @@ msgstr ""
"Ваш раздзел з Microsoft Windows® занадта фрагментаваны. \n"
"Рэкамендуем спачатку запусціць праграму ‟defrag”"
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2474,75 +2480,75 @@ msgid ""
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Далей"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Прынтэр"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Якую прастору захаваць для Microsoft Windows®? раздзел %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Памер"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Вылічэнне межаў файлавай сістэмы Microsoft Windows®"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Аўтазмяненне памераў не атрымалася для раздзелу FAT %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Выдаліць Windows™"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "Сцёрці дадзеныя на ўсім дыску"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr "На які з маючыхся жорсткіх дыскаў Вы жадаеце ўсталяваць Linux?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Усе існуючыя раздзелы на дыску %s і дадзеныя на іх будуць страчаны"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, fuzzy, c-format
msgid "Custom disk partitioning"
msgstr "Вылічэнне межаў файлавай сістэмы Windows"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Выкарыстоўваць fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2551,42 +2557,42 @@ msgstr ""
"Вы можаце цяпер разбіць ваш дыск %s\n"
"Па заканчэнні не забудзьцеся захаваць змяненні, скарыстаўшы ‛w’"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Выход"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, fuzzy, c-format
msgid "I cannot find any room for installing"
msgstr "Дадаць раздзел немагчыма"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Майстар падрыхтоўкі раздзелаў DrakX знайшоў наступныя варыянты:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Падрыхтоўка разделаў не ўдалася: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, fuzzy, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
@@ -2623,22 +2629,22 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Пункт манціравання павінен пачынацца з /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ужо ёсць раздзел з пунктам манціравання %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2646,26 +2652,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2673,19 +2679,19 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2694,24 +2700,24 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Гэты каталог павінен знаходзіцца ўнутры каранёвай файлавай сістэмы"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: fsedit.pm:558
+#: fsedit.pm:562
#, fuzzy, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, fuzzy, c-format
msgid "Nothing to do"
msgstr "Нічога"
@@ -2721,238 +2727,238 @@ msgstr "Нічога"
msgid "SATA controllers"
msgstr "Кіраванне"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, fuzzy, c-format
msgid "RAID controllers"
msgstr "Кіраванне"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr ""
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "Рэжым прайгравання"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr ""
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, fuzzy, c-format
msgid "PCMCIA controllers"
msgstr "Кіраванне"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, fuzzy, c-format
msgid "SCSI controllers"
msgstr "Кіраванне"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr ""
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, fuzzy, c-format
msgid "USB ports"
msgstr "USB прылады"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr ""
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr ""
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Гнуткі дыск"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr ""
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Жорскі дыск"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr ""
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, fuzzy, c-format
msgid "CD/DVD burners"
msgstr "CDDB сервакі"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr ""
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, fuzzy, c-format
msgid "Tape"
msgstr "Тып"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr ""
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, fuzzy, c-format
msgid "Videocard"
msgstr "Відэа"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr ""
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, fuzzy, c-format
msgid "Other MultiMedia devices"
msgstr "Мульцімедыя"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, fuzzy, c-format
msgid "Soundcard"
msgstr "Гук"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr ""
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, fuzzy, c-format
msgid "Processors"
msgstr "Працэсар"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr ""
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, fuzzy, c-format
msgid "Ethernetcard"
msgstr "Іншае"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Мадэм"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr ""
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Памяць"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Прынтэр"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Джойсьцік"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Клавіятура"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Мыш"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, fuzzy, c-format
msgid "UPS"
msgstr "HFS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, fuzzy, c-format
msgid "Scanner"
msgstr "Прайгравальнік дыскаў"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr ""
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr ""
@@ -3174,19 +3180,19 @@ msgstr "Тып мышы: %s\n"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Ок"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Так"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3217,22 +3223,22 @@ msgstr "Скончыць"
msgid "Previous"
msgstr "прылада"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, fuzzy, c-format
msgid "No file chosen"
msgstr "абіральнік файла"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, fuzzy, c-format
msgid "You have chosen a directory, not a file"
msgstr "Назва \"/\" можа быць толькі каталёгам, а ня ключом"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such directory"
msgstr "Ня тэчка"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, fuzzy, c-format
msgid "No such file"
msgstr "Няма гэткага ключа '%s'\n"
@@ -4507,7 +4513,7 @@ msgstr "Замбія"
msgid "Zimbabwe"
msgstr "Зімбабве"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
@@ -5039,7 +5045,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5355,7 +5361,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6461,17 +6467,17 @@ msgstr "Рускі (фанетычны)"
msgid "Yugoslavia"
msgstr "Югаславія"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Гэта дакладна?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, fuzzy, c-format
msgid "You have chosen a file, not a directory"
msgstr "Няма такога файла ці тэчкі"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Інфармацыя"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index f16309bc6..2094b9253 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-07-05 06:47+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Bulgarian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -21,7 +21,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -30,12 +30,12 @@ msgstr ""
msgid "Please wait"
msgstr "Моля, изчакайте"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Инсталира се програма за начално зареждане"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,14 +46,14 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Инсталацията програмата за начално зареждане се провали. Появи се следната "
"грешка:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -68,218 +68,218 @@ msgstr ""
"\n"
"Кое дисково устройство ще ползвате за начално зареждане?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Инсталация на програма за начално зареждане"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Къде искате да инсталирате програмата за начално зареждане?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Първи сектор (MBR) на дисково устройство %s "
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Първи сектор на дисковото устройство (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Първия сектор на дисковия дял (PBS) с Mageia"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Запазване на дискета"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Пропусни"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Настройка на начина на стартиране"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Опции на програмата за начално зареждане"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Програма за начално зареждане"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Използвана програма за начално зареждане"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Устройство за зареждене"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Основни настойки"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Време за изчакване преди зареждане"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Включи ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Включи SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Включи APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Включи Local APIC"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Сигурност"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Парола"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Паролите не съвпадат"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Моля, опитайте отново"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Вие не можете да използвате парола включваща %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Парола (повтори)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Образ"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Коренов дял"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Параметри"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Xen параметри"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Видео режим"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Мрежов профил"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Име"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "По подразбиране"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Полето 'Име' не трябва да е празно"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Трябва да зададете обаз на ядрото"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Трябва да зададете коренов дял"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Това 'Име' вече се използва"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Какъв тип информация искате да прибавите"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Друга ОС (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Конфигуриране на програмата за начално зареждане"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -288,196 +288,196 @@ msgstr ""
"Това са записите в менюто за начално зареждане.\n"
"Можете да добавите още или да промените съществуващите."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "достъп до X програми"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "достъп до rpm инструменти"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "позволява \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "достъп до файлове за администриране"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "достъп до мрежови инструменти"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "достъп до инструменти за разработка"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(вече прибавих %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Моля, задайте потребителско име"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Това потребителско име е твърде дълго"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Това потребителско име е вече добавено"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Потребителски номер"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Номер на група"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s трябва да е число"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Управление на потребител"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Въведете потребител"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Икона"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Истинско име"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Потебителско име"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Обвивка"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Моля, изчакайте. Обновява се източник..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Автоматично влизане"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Мога да настроя компютъра ви за автоматично влизане в системата като някой "
"потребител."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Използвай тази характеристика"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Изберете подразбиращ се потребител:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Изберете графична среда за стартиране:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Бележки към версията"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Затвори"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Лицензионен договор"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Изход"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Приемате ли този лиценз ?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Приеми"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Откажи"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Моля, изберете език"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -485,87 +485,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Съвместимост с преди използващи се (различни от UTF-8) кодировки"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Всички езици"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Избор на език"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Страна / Регион"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Моля, изберете вашата държава"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Пълен списък на достръпните страни"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Други държави"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Разширени настройки"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr " Метод за въвеждане:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Няма"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Без споделяне"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Позволи на всички потребители"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Позволи на отделни потребители"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -582,7 +582,7 @@ msgstr ""
"\"Позволи на отделни потребители\" разрешава споделянето само на "
"потребителите, които са членове на групата \"fileshare\".\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -592,7 +592,7 @@ msgstr ""
"ограничено \n"
" приложима за Mac OS X и Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -602,7 +602,7 @@ msgstr ""
"повечето\n"
" съвременни Linux системи."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -610,12 +610,12 @@ msgstr ""
"Вие може да споделяте файлове използвайки NFS или SMB протоколи. \n"
"Моля, изберете кой от тях ще използвате."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Стартира userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -624,56 +624,56 @@ msgstr ""
"За споделянето на потребителски директории използва група \"fileshare\".\n"
"Може да използвате userdrake, за да добавите потребител към тази група."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"За да се активират направените промени е необходимо да излезете от текущата "
"сесия и отново да влезете"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Часова зона"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Коя е вашата времевата зона?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Дата, Часовник и Настройки на часова зона"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Кое е най-доброто време?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (хадруерният часовник е настроен по GMT)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (хадруерният часовник е настроен по локалното време)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP сървър"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматична синхронизация на времето (използва NTP)"
@@ -996,7 +996,7 @@ msgid "Domain Admin Password"
msgstr "Парола за администратор на домейн"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1036,12 +1036,12 @@ msgstr "GRUB с текстово меню"
msgid "not enough room in /boot"
msgstr "няма достатъчно място в /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Не можете да инсталирате програмата за начално зареждане на дяла %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1050,7 +1050,7 @@ msgstr ""
"Конфигурацията на програмата за начално зареждане трябва да се актуализира, "
"защото дисковите дялове бяха преномерирани"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1059,7 +1059,7 @@ msgstr ""
"Програмата за начално зареждане не може да бъде коректно инсталирана. Трябва "
"да стартирате режим rescue и да изберете \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Преинсталиране на програмата за начално зареждане"
@@ -1089,17 +1089,23 @@ msgstr "ГБ"
msgid "TB"
msgstr "ТБ"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d минути"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 минута"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d секунди"
@@ -1118,27 +1124,27 @@ msgstr ""
"предварително настроен като WebDAV сървър). Ако искате да добавите WebDAV\n"
"точка на монтиране, изберете \"Нов\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Нов"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Демонтирай"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Монтирай"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Сървър"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1146,25 +1152,25 @@ msgstr "Сървър"
msgid "Mount point"
msgstr "Точка на монтиране"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Опции"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Премахване"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Готово"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1180,17 +1186,17 @@ msgstr "Готово"
msgid "Error"
msgstr "Грешка"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Моля въведете WebDAV сървър URL"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL трябва да започва с http:// или https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1201,33 +1207,33 @@ msgstr "URL трябва да започва с http:// или https://"
msgid "Warning"
msgstr "Предупреждение"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr ""
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Сървър: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Точка на монтиране: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Опции: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Управление на дискови дялове"
@@ -1260,9 +1266,9 @@ msgstr "Изход"
msgid "Continue"
msgstr "Продължи"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Помощ"
@@ -1293,63 +1299,63 @@ msgstr "Подробности"
msgid "No hard disk drives found"
msgstr "Не е намерен твърд диск"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Неизвестен"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Друга"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Празен"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Видове файлови системи:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Този дисков дял е вече празен"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Първо използвайте 'Демонтирай'"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Вместо това използвайте ``%s'' (в експертен режим)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1398,7 +1404,7 @@ msgstr "Изход, без да запазване на таблицата на
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Искате ли да запазите направените промени в /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1688,7 +1694,7 @@ msgid "Where do you want to mount %s?"
msgstr "Къде искате да монтирате устройство %s ?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Промяна на големината"
@@ -1735,7 +1741,7 @@ msgstr "Минимален размер: %s МБ"
msgid "Maximum size: %s MB"
msgstr "Максимален размер: %s МБ "
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2168,8 +2174,8 @@ msgstr "Промяни типа"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Отказ"
@@ -2264,7 +2270,7 @@ msgstr ""
"създадени нови файлови системи. Моля проверете твърдия си диск си за "
"причината за този проблем."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Трябва да имате ESP FAT32 дял монтиран в /boot/EFI"
@@ -2466,7 +2472,7 @@ msgstr ""
"Няма достатъчно в swap дяла за приключване на инсталацията, моля, добавете "
"още"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2477,7 +2483,7 @@ msgstr ""
"Затова създайте дял (или изберете някой съществуващ).\n"
"После натиснете бутона ``Място на монтиране'' и задайте `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2488,42 +2494,42 @@ msgstr ""
"\n"
"Да продължа ли все пак ?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Използвай свободното място"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Няма достатъчно място за създаване на нов дял"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Изпозване на съществуващ дял"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Няма дял, който мога да използвам"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Изчислява свободното място на Microsoft Windows® дял"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Използвай свободното място от дяла с Microsoft Windows® "
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Кой дял желаете да промените?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2531,12 +2537,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2569,75 +2575,75 @@ msgstr ""
"Когато сте сигурни, натиснете %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Следващ"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Управление на дискови дялове"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Колко искате да оставите за windows? дял %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Размер"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Изчислявам границите на Microsoft Windows® файловата система"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Неуспешно преразделяне на FAT: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Няма FAT дялове за смяна на големината (или няма достаъчно място)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Премахни Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Изтрий и използвай целия диск"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "ВСИЧКИ съществуващи дялове и данните върху тях на %s ще бъдат загубени"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Клиентско разделяне на диска"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Използвай fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2646,42 +2652,42 @@ msgstr ""
"Сега можете да разделите %s.\n"
"Когато сте готови, не забравяйте да запишете използвайки `w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr ""
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Не мога да намеря никакво място за инсталация"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Помощникът за разделине на дялове на DrakX намери следните решения:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Неуспешно разделяне на: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Не можете да използвате JFS за дял по-малък от 16 МБ"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Не можете да инсталиране ReiserFS на дял по-малък от 32 МБ"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2726,22 +2732,22 @@ msgstr ""
"\n"
"Съгласни ли сте да загубите всички дялове?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Точките на монтиране трябва да започват с /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Точките на монтиране трябва да съдържат само букви и цифри"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Вече има дял монтиран на това място %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2749,26 +2755,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2776,20 +2782,20 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Вие не може да използвате криптирана файлова система за точка на монтиране %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2798,12 +2804,12 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Тази директория трябва да остане в рамките на root файловата система."
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2812,12 +2818,12 @@ msgstr ""
"Нуждаете се от истинска файлова система (ext2, reiserfs,xfs, или jfs) за "
"тази точка на монтиране\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Няма достатъчно място за автоматично разпределяне"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Няма нищо за правене"
@@ -2827,238 +2833,238 @@ msgstr "Няма нищо за правене"
msgid "SATA controllers"
msgstr "SATA контролери"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID контролери"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA контролери"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Картови четци:"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire контролери"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA контролери"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI контролери"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB контролери"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB портове"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus контролери"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Бриджове и системни контролери"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Флопи дисково устройство"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip устройство"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Твърд диск"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB устройства за съхранение на данни"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD записващи устройства"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Лента"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP контролери"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Видео карта"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB карта"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV тунер"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Други мултимедийни устройства"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Звукова карта"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "WEB камера"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Процесори"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN адаптери"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "USB звукови устройства"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Радио карта"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "ATM мрежова карта"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "WAN мрежова карта"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth устройства"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet карта"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Модем"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL адаптери"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Памет"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Принтер"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Игрови контролер"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Джойстик"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Клавиатура"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Таблет и сензорен екран"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Мишка"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Биометричен контрол"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Скенер"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Неизвестни/Други"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3282,19 +3288,19 @@ msgstr "Тип на тунер:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Готово"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Да"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3325,22 +3331,22 @@ msgstr "Край"
msgid "Previous"
msgstr "Предишен"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Не е избран файл"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Вие избрахте директория, а не файл"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Няма такава директория"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Няма такъв файл"
@@ -4619,7 +4625,7 @@ msgstr "Замбия"
msgid "Zimbabwe"
msgstr "Зимбабве"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Добре дошли в %s"
@@ -5242,9 +5248,9 @@ msgid "Allow direct root login."
msgstr "Позволи директно влизане на root."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr "Позволи"
#: security/help.pm:35
@@ -5590,9 +5596,9 @@ msgid "Direct root login"
msgstr ""
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
-msgstr ""
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
+msgstr "Позволи"
#: security/l10n.pm:20
#, c-format
@@ -6699,17 +6705,17 @@ msgstr "Руска Федерация"
msgid "Yugoslavia"
msgstr "Югославия"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Всичко правилно ли е ?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Трябва да изберете файл, а не директория."
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Информация"
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index 02cd21900..bd9d5628b 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX HEAD\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2005-03-19 23:18+0600\n"
"Last-Translator: Samia <mailsamia2001@yahoo.com>\n"
"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -26,12 +26,12 @@ msgstr ""
msgid "Please wait"
msgstr "অনুগ্রহ করে অপেক্ষা করুন"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "বুট লোডার ইনস্টল করা হচ্ছে"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,12 +46,12 @@ msgstr ""
"উইন্ডোজ সমস্যা।\n"
"নতুন একটি ভলিউম আই-ডি দেয়া হবে?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Bootloader ইনষ্টলেশন ব্যর্থ হয়েছে। এ সমস্ত ত্রুটি ঘটেছে:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -67,218 +67,218 @@ msgstr ""
"\n"
"আপনি কোন ড্রাইভ থেকে বুট করছেন?"
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "বুট লোডার ইনস্টল করা হচ্ছে"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "আপনি bootloader টি কোথায় ইনস্টল করতে চান?"
-#: any.pm:351
+#: any.pm:355
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "ড্রাইভের প্রথম সেক্টর (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "ড্রাইভের প্রথম সেক্টর (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "রুট পার্টিশনের প্রথম সেক্টর"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "ফ্লপি তে"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "উপেক্ষা"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "বুটের ধরণ কনফিগারেশন"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "বুটলোডারের আসল অপশনসমুহ"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "বুটলোডার"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "ব্যবহারের জন্য বুটলোডার"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "বুট ডিভাইস"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "স্বাভাবিক ইমেজ লোড করার আগে দেরী করো"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "ACPI এনেবল করো"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI এনেবল করো"
-#: any.pm:416
+#: any.pm:420
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI এনেবল করো"
-#: any.pm:418
+#: any.pm:422
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI এনেবল করো"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "সিকিউরিটি"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "পাসওয়ার্ড"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "পাসওয়ার্ডটি মিলছে না"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "অনুগ্রহ করে আবার চেষ্ট করুন"
-#: any.pm:425
+#: any.pm:429
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "পাসওয়ার্ড (পুনরায়)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "ইমেজ"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "যুক্ত"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "ভিডিওর ধরণ"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "নেটওয়ার্ক প্রোফাইল"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "শিরোনাম"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "স্বাভাবিক"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "খালি শিরোনাম গ্রহণযোগ্য নয়"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "আপনাকে অবশ্যই একটি কার্নালের ইমেজ নির্ধারণ করে দিতে হবে"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "আপনাকে অবশ্যই একটি রুট পার্টিশন নির্ধারণ করে দিতে হবে"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "এই শিরোনামটি আগেই ব্যবহার হয়েছে"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "আপনি কি ধরণের এন্ট্রি যোগ করতে চান?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "লিনাক্স"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "অন্যান্য OS (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "বুটের ধরণ কনফিগারেশন"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -287,197 +287,197 @@ msgstr ""
"এপর্যন্ত আপনার বুটমেনুর এন্ট্রিগুলি এখানে।\n"
"আপনি অন্যান্য এন্ট্রি তৈরী করতে পারেন অথবা আগের এন্ট্রিগুলি পরিবর্তন করতে পারেন।"
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "X প্রোগ্রামসমূহে প্রবেশাধিকার"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "RPM টুলে প্রবেশাধিকার"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "\"su\" গ্রহন করো"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "এডমিনিষ্ট্রেশন সংক্রান্ত ফাইলে প্রবেশাধিকার"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "নেটওয়ার্ক টুলে প্রবেশাধিকার"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "compilation টুলে প্রবেশাধিকার"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s আগেই যোগ করা হয়েছে)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "অনুগ্রহ করে একটি উইজার নেম দিন"
-#: any.pm:830
+#: any.pm:875
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "ইউজারনেমে অবশ্যই ছোটহাতের অক্ষর, নম্বর \"-\" এবং \"_\" থাকতে হবে"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "ইউজারনেমটি অনেক বড়"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "এই ইউজারনেমটি এর আগেই যোগ করা হয়েছে"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ব্যবহারকারীর ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "দলের ID"
-#: any.pm:839
+#: any.pm:884
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "অপশন %s-কে অবশ্যই একটি সংখ্যা হতে হবে!"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "ব্যবহারকারীনাম"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "আ্যাডমিনিস্ট্রেটর (root) পাসওয়ার্ড সেট করুন"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"একটি ইউজার প্রবেশ করান\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "আইকন"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "আসল নাম"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "লগ-ইন নাম"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "শেল"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "মাধ্যম যোগ করা হচ্ছে, অনুগ্রহ করে অপেক্ষা করুন..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "সয়ংক্রিয় লগ-ইন"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"আমি আপনার কম্পিউটারকে সয়ংক্রিয়ভাবে একটি ইউজারকে লগইন করার জন্য সেট করতে পারি।"
-#: any.pm:960
+#: any.pm:1005
#, fuzzy, c-format
msgid "Use this feature"
msgstr "এই সুবিধাটি কি আপনি ব্যবহার করতে চান?"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "স্বাভাবিক ব্যবহারকারীকে পছন্দ করুন:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "রান করার জন্য উইন্ডো ম্যানেজারকে পছন্দ করুন:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "সংস্করণ মন্তব্য"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "বন্ধ"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "লাইসেন্স এগ্রিমেন্ট"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "বাহির"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "আপনার কি আরও একটি আছে?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "গ্রহণ"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "অস্বীকার"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "ব্যবহার করার জন্য একটি ভাষা পছন্দ করুন"
-#: any.pm:1106
+#: any.pm:1151
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -488,87 +488,87 @@ msgstr ""
"আপনি যেই ভাষাটি ইনস্টল করতে চান তা পছন্দ করুন।\n"
"ইনস্টল শেষে রি-স্টার্ট করার পরে সেই ভাষাগুলি উপলব্ধ হবে।"
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "ম্যান্ড্রিব লিনাক্স (Mageia)"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "সমস্থ ভাষা"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "সমস্থ ভাষা"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "পছন্দনীয় ভাষা"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "দেশ / স্থান"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "অনুগ্রহ করে তোমার দেশ পছন্দ করো।"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "উপলব্ধ সমস্থ দেশের নাম এখানে রয়েছে"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "অন্যান্য দেশসমুহ"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "উন্নত"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "ইনপুট মাধ্যম:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "একটিও না"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "শেয়ারিং নেই"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "সব ব্যবহারকারীদের গ্রহণ করো"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "ব্যবস্থা"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -578,7 +578,7 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr "আপনি কি ব্যবহারকারীদের কিছু ডিরেক্টরি শেয়ার করতে দিতে চান?\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -586,7 +586,7 @@ msgid ""
msgstr ""
"NFS: ঐতিহ্যগত ইউনিক্স ফাইল শেয়ারিং সিস্টেম, যা ম্যাক এবং উইন্ডোজে স্বল্প সমর্থিত।"
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -595,7 +595,7 @@ msgstr ""
"SMB: উইন্ডোজ, ম্যাক ও-এস এক্স এবং অনেক আধুনিক লিনাক্স সিস্টেম কর্তৃক ব্যবহৃত ফাইল "
"শেয়ারিং সিস্টেম।"
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -603,12 +603,12 @@ msgstr ""
"আপনি NFS বা SMB ব্যবহার করে ফাইল পাঠাতে পারেন। যেটি আপনি ব্যবহার করতে চান "
"অনুগ্রহ করে নির্বাচন করুন।"
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "userdrake শুরু করো"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -617,54 +617,54 @@ msgstr ""
"প্রত্যেক ব্যবহারকারী গ্রুপের \"ফাইল ভাগাভাগি\" ভাগাভাগি করতে পারেন। \n"
"এই গ্রুপে একজণ ব্যবহারকারী যোগ করতে আপনি userdrake ব্যবহার করতে পারেন।"
-#: any.pm:1458
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "টাইমজোন"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "আপনার টাইমজোন কি?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1527
+#: any.pm:1572
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
-#: any.pm:1528
+#: any.pm:1573
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP সার্ভার"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "সয়ংক্রিয়ভাবে সময় মেলাও (NTP ব্যবহার করে)"
@@ -995,7 +995,7 @@ msgid "Domain Admin Password"
msgstr "ডোমেইন অ্যাডমিনের পাসওয়ার্ড"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1035,13 +1035,13 @@ msgstr ""
msgid "not enough room in /boot"
msgstr "/boot -এ বেশী জায়গা নেই"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "আপনি %s পার্টিশনে বুটলোডার ইনস্টল করতে পারবেননা\n"
# renumber = রি-নাম্বার লিখলাম। আসলটা আমি জানিনা
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1049,7 +1049,7 @@ msgid ""
msgstr ""
"পার্টিশন রি-নাম্বার করার কারনে আপনার বুটলোডারের কনফিগারেশন অবশ্যই আপডেট করতে হবে"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1058,7 +1058,7 @@ msgstr ""
"বুটলোডার সঠিকভাবে ইনস্টল হতে পারবেনা। আপনাকে rescue বুট করতে হবে এবং \"%s\" "
"পছন্দ করতে হবে"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "বুট লোডার রি-ইনস্টল করো"
@@ -1088,17 +1088,23 @@ msgstr "জিবি"
msgid "TB"
msgstr "টিবি"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d মিনিট"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "১ মিনিট"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d সেকেন্ড"
@@ -1118,27 +1124,27 @@ msgstr ""
"হিসেবে কন্‌ফিগার করা)। যদি আপনি WebDAV মাউন্ট পয়েন্ত যুক্ত করতে চান, তবে \"নতুন\" "
"বেছে নিন।"
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "নতুন"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "আন-মাউন্ট"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "মাউন্ট"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "সার্ভার"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1146,25 +1152,25 @@ msgstr "সার্ভার"
msgid "Mount point"
msgstr "মাউন্ট পয়েন্ট"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "অপশন"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "মুছে ফেলো"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "হয়েছে"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1180,17 +1186,17 @@ msgstr "হয়েছে"
msgid "Error"
msgstr "ত্রুটি"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "অনুগ্রহ করে WebDAV সার্ভারের URL প্রবেশ করান"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL অবশ্যই http:// অথবা https:// দিয়ে শুরু করতে হবে"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1201,33 +1207,33 @@ msgstr "URL অবশ্যই http:// অথবা https:// দিয়ে শু
msgid "Warning"
msgstr "নোটিশ"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "আপনি কি এই বাটনে ক্লিক করতে চান?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "সার্ভার:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "মাউন্ট পয়েন্ট:"
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "অপশন: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "পার্টিশন করা হচ্ছে"
@@ -1258,9 +1264,9 @@ msgstr "বাহির"
msgid "Continue"
msgstr "অগ্রসর"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "সাহায্য"
@@ -1291,63 +1297,63 @@ msgstr "বিস্তারিত"
msgid "No hard disk drives found"
msgstr "কোন হার্ড ড্রাইভ পাওয়া যায়নি"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "অজানা"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "বাহির"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "সোয়াপ"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "উইন্ডোজ"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "অন্যান্য"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "শূণ্য"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "ফাইল সিস্টেমের ধরণ:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, fuzzy, c-format
msgid "This partition is already empty"
msgstr "এই পার্টিশনটি রি-সাইজ করার মত না"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "প্রথমে ``Unmount'' ব্যবহার করুন"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "পরিবর্তে ``%s'' ব্যবহার করুন"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1396,7 +1402,7 @@ msgstr "কোন পার্টিশন টেবিল না লিখে
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "আপনি /etc/fstab -এর পরিবর্তন সেভ করতে চান?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "পার্টিশন টেবিলের পরিবর্তনগুলি কার্যকর করবার জন্য আপনাকে রা-ষ্টার্ট করতে হবে"
@@ -1680,7 +1686,7 @@ msgid "Where do you want to mount %s?"
msgstr "আপনি কোথায় মাউন্ট করতে চান %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "আকার পরিবর্তন করা হচ্ছে"
@@ -1725,7 +1731,7 @@ msgstr ""
msgid "Maximum size: %s MB"
msgstr ""
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, fuzzy, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2161,8 +2167,8 @@ msgstr "ধরণ বদল করো"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "বাতিল"
@@ -2254,7 +2260,7 @@ msgstr ""
"একটি ভুল হয়ে গেছে - কোন সঠিক যন্ত্র পাওয়া যায়নি যেখানে নতুন ফাইল সিস্টেম তৈরি করা "
"হবে। অনুগ্রহ করে এই সমস্যার কারণের জন্য আপনার হার্ডওয়্যার পরীক্ষা করুন"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "আপনার /boot/EFI -এ অবশ্যই একটি ESP FAT32 পার্টিশন থাকতে হবে"
@@ -2470,7 +2476,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "ইনস্টলেশন সম্পূর্ন হবার জন্য যথেষ্ট swap জায়গা নেই, অনুগ্রহ করে কিছু যোগ করুন"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2481,7 +2487,7 @@ msgstr ""
"সেকারণে, একটি পার্টিশন তৈরি করুন (অথবা ইতিমধ্যেই তৈরি একটিতে ক্লিক করুন)।\n"
"তারপর ``Mount point'' বেছে নিন এবং সেটাকে `/' তে সেট করুন"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2492,42 +2498,42 @@ msgstr ""
"\n"
"তবুও আগাবো?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "শুণ্য স্থান ব্যবহার করো"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "নতুন পার্টিশন তৈরী করার জন্য যথেষ্ট পরিমান খালি জায়গা নেই"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "আগের পার্টিশনগুলি ব্যবহার করো"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "ব্যবহারের জন্য এখানে উপস্থিত কোন পার্টিশন নেই"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "আপনার উইন্ডোজের পার্টিশনের সাইজ হিসেব করা হচ্ছে"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "উইন্ডোজ পার্টিশনের খালি জায়গা ব্যবহার করে"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "আপনি কোন পার্টিশন রি-সাইজ করতে চান?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, fuzzy, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2537,12 +2543,12 @@ msgstr ""
"আপনার উইন্ডোজের পার্টিশনটি প্রচন্ড অসম। অনুগ্রহ করে আপনার কম্পিউটারটি উইন্ডোজে রি-বুট "
"করে, ``defrag'' ইউটিলিটি চালান, পরে রি-ষ্টার্ট করে আবার মেনড্রক ইনস্টলেশন চালান।"
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2577,76 +2583,76 @@ msgstr ""
# পরবর্তি
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "পরবর্তী"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "পার্টিশন করা হচ্ছে"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "আপনি কোথায় উইন্ডোজের জন্য কোন সাইজটি রাখতে চান পার্টিশনসমূহ %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "মাপ"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "উইন্ডোজ পার্টিশন আকার পরিবর্তন করা হচ্ছে"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT আকার পরিবর্তন ব্যর্থ হয়েছে: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"রি-সাইজ করার জন্য কোন FAT পার্টিশন নেই (অথবা যথেষ্ট পারিমান ফাঁকা জায়গা নেই)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "উইন্ডোজ(TM) মুছে ফেলো"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "সম্পূর্ণ ডিস্ক মুছে ফেলো"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr "আপনার একের অধিক হার্ড ড্রাইভ আছে, আপনি কোনটাতে লিনাক্স ইনস্টল করতে চান?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s ড্রাইভে উপস্থিত সমস্থ ডাটা এবং পার্টিশন নষ্ট হয়ে যাবে"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "হাতে হাতে ডিস্ক পার্টিশন"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "fdisk ব্যবহার করো"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2655,42 +2661,42 @@ msgstr ""
"এখন আপনি %s-কে পার্টিশন করতে পারেন।\n"
"যখন হয়ে যাবে, তখন `w' চেপে সেভ করতে ভূলবেননা"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "বাহির"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "আমি ইনস্টল করার জন্য কোন জায়গা পাচ্ছিনা"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX পার্টিশন সহায়ক এই সমস্থ সমাধান পেয়েছে:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "পার্টিশনে ব্যার্থ: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "১৬ মেগাবাইটের চাইতে ছোট পার্টিশনে আপনি JFS ব্যবহার করতে পারবেন না"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "৩২ মেগাবাইটের চাইতে ছোট পার্টিশনে আপনি ReiserFS ব্যবহার করতে পারবেন না"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "১৬ মেগাবাইটের চাইতে ছোট পার্টিশনে আপনি JFS ব্যবহার করতে পারবেন না"
@@ -2734,23 +2740,23 @@ msgstr ""
"\n"
"আপনি কি সব পার্টিশন হারাতে রাজি?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "মাউন্ট পয়েন্টগুলি অবশ্যই / দিয়ে শুরু হতে হবে"
# * = alphanumerical = বাংলাটা মনে পড়ছেনা
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "মাউন্ট পয়েন্টগুলিতে শুধু * অক্ষর থাকবে"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "এই পার্টিশনটি আগে থেকেই %s মাউন্টপয়েন্ট নামে আছে\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2761,7 +2767,7 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2771,7 +2777,7 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:458
+#: fsedit.pm:461
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2781,12 +2787,12 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2797,19 +2803,19 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, fuzzy, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr "আপনি LVM লজিকাল ভলিউমকে %s মাউন্ট পয়েন্ট হিসেবে ব্যবহার করতে পারবেননা"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2821,12 +2827,12 @@ msgstr ""
"/boot পার্টিশন ছাড়া কোন বুটলোডার এটা হেন্ডেল করতে পারবেনা।\n"
"অনুগ্রহ করে অবশ্যই একটি /boot পার্টিশন যোগ করুন"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "root ফাইল সিস্টেমের মধ্যে এই ডিরেক্টরি থাকা উচিত"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2835,12 +2841,12 @@ msgstr ""
"এই মাউন্ট পয়েন্টের জন্য আপনার একটি সঠিক ফাইল সিস্টেম (ext2/3/4, reiserfs, xfs, "
"বা jfs) প্রয়োজন\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "স্বয়ংক্রিয়-বন্টনের জন্য কোন খালি জায়গা নেই"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "কিছু করার নাই"
@@ -2850,238 +2856,238 @@ msgstr "কিছু করার নাই"
msgid "SATA controllers"
msgstr "SATA কন্ট্রলারসমূহ"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID কন্ট্রলারসমূহ"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA কন্ট্রলারসমূহ"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "কার্ড মডেল:"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire কন্ট্রলারসমূহ"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA কন্ট্রলারসমূহ"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI কন্ট্রলারসমূহ"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "ইউএসবি কন্ট্রলারসমূহ"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "ইউএসবি পোর্টসমূহ"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus কন্ট্রলারসমূহ"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "ব্রীজ এবং সিস্টেম কন্ট্রোলার সমূহ"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "ফ্লপি"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "জিপ"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "ডিস্ক"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr ""
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "সিডিরম"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "সিডি/ডিভিডি রাইটিং সফ্টওয়্যার"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "ডিভিডি-রোম"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "টেপ"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP কন্ট্রোলার সমূহ"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "ভিডিওকার্ড"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr ""
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "টিভিকার্ড"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "অন্যান্য মাল্টিমিডিয়া ডিভাইস সমূহ"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "সাউন্ডকার্ড"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "ওয়েব ক্যামেরা"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "প্রসেসর"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN এডোপ্টার সমূহ"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr ""
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr ""
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr ""
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr ""
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr ""
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "ইথারনেটকার্ড"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "মডেম"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL এডোপ্টার সমূহ"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "মেমরি"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "প্রিন্টার"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr ""
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "জয়ষ্টিক"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "কি-বোর্ড"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr ""
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "মাউস"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "স্কেনার"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "অজানা/অন্যান্য"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "সিপিউ #"
@@ -3332,19 +3338,19 @@ msgstr "টিউনারের ধরণ:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "ঠিক আছে"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "হ্যাঁ"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3377,25 +3383,25 @@ msgid "Previous"
msgstr "পূর্ববর্তী"
# সাম
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "কোন ফাইল বেছে নেয়া হয়নি"
# সাম
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "আপনি একটি ডিরেক্টরি নির্বাচন করেছেন, ফাইল নয়"
# সাম
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "এই নামে কোন ডিরেক্টরি নেই"
# সাম
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "এই নামে কোন ফাইল নেই"
@@ -4678,7 +4684,7 @@ msgstr "জাম্বিয়া"
msgid "Zimbabwe"
msgstr "জিম্বাবুয়ে"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "%s -এ আপনাকে স্বাগতম"
@@ -5246,7 +5252,7 @@ msgstr "সরাসরি রুট অ্যাকাউন্টে লগ-
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"ডিসপ্লে ব্যবস্থাপকে ব্যবহারকারীদের তালিকা প্রদর্শন অনুমোদন/নিষিদ্ধ করো (কে.ডি.এম. "
"এবং জি.ডি.এম.)।"
@@ -5637,8 +5643,8 @@ msgid "Direct root login"
msgstr "সরাসরি রুট অ্যাকাউন্টে লগ-ইন"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
"ডিসপ্লে ব্যবস্থাপকে (কে.ডি.এম. ও জি.ডি.এম.) ব্যবহারকারীদের তালিকা প্রদর্শন করো"
@@ -6886,18 +6892,18 @@ msgstr "রুশ ফেডারেশন"
msgid "Yugoslavia"
msgstr "যুগোস্লাভিয়া"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "এটা কি সঠিক?"
# সাম
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "আপনি একটি ফাইল নির্বাচন করেছেন, ডিরেক্টরি নয়"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "তথ্য"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 008e58663..ea87ce8e3 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 10.2\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-14 01:09+0200\n"
"Last-Translator: Thierry Vignaud <thierry.vignaud.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1;plural=0\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -25,12 +25,12 @@ msgstr ""
msgid "Please wait"
msgstr "Gortozit mar plij"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "O staliañ ar c'harger loc'hañ"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -41,13 +41,13 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Staliadur ar c'harger loc'hañ zo sac'het. Degouezhet eo ar fazi a heul :"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -57,218 +57,218 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Staliadur ar c'harger loc'hañ"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e vennit staliañ ar c'harger loc'hañ ?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Rann gentañ (MBR) pladenn %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Rann gentañ ar bladenn (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Rann gentañ ar barzhadur kentañ"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "War bladennig"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Tremen e-biou"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Kefluniadur giz al loc'hañ"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Dibarzhioù pennañ ar c'harger loc'hañ"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Karger loc'hañ"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Karger loc'hañ da implijout"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Trobarzhell loc'hañ"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Dibarzhioù pennañ"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Bevaat ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Bevaat SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Bevaat APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Bevaat APIC lec'hel"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Diogelroez"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Tremenger"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "An tremegerioù ne glot ket"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Gellout a rit implij ur ger-tremen gant %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Skeudenn"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Gwrizienn"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Ouzhpennañ en diwezh"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Mod video"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Profil rouedad"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Skridennad"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Dre ziouer"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Berzet eo ar skridennadoù goullo"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Ret eo deoc'h kaout ur skeudenn kalon"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Ret eo deoc'h kaout ur parzhadur gwrizienn"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennañ ?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Reizhiadoù all (Windows ...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Kefluniadur al loc'hañ"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -277,47 +277,47 @@ msgstr ""
"Setu da heul an enmontoù liesseurt.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "Aotreañ « su »"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -326,149 +326,149 @@ msgstr ""
"An anv arveriad a zle krogiñ gant ul lizherenn munut ha war he lerc'h "
"lizherennoù munut, sifroù, `-' ha `_' hepken"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Re hir eo an anv arveriad-se"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID an arveriad"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID ar strollad"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "ret eo da %s bezañ un niver"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Merañ an arveriaded"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Termeniñ tremenger ar merour (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Skrivit anv un arveriad"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Arlun"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Anv gwirion"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Anv ereañ"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Gortozit mar plij, emaon oc'h ouzhpennañ ur media ..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Emereañ"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Gallout a ran kefluniañ hoc’h urzhiataer evit lañsañ X ent emgefreek gant un "
"arveriad."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Implij an arc'hwel-mañ"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Dibabit an arveriad dre ziouer :"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dibabit ar merour prenestrer da seveniñ :"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Cheñchamantoù"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Serriñ"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Emglev an aotre"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Kuitaat"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Hag e plij an aotre-mañ deoc'h ?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Plijout a ra din"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Ne blij ket din"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Dibabit ar yezh da implijout, mar plij"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -479,87 +479,87 @@ msgstr ""
" yezhoù all hag a vo hegerz goude staliañ (ur wech e vo bet adloc'het\n"
" ar reizhiad)"
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Liesyezh"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kodadur kozh (n'eo ket UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "An holl yezhoù"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Dibab ho yezh"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Bro / Rannvro"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Dibabit ho pro, mar plij"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Setu eo listenn leun ar broioù holl"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Broioù all"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Barrek"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Hentenn enkas :"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Hini ebet"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "N'eo ket lodañ"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Aotreañ pep arveriad"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personelañ"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -569,86 +569,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Lañsañ userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Takad-eur"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Kefluniadur an deiziad, an eurier hag an amzer"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Peseurt hini zo an amzer welloc'h ?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (war UTC eo lakaet hoc’h eurier periantel)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (war GMT eo lakaet hoc’h eurier periantel)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Servijer NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -971,7 +971,7 @@ msgid "Domain Admin Password"
msgstr "Tremenger merour an domani"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1011,12 +1011,12 @@ msgstr "GRUB gant meuziad skrid"
msgid "not enough room in /boot"
msgstr "n'eus ket a-walc'h egor e /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ne vennit ket staliañ ar c'harger loc'hañ war ur parzhadur %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1025,7 +1025,7 @@ msgstr ""
"Ret eo bremanaat kefluniadur ho karger loc'hañ peogwir e oa cheñchet niver "
"ar parzhiadurioù"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1034,7 +1034,7 @@ msgstr ""
"N'hell ket bet staliet ar c'harger loc'hañ. Dao eo deoc'h loc'hañ gant ar "
"bladenn skoazell ha dibab « %s »"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Staliañ ar c'harger loc'hañ c'hoazh"
@@ -1064,17 +1064,23 @@ msgstr "Go"
msgid "TB"
msgstr "To"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d munutennoù"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 munutenn"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d eilenn"
@@ -1088,27 +1094,27 @@ msgid ""
"points, select \"New\"."
msgstr ""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nevez"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Divarc'hañ"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Marc'hañ"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Servijer"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1116,25 +1122,25 @@ msgstr "Servijer"
msgid "Mount point"
msgstr "Poent marc'hañ"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Dibarzhioù"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Dilemel"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Graet"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1150,17 +1156,17 @@ msgstr "Graet"
msgid "Error"
msgstr "Fazi"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Skrivit URL ar servijer WebDAV mar plij"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Ezhomm en deus an URL da gregiñ gant http:// pe https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1171,33 +1177,33 @@ msgstr "Ezhomm en deus an URL da gregiñ gant http:// pe https://"
msgid "Warning"
msgstr "Hoc’h evezh"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Ha fellout a ra deoc'h da vat lemel ar poent marc'hañ-mañ ?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Servijer : "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Poent marc'hañ : "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Dibarzhioù : %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "O parzhañ"
@@ -1228,9 +1234,9 @@ msgstr "Kuitaat"
msgid "Continue"
msgstr "Kenderc'hel"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Skoazell"
@@ -1261,63 +1267,63 @@ msgstr "Munudoù"
msgid "No hard disk drives found"
msgstr "N'eus ket pladenn kavet ebet"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Anavez"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Disloañ"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "All"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Goullo"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Seurt ar reizhiadoù restroù :"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Goullo eo ar barzhadur-se c'hoazh"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Implijit « Divarc'hañ » da gentañ"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Grit kentoc'h gant « %s » (er mod mailh)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1366,7 +1372,7 @@ msgstr "Kuitaat hep skrivañ an daolenn barzhañ ?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Mennout a rit skrivañ kemmoù /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Ret eo deoc'h adloc'hañ evit ma talvezo kemmoù an daolenn barzhañ"
@@ -1643,7 +1649,7 @@ msgid "Where do you want to mount %s?"
msgstr "Pelec'h e vennit marc'hañ an %s ?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Oc'h adventañ"
@@ -1688,7 +1694,7 @@ msgstr "Ment izelañ : %s Mo"
msgid "Maximum size: %s MB"
msgstr "Ment uhelañ : %s Mo"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2118,8 +2124,8 @@ msgstr "Kemmañ seurt"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Nullañ"
@@ -2212,7 +2218,7 @@ msgstr ""
"krouiñ reizhiadoù restroù nevez warni. Gwiriit abeg ar gudenn-mañ en hoc’h "
"ardivinkaj mar plij "
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Ret eo deoc'h kaout ur parzhadur ESP FAT32 marc'het war /boot/EFI"
@@ -2407,7 +2413,7 @@ msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"N'eus ket a-walc'h a zisloañ evit peurstaliañ, kreskit anezhañ mar plij"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2418,7 +2424,7 @@ msgstr ""
"Evit se, krouit ur parzhadur (pe glikit ouzh unan a zo c'hoazh).\n"
"Da c'houde dibabit an ober « Poent marc'hañ » ha lakait anezhañ da `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2429,42 +2435,42 @@ msgstr ""
"\n"
"Fellout a ra deoc'h mont war-raok evelato ?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Implij an egor dieub"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "N'eus ket a-walc'h egor dieub evit parzhadurioù nevez"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Implijit ar parzhadurioù a zo dija"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "N'eus parzhadur da implij ebet"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "O jediñ ment ar barzhadur Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Implijit an egor dieub war ar barzhadur Microsoft Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Pe seurt parzhadur a vennit furmadiñ ?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2472,12 +2478,12 @@ msgid ""
"the %s installation."
msgstr ""
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2510,54 +2516,54 @@ msgstr ""
"Pa vezit sur, gwaskit « %s »"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "A heul"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "O parzhañ"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Peseurt ment e vennit chom evit Microsoft Windows® war ar barzhadur %s ?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Ment"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Oc'h adventañ ar barzhadur Microsoft Windows®"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Fazi en un adventañ ar barzhadur FAT : %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "N'eus ket ur barzhadur FAT d'adventañ (n'eus ket a-walc'h egor dieub)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Lemel Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Chetañ hag implij an holl planedenn"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2565,23 +2571,23 @@ msgid ""
msgstr ""
"Meur a bladenn hoc’h eus. Pehini hoc’h eus c'hoant da implij evit staliañ ?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Ar parzhadurioù HOLL o vezañ hag e vo kollet holl roadoù war ar bladenn %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Parzhadurioù diouzoc'h"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Implijit fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2590,42 +2596,42 @@ msgstr ""
"Gallout a rit bremañ parzhañ ho pladenn galet %s.\n"
"Pa 'z eo graet, na zisoñjit ket enrollañ dre implijout `w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "N'hellan ket kavout plas da staliañ"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Kinnig eo deoc'h gant ar skoazeller parzhadur DrakX :"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Setu ar pezh a zo war ho pladenn "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Fazi en ur parzhañ : %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "N'hellit ket implij JFS evit ar parzhadurioù bihanoc'h evel 16Mo"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "N'hellit ket implij ReiserFS evit ar parzhadurioù bihanoc'h evel 32Mo"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "N'hellit ket implij BTRFS evit ar parzhadurioù bihanoc'h evel 256Mo"
@@ -2670,22 +2676,22 @@ msgstr ""
"(%s eo ar fazi)\n"
"\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Poentoù marc'hañ a rank kregiñ gant /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Bez' ez eus ur parzhadur e boent marc'hañ %s endeo\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2696,7 +2702,7 @@ msgstr ""
"N'eus ket moaien da loc'hañ hep ur barzhadur /boot.\n"
"Bezit sur hoc’h eus ouzhpennet ur barzhadur /boot"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2706,7 +2712,7 @@ msgstr ""
"N'eus ket moaien da loc'hañ hep ur barzhadur /boot.\n"
"Bezit sur hoc’h eus ouzhpennet ur barzhadur /boot"
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2715,12 +2721,12 @@ msgstr ""
"Choazet hoc’h eus implij ur RAID software evit /boot.\n"
"N'eus ket moaien da loc'hañ hep ur barzhadur /boot."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2732,14 +2738,14 @@ msgstr ""
"N'eus ket moaien da loc'hañ hep ur barzhadur /boot.\n"
"Bezit sur hoc’h eus ouzhpennet ur barzhadur /boot"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"N'hell ket bet implijet ur reizhiad restroù enrineget evit ar poent marc'hañ "
"%s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2748,7 +2754,7 @@ msgstr ""
"Ne vennit ket implij al levrenn boellek LVM evit ar poent marc'hañ %s "
"peogwir e vez implijet meur a levrenn fizikel gantañ"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2760,12 +2766,12 @@ msgstr ""
"N'eus ket moaien da loc'hañ pa emañ al levrenn war meur a levrenn fizikel.\n"
"Mat vije deoc'h krouiñ ur barzhadur loc'hañ da gentañ"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ret eo d'ar renkell-mañ da vezañ er reizhiad restroù gwrizienn"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2774,12 +2780,12 @@ msgstr ""
"Ret eo da implij ur gwir reizhiad restroù (ext2/3/4, reiserfs, xfs, pe jfs) "
"evit ar poent marc'hañ-mañ\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "N'eus ket plas dieub a-walac'h"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Netra d'ober"
@@ -2789,238 +2795,238 @@ msgstr "Netra d'ober"
msgid "SATA controllers"
msgstr "Kartennoù SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "Kartennoù RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Kartennoù (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Lenneroù kartennoù"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Kartennoù Firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Kartennoù PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Kartennoù SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Kartennoù USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Porzhioù USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Kartennoù SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Pontoù ha kontrolleroù ar reizhiad"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Pladennig"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Pladenn"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, fuzzy, c-format
msgid "USB Mass Storage Devices"
msgstr "Trobarzhelloù kwelet USB"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Engraverioù CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Bandenn"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Kartennoù AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Kartenn video"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Kartenn DVB"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Kartenn skinwel"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Trobarzhelloù liesvedia all"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Kartenn son"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webkam"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Kewerierioù"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Kartennoù ISDN"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Trobarzhelloù kwelet USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Kartennoù radio"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Kartennoù rouedad ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Kartennoù rouedad WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Trobarzhelloù Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Kartenn rouedad"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Kartennoù ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Memor"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Moullerez"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Kartennoù lanker-c'hoari"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Lanker-c'hoari"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Stokellaoueg"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablezenn ha skramm stekiñ"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Logodenn"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Eiltreser"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Anavez/All"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "kewerier # "
@@ -3248,19 +3254,19 @@ msgstr "Seurt an tuner :"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Mat eo"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ya"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3291,22 +3297,22 @@ msgstr "Disoc'h"
msgid "Previous"
msgstr "Diaraog"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "N'eus restr dibabet ebet"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Dibabet 'teus ur renkell. N'eo ket ur restr"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Hevelep renkell ebet"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Hevelep restr ebet"
@@ -4585,7 +4591,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Degemer e %s"
@@ -5125,7 +5131,7 @@ msgstr "Bevaat dazont root war-eeun."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5441,7 +5447,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6545,17 +6551,17 @@ msgstr "Kevread rusianek"
msgid "Yugoslavia"
msgstr "Yougoslavia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Ha reizh eo ?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Dibabet 'teus ur restr. N'eo ket ur renkell"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Titouroù"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 82c73c92c..6475b0dc9 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bs\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2006-09-13 19:15+0200\n"
"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Molim sačekajte"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalacija bootloadera u toku"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -51,12 +51,12 @@ msgstr ""
"\n"
"Da li da podesim novi ID volumena?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -71,218 +71,218 @@ msgstr ""
"\n"
"Sa kojeg diska vršite boot?"
-#: any.pm:331
+#: any.pm:335
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Instalacija bootloadera u toku"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite smjestiti bootloader?"
-#: any.pm:351
+#: any.pm:355
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Prvi sektor diska (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor diska (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Prvi sektor root particije"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Na disketi"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Preskoči"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Boot uređaj"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Glavne opcije"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Pauza prije pokretanja izabrane opcije"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Uključi ACPI"
-#: any.pm:415
+#: any.pm:419
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Uključi ACPI"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Uključi APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Uključi Local APIC"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sigurnost"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Šifra"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Šifre se ne poklapaju"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Molim pokušajte ponovo"
-#: any.pm:425
+#: any.pm:429
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Ne možete koristiti šifrovani datotečni sistem za tačku montiranja %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Šifra (ponovo)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Xen append"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Video režim"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Mrežni profil"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Oznaka"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Default"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Morate navesti image kernela"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Morate navesti root particiju"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Ova oznaka je već u upotrebi"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu opcije želite dodati?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Ostali OSi (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguracija stila boota"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -291,196 +291,196 @@ msgstr ""
"Ovo su trenutne opcije u vašem boot meniju.\n"
"Možete dodati nove ili promijeniti postojeće."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "pristup mrežnim alatima"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "pristup alatima za kompajliranje"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Molim navedite korisničko ime"
-#: any.pm:830
+#: any.pm:875
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Korisničko ime je predugačko"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Ovo korisničko ime je već dodano"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Korisnički ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Grupni ID"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "Opcija %s mora biti broj"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s mora biti veće od 1000. Svejedno prihvati?"
-#: any.pm:844
+#: any.pm:889
#, fuzzy, c-format
msgid "User management"
msgstr "Korisničko ime"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Podesite administratorsku (root) šifru"
-#: any.pm:858
+#: any.pm:903
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Unesite korisnika\n"
"%s"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Pravo ime"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Korisničko ime"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Molim sačekajte, dodajem medije..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mogu podesiti vaš računar da automatski prijavi jednog korisnika."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Koristi ovu mogućnost"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Napomene izdanja"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Zatvori"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Licencni ugovor"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Izlaz"
-#: any.pm:1051
+#: any.pm:1096
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Imate li neki drugi?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Prihvatam"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Ne prihvatam"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Molim izaberite jezik koji ćete koristiti"
-#: any.pm:1106
+#: any.pm:1151
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -491,87 +491,87 @@ msgstr ""
"želite instalirati. Oni će biti dostupni kada se završi vaša\n"
"instalacija i restartujete vaš sistem."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Višejezična podrška"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kompatibilnost sa starim (ne-UTF8) kodiranjem"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Svi jezici"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Izbor jezika"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Država / Oblast"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Molim izaberite vašu državu"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ovdje je puna lista svih dostupnih država"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Ostale države"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Više opcija"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Metod unosa:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Ništa"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Vlastito"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -589,7 +589,7 @@ msgstr ""
"\"Izaberi korisnike\" vam omogućuje da podesite ovu opciju zasebno za svakog "
"korisnika.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -598,7 +598,7 @@ msgstr ""
"NFS: tradicionalni Unix sistem za dijeljenje datoteka, koji ima slabiju "
"podršku na Macintoshu i Windowsu."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -607,7 +607,7 @@ msgstr ""
"SMB: sistem za dijeljenje datoteka koji koristi Windows, Mac OS X i većina "
"modernih Linux sistema."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -615,12 +615,12 @@ msgstr ""
"Možete eksportovati koristeći NFS ili Sambu. Molim izaberite sistem koji "
"želite koristiti."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -629,7 +629,7 @@ msgstr ""
"Dijeljenje na nivou korisnika koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: any.pm:1458
+#: any.pm:1503
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -638,49 +638,49 @@ msgstr ""
"Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na "
"snagu"
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na "
"snagu"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Vremenska zona"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Postavke datuma, sata i vremenske zone"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Koje je vrijeme tačnije?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardverski sat podešen na UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardverski sat podešen na lokalno vrijeme)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP server"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
@@ -1013,7 +1013,7 @@ msgid "Domain Admin Password"
msgstr "Administratorska šifra domena"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1053,12 +1053,12 @@ msgstr "GRUB sa tekstualnim menijem"
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1067,7 +1067,7 @@ msgstr ""
"Konfiguracija vašeg bootloadera mora biti ažurirana pošto su particije "
"renumerisane"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1076,7 +1076,7 @@ msgstr ""
"Ne mogu ispravno instalirati bootloader. Morate pokrenuti \"rescue\" sistem "
"i izabrati \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstalacija bootloadera"
@@ -1106,17 +1106,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minuta"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minuta"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d sekundi"
@@ -1134,27 +1140,27 @@ msgstr ""
"je web server podešen kao WebDAV server). Ako želite dodati WebDAV\n"
"tačke montiranja, izaberite \"Novi\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Novi"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Demontiraj"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Montiraj"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Server"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1162,25 +1168,25 @@ msgstr "Server"
msgid "Mount point"
msgstr "Tačka montiranja"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opcije"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Pobriši"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Gotovo"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1196,17 +1202,17 @@ msgstr "Gotovo"
msgid "Error"
msgstr "Greška"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Molim unesite URL WebDAV servera"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL mora počinjati sa http:// ili https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1217,33 +1223,33 @@ msgstr "URL mora počinjati sa http:// ili https://"
msgid "Warning"
msgstr "Upozorenje"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, fuzzy, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Da li želite kliknuti na ovo dugme?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Server:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Tačka montiranja: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Particioniranje"
@@ -1274,9 +1280,9 @@ msgstr "Izlaz"
msgid "Continue"
msgstr "Nastavak"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Pomoć"
@@ -1307,63 +1313,63 @@ msgstr "Detalji"
msgid "No hard disk drives found"
msgstr "Nije pronađen nijedan hard disk"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Nepoznat"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, fuzzy, c-format
msgid "Ext4"
msgstr "Izlaz"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "XFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Ostalo"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Prazno"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Tipovi file sistema:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Ova particija je već prazna"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Najprije koristite \"Demontiraj\""
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, fuzzy, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Koristi \"%s\" umjesto toga"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1412,7 +1418,7 @@ msgstr "Izlazite bez pisanja tabele particija?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Želite li spasiti izmjene u /etc/fstab ?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
@@ -1698,7 +1704,7 @@ msgid "Where do you want to mount %s?"
msgstr "Gdje želite montirati uređaj %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Mijenjam veličinu"
@@ -1744,7 +1750,7 @@ msgstr "Minimalna veličina: %s MB"
msgid "Maximum size: %s MB"
msgstr "Maksimalna veličina: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, fuzzy, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2194,8 +2200,8 @@ msgstr "Promijeni tip"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Odustani"
@@ -2288,7 +2294,7 @@ msgstr ""
"kreirati novi file sistemi. Molim provjerite vaš hardware i pronađite uzrok "
"greške"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Morate imati ESP FAT32 particiju montiranu na /boot/EFI"
@@ -2499,7 +2505,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nemam dovoljno swap prostora da dovršim instalaciju, molim dodajte još"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2510,7 +2516,7 @@ msgstr ""
"Za ovo, napravite jednu particiju (ili kliknite na neku od postojećih).\n"
"Zatim izaberite opciju \"Tačka montiranja\" i unesite vrijednost \"/\""
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2521,42 +2527,42 @@ msgstr ""
"\n"
"Da li da nastavim?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Koristi postojeću particiju"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Nemate nijednu postojeću particiju za upotrebu"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Izračunavam veličinu Microsoft Windows® particije"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Koristi slobodan prostor na Microsoft Windows® particiji"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji želite promijeniti veličinu?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2567,12 +2573,12 @@ msgstr ""
"restartujte vaš računar pod Microsoft Windows®, pokrenite program \"defrag\","
"zatim ponovo pokrenite %s instalaciju."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2607,56 +2613,56 @@ msgstr ""
"Kada ste sigurni, kliknite na \"%s\"."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Dalje"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Particioniranje"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Koju veličinu želite da sačuvate za Microsoft Windows® na particiji %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Veličina"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Smanjujem Microsoft Windows® particiju"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Smanjivanje FAT particije nije uspjelo: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Ne postoji nijedna FAT particija za promjenu veličine (ili nije ostalo "
"dovoljno prostora)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Ukloni Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Pobriši čitav disk"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, fuzzy, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2664,23 +2670,23 @@ msgid ""
msgstr ""
"Imate više od jednog hard diska. Na koji od njih želite instalirati Linux?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Ručno particioniranje diska"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2689,42 +2695,42 @@ msgstr ""
"Sada možete particionirati %s.\n"
"Kada završite, ne zaboravite spasiti naredbom 'w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Izlaz"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Ne mogu naći dovoljno prostora za instalaciju"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Particioni čarobnjak je našao sljedeća rješenja:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje nije uspjelo: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Ne možete koristiti JFS za particije manje od 16MB"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Ne možete koristiti ReiserFS za particije manje od 32MB"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, fuzzy, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "Ne možete koristiti JFS za particije manje od 16MB"
@@ -2768,22 +2774,22 @@ msgstr ""
"\n"
"Slažete li se sa gubitkom svih particija?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju počinjati sa /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Tačka montiranja se treba sastojati samo od brojeva i slova"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa tačkom montiranja %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2794,7 +2800,7 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Molim kasnije dodajte /boot particiju"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, fuzzy, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2804,7 +2810,7 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Molim kasnije dodajte /boot particiju"
-#: fsedit.pm:458
+#: fsedit.pm:461
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2814,12 +2820,12 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Molim kasnije dodajte /boot particiju"
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, fuzzy, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2830,12 +2836,12 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Molim kasnije dodajte /boot particiju"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Ne možete koristiti šifrovani datotečni sistem za tačku montiranja %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2844,7 +2850,7 @@ msgstr ""
"Ne možete koristiti LVM logički volumen za tačku montiranja %s pošto on "
"obuhvata fizičke volumene"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2857,12 +2863,12 @@ msgstr ""
"prostire preko više fizičkih volumena.\n"
"Trebali biste najprije napraviti /boot particiju"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2871,12 +2877,12 @@ msgstr ""
"Potreban vam je pravi file sistem (ext2/3/4, reiserfs, xfs ili jfs) za ovu "
"tačku montiranja\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nemam šta da radim"
@@ -2886,238 +2892,238 @@ msgstr "Nemam šta da radim"
msgid "SATA controllers"
msgstr "SATA kontroleri"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID kontroleri"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA kontroleri"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, fuzzy, c-format
msgid "Card readers"
msgstr "Model kartice:"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire kontroleri"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA kontroleri"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI kontroleri"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB kontroleri"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB portovi"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus kontroleri"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Mostovi (bridges) i sistemski kontroleri"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disketa"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Hard Disk"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB uređaji za smještaj podataka"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD pržilica"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Traka"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP kontroleri"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Video kartica"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB kartica"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV kartica"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Drugi multimedijalni uređaj"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Zvučna kartica"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Web kamera"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Procesori"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN adapteri"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "USB zvučni uređaji"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Radio kartice"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "ATM mrežne kartice"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "WAN mrežne kartice"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth uređaji"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet kartica"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL adapteri"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Memorija"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Štampač"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Game port kontroleri"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Joystick"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Tastatura"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet i ekran osjetljiv na dodir"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Miš"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr ""
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Skener"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Nepoznat/Ostali"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3367,19 +3373,19 @@ msgstr "Vrsta tunera:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "U redu"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Da"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3410,22 +3416,22 @@ msgstr "Kraj"
msgid "Previous"
msgstr "Nazad"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Nije izabrana datoteka"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Izabrali ste direktorij, a ne datoteku"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Nema tog direktorija"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Nema te datoteke"
@@ -4707,7 +4713,7 @@ msgstr "Zambija"
msgid "Zimbabwe"
msgstr "Zimbabve"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
@@ -5359,7 +5365,7 @@ msgstr "Dozvoli/zabrani direktan root login."
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Dozvoli/zabrani listu korisnika sistema na display manager-ima (sddm i gdm)."
@@ -5735,8 +5741,8 @@ msgid "Direct root login"
msgstr "Direktna root prijava"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Izlistaj korisnike na display manager-ima (sddm i gdm)"
#: security/l10n.pm:20
@@ -6944,17 +6950,17 @@ msgstr "Ruska Federacija"
msgid "Yugoslavia"
msgstr "Jugoslavija"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Izabrali ste datoteku, a ne direktorij"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Info"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index c20cf267e..14b3a4689 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-12-05 16:11+0000\n"
"Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>\n"
"Language-Team: Catalan (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -27,12 +27,12 @@ msgstr ""
msgid "Please wait"
msgstr "Espereu si us plau"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instal·lació del gestor d'arrencada en curs"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -49,14 +49,14 @@ msgstr ""
"\n"
"Voleu assignar un nou id. de volum?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Ha fallat la instal·lació del gestor d'arrencada. S'ha produït l'error "
"següent:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -71,218 +71,218 @@ msgstr ""
"\n"
"En quina unitat arrenqueu?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Instal·lació del gestor d'arrencada"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "On voleu instal·lar el gestor d'arrencada?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primer sector (MBR) del disc %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primer sector de la unitat (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Primer sector de la partició de root"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "En el disquet"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Omet"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuració del tipus d'arrencada"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Opcions principals del gestor d'arrencada"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Gestor d'arrencada"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Gestor d'arrencada a utilitzar"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Opcions principals"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Habilita ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Habilita SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Habilita APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Habilita APIC local"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Seguretat"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contrasenya"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "No podeu fer servir una contrasenya amb %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Imatge"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Arrel"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Afegeix"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Cal una contrasenya per a arrencar"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Mode de vídeo"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Perfil de xarxa"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predeterminat"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Heu d'especificar una imatge del nucli"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Heu d'especificar una partició arrel"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Aquesta etiqueta ja està en ús"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Un altre SO (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuració del gestor d'arrencada"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -291,47 +291,47 @@ msgstr ""
"Aquestes són les diferents entrades en el menú d'arrencada.\n"
"Podeu afegir-ne més o canviar les existents."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "accés a programes X"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "accés a les eines rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "permet «su»"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "accés a fitxers administratius"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "accés a les eines de xarxa"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "accés a les eines de compilació"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Si us plau, introduïu un nom d'usuari"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -340,149 +340,149 @@ msgstr ""
"El nom d'usuari ha de començar amb una lletra minúscula seguida només per "
"lletres minúscules, nombres, «-» i «_»"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "El nom d'usuari és massa llarg"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID d'usuari"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID de grup"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s ha de ser un número"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s hauria de ser superior a 1000. Continuar tot i això?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Gestió d'usuaris"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Habilita el compte del convidat"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Estableix la contrasenya de l'administrador (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Introduïu un usuari"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Icona"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Nom real"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Nom d'accés"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Si us plau espereu, s'estan afegint els suports..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Entrada automàtica"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Puc configurar el vostre ordinador de manera que entri automàticament amb un "
"nom d'usuari."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Utilitza aquesta característica"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per defecte:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Notes de versió"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Tanca"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Acord de llicència"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Surt"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Accepteu aquesta llicència?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Accepta"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Rebutja"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Si us plau, trieu un idioma per utilitzar"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -493,87 +493,87 @@ msgstr ""
"els idiomes que voleu instal·lar. Estaran disponibles\n"
"quan la instal·lació hagi acabat i reinicieu l'ordinador."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Múltiples idiomes"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Selecciona els idiomes addicionals"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Compatibilitat amb codificació antiga (no UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Tots els idiomes"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Tria d'idioma"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "País / Regió"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Si us plau, seleccioneu el vostre país"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aquesta és la llista completa de països"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Altres països"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avançat"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Mètode d'entrada:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Cap"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "No es comparteix"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Permet tots els usuaris"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Personalitzada"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -588,7 +588,7 @@ msgstr ""
"\n"
"«Personalitzat» permet configurar cada usuari per separat.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -597,7 +597,7 @@ msgstr ""
"NFS: el sistema de compartició de fitxers tradicional d'Unix, amb menys "
"suport a Mac i Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -606,18 +606,18 @@ msgstr ""
"SMB: un sistema de compartició de fitxers usat per Windows, Mac OS X i "
"bastants sistemes Linux moderns."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Podeu exportar utilitzant NFS o SMB. Seleccioneu quin voleu utilitzar."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Executa userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -626,7 +626,7 @@ msgstr ""
"La compartició per usuari utilitza el grup «fileshare».\n"
"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -635,47 +635,47 @@ msgstr ""
"Heu de sortir i tornar a entrar perquè els canvis siguin efectius. Premeu "
"«D'acord» per a sortir ara mateix."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Heu de sortir i tornar a entrar per tal que els canvis tinguin efecte"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Fus horari"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "En quina zona horària us trobeu?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Ajusts de la data, del rellotge i del fus horari"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Quina és la millor hora?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (el rellotge de maquinari està establert a UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (el rellotge de maquinari està establert a hora local)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronització automàtica de l'hora (mitjançant NTP)"
@@ -1012,7 +1012,7 @@ msgid "Domain Admin Password"
msgstr "Contrasenya de l'administrador del domini"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1052,12 +1052,12 @@ msgstr "GRUB amb menú de text"
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "No podeu instal·lar el gestor d'arrencada a una partició %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1066,7 +1066,7 @@ msgstr ""
"La configuració del vostre gestor d'arrencada s'ha d'actualitzar, ja que la "
"partició ha estat renumerada"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1075,7 +1075,7 @@ msgstr ""
"El gestor d'arrencada no s'ha pogut instal·lar correctament. Heu d'arrencar "
"amb l'opció de rescat i escollir «%s»"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstal·la el gestor d'arrencada"
@@ -1105,17 +1105,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minuts"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minut"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d segons"
@@ -1134,27 +1140,27 @@ msgstr ""
"que el servidor web està configurat com a servidor WebDAV). Si voleu afegir\n"
"punts de muntatge WebDAV, seleccioneu «Nou»."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nou"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Desmunta"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Munta"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Servidor"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1162,25 +1168,25 @@ msgstr "Servidor"
msgid "Mount point"
msgstr "Punt de muntatge"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opcions"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Elimina"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fet"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1196,17 +1202,17 @@ msgstr "Fet"
msgid "Error"
msgstr "Error"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Si us plau, introduïu l'URL del servidor WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "L'URL ha de començar per http:// o https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1217,33 +1223,33 @@ msgstr "L'URL ha de començar per http:// o https://"
msgid "Warning"
msgstr "Advertència"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Esteu segur que voleu esborrar aquest punt de muntatge?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Servidor: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Particionament"
@@ -1276,9 +1282,9 @@ msgstr "Surt"
msgid "Continue"
msgstr "Continua"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Ajuda"
@@ -1309,63 +1315,63 @@ msgstr "Detalls"
msgid "No hard disk drives found"
msgstr "No s'ha trobat cap disc dur!"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Desconegut"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Intercanvi"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Altres"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Buit"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "La partició ja està buida"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Utilitzeu primer «Unmount»"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Utilitza «%s» com a alternativa (en mode expert)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1414,7 +1420,7 @@ msgstr "Voleu sortir sense escriure la taula de particions?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Voleu desar les modificacions a /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1699,7 +1705,7 @@ msgid "Where do you want to mount %s?"
msgstr "On voleu muntar %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "S'està canviant la mida"
@@ -1745,7 +1751,7 @@ msgstr "Mida mínima: %s MB"
msgid "Maximum size: %s MB"
msgstr "Mida màxima: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2190,8 +2196,8 @@ msgstr "Canvia el tipus"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Cancel·la"
@@ -2286,7 +2292,7 @@ msgstr ""
"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
"problema"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Heu de tenir una partició ESP FAT32 muntada en /boot/EFI"
@@ -2500,7 +2506,7 @@ msgstr ""
"No hi ha prou espai d'intercanvi per completar la instal·lació; si us plau, "
"afegiu-ne"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2511,7 +2517,7 @@ msgstr ""
"Per fer-ho, creeu una partició (o feu clic a una d'existent).\n"
"Després, trieu l'acció «Punt de muntatge» i doneu-li el valor '/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2522,42 +2528,42 @@ msgstr ""
"\n"
"Voleu continuar igualment?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Utilitza l'espai lliure"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Utilitza les particions existents"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "No hi ha cap partició que es pugui utilitzar"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "S'està calculant la mida de la partició de Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Utilitza l'espai lliure en una partició Microsoft Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "A quina partició voleu canviar-li la mida?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2568,12 +2574,12 @@ msgstr ""
"reinicieu l'ordinador sota Microsoft Windows® i executeu l'eina «defrag». "
"Llavors, torneu a començar la instal·lació del %s."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2609,55 +2615,55 @@ msgstr ""
"Quan estigueu segur, premeu %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Següent"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Particionament"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Quina mida voleu deixar per a la partició de Microsoft Windows® partició %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Mida"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "S'està redimensionant la partició de Microsoft Windows®"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ha fallat el redimensionament de la FAT: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"No hi ha cap partició FAT a la qual canviar la mida (o no queda prou espai)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Elimina el Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Esborra i utilitza tot el disc"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2665,23 +2671,23 @@ msgid ""
msgstr ""
"Teniu més d'una unitat de disc. Quina voleu que l'instal·lador faci servir?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Particionament personalitzat de disc"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Utilitza fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2690,43 +2696,43 @@ msgstr ""
"Ara podeu fer les particions a %s.\n"
"Quan acabeu, no oblideu desar-les utilitzant 'w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "No es pot trobar espai per a la instal·lació"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"L'auxiliar de particionament del DrakX ha trobat les solucions següents:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Aquest és el contingut del disc dur "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ha fallat el particionament: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "No podeu utilitzar btrfs per a les particions inferiors als 256 MB"
@@ -2773,22 +2779,22 @@ msgstr ""
"\n"
"Esteu d'acord en perdre totes les particions?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de començar amb una /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Els punts de muntatge només poden contenir caràcters alfanumèrics"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una partició amb el punt de muntatge %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2799,7 +2805,7 @@ msgstr ""
"No hi ha cap gestor d'arrencada que sigui capaç de gestionar-ho.\n"
"Assegureu-vos d'afegir una partició /boot separada."
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2808,7 +2814,7 @@ msgstr ""
"Versió de metadades no suportada per a una partició d'arrencada. Assegureu-"
"vos d'afegir una partició /boot separada."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2817,12 +2823,12 @@ msgstr ""
"Heu seleccionat una partició RAID per programari com a /boot.\n"
"No hi ha cap gestor d'arrencada que sigui capaç de gestionar-ho."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Versió de metadades no suportada per a una partició d'arrencada."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2833,13 +2839,13 @@ msgstr ""
"No hi ha cap gestor d'arrencada que sigui capaç de gestionar-ho.\n"
"Assegureu-vos d'afegir una partició /boot separada."
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"No podeu utilitzar un sistema de fitxers xifrat per al punt de muntatge %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2848,7 +2854,7 @@ msgstr ""
"No podeu utilitzar el volm lògic de LVM per al punt de muntatge %s, ja que "
"abasta els volums físics"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2857,12 +2863,12 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers arrel"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2871,12 +2877,12 @@ msgstr ""
"Necessiteu un sistema de fitxers real (ext2/3/4, reiserfs, xfs o jfs) per a "
"aquest punt de muntatge\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "No hi ha prou espai per a l'assignació automàtica"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Res a fer"
@@ -2886,238 +2892,238 @@ msgstr "Res a fer"
msgid "SATA controllers"
msgstr "Controladors SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "Controladors RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Controladors (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Lectors de targetes"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Controladors Firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Controladors PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Controladors SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Controladors USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Ports USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Controladors SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Ponts i controladors del sistema"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disquet"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Disc"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Dispositius d'emmagatzematge massiu USB"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CD-ROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Gravadors de CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Cinta"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Controladors AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Targeta de vídeo"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Targeta DVB"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Targeta de TV"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Altres dispositius multimèdia"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Targeta de so"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Processadors"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Adaptadors XDSI"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Dispositius de so USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Targetes de ràdio"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Targetes de xarxa ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Targetes de xarxa WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Dispositius Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Targeta de xarxa"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Mòdem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Adaptadors ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Memòria"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Impressora"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Ports de controladors per jocs"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Palanca de jocs"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Teclat"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tauleta i pantalla tàctil"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Ratolí"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometria"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "SAI"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Escàner"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Desconegut/Altres"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "CPU #"
@@ -3369,19 +3375,19 @@ msgstr "Tipus de sintonitzador:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "D'acord"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Sí"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3412,22 +3418,22 @@ msgstr "Fi"
msgid "Previous"
msgstr "Anterior"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Cap fitxer escollit"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Heu escollit un directori, no un fitxer"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "No és un directori"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "No hi ha fitxer"
@@ -4709,7 +4715,7 @@ msgstr "Zàmbia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
@@ -5267,10 +5273,10 @@ msgid "Allow direct root login."
msgstr "Permet la connexió directa de l'usuari primari."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
-msgstr ""
+"Allow the list of users on the system on display managers (kdm and gdm)."
+msgstr "Llista els usuaris als gestors de pantalla (sddm i gdm)"
#: security/help.pm:35
#, c-format
@@ -5629,8 +5635,8 @@ msgid "Direct root login"
msgstr "Entrada directa com a superusuari"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Llista els usuaris als gestors de pantalla (sddm i gdm)"
#: security/l10n.pm:20
@@ -6832,17 +6838,17 @@ msgstr "Rússia"
msgid "Yugoslavia"
msgstr "Iugoslàvia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Això és correcte?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Heu escollit un fitxer, no un directori"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Informació"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 41b238d53..fe8b07222 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-06-02 05:00+0000\n"
"Last-Translator: Jiří Vírava <appukonrad@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/mageia/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Prosím počkejte"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Probíhá instalace zaváděcího programu"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -51,12 +51,12 @@ msgstr ""
"\n"
"Přiřadit nové ID svazku?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalace zaváděcího programu selhala. Stala se tato chyba:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -71,218 +71,218 @@ msgstr ""
"\n"
"Z jakého disku startujete systém?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Instalace zaváděcího programu"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zaváděcí program?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "První sektor (MBR) disku %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "První sektor disku (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "První sektor kořenového oddílu"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Na disketu"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Přeskočit"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Nastavení stylu zavádění"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Základní nastavení zaváděcího programu"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Zaváděcí program"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Zaváděcí program"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Startovací zařízení"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Hlavní volby"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Prodleva před zavedením výchozího obrazu"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Povolit ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Povolit SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Povolit APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Povolit lokální APIC"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Bezpečnost"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Heslo"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Hesla nejsou shodná"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Zkuste to znovu, prosím"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nemůžete použít heslo s %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Heslo (podruhé)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Obraz (image)"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Kořenový (root)"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Připojit"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Připojit Xen"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Vyžaduje pro zavedení heslo"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Video režim"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Síťový profil"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Značka"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Výchozí"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Prázdná značka není povolena"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Musíte zadat soubor s jádrem"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Musíte zadat kořenový oddíl"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Tato značka se již používá"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Jaký typ záznamu chcete přidat?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Jiný systém (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Nastavení zaváděcího programu"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -291,47 +291,47 @@ msgstr ""
"Zde jsou záznamy z vaší zaváděcí nabídky.\n"
"Můžete přidat další nebo změnit stávající."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "přístup k programům v X prostředí"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "přístup k rpm nástrojům"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "povolit \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "přístup k administrativním souborům"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "přístup k síťovým nástrojům"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "přístup k nástrojům pro kompilaci"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(už byl přidán %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Prosím zadejte uživatelské jméno"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -340,148 +340,148 @@ msgstr ""
"Uživatelské jméno musí začínat malým písmenem a pokračovat pouze malými "
"písmeny, číslicemi nebo znaky „-” a „_”"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Toto uživatelské jméno je příliš dlouhé"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Toto uživatelské jméno už bylo přidáno"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "ID uživatele"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "ID skupiny"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s musí být číslo"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s by mělo být vyšší než 1000. Přesto použít?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Správa uživatelů"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Povolit účet hosta"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Heslo správce (uživatele root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Zadejte uživatele"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Skutečné jméno"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Přihlašovací jméno"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Prosím počkejte, přidávají se zdroje..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatické přihlášení"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Lze nastavit váš počítač tak, aby automaticky přihlásil vybraného uživatele."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Použít tuto vlastnost"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Zvolte standardního uživatele:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vyberte si, který správce oken má být spouštěn:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Poznámky k vydání"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Zavřít"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Souhlas s licencí"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Konec"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Přijímáte tuto licenci?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Přijmout"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Odmítnout"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Prosím zvolte si jazyk, který chcete používat"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -492,87 +492,87 @@ msgstr ""
"chcete nainstalovat podporu. Tyto budou dostupné po dokončení\n"
"instalace a restartu systému."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Více jazyků"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Vybrat další jazyky"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Stará (ne UTF-8) kódování pro kompatibilitu"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Všechny jazyky"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Výběr jazyka"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Země"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Vyberte si, prosím, svoji zem"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Zde je úplný seznam dostupných zemí"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Jiné země"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Rozšíření"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Vstupní metoda:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Žádné"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Nesdílet"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Povolit všem uživatelům"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Vlastní"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -588,7 +588,7 @@ msgstr ""
"\n"
"Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -597,7 +597,7 @@ msgstr ""
"NFS: tradiční systém pro sdílení souborů v prostředí Unix, s menší podporou "
"operačních systémů Mac a Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -606,7 +606,7 @@ msgstr ""
"SMB: systém pro sdílení souborů používaný ve Windows, MacOS X a mnohými "
"moderními Linuxovými systémy."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -614,12 +614,12 @@ msgstr ""
"Nyní lze provést export přes protokol NFS nebo SMB. Vyberte, prosím, který "
"chcete použít."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Spustit UserDrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -628,7 +628,7 @@ msgstr ""
"Sdílení mezi uživateli používá skupinu \"fileshare\". \n"
"Uživatele lze do této skupiny přidat pomocí nástroje UserDrake."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -637,47 +637,47 @@ msgstr ""
"Aby se změny projevily, je nutné se odhlásit a opět přihlásit. Stisknutím OK "
"se ihned odhlásíte."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Aby se změna projevila, je nutné se odhlásit a opět přihlásit"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Časová zóna"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Jaké je vaše časové pásmo?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Nastavení data, hodin a časové zóny"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Jaké vedení času je nejvhodnější?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardwarové hodiny nastaveny na UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardwarové hodiny nastaveny na místní čas)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP Server"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatická synchronizace času (pomocí NTP)"
@@ -1016,7 +1016,7 @@ msgid "Domain Admin Password"
msgstr "Heslo Správce domény"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1056,12 +1056,12 @@ msgstr "GRUB s textovou nabídkou"
msgid "not enough room in /boot"
msgstr "není dost místa v adresáři /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Na oddíl %s nelze instalovat zavaděč\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1070,7 +1070,7 @@ msgstr ""
"Nastavení vašeho zavaděče musí být aktualizováno, protože se změnilo pořadí "
"oddílů na disku"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1079,7 +1079,7 @@ msgstr ""
"Zavaděč se nepodařilo řádně nainstalovat. Spusťte systém v záchranném režimu "
"a zvolte \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Znovu instalovat zaváděcí program"
@@ -1109,17 +1109,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minut(y)"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minuta"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d sekund"
@@ -1138,27 +1144,27 @@ msgstr ""
"nastaven jako WebDAV server). Pokud chcete přidat WebDAV připojení, vyberte\n"
"položku \"Nový\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Nový"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Odpojit"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Připojit"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Server"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1166,25 +1172,25 @@ msgstr "Server"
msgid "Mount point"
msgstr "Přípojný bod"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Volby"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Odebrat"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Hotovo"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1200,17 +1206,17 @@ msgstr "Hotovo"
msgid "Error"
msgstr "Chyba"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Zadejte, prosím, URL serveru WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL musí začínat znaky http:// nebo https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1221,33 +1227,33 @@ msgstr "URL musí začínat znaky http:// nebo https://"
msgid "Warning"
msgstr "Varování"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Chcete opravdu smazat tento přípojný bod?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Adresář připojení (přípojný bod): "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Volby: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Rozdělení disku"
@@ -1278,9 +1284,9 @@ msgstr "Konec"
msgid "Continue"
msgstr "Pokračovat"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Nápověda"
@@ -1312,63 +1318,63 @@ msgstr "Podrobnosti"
msgid "No hard disk drives found"
msgstr "Nebyly nalezeny žádné pevné disky"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Neznámý"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Odkládací (swap)"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Další"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Prázdný"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Souborové systémy:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Tento oddíl je již prázdný"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Nejprve použijte ''Odpojit''"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Místo toho použijte ''%s'' (v expertním režimu)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1417,7 +1423,7 @@ msgstr "Chcete skončit bez zapsání do tabulky oddílů?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Chcete uložit změny v /etc/fstab?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Aby se změny v tabulce oddílů projevily, restartujte počítač"
@@ -1700,7 +1706,7 @@ msgid "Where do you want to mount %s?"
msgstr "Kam chcete připojit %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Mění se velikost"
@@ -1745,7 +1751,7 @@ msgstr "Nejmenší velikost: %s MB"
msgid "Maximum size: %s MB"
msgstr "Největší velikost: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2189,8 +2195,8 @@ msgstr "Změnit typ"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Zrušit"
@@ -2283,7 +2289,7 @@ msgstr ""
"vytvořit nové souborové systémy. Zkontrolujte, prosím, technické vybavení "
"počítače"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Musíte mít ESP FAT32 oddíl připojený na /boot/EFI"
@@ -2493,7 +2499,7 @@ msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Není dostatek odkládacího prostoru k instalaci, prosím, přidejte nějaký"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2504,7 +2510,7 @@ msgstr ""
"K jeho nastavení vytvořte oddíl (nebo vyberte oddíl stávající), vyberte "
"možnost Mount point (adresář připojení) a zvolte \"/\""
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2515,42 +2521,42 @@ msgstr ""
"\n"
"Chcete přesto pokračovat?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Použít volné místo"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Není dostatek místa pro vytvoření nových diskových oddílů"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Použít existující oddíly"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Není zde žádný existující oddíl k použití"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Počítá se volné místo na oddílu Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Použít volné místo na oddílu Microsoft Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Na kterém oddílu chcete změnit velikost?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2561,12 +2567,12 @@ msgstr ""
"váš počítač do Microsoft Windows® a použijte nástroj \"defrag\". Poté "
"spusťte znovu instalaci %s."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr "Nepodařilo se najít oddíl pro změnu velikosti (%d možnosti)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2601,79 +2607,79 @@ msgstr ""
"Až si budete jistí, že chcete pokračovat, stiskněte %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Další"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Rozdělení disku"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Jakou velikost oddílu chcete nechat pro Microsoft Windows® na diskovém "
"oddílu %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Velikost"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Mění se velikost oddílu s Microsoft Windows®"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Změna FAT oddílu neuspěla: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Nejsou zde žádné FAT oddíly, které by bylo možné změnit (nebo není dostatek "
"místa)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Odstranit Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Smazat a použít celý disk"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr "Máte více než jeden pevný disk. Který chcete k instalaci použít?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "VŠECHNY diskové oddíly a data na disku %s budou zrušeny"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Vlastní rozdělení disku"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Použít fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2682,42 +2688,42 @@ msgstr ""
"Nyní můžete rozdělit váš pevný disk %s.\n"
"Až skončíte, nezapomeňte uložit změny pomocí 'w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Nebylo nalezeno dostatek místa pro instalaci"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Průvodce oddíly DrakX našel následující řešení rozdělení disku:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Zde je obsah vašeho disku "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Vytváření diskových oddílů selhalo: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Pro oddíl menší než 16MB nelze použít JFS"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Pro oddíl menší než 32MB nelze použít ReiserFS"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "Pro oddíly menší než 256MB nelze použít Btrfs"
@@ -2760,22 +2766,22 @@ msgstr ""
"\n"
"Chcete přijít o všechny současně existující oddíly?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Přípojné body musí začínat '/'"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Název přípojného bodu může obsahovat pouze písmena a číslice"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Oddíl s přípojným bodem %s už existuje\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2786,7 +2792,7 @@ msgstr ""
"Žádný zavaděč neumí zavést systém, pakliže nemáte oddělený oddíl\n"
"/boot. Prosím, ujistěte se, že máte oddělený oddíl /boot."
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2795,7 +2801,7 @@ msgstr ""
"Tato verze popisných dat (metadat) není kompatibilní se stávajícím zaváděcím "
"oddílem. Prosím, ujistěte se, že máte oddělený oddíl /boot."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2804,12 +2810,12 @@ msgstr ""
"Zvolili jste softwarový RAID oddíl jako zaváděcí oddíl /boot.\n"
"S tím se není schopný vypořádat žádný zaváděcí program."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Verze popisných dat (metadat) není podporovaná jako zaváděcí oddíl."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2820,13 +2826,13 @@ msgstr ""
"Žádný zavaděč neumí zavést systém, pakliže nemáte oddělený oddíl\n"
"/boot. Prosím, ujistěte se, že máte oddělený oddíl /boot."
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Pro přípojný bod (adresář připojení) %s nemůžete použít šifrovaný oddíl"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2835,7 +2841,7 @@ msgstr ""
"Pro přípojný bod (adresář připojení) %s nemůžete použít oddíl na LVM, "
"jelikož tento zahrnuje fyzických částí (PV)"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2847,12 +2853,12 @@ msgstr ""
"částmi (PV). Žádný zavaděč neumí zavést systém, pakliže nemáte \n"
"oddělený oddíl /boot. Prosím ujistěte se, že máte oddělený oddíl /boot."
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Tento adresář musí kromě kořenového souborového systému zůstat"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2861,12 +2867,12 @@ msgstr ""
"Pro tento přípojný bod potřebujete opravdový souborový systém (ext2/ext3, "
"reiserFS, XFS nebo JFS)\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Pro automatické rozdělení disku není dostatek místa"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nic nedělat"
@@ -2876,238 +2882,238 @@ msgstr "Nic nedělat"
msgid "SATA controllers"
msgstr "SATA řadiče"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID řadiče"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA řadiče"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Čtečky karet"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire řadiče"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA řadiče"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI řadiče"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB řadiče"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB porty"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus řadiče"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Systémové řadiče a můstky"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disketa"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Pevný disk"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Úložná zařízení USB"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD vypalovačky"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Páska"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP řadiče"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Grafická karta"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB karta"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV karta"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Další multimediální zařízení"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Zvuková karta"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webová kamera"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Procesory"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Adaptéry ISDN"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Zvuková zařízení USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Rádio karty"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Síťové karty ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Síťové karty WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Zařízení Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernetová karta"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Adaptéry ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Paměť"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Tiskárna"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Game port řadiče"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Joystick"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Klávesnice"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet a dotyková obrazovka"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Myš"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometrie"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Skener"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Neznámý/Jiný"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu #"
@@ -3413,19 +3419,19 @@ msgstr "Typ tuneru:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Ok"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ano"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3456,22 +3462,22 @@ msgstr "Ukončit"
msgid "Previous"
msgstr "Zpět"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Nezvolen žádný soubor"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Vybrali jste adresář, ne soubor"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Adresář neexistuje"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Soubor neexistuje"
@@ -4753,7 +4759,7 @@ msgstr "Zambie"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Vítá vás %s"
@@ -5364,9 +5370,9 @@ msgid "Allow direct root login."
msgstr "Povolit přímé přihlášení uživatele root."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Povolit výpis uživatelů systému ve správcích přihlášení (sddm nebo gdm)."
@@ -5740,8 +5746,8 @@ msgid "Direct root login"
msgstr "Přímé přihlášení uživatele root"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Povolit výpis uživatelů ve správcích přihlášení (sddm nebo gdm)"
#: security/l10n.pm:20
@@ -6964,17 +6970,17 @@ msgstr "Ruská federace"
msgid "Yugoslavia"
msgstr "Jugoslávie"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Je to správně?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Vybrali jste soubor, ne adresář"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Informace"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 2638ed798..b82edbfca 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-12-26 16:09+0000\n"
"Last-Translator: ciaran\n"
"Language-Team: Welsh (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -19,7 +19,7 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
"11) ? 2 : 3;\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Aros..."
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Wrthi'n gosod cychwynnwr"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -49,12 +49,12 @@ msgstr ""
"\n"
"Neilltuo enw Cyfrol newydd?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Methodd gosod cychwynnwr. Digwyddodd y gwall canlynol:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -69,218 +69,218 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Gosod Cychwynnwr"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Lle rydych chi eisiau gosod y cychwynnwr?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Adran gyntaf (MBR) o ddisg %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Adran gyntaf o'r disg (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Adran gyntaf o'r rhaniad gwraidd"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Ar Ddisg Meddal"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Hepgor"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Prif ddewisiadau'r cychwynnwr"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Cychwynnwr"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Dewis cychwynnwr"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Prif ddewisiadau"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Galluogi ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Galluogi SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Galluogi APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Galluogi APIC Lleol"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Diogelwch"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Cyfrinair"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cyd-fynd"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nid oes modd defnyddio cyfrinair gyda %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Delwedd"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Gwraidd"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Atodi"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Atodiad Xen"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Modd fideo"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Proffil rhwydwaith"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Rhagosodedig"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Nid yw label wag yn cael ei chaniatáu"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Rhaid enwi delwedd cnewyllyn"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Rhaid pennu rhaniad gwraidd"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Systemau Gweithredu Eraill (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Ffurfweddu'r Cychwynnwr"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -289,194 +289,194 @@ msgstr ""
"Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "caniatáu \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "mynediad i offer rhwydwaith"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "mynediad i offer crynhoad"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Enw Defnyddiwr"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Enw Grŵp"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "Rhaid i %s fod yn rhif!"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "Dylai %s fod dros 1000. Parhau beth bynnag?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Rheoli defnyddiwr"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Gosod cyfrinair gweinyddwr (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Rhowch enw defnyddiwr"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Eicon"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Enw cywir"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Enw mewngofnodi"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Cragen"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Arhoswch, ychwanegu cyfrwng..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Awto mewngofnodi"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mewngofnodi'n awtomatig ar gyfer un defnyddiwr."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Defnyddiwch y nodwedd"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i redeg:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Nodiadau'r fersiwn"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Cau"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Cytundeb trwyddedu"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Gadael"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "A ydych chi'n derbyn y drwydded hon?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Derbyn"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Gwrthod"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Dewiswch iaith i'w defnyddio"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -484,87 +484,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Hen Amgodiad (nid utf-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Pob iaith"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Dewis iaith"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Gwlad / Ardal"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Dewiswch eich gwlad"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Dyma restr lawn o'r gwledydd sydd ar gael"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Gwledydd eraill"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Uwch"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Dull mewnbwn:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Dim"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Peidio rhannu"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Arddull"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -579,7 +579,7 @@ msgstr ""
"\n"
"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -588,7 +588,7 @@ msgstr ""
"NFS: system rhannu ffeiliau traddodiadol Unix, sydd â llai o gefnogaeth ar "
"Mac a Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -597,19 +597,19 @@ msgstr ""
"SMB: system rhannu ffeiliau sy'n cael ei ddefnyddio yn Windows, Mac OSX a "
"nifer o systemau Linux diweddar."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Gallwch allforio gan ddefnyddio NFS neu SMB. Pa un hoffech chi ei ddefnyddio?"
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -618,7 +618,7 @@ msgstr ""
"Mae'r rhannu yn ôl defnyddiwr yn defnyddio grŵp \"rhannu ffeiliau\" .\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grŵp. "
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -627,47 +627,47 @@ msgstr ""
"Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd. Cliciwch Iawn i "
"allgofnodi nawr."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd."
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Cylchfa amser"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Gosodiadau Dyddiad Cloc a Chylchedd Amser"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Beth yw'r amser gorau?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (cloc caledwedd wedi ei osod i UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (cloc caledwedd wedi ei osod i'r amser lleol)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Gweinydd NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
@@ -1002,7 +1002,7 @@ msgid "Domain Admin Password"
msgstr "Cyfrinair Gweinyddol y Parth"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1042,12 +1042,12 @@ msgstr "GRUB gyda dewislen testun"
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y cychwynnwr ar raniad %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1056,7 +1056,7 @@ msgstr ""
"Rhaid i ffurfweddiad eich cychwynnwr gael ei ddiweddaru am i'r rhaniadau "
"gael eu hail rifo."
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1065,7 +1065,7 @@ msgstr ""
"Methu gosod eich cychwynnwr yn iawn, Rhaid defnyddio achub cychwyn a dewis "
"\"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Ail osod Cychwynnwr"
@@ -1095,17 +1095,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d munud"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 munud"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d eiliad"
@@ -1123,27 +1129,27 @@ msgstr ""
"ffurfweddi fel gweinydd WebDAV). Os hoffech ychwanegu pwyntiau\n"
"arosod WebDAV, dewiswch \"Newydd\""
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Newydd"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Dadarosod"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Arosod"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Gweinydd"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1151,25 +1157,25 @@ msgstr "Gweinydd"
msgid "Mount point"
msgstr "Pwynt arosod"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Dewisiadau"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Tynnu"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Gorffen"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1185,17 +1191,17 @@ msgstr "Gorffen"
msgid "Error"
msgstr "Gwall"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Rhowch URL gweinydd WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1206,33 +1212,33 @@ msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
msgid "Warning"
msgstr "Rhybudd"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Ydych chi eisiau dileu'r pwynt arosod?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Gweinydd:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Pwynt arosod:"
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Creu rhaniadau"
@@ -1264,9 +1270,9 @@ msgstr "Gadael"
msgid "Continue"
msgstr "Parhau"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Cymorth"
@@ -1297,63 +1303,63 @@ msgstr "Manylion"
msgid "No hard disk drives found"
msgstr "Heb ganfod gyrwyr caled"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Anhysbys"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr ""
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Arall"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Gwag"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Mathau o system ffeiliau:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Mae'r rhaniad eisoes yn wag"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Defnyddiwch \"Dadarosod\" yn gyntaf"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Defnyddiwch \"%s\" yn lle hynny (modd arbenigwr)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1402,7 +1408,7 @@ msgstr "Gorffen heb ysgrifennu'r tabl rhaniadau?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1689,7 +1695,7 @@ msgid "Where do you want to mount %s?"
msgstr "Lle'r ydych am arosod %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Newid maint"
@@ -1736,7 +1742,7 @@ msgstr "Lleiafswm maint: %s MB"
msgid "Maximum size: %s MB"
msgstr "Uchawfswm maint : %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2183,8 +2189,8 @@ msgstr "Newid y math"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Diddymu"
@@ -2277,7 +2283,7 @@ msgstr ""
"Digwyddodd gwall - heb ganfod unrhyw ddyfeisiau dilys er mwyn creu system "
"ffeil arnynt. Gwiriwch eich caledwedd am reswm dros y gwall."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Rhaid cael rhaniad ESP FAT32 wedi ei arosod yn /boot/EFI"
@@ -2490,7 +2496,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Dim digon o le cyfnewid i gyflawni'r gosod, ychwanegwch"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2501,7 +2507,7 @@ msgstr ""
"Ar gyfer gwneud hyn , crëwch raniad (neu cliciwch ar un cyfredol).\n"
"Yna dewiswch weithred ``Pwynt arosod'' a'i osod i `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2512,42 +2518,42 @@ msgstr ""
"\n"
"Parhau beth bynnag?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Defnyddio'r gwagle"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nid oes digon o le ar gyfer dynodi rhaniadau newydd"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Defnyddio'r rhaniadau presennol"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Nid oes rhaniad presennol ar gael"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Mesur maint rhaniad Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Defnyddio'r gwagle ar raniad Microsoft Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Pa raniad hoffech newid ei faint?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2558,12 +2564,12 @@ msgstr ""
"cyfrifiadur yn Microsoft Windows®, a rhedeg y rhaglen `defrag'', yna "
"ailgychwyn gosod %s."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2599,76 +2605,76 @@ msgstr ""
"When sure, press %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Nesaf"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Creu rhaniadau"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Pa faint o le ydych am ei gadw ar gyfer Microsoft Windows® ar rhaniad %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Maint"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Newid maint rhaniad Microsoft Windows®"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Methodd newid maint FAT %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "Nid oes rhaint FAT i newid ei faint (neu does dim digon o le)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Tynnu Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Dileu a defnyddio'r ddisg gyfan"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Bydd POB rhaniad presennol a'u data'n cael eu colli ar yrrwr %si"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Rhannu disg arbenigol"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Defnyddiwch fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2677,42 +2683,42 @@ msgstr ""
"Gallwch nawr rannu %s.\n"
"Ar ôl gorffen, peidiwch anghofio ei gadw dan ddefnyddio 'w'."
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr ""
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Nid oes lle ar gyfer gosod"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Mae dewin rhannu DrakX wedi canfod yr atebion canlynol:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Methodd creu'r rhaniad: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar raniadau llai na 16MB"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2755,22 +2761,22 @@ msgstr ""
"\n"
"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Rhaid i bwyntiau arosod gynnwys / arweiniol"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Dylai enw'r pwyntiau arosod gynnwys llythrennau a rhifau'n unig"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mae yna eisoes raniad gyda phwynt arosod %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2778,26 +2784,26 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
"No bootloader is able to handle this."
msgstr ""
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr ""
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2805,12 +2811,12 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Nid oes modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt arosod %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2819,7 +2825,7 @@ msgstr ""
"Does dim modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt arosod %s am ei "
"fod ar draws cyfrolau ffisegol."
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2828,12 +2834,12 @@ msgid ""
"You should create a separate /boot partition first"
msgstr ""
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dylai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2842,12 +2848,12 @@ msgstr ""
"Mae angen gwir system ffeilio (ext2, reiserfs, xfs, neu jfs)) ar gyfer y "
"pwynt arosod\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nid oes digon o le i ddynodi'n awtomatig"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Dim i'w wneud"
@@ -2857,238 +2863,238 @@ msgstr "Dim i'w wneud"
msgid "SATA controllers"
msgstr "Rheolyddion SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "Rheolyddion RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Rheolyddion (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Darllenydd cerdyn"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Rheolyddion firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Rheolyddion PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Rheolyddion SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Rheolyddion USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Pyrth USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Rheolyddion SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Rheolyddion pontydd a system"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Disg Meddal"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Disg"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "Dyfeisiau Storio Crynswth USB"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Llosgwyr CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Tâp"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Rheolyddion AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Cerdyn fideo"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Cerdyn DVB"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Cerdyn Teledu"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Dyfeisiau aml-gyfrwng eraill"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Cerdyn sain"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Camera Gwe"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Prosesyddion"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Addaswyr ISDN"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Dyfeisiau sain USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Cardiau radio"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Cardiau rhwydwaith ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Cardiau rhwydwaith WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Dyfeisiau Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Cerdyn Ethernet"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Addaswyr ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Cof"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Argraffydd"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Rheolyddion porth gemau"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Ffon hud"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Bysellfwrdd"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tabled a sgrin cyffwrdd"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Llygoden"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometreg"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Sganiwr"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Anhysbys/Eraill"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu # "
@@ -3331,19 +3337,19 @@ msgstr "Math o diwniwr:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Iawn"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Iawn"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3374,22 +3380,22 @@ msgstr "Gorffen"
msgid "Previous"
msgstr "Blaenorol"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Heb ddewis ffeil"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Rydych wedi dewis cyfeiriadur, nid ffeil"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Dim cyfeiriadur o'r fath ar gael"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Dim ffeil o'r fath ar gael"
@@ -4671,7 +4677,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
@@ -5310,7 +5316,7 @@ msgstr "Caniatáu mewngofnodi gwraidd uniongyrchol."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5681,7 +5687,7 @@ msgstr "Mewngofnodi gwraidd uniongyrchol"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (sddm and gdm)"
+msgid "List users on display managers (kdm and gdm)"
msgstr ""
#: security/l10n.pm:20
@@ -6878,17 +6884,17 @@ msgstr "Cyfundeb Rwsia"
msgid "Yugoslavia"
msgstr "Iwgoslafia"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Ydi hyn yn gywir?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Rydych wedi dewis ffeil, nid cyfeiriadur"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Gwybodaeth"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 0da8023a5..c893f854c 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-11-17 14:32+0000\n"
"Last-Translator: Carl Andersen <carl@blue-dane.org>\n"
"Language-Team: Danish (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -20,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -29,12 +29,12 @@ msgstr ""
msgid "Please wait"
msgstr "Vent venligst"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation af systemopstarteren er i gang"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -51,12 +51,12 @@ msgstr ""
"\n"
"Tildel en ny Volumen-ID?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Installation af opstarter mislykkedes. Den følgende fejl opstod:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -71,218 +71,218 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Installation af systemopstarter"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du placere opstartsprogrammet?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Første sektor (MBR) på drev %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Første sektor på disken (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Første sektor af rodpartitionen"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "På diskette"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Spring over"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguration af opstartsudseende"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Systemopstarterens hovedindstillinger"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Systemopstarter"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Systemopstarter der skal bruges"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Opstartsenhed"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Hovedvalg"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Ventetid før opstart af forvalgt styresystem"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Aktivér ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Aktivér SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Aktivér APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Aktivér lokal APIC"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sikkerhed"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Adgangskode"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Prøv igen"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Du kan ikke bruge en adgangskode med %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Adgangskode (igen)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Billede"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Rod"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Vedhæft"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Xen-tilføjning"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Kræver adgangskode for at starte op"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Videoindstilling"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Netværksprofil"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Mærkat"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Tom mærkat er ikke tilladt"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Du skal angive en kerne-fil"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Du skal angive en root-partition"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Denne mærkat er allerede brugt"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type ønsker du at tilføje"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Andet styresystem (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguration af opstarter"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -291,47 +291,47 @@ msgstr ""
"Her er følgende typer indgange.\n"
"Du kan tilføje flere eller ændre de eksisterende."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "adgang til rpm-værktøjer"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "adgang til netværksværktøjer"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "adgang til oversættelsesværktøjer"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilføjet %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -340,148 +340,148 @@ msgstr ""
"Brugernavnet skal starte et lille bogstav, efterfulgt kun af små bogstaver, "
"tal, `-' og `_'"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Dette brugernavn eksisterer allerede"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Bruger-id"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Gruppe-id"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s skal være et tal"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s burde være over 1000. Acceptér alligevel?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Administration af brugere"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Aktivér kontoen guest"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Sæt administrator (root) adgangskode"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Indtast en bruger"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Ikon"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Rigtige navn"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Logindnavn"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Skal"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Vent venligst, tilføjer medie..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger på."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Brug denne facilitet"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Vælg den forvalgte bruger:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vælg den vindueshåndtering du ønsker at benytte:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Udgivelsesnoter"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Luk"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Licensaftale"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Afslut"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Accepterer du denne licens?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Acceptér"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Nægt"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Vælg det sprog, der skal bruges"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -492,87 +492,87 @@ msgstr ""
"de sprog, du ønsker at installere. De vil være tilgængelige\n"
"når installationen er færdig, og du genstarter dit system."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Flere sprog"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Vælg flere sprog"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Gammel kompatibilitetskoding (ikke UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Alle sprog"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Sprogvalg"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Land / Region"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Vælg dit land"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Her er den komplette liste over tilgængelige lande"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Andre lande"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Avanceret"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Indtastningsmetode:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Ingen"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Ingen fildeling"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Tilpasset"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -586,7 +586,7 @@ msgstr ""
"Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke på "
"'Fildeling' i konqueror og nautilus.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -595,7 +595,7 @@ msgstr ""
"NFS: det traditionlle Unix fildelingssystem, med mindre funktionalitet på "
"Mac og Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -604,18 +604,18 @@ msgstr ""
"SMB: et fildelingssystem brugt på Windows, Mac OS X og mange moderne Linux-"
"systemer."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Du kan eksportere med NFS eller SMB. Hvilken vil du bruge"
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -624,7 +624,7 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilføje en bruger til denne gruppe."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -633,47 +633,47 @@ msgstr ""
"Du skal logge ud og ind igen for at ændringerne skal gælde. Tryk O.k. for at "
"logge ud nu."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Du skal logge ud og ind igen for at ændringerne skal gælde"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Tidszone"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dato-, klokke- og tidszoneopsætning"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Hvad er den bedste tid?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (Maskin-ur sat til UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (Maskin-ur sat til lokal tid)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP-server"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)"
@@ -1014,7 +1014,7 @@ msgid "Domain Admin Password"
msgstr "Adgangskode for domæneadministrator"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1054,12 +1054,12 @@ msgstr "GRUB med tekstmenu"
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlæseren på en %s-partition\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1068,7 +1068,7 @@ msgstr ""
"Din opstartsindlæserkonfiguration behøver at opdateres da rækkefølgen på "
"dine partitioner er blevet ændret"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1077,7 +1077,7 @@ msgstr ""
"Opstartsindlæseren kan ikke blive installeret korrekt. Du skal lave "
"nødopstart og vælge \"%s\""
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Geninstallér systemopstarter"
@@ -1107,17 +1107,23 @@ msgstr "Gb"
msgid "TB"
msgstr "Tb"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d minutter"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 minut"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d sekunder"
@@ -1136,27 +1142,27 @@ msgstr ""
"som en WebDAV-server). Hvis du ønsker at tilføje WebDAV-monteringspunkter,\n"
"så vælg \"Ny\"."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Ny"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Afmontér"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Montér"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Server"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1164,25 +1170,25 @@ msgstr "Server"
msgid "Mount point"
msgstr "Monteringssti"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Valg"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Fjern"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Færdig"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1198,17 +1204,17 @@ msgstr "Færdig"
msgid "Error"
msgstr "Fejl"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Indtast LRL for WebDAV-serveren"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL'en skal begynde med http:// eller https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1219,33 +1225,33 @@ msgstr "URL'en skal begynde med http:// eller https://"
msgid "Warning"
msgstr "Advarsel"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Er du sikker på at du ønsker at slette dette monteringspunkt?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Monteringssti: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Opdeling af disk"
@@ -1276,9 +1282,9 @@ msgstr "Afslut"
msgid "Continue"
msgstr "Fortsæt"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Hjælp"
@@ -1309,63 +1315,63 @@ msgstr "Detaljer"
msgid "No hard disk drives found"
msgstr "Ingen diskdrev fundet"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Ukendt"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Andet"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Tom"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Filsystems-typer:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Denne partition er allerede tom"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Benyt ``Afmontér'' først"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Benyt ``%s'' i stedet (i eksperttilstand)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1414,7 +1420,7 @@ msgstr "Afslut uden at skrive partitionstabellen?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Ønsker du at gemme /etc/fstab-ændringerne?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr "Du skal genstarte for at aktivere ændringerne i partitionstabellen"
@@ -1699,7 +1705,7 @@ msgid "Where do you want to mount %s?"
msgstr "Hvor ønsker du at montere %s?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Ændrer størrelsen"
@@ -1746,7 +1752,7 @@ msgstr "Minimumsstørrelse: %s MB"
msgid "Maximum size: %s MB"
msgstr "Maksimumsstørrelse: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2192,8 +2198,8 @@ msgstr "Skift type"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Annullér"
@@ -2286,7 +2292,7 @@ msgstr ""
"der kan oprettes nye filsystemer. Undersøg din maskine for at finde årsagen "
"til problemet"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Du skal have en ESP FAT32-partition monteret under /boot/EFI"
@@ -2495,7 +2501,7 @@ msgstr ""
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ikke nok swap-plads til at gennemføre installationen, tilføj mere"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2506,7 +2512,7 @@ msgstr ""
"vælg en eksisterende).\n"
"Vælg så kommandoen \"Monterings-sti\" og sæt den til `/'"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2517,42 +2523,42 @@ msgstr ""
"\n"
"Fortsæt alligevel?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Brug fri plads"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Ikke nok fri plads til at tildele nye partitioner"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Brug eksisterende partition"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Der er ingen eksisterende partition der kan bruges"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Beregner størrelsen på Microsoft Windows®-partitionen"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Brug den frie plads på en Microsoft Windows ® partition"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Hvilken partition ønsker du at ændre størrelse på?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2563,13 +2569,13 @@ msgstr ""
"under Microsoft Windows®, og kør ``defrag'' værktøj, derefter genstart %s "
"installation."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
"Det lykkedes ikke at finde partitionen at ændre størrelsen på (%d valg)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2604,56 +2610,56 @@ msgstr ""
"Tryk på %s, hvis du er helt sikker."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Næste"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Opdeling af disk"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Hvilken størrelse ønsker du at at beholde Microsoft Windows® på partition %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Størrelse"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Udregner Microsoft Windows®-filsystemets grænser"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT størrelsesændring mislykkedes: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Der er ingen FAT-partitioner at ændre størrelse på (eller ikke nok plads "
"tilbage)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Fjern Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Slet hele disken og brug den"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2662,22 +2668,22 @@ msgstr ""
"Du har mere end en harddisk, hvilken ønsker du installationsprogrammet skal "
"bruge?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle eksisterende partitioner og deres data vil gå tabt på drev %s"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Brugerdefineret disk-opdeling"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Brug fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2686,42 +2692,42 @@ msgstr ""
"Du kan nu partitionere %s.\n"
"Når du er færdig, så husk at gemme med 'w'"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Kan ikke finde plads til installering"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX partitionerings-vejlederen fandt de følgende løsninger:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Her er indholdet af dit diskdrev "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partitionering mislykkedes: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Du kan ikke bruge JFS på partitioner mindre end 16Mb"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Du kan ikke bruge ReiserFS på partitioner mindre end 32Mb"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr "Du kan ikke bruge btrfs partitioner på mindre end 256MB"
@@ -2764,22 +2770,22 @@ msgstr ""
"\n"
"Er du indforstået med at ødelægge alle partitionerne?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Monteringsstier skal begynde med /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr "Monteringspunkter bør kun indeholde bogstaver og tal"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Der findes allerede en partition med monterings-sti %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2790,7 +2796,7 @@ msgstr ""
"Ingen bootloader er i stand til at håndtere dette uden en / boot-partition\n"
"Sørg for at tilføje en separat / boot-partition"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2799,7 +2805,7 @@ msgstr ""
"Metadata-version ikke understøttes for en boot-partition. Sørg for at "
"tilføje en separat / boot-partition."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2808,12 +2814,12 @@ msgstr ""
"Du har valgt en programmeret RAID-partition som /boot (/).\n"
"Ingen systemopstarter kan håndtere dette."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Metadata-version ikke understøttet for en opstarts-partition (/boot)."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2824,12 +2830,12 @@ msgstr ""
"Ingen bootloader er i stand til at håndtere dette uden en / boot-partition.\n"
"Sørg for at tilføje en separat / boot-partition"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2838,7 +2844,7 @@ msgstr ""
"Du kan ikke bruge LVM Logisk Volumen for monteringspunkt %s da det "
"indeholder fysiske volumener"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2851,12 +2857,12 @@ msgstr ""
"spænder flere fysiske Logisk Volumen.\n"
"Du bør oprette en separat / boot-partition først"
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dette katalog bør ligge på rod-filsystemet"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2865,12 +2871,12 @@ msgstr ""
"Du skal have et rigtigt filsystem (ext2/3/4, reiserfs, xfs eller jfs) til "
"dette monteringspunkt\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Ingenting at lave"
@@ -2880,238 +2886,238 @@ msgstr "Ingenting at lave"
msgid "SATA controllers"
msgstr "SATA-kontrolkort"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID-kontrolkort"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA kontrolkort"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Kortlæsere"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-kontrolkort"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-kontrolkort"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-kontrolkort"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB-kontrolkort"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB porte"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-kontrollers"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Broer og system-kontrolkort"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Diskette"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Hard Disk"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB-lagerenheder"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "cd-rom"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD-brændere"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Bånd"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP-kontrolkort"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Videokort"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB-kort"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV-kort"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Andre multimedie-enheder"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Lydkort"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Processorer"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN-kort"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "USB-lydenheder"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Radiokort"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "ATM-netværkskort"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "WAN-netværkskort"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth-enheder"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Ethernet-kort"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL-kort"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Hukommelse"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Printer"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Spilport-kontrollere"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Joystick"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Tastatur"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet og touchscreen"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Mus"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometri"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Skanner"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Ukendt|andre"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "cpu-nummer "
@@ -3424,19 +3430,19 @@ msgstr "Tuner-type:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "O.k."
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ja"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3467,22 +3473,22 @@ msgstr "Afslut"
msgid "Previous"
msgstr "Forrige"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Ingen fil valgt"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Du har valgt et katalog, ikke en fil"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Ikke noget katalog"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Ikke nogen fil"
@@ -4764,7 +4770,7 @@ msgstr "Zambia"
msgid "Zimbabwe"
msgstr "Zimbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
@@ -5393,9 +5399,9 @@ msgid "Allow direct root login."
msgstr "Tillad direkte root-logind."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Tillad listen af brugere på systemet på skærmhåndteringer (sddm og gdm)."
@@ -5770,8 +5776,8 @@ msgid "Direct root login"
msgstr "Direkte logind som root"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "List brugere på skærmhåndteringer (sddm og gdm)."
#: security/l10n.pm:20
@@ -6993,17 +6999,17 @@ msgstr "Russiske føderation"
msgid "Yugoslavia"
msgstr "Jugoslavien"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Er dette korrekt?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Du har valgt en fil, ikke et katalog"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Info"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 3a1af6bad..b53b933de 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:01+0000\n"
"Last-Translator: psyca\n"
"Language-Team: German (http://www.transifex.com/projects/p/mageia/language/"
@@ -23,7 +23,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -32,12 +32,12 @@ msgstr ""
msgid "Please wait"
msgstr "Bitte warten"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation des Bootloaders ..."
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -54,14 +54,14 @@ msgstr ""
"\n"
"Neue Datenträger-ID zuweisen?"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Die Installation des Betriebssytemstarters schlug fehl. Folgender Fehler "
"trat auf:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -77,218 +77,218 @@ msgstr ""
"\n"
"Von welchem Laufwerk booten Sie?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Installation des Bootloaders"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Wo soll der Bootloader installiert werden?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Erster Sektor der %s Platte (MBR)"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Erster Sektor der Platte (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Erster Sektor der Root-Partition"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Auf Diskette"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Überspringen"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguration der Boot-Einstellungen"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Hauptoptionen des Bootloaders"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Zu verwendender Bootloader"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Boot-Gerät"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Hauptoptionen"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Wartezeit vor dem Starten des Standard-Betriebssystems"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "ACPI aktivieren"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "SMP aktivieren"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "APIC aktivieren"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Lokales APIC aktivieren"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sicherheit"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Passwort"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Die Passwörter stimmen nicht überein"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Sie können kein Passwort mit %s benutzen"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Passwort (erneut)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Abbild"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Hinzufügen / Erweitern"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Xen hinzufügen"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Benötigt Passwort zum Booten"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Video-Modus"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Init-RamDisk"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Netzwerk Profil"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Bezeichnung"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Leere Einträge sind nicht erlaubt"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Sie müssen ein Kernel-Image angeben"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Sie müssen die Root-Partition festlegen"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufügen?"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Anderes OS (Windows ...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguration des Bootloaders"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -297,47 +297,47 @@ msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie können weitere hinzufügen oder existierende ändern."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "Zugriff auf Netzwerk-Werkzeuge"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "Zugriff auf Kompilier-Werkzeuge"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefügt)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Bitte geben Sie einen Benutzernamen an"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -346,149 +346,149 @@ msgstr ""
"Der Benutzername muss mit einem Kleinbuchstaben beginnen und sollte nur aus "
"Kleinbuchstaben, Ziffern, „-“ und „_“ bestehen."
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Dieser Benutzername ist zu lang"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Dieser Benutzername existiert bereits"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Benutzer-ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Gruppen-ID"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "%s muss eine Zahl sein"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr "%s sollte größer als 1000 sein. Trotzdem akzeptieren?"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Benutzerverwaltung"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Den Gastzugang aktivieren"
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Administratorpasswort setzen"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Benutzer einrichten"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Symbol"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Vollständiger Name"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Benutzername"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Bitte warten, füge Medien hinzu ..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatisch anmelden"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Ich kann Ihren Computer so einrichten, dass ein Benutzer automatisch "
"angemeldet wird."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Diese Möglichkeit nutzen"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Versionshinweise"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Schließen"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Lizenzvereinbarung"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Verlassen"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Akzeptieren Sie diese Lizenz?"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Akzeptieren"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Ablehnen"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Bitte wählen Sie die zu verwendende Sprache"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -500,87 +500,87 @@ msgstr ""
"sein,\n"
"wenn Ihre Installation beendet ist und Sie das System neu starten."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Mehrere Sprachen"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Wählen Sie zusätzliche Sprachen aus"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Alte (nicht UTF-8) Kodierung"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Alle Sprachen"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Sprachauswahl"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Staat / Region"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Bitte wählen Sie Ihr Land"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier ist die komplette Liste aller Länder"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Andere Länder"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Fortgeschritten"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Eingabe-Methode:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Keine"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Keine Freigaben"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Benutzerdefiniert"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -595,7 +595,7 @@ msgstr ""
"\n"
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Benutzer vornehmen.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -604,7 +604,7 @@ msgstr ""
"NFS: das traditionelle Unix-Dateisystem für Freigaben im Netz, mit weniger "
"Unterstützung für Mac und Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -613,7 +613,7 @@ msgstr ""
"SMB: ein Dateisystem für Freigaben im Netz von Windows, Mac OS X und vielen "
"modernen Linux-Systemen verwendet"
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -621,12 +621,12 @@ msgstr ""
"Sie können die Dateien mittels SMB oder NFS anbieten. Welche Variante wollen "
"Sie verwenden?"
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "UserDrake starten"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -635,7 +635,7 @@ msgstr ""
"Die Freigaben zwischen Benutzern regelt die Gruppe „fileshare“. \n"
"Sie können UserDrake verwenden, um Benutzer in diese Gruppe aufzunehmen."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -644,49 +644,49 @@ msgstr ""
"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam "
"werden. Klicken Sie auf OK, um sich nun abzumelden."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam "
"werden"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Zeitzone"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Datum, Zeit und Zeitzonen Einstellungen"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Welches ist die beste Zeit?"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (Hardware Uhr gestellt auf GMT)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (Hardware Uhr gestellt auf Ortszeit)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "NTP-Server"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
@@ -1029,7 +1029,7 @@ msgid "Domain Admin Password"
msgstr "Passwort des Domänen-Administrators"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1069,12 +1069,12 @@ msgstr "GRUB mit Textmenü"
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Sie können den Bootloader nicht auf einer %s-Partition installieren.\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1083,7 +1083,7 @@ msgstr ""
"Ihre Bootloaderkonfiguration muss geändert werden, da sich Ihre "
"Partitionsnummerierung geändert hat"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1092,7 +1092,7 @@ msgstr ""
"Der Bootloader kann nicht richtig installiert werden. Sie müssen ins "
"Rettungssystem booten und „%s“ wählen"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Bootloader neu installieren"
@@ -1122,17 +1122,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d Minuten"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 Minute"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d Sekunden"
@@ -1151,27 +1157,27 @@ msgstr ""
"Falls Sie Einhängepunkte für WebDAV hinzufügen wollen, wählen Sie\n"
"„Neu“."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Neu"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Aushängen"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Einhängen"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Server"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1179,25 +1185,25 @@ msgstr "Server"
msgid "Mount point"
msgstr "Einhängepunkt"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Optionen"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Entfernen"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fertig"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1213,17 +1219,17 @@ msgstr "Fertig"
msgid "Error"
msgstr "Fehler"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Bitte geben Sie die WebDAV-Server-URL an"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1234,33 +1240,33 @@ msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"
msgid "Warning"
msgstr "Warnung"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Sind Sie sicher, dass Sie diesen Mountpunkt löschen wollen?"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Einhängepunkt: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Optionen: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Partitionierung"
@@ -1293,9 +1299,9 @@ msgstr "Verlassen"
msgid "Continue"
msgstr "Fortfahren"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Hilfe"
@@ -1326,63 +1332,63 @@ msgstr "Details"
msgid "No hard disk drives found"
msgstr "Keine Festplattenlaufwerke gefunden"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Unbekannt"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Andere"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Leer"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Dateisystemtypen:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Diese Partition ist bereits leer"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Verwenden Sie erst „Aushängen“"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Verwenden Sie „%s“ stattdessen (im Expertenmodus)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1431,7 +1437,7 @@ msgstr "Beenden ohne die Partitionstabelle zu speichern?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Wollen Sie die Änderungen in /etc/fstab speichern?"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1721,7 +1727,7 @@ msgid "Where do you want to mount %s?"
msgstr "Wo wollen Sie „%s“ einhängen?"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Größe ändern"
@@ -1768,7 +1774,7 @@ msgstr "Minimale Größe: %s MB"
msgid "Maximum size: %s MB"
msgstr "Maximale Größe: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2221,8 +2227,8 @@ msgstr "Typ ändern"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Abbrechen"
@@ -2316,7 +2322,7 @@ msgstr ""
"das Dateisystem erstellt werden kann. Bitte überprüfen Sie die Hardware, um "
"den Grund für diesen Fehler zu finden."
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "In /boot/EFI muss eine ESP FAT32-Partition eingebunden sein"
@@ -2539,7 +2545,7 @@ msgstr ""
"Nicht genug Swap-Speicher um die Installation auszuführen, bitte fügen Sie "
"mehr Swap-Speicher hinzu"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2552,7 +2558,7 @@ msgstr ""
"Danach wählen Sie die Aktion „Einhängepunkt“ und setzen die Einstellung dort "
"auf „/“"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2563,43 +2569,43 @@ msgstr ""
"\n"
"Wollen Sie fortfahren?"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Verwende freien Platz"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nicht genug freier Platz, um die neue Partition hinzuzufügen"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Bestehende Partitionen"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Es gibt keine existierende Partition, die verwendet werden können."
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Die Größe der Microsoft Windows®-Partition berechnen"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr ""
"Den freien Speicherplatz auf der Microsoft Windows® Partition verwenden"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Bei welcher Partition wollen Sie die Größe ändern?"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2610,14 +2616,14 @@ msgstr ""
"Sie Ihren Computer zuerst unter Microsoft Windows(R) und führen Sie das "
"„defrag“-Programm aus, dann starten Sie die %s-Installation neu."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr ""
"Die Partition, bei der die Größe geändert werden soll, wurde nicht gefunden "
"(%d Auswahlmöglichkeiten)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2655,39 +2661,39 @@ msgstr ""
"Falls dies der Fall ist, können Sie mit %s fortfahren."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Weiter"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Partitionierung"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Wieviel Platz benötigen Sie noch für Microsoft Windows® auf Partition %s?"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Größe"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Größe der Microsoft Windows®-Partition wird geändert"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-Größenanpassung schlug fehl: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
@@ -2695,17 +2701,17 @@ msgstr ""
"(möglicherweise haben Sie auch einfach nur nicht mehr genügend\n"
"freien Speicher)."
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Entferne Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Komplette Platte löschen und freien Platz benutzen"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2714,24 +2720,24 @@ msgstr ""
"Sie verfügen über mehr als eine Festplatte, welche soll vom "
"Installationsprogramm benutzt werden?"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SÄMTLICHE existierende Partitionen samt der darauf befindlichen Daten \n"
"auf Laufwerk %s gehen dabei verloren"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Benutzerdefinierte Partitionierung"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Verwende fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2741,44 +2747,44 @@ msgstr ""
"Vergessen Sie nicht die Einstellungen mittels „w“ zu speichern, \n"
"sobald Sie fertig sind."
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Es kann kein Platz für die Installation gefunden werden."
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Der DrakX-Partitionierungsassistent fand folgende Lösungen:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Hier sehen Sie den Inhalt ihres Festplattenlaufwerkes "
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partitionierunsgfehler: %s"
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
"Sie können JFS nicht für Partitionen nutzen, die kleiner als 16 MB sind."
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Sie können ReiserFS nicht für Partitionen nutzen, die kleiner als 32 MB sind."
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2825,24 +2831,24 @@ msgstr ""
"\n"
"Sind Sie mit dem Verlust aller Partitionen einverstanden?\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Einhängepunkte müssen mit einem / beginnen."
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
"Einhängepunkte sollten nur Buchstaben, Ziffern und den Unterstrich "
"unterhalten"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Es gibt bereits eine Partition, mit dem Einhängepunkt %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2853,7 +2859,7 @@ msgstr ""
"Kein Bootloader kann diese ohne eine /boot Partition handhaben.\n"
"Stellen Sie sicher, dass Sie eine separate /boot Partition angelegt haben."
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2862,7 +2868,7 @@ msgstr ""
"Die Metadaten-Version wird für eine Boot-Partition nicht unterstützt. Fügen "
"Sie eine separate /boot-Partition hinzu."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2871,12 +2877,12 @@ msgstr ""
"Sie haben eine Software-RAID-Partition als /boot-Partition ausgewählt. Kein "
"Bootloader kann damit umgehen. "
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Die Metadaten-Version wird für eine Boot-Partition nicht unterstützt."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2887,13 +2893,13 @@ msgstr ""
"Kein Bootloader kann diese ohne eine /boot-Partition handhaben.\n"
"Stellen Sie sicher, dass Sie eine separate /boot-Partition angelegt haben."
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Sie können kein verschlüsseltes Dateisystem als Einhängepunkt %s verwenden."
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2902,7 +2908,7 @@ msgstr ""
"Sie können kein Logisches Volumen (LVM) für den Einhängepunkt %s verwenden, "
"da es mehrere physiklische Geräte umspannt"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2915,12 +2921,12 @@ msgstr ""
"Geräte umspannt.\n"
"Sie sollten eine separate /boot-Partition erzeugen."
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dieses Verzeichnis muss innerhalb des Wurzelverzeichnisses bleiben"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2929,12 +2935,12 @@ msgstr ""
"Sie benötigen ein echtes GNU/Linux-Dateisystem (ext2/3/4, reiserfs, xfs oder "
"jfs) für diesen Einhängepunkt.\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Nicht genug freier Platz, um eine Partition anzulegen."
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Nichts zu tun."
@@ -2944,238 +2950,238 @@ msgstr "Nichts zu tun."
msgid "SATA controllers"
msgstr "SATA-Controller"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "RAID-Controller"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA-Controller"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Kartenlesegerät"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-Controller"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-Controller"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-Controller"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "USB-Controller"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "USB-Ports"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-Controller"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Brücken und System-Controller"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Diskettenlaufwerk"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "ZIP"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Festplatte"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB-Massenspeicher-Geräte"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CD-ROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD-Brenner"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Bandlaufwerk"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "AGP-Controller"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Videokarten"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "DVB-Karte"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "TV-Karten"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Andere Multimedia-Geräte"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Soundkarte"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Webcam"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Prozessoren"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "ISDN Adapter"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "USB-Sound-Geräte"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Radiokarten"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "ATM-Netzwerkkarten"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "WAN-Netzwerkkarten"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth-Geräte"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Netzwerkkarte"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Modem"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "ADSL Adapter"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Speicher"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Drucker"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Gameport-Controller"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Joystick"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Tastatur"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet und Touchscreen"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Maus"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Biometrie"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "USV"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Scanner"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Unbekannt/Andere"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "CPU #"
@@ -3481,19 +3487,19 @@ msgstr "Tunertyp:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "OK"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ja"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3524,22 +3530,22 @@ msgstr "Assistent beenden"
msgid "Previous"
msgstr "Zurück"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Keine Datei ausgewählt"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Sie haben ein Verzeichnis ausgewählt, keine Datei"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Das Verzeichnis existiert nicht"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Die Datei existiert nicht"
@@ -4820,7 +4826,7 @@ msgstr "Sambia"
msgid "Zimbabwe"
msgstr "Simbabwe"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"
@@ -5476,9 +5482,9 @@ msgid "Allow direct root login."
msgstr "Erlaube die direkte Root-Anmeldung."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Erlaube die Liste der Benutzer dieses Rechner im Displaymanager (sddm und "
"gdm)."
@@ -5862,8 +5868,8 @@ msgid "Direct root login"
msgstr "Direkte Root-Anmeldung"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Benutzer in den Display-Managern auflisten (sddm und gdm)"
#: security/l10n.pm:20
@@ -7131,17 +7137,17 @@ msgstr "Russische Föderation"
msgid "Yugoslavia"
msgstr "Jugoslawien"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Ist dies richtig?"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Sie haben eine Datei ausgewählt, kein Verzeichnis"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Info"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 1d4cec67c..2eac10d22 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-23 08:54+0200\n"
"Last-Translator: Dimitrios Glentadakis <dglent@free.fr>\n"
"Language-Team: Greek <i18n-el@ml.mageia.org>\n"
@@ -22,7 +22,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"X-Generator: Lokalize 1.5\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -31,12 +31,12 @@ msgstr ""
msgid "Please wait"
msgstr "Παρακαλώ περιμένετε"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr "Γίνεται εγκατάσταση του προγράμματος εκκίνησης του υπολογιστή"
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -55,14 +55,14 @@ msgstr ""
"\n"
"Να γίνει ανάθεση μιας νέα Ταυτότητας Τόμου;"
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Η εγκατάσταση του προγράμματος εκκίνησης απέτυχε. Παρουσιάστηκε το ακόλουθο "
"σφάλμα:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -77,220 +77,220 @@ msgstr ""
"\n"
"Ποιος είναι ο δίσκος εκκίνησης;"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr "Εγκατάσταση του προγράμματος εκκίνησης"
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Πού θέλετε να εγκαταστήσετε το πρόγραμμα εκκίνησης;"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Πρώτος τομέας (MBR) του δίσκου %s"
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Πρώτος τομέας του δίσκου (MBR)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Πρώτος τομέας της κατάτμησης root"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Στη δισκέτα"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Παράλειψη"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr "Ρύθμιση του στυλ εκκίνησης"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Κύριες επιλογές του προγράμματος εκκίνησης"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Πρόγραμμα εκκίνησης"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Χρήση του προγράμματος εκκίνησης"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Συσκευή εκκίνησης"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Κύριες επιλογές"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr ""
"Καθυστέρηση πριν την εκκίνηση\n"
"της προεπιλεγμένης εικόνας"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Ενεργοποίηση του ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr "Ενεργοποίηση του SMP"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr "Ενεργοποίηση του APIC"
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr "Ενεργοποίηση του τοπικού APIC"
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Ασφάλεια"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Κωδικός πρόσβασης"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Παρακαλώ προσπαθήστε ξανά"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr "Δεν μπορείτε να χρησιμοποιήσετε έναν κωδικό πρόσβασης με %s"
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Κωδικός πρόσβασης (ξανά)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Εικόνα"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Κατάτμηση root"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Επιλογές περασμένες στον πυρήνα"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr "Επιλογές Xen περασμένες στον πυρήνα"
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr "Απαιτείται ένας κωδικός πρόσβασης για την εκκίνηση"
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Λειτουργία βίντεο"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr "Προφίλ δικτύου"
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Ετικέτα"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Προκαθορισμένο"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Δεν επιτρέπεται μια κενή ετικέτα"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Πρέπει να ορίσετε μια εικόνα πυρήνα"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Πρέπει να ορίσετε μια κατάτμηση root"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Αυτή η ετικέτα χρησιμοποιείται ήδη"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Τι τύπου σύστημα θέλετε να προσθέσετε;"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Άλλο λειτουργικό (Windows...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr "Ρύθμιση του προγράμματος εκκίνησης"
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -299,47 +299,47 @@ msgstr ""
"Ορίστε οι καταχωρήσεις στο μενού εκκίνησης.\n"
"Μπορείτε να προσθέσετε κι άλλες ή να αλλάξετε τις υπάρχουσες."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "πρόσβαση σε προγράμματα γραφικού περιβάλλοντος"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "πρόσβαση σε εργαλεία rpm"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "επιτρέπεται η «su»"
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "πρόσβαση σε αρχεία διαχείρισης"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "πρόσβαση σε εργαλεία δικτύου"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "πρόσβαση σε εργαλεία σύνθεσης"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(%s έχει ήδη προστεθεί)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Παρακαλώ εισάγετε ένα όνομα χρήστη"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -348,149 +348,149 @@ msgstr ""
"Το όνομα χρήστη πρέπει να αρχίζει με πεζό γράμμα και τα γράμματα που "
"ακολουθούν να είναι επίσης πεζά, αριθμοί, «-» και «_»"
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Αυτό το όνομα χρήστη είναι πολύ μακρύ"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Αυτό το όνομα χρήστη έχει ήδη προστεθεί"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Αναγνωριστικό χρήστη"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Αναγνωριστικό ομάδας"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr "Το %s πρέπει να είναι αριθμός"
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
"Το %s πρέπει να είναι μεγαλύτερο ή ίσο του 1000. Αποδοχή έτσι κι αλλιώς;"
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr "Διαχείριση χρηστών"
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr "Ενεργοποίηση του λογαριασμού επισκέπτη "
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Ορίστε τον κωδικό πρόσβασης του διαχειριστή (root)"
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Εισάγετε ένα χρήστη"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Εικονίδιο"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Πραγματικό όνομα"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr "Όνομα χρήστη"
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Κέλυφος"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Παρακαλώ περιμένετε, προσθήκη μέσου..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Αυτόματη σύνδεση"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Μπορώ να ρυθμίσω το σύστημά σας έτσι ώστε να συνδέει αυτόματα ένα χρήστη."
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr "Χρήση αυτού του χαρακτηριστικού"
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Επιλέξτε τον προκαθορισμένο χρήστη:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Επιλέξτε το διαχειριστή παραθύρων που θέλετε να χρησιμοποιήσετε:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Σημειώσεις έκδοσης"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Κλείσιμο"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Άδεια χρήσης"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Έξοδος"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr "Αποδέχεστε αυτήν την άδεια ;"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Αποδοχή"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Άρνηση"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Παρακαλώ επιλέξτε τη γλώσσα"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -501,87 +501,87 @@ msgstr ""
"τις γλώσσες που επιθυμείτε να εγκαταστήσετε. Θα είναι διαθέσιμες\n"
"μετά την ολοκλήρωση της εγκατάστασης και την επανεκκίνηση του υπολογιστή."
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format
msgid "Multiple languages"
msgstr "Πολλαπλές γλώσσες"
-#: any.pm:1110
+#: any.pm:1155
#, c-format
msgid "Select Additional Languages"
msgstr "Επιλογή επιπλέον γλωσσών"
-#: any.pm:1119 any.pm:1150
+#: any.pm:1164 any.pm:1195
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Κωδικοποίηση παλιάς συμβατότητας (μη UTF-8)"
-#: any.pm:1120
+#: any.pm:1165
#, c-format
msgid "All languages"
msgstr "Όλες οι γλώσσες"
-#: any.pm:1142
+#: any.pm:1187
#, c-format
msgid "Language choice"
msgstr "Επιλογή γλώσσας"
-#: any.pm:1196
+#: any.pm:1241
#, c-format
msgid "Country / Region"
msgstr "Χώρα / Περιοχή"
-#: any.pm:1197
+#: any.pm:1242
#, c-format
msgid "Please choose your country"
msgstr "Παρακαλώ επιλέξτε τη χώρα σας"
-#: any.pm:1199
+#: any.pm:1244
#, c-format
msgid "Here is the full list of available countries"
msgstr "Αυτή είναι η πλήρης λίστα των διαθέσιμων χωρών"
-#: any.pm:1200
+#: any.pm:1245
#, c-format
msgid "Other Countries"
msgstr "Άλλες χώρες"
-#: any.pm:1200 interactive.pm:491 interactive/gtk.pm:444
+#: any.pm:1245 interactive.pm:491 interactive/gtk.pm:444
#, c-format
msgid "Advanced"
msgstr "Για προχωρημένους"
-#: any.pm:1206
+#: any.pm:1251
#, c-format
msgid "Input method:"
msgstr "Μέθοδος εισαγωγής:"
-#: any.pm:1209
+#: any.pm:1254
#, c-format
msgid "None"
msgstr "Κανένα"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "No sharing"
msgstr "Χωρίς κοινή χρήση"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Allow all users"
msgstr "Επιτρέπεται για όλους τους χρήστες"
-#: any.pm:1294
+#: any.pm:1339
#, c-format
msgid "Custom"
msgstr "Προσαρμοσμένο"
-#: any.pm:1298
+#: any.pm:1343
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -596,7 +596,7 @@ msgstr ""
"\n"
"Το \"Προσαρμοσμένο\" επιτρέπει την ανά χρήστη ρύθμιση.\n"
-#: any.pm:1310
+#: any.pm:1355
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -605,7 +605,7 @@ msgstr ""
"NFS: το παραδοσιακό σύστημα κοινής χρήσης του Unix, με περιορισμένη "
"υποστήριξη για Mac και Windows."
-#: any.pm:1313
+#: any.pm:1358
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -614,7 +614,7 @@ msgstr ""
"SMB: ένα σύστημα κοινής χρήσης, που χρησιμοποιείται από τα Windows, από το "
"Mac OS X και από πολλά μοντέρνα συστήματα Linux."
-#: any.pm:1321
+#: any.pm:1366
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -622,12 +622,12 @@ msgstr ""
"Μπορείτε να κάνετε εξαγωγή με τη χρήση NFS ή SMB. Παρακαλώ επιλέξτε ποιο θα "
"θέλατε να χρησιμοποιήσετε."
-#: any.pm:1349
+#: any.pm:1394
#, c-format
msgid "Launch userdrake"
msgstr "Εκκίνηση του userdrake"
-#: any.pm:1351
+#: any.pm:1396
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -637,7 +637,7 @@ msgstr ""
"Μπορείτε να προσθέσετε ένα χρήστη σε αυτήν την ομάδα χρησιμοποιώντας το "
"userdrake."
-#: any.pm:1458
+#: any.pm:1503
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -646,49 +646,49 @@ msgstr ""
"Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να "
"επανασυνδεθείτε. Πατήστε «Εντάξει» για να αποσυνδεθείτε τώρα."
-#: any.pm:1462
+#: any.pm:1507
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να "
"επανασυνδεθείτε."
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Timezone"
msgstr "Ωρολογιακή ζώνη"
-#: any.pm:1497
+#: any.pm:1542
#, c-format
msgid "Which is your timezone?"
msgstr "Ποια είναι η ζώνη ώρας σας;"
-#: any.pm:1520 any.pm:1522
+#: any.pm:1565 any.pm:1567
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Ρυθμίσεις της ημερομηνίας, της ώρας και της ωρολογιακής ζώνης"
-#: any.pm:1523
+#: any.pm:1568
#, c-format
msgid "What is the best time?"
msgstr "Ποια είναι η σωστή ώρα;"
-#: any.pm:1527
+#: any.pm:1572
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί σε UTC)"
-#: any.pm:1528
+#: any.pm:1573
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί στην τοπική ώρα)"
-#: any.pm:1530
+#: any.pm:1575
#, c-format
msgid "NTP Server"
msgstr "Εξυπηρετητής NTP"
-#: any.pm:1531
+#: any.pm:1576
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Αυτόματος συγχρονισμός της ώρας (μέσω NTP)"
@@ -1032,7 +1032,7 @@ msgid "Domain Admin Password"
msgstr "Κωδικός πρόσβασης του διαχειριστή τομέα"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:1112
+#: bootloader.pm:1113
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1072,13 +1072,13 @@ msgstr "GRUB με μενού κειμένου"
msgid "not enough room in /boot"
msgstr "δεν υπάρχει αρκετός χώρος στο /boot"
-#: bootloader.pm:2103
+#: bootloader.pm:2122
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
"Δεν μπορείτε να εγκαταστήσετε το πρόγραμμα εκκίνησης σε μια κατάτμηση %s\n"
-#: bootloader.pm:2278
+#: bootloader.pm:2297
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1087,7 +1087,7 @@ msgstr ""
"Η ρύθμιση του προγράμματος εκκίνησης πρέπει να ενημερωθεί επειδή κάποιες "
"κατατμήσεις έχουν επαναριθμηθεί"
-#: bootloader.pm:2291
+#: bootloader.pm:2310
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1097,7 +1097,7 @@ msgstr ""
"εκκινήσετε το CD-ROM της εγκατάστασης με την επιλογή «διάσωση» και να "
"επιλέξετε «%s»"
-#: bootloader.pm:2292
+#: bootloader.pm:2311
#, c-format
msgid "Re-install Boot Loader"
msgstr "Επανεγκατάσταση του προγράμματος εκκίνησης"
@@ -1127,17 +1127,23 @@ msgstr "GB"
msgid "TB"
msgstr "TB"
+#. -PO: here, "2:30" is remaining installation time (eg: "2:30" == 2 hour & 30 minutes)
#: common.pm:288
#, c-format
+msgid "%02d:%02d"
+msgstr ""
+
+#: common.pm:290
+#, c-format
msgid "%d minutes"
msgstr "%d λεπτά"
-#: common.pm:290
+#: common.pm:292
#, c-format
msgid "1 minute"
msgstr "1 λεπτό"
-#: common.pm:292
+#: common.pm:294
#, c-format
msgid "%d seconds"
msgstr "%d δευτερόλεπτα"
@@ -1158,27 +1164,27 @@ msgstr ""
"θέλετε να προσθέσετε\n"
"σημεία προσάρτησης WebDAV επιλέξτε «Νέο»."
-#: diskdrake/dav.pm:25
+#: diskdrake/dav.pm:26
#, c-format
msgid "New"
msgstr "Νέο"
-#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Αποπροσάρτηση"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:65 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Προσάρτηση"
-#: diskdrake/dav.pm:65
+#: diskdrake/dav.pm:66
#, c-format
msgid "Server"
msgstr "Εξυπηρετητής"
-#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:408
#: diskdrake/interactive.pm:719 diskdrake/interactive.pm:737
#: diskdrake/interactive.pm:741 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
@@ -1186,25 +1192,25 @@ msgstr "Εξυπηρετητής"
msgid "Mount point"
msgstr "Σημείο προσάρτησης"
-#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/dav.pm:68 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:1173 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Επιλογές"
-#: diskdrake/dav.pm:68 interactive.pm:390 interactive/gtk.pm:456
+#: diskdrake/dav.pm:69 interactive.pm:390 interactive/gtk.pm:456
#, c-format
msgid "Remove"
msgstr "Αφαίρεση"
-#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
+#: diskdrake/dav.pm:70 diskdrake/hd_gtk.pm:214 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Έγινε"
-#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
+#: diskdrake/dav.pm:79 diskdrake/hd_gtk.pm:146 diskdrake/hd_gtk.pm:320
#: diskdrake/interactive.pm:245 diskdrake/interactive.pm:258
#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
@@ -1220,17 +1226,17 @@ msgstr "Έγινε"
msgid "Error"
msgstr "Σφάλμα"
-#: diskdrake/dav.pm:86
+#: diskdrake/dav.pm:87
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Παρακαλώ εισάγετε την διεύθυνση του εξυπηρετητή WebDAV"
-#: diskdrake/dav.pm:90
+#: diskdrake/dav.pm:91
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Η διεύθυνση πρέπει να ξεκινά με http:// ή https://"
-#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:453 diskdrake/interactive.pm:304
+#: diskdrake/dav.pm:107 diskdrake/hd_gtk.pm:455 diskdrake/interactive.pm:304
#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
#: diskdrake/interactive.pm:812 diskdrake/interactive.pm:877
#: diskdrake/interactive.pm:1044 diskdrake/interactive.pm:1086
@@ -1241,33 +1247,33 @@ msgstr "Η διεύθυνση πρέπει να ξεκινά με http:// ή htt
msgid "Warning"
msgstr "Προσοχή"
-#: diskdrake/dav.pm:106
+#: diskdrake/dav.pm:107
#, c-format
msgid "Are you sure you want to delete this mount point?"
msgstr "Επιθυμείτε σίγουρα τη διαγραφή αυτού του σημείου προσάρτησης;"
-#: diskdrake/dav.pm:124
+#: diskdrake/dav.pm:125
#, c-format
msgid "Server: "
msgstr "Εξυπηρετητής:"
-#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:501
#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1462
#, c-format
msgid "Mount point: "
msgstr "Σημείο προσάρτησης: "
-#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1469
+#: diskdrake/dav.pm:127 diskdrake/interactive.pm:1469
#, c-format
msgid "Options: %s"
msgstr "Επιλογές: %s"
#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:299
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:113
-#: fs/partitioning_wizard.pm:59 fs/partitioning_wizard.pm:243
-#: fs/partitioning_wizard.pm:251 fs/partitioning_wizard.pm:286
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:495
-#: fs/partitioning_wizard.pm:578 fs/partitioning_wizard.pm:581
+#: fs/partitioning_wizard.pm:66 fs/partitioning_wizard.pm:256
+#: fs/partitioning_wizard.pm:264 fs/partitioning_wizard.pm:299
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:518
+#: fs/partitioning_wizard.pm:603 fs/partitioning_wizard.pm:606
#, c-format
msgid "Partitioning"
msgstr "Διαμερισμός"
@@ -1300,9 +1306,9 @@ msgstr "Έξοδος"
msgid "Continue"
msgstr "Συνέχεια"
-#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:554 interactive.pm:778
+#: diskdrake/hd_gtk.pm:209 fs/partitioning_wizard.pm:579 interactive.pm:778
#: interactive/gtk.pm:812 interactive/gtk.pm:830 interactive/gtk.pm:862
-#: ugtk2.pm:936 ugtk3.pm:1034
+#: ugtk2.pm:934 ugtk3.pm:1032
#, c-format
msgid "Help"
msgstr "Βοήθεια"
@@ -1333,63 +1339,63 @@ msgstr "Λεπτομέρειες"
msgid "No hard disk drives found"
msgstr "Δεν βρέθηκαν σκληροί δίσκοι"
-#: diskdrake/hd_gtk.pm:357
+#: diskdrake/hd_gtk.pm:359
#, c-format
msgid "Unknown"
msgstr "Άγνωστο"
-#: diskdrake/hd_gtk.pm:424
+#: diskdrake/hd_gtk.pm:426
#, c-format
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:424 fs/partitioning_wizard.pm:402
+#: diskdrake/hd_gtk.pm:426 fs/partitioning_wizard.pm:425
#, c-format
msgid "Windows"
msgstr "Windows "
-#: diskdrake/hd_gtk.pm:425 fs/partitioning_wizard.pm:403 services.pm:195
+#: diskdrake/hd_gtk.pm:427 fs/partitioning_wizard.pm:426 services.pm:195
#, c-format
msgid "Other"
msgstr "Άλλο"
-#: diskdrake/hd_gtk.pm:425 diskdrake/interactive.pm:1389
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:427 diskdrake/interactive.pm:1389
+#: fs/partitioning_wizard.pm:426
#, c-format
msgid "Empty"
msgstr "Κενό"
-#: diskdrake/hd_gtk.pm:432
+#: diskdrake/hd_gtk.pm:434
#, c-format
msgid "Filesystem types:"
msgstr "Τύποι συστημάτων αρχείων:"
-#: diskdrake/hd_gtk.pm:453
+#: diskdrake/hd_gtk.pm:455
#, c-format
msgid "This partition is already empty"
msgstr "Αυτή η κατάτμηση είναι ήδη κενή"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Κάντε πρώτα «Αποπροσάρτηση»"
-#: diskdrake/hd_gtk.pm:462
+#: diskdrake/hd_gtk.pm:464
#, c-format
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Αντί αυτού χρησιμοποιήστε «%s» (σε λειτουργία έμπειρου χρήστη)"
-#: diskdrake/hd_gtk.pm:462 diskdrake/interactive.pm:409
+#: diskdrake/hd_gtk.pm:464 diskdrake/interactive.pm:409
#: diskdrake/interactive.pm:636 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
@@ -1438,7 +1444,7 @@ msgstr "Έξοδος χωρίς εγγραφή του πίνακα κατατμ
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Θέλετε να αποθηκεύσετε τις αλλαγές του /etc/fstab;"
-#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:286
+#: diskdrake/interactive.pm:299 fs/partitioning_wizard.pm:299
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1727,7 +1733,7 @@ msgid "Where do you want to mount %s?"
msgstr "Πού θέλετε να προσαρτήσετε το %s;"
#: diskdrake/interactive.pm:770 diskdrake/interactive.pm:866
-#: fs/partitioning_wizard.pm:136 fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:143 fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing"
msgstr "Αλλαγή μεγέθους"
@@ -1775,7 +1781,7 @@ msgstr "Ελάχιστο μέγεθος: %s MB"
msgid "Maximum size: %s MB"
msgstr "Μέγιστο μέγεθος: %s MB"
-#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:220
+#: diskdrake/interactive.pm:877 fs/partitioning_wizard.pm:233
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2226,8 +2232,8 @@ msgstr "Αλλαγή του τύπου"
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
#: mygtk2.pm:1229 mygtk3.pm:899 mygtk3.pm:1283 ugtk2.pm:415 ugtk2.pm:517
-#: ugtk2.pm:526 ugtk2.pm:812 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
-#: ugtk3.pm:910
+#: ugtk2.pm:526 ugtk2.pm:810 ugtk3.pm:503 ugtk3.pm:593 ugtk3.pm:602
+#: ugtk3.pm:908
#, c-format
msgid "Cancel"
msgstr "Ακύρωση"
@@ -2320,7 +2326,7 @@ msgstr ""
"δημιουργία νέων συστημάτων αρχείων. Παρακαλώ ελέγξτε το υλικό σας για την "
"αιτία αυτού του προβλήματος"
-#: fs/any.pm:71 fs/partitioning_wizard.pm:68
+#: fs/any.pm:71 fs/partitioning_wizard.pm:75
#, c-format
msgid "You must have a ESP FAT32 partition mounted in /boot/EFI"
msgstr "Πρέπει να έχετε μια κατάτμηση ESP FAT32 προσαρτημένη στο /boot/EFI"
@@ -2543,7 +2549,7 @@ msgstr ""
"Δεν υπάρχει αρκετός χώρος swap για την ολοκλήρωση της εγκατάστασης, παρακαλώ "
"προσθέστε τον"
-#: fs/partitioning_wizard.pm:59
+#: fs/partitioning_wizard.pm:66
#, c-format
msgid ""
"You must have a root partition.\n"
@@ -2554,7 +2560,7 @@ msgstr ""
"Γι' αυτό, δημιουργήστε πρώτα μία κατάτμηση (ή επέλεξε μια ήδη υπάρχουσα).\n"
"Έπειτα επιλέξτε την ενέργεια «Σημείο προσάρτησης» και επιλέξτε «/»"
-#: fs/partitioning_wizard.pm:65
+#: fs/partitioning_wizard.pm:72
#, c-format
msgid ""
"You do not have a swap partition.\n"
@@ -2565,42 +2571,42 @@ msgstr ""
"\n"
"Συνέχεια ούτως ή άλλως;"
-#: fs/partitioning_wizard.pm:100
+#: fs/partitioning_wizard.pm:107
#, c-format
msgid "Use free space"
msgstr "Χρήση του ελεύθερου χώρου"
-#: fs/partitioning_wizard.pm:102
+#: fs/partitioning_wizard.pm:109
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Δεν υπάρχει αρκετός ελεύθερος χώρος για δημιουργία νέων κατατμήσεων"
-#: fs/partitioning_wizard.pm:110
+#: fs/partitioning_wizard.pm:117
#, c-format
msgid "Use existing partitions"
msgstr "Χρησιμοποιήστε τις υπάρχουσες κατατμήσεις"
-#: fs/partitioning_wizard.pm:112
+#: fs/partitioning_wizard.pm:119
#, c-format
msgid "There is no existing partition to use"
msgstr "Καμιά υπάρχουσα κατάτμηση προς χρήση"
-#: fs/partitioning_wizard.pm:136
+#: fs/partitioning_wizard.pm:143
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Υπολογίζεται το μέγεθος της κατάτμησης των Microsoft Windows®"
-#: fs/partitioning_wizard.pm:172
+#: fs/partitioning_wizard.pm:179
#, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "Χρήση του ελεύθερου χώρου σε μια κατάτμηση Microsoft Windows®"
-#: fs/partitioning_wizard.pm:176
+#: fs/partitioning_wizard.pm:183
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Ποιας κατάτμησης θέλετε να αλλάξετε το μέγεθος;"
-#: fs/partitioning_wizard.pm:179
+#: fs/partitioning_wizard.pm:186
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
@@ -2611,12 +2617,12 @@ msgstr ""
"Παρακαλώ επανεκκινήστε τον υπολογιστή σας σε Microsoft Windows®, εκτελέστε "
"το εργαλείο ανασυγκρότησης, και έπειτα επανεκκινήστε την εγκατάσταση της %s."
-#: fs/partitioning_wizard.pm:186
+#: fs/partitioning_wizard.pm:193
#, c-format
msgid "Failed to find the partition to resize (%d choices)"
msgstr "Αποτυχία εύρεσης της κατάτμησης για αλλαγή του μεγέθους (%d επιλογές)"
-#: fs/partitioning_wizard.pm:193
+#: fs/partitioning_wizard.pm:200
#, c-format
msgid ""
"WARNING!\n"
@@ -2654,56 +2660,56 @@ msgstr ""
"Εάν είστε σίγουρος/η, πάτησε %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:196 fs/partitioning_wizard.pm:558
+#: fs/partitioning_wizard.pm:209 fs/partitioning_wizard.pm:583
#: interactive.pm:674 interactive/curses.pm:270 ugtk2.pm:519 ugtk3.pm:595
#, c-format
msgid "Next"
msgstr "Επόμενο"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Partitionning"
msgstr "Τμηματοποίηση"
-#: fs/partitioning_wizard.pm:202
+#: fs/partitioning_wizard.pm:215
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Τι μέγεθος θέλετε να διαθέσετε για τα Microsoft Windows® στην κατάτμηση %s;"
-#: fs/partitioning_wizard.pm:203
+#: fs/partitioning_wizard.pm:216
#, c-format
msgid "Size"
msgstr "Μέγεθος"
-#: fs/partitioning_wizard.pm:212
+#: fs/partitioning_wizard.pm:225
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Αλλαγή μεγέθους της κατάτμησης Microsoft Windows® σε εξέλιξη"
-#: fs/partitioning_wizard.pm:217
+#: fs/partitioning_wizard.pm:230
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Η αλλαγή μεγέθους της κατάτμησης FAT απέτυχε: %s"
-#: fs/partitioning_wizard.pm:233
+#: fs/partitioning_wizard.pm:246
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Δεν υπάρχει κατάτμηση FAT για να γίνει αλλαγή μεγέθους (ή δεν υπάρχει "
"αρκετός διαθέσιμος χώρος)"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Αφαίρεση των Microsoft Windows®"
-#: fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:251
#, c-format
msgid "Erase and use entire disk"
msgstr "Διαγραφή και χρήση ολόκληρου του δίσκου"
-#: fs/partitioning_wizard.pm:242
+#: fs/partitioning_wizard.pm:255
#, c-format
msgid ""
"You have more than one hard disk drive, which one do you want the installer "
@@ -2712,23 +2718,23 @@ msgstr ""
"Έχετε περισσότερους από έναν δίσκους, ποιόν θέλετε να χρησιμοποιήσει ο "
"εγκαταστάτης;"
-#: fs/partitioning_wizard.pm:250 fsedit.pm:642
+#: fs/partitioning_wizard.pm:263 fsedit.pm:648
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"ΟΛΕΣ οι υπάρχουσες κατατμήσεις και τα δεδομένα τους στον δίσκο %s θα χαθούν"
-#: fs/partitioning_wizard.pm:260
+#: fs/partitioning_wizard.pm:273
#, c-format
msgid "Custom disk partitioning"
msgstr "Προσαρμοσμένη κατάτμηση του δίσκου"
-#: fs/partitioning_wizard.pm:266
+#: fs/partitioning_wizard.pm:279
#, c-format
msgid "Use fdisk"
msgstr "Χρήση fdisk"
-#: fs/partitioning_wizard.pm:269
+#: fs/partitioning_wizard.pm:282
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -2738,45 +2744,45 @@ msgstr ""
"Όταν θα έχετε τελειώσει, μην ξεχάσετε να αποθηκεύσετε τις τροποποιήσεις "
"πατώντας στο πλήκτρο «w»"
-#: fs/partitioning_wizard.pm:402
+#: fs/partitioning_wizard.pm:425
#, c-format
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:432 fs/partitioning_wizard.pm:578
+#: fs/partitioning_wizard.pm:455 fs/partitioning_wizard.pm:603
#, c-format
msgid "I cannot find any room for installing"
msgstr "Δεν μπορώ να βρω διαθέσιμο χώρο για την εγκατάσταση"
-#: fs/partitioning_wizard.pm:441 fs/partitioning_wizard.pm:585
+#: fs/partitioning_wizard.pm:464 fs/partitioning_wizard.pm:610
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ο οδηγός κατάτμησης DrakX βρήκε τις παρακάτω λύσεις:"
-#: fs/partitioning_wizard.pm:511
+#: fs/partitioning_wizard.pm:534
#, c-format
msgid "Here is the content of your disk drive "
msgstr "Εδώ είναι το περιεχόμενο του δίσκου σας"
-#: fs/partitioning_wizard.pm:596
+#: fs/partitioning_wizard.pm:621
#, c-format
msgid "Partitioning failed: %s"
msgstr "Η κατάτμηση απέτυχε: %s "
-#: fs/type.pm:369
+#: fs/type.pm:372
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε το JFS για κατατμήσεις μικρότερες από 16MB"
-#: fs/type.pm:370
+#: fs/type.pm:373
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε το ReiserFS για κατατμήσεις μικρότερες από "
"32MB"
-#: fs/type.pm:371
+#: fs/type.pm:374
#, c-format
msgid "You cannot use btrfs for partitions smaller than 256MB"
msgstr ""
@@ -2822,23 +2828,23 @@ msgstr ""
"\n"
"Συμφωνείτε να διαγραφούν όλες οι κατατμήσεις;\n"
-#: fsedit.pm:437
+#: fsedit.pm:440
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Τα σημεία προσάρτησης πρέπει να ξεκινούν με /"
-#: fsedit.pm:438
+#: fsedit.pm:441
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
"Τα σημεία προσάρτησης θα πρέπει να περιέχουν μόνο αλφαριθμητικούς χαρακτήρες"
-#: fsedit.pm:439
+#: fsedit.pm:442
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Υπάρχει ήδη μία κατάτμηση με το σημείο προσάρτησης %s\n"
-#: fsedit.pm:444
+#: fsedit.pm:447
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
@@ -2851,7 +2857,7 @@ msgstr ""
"κατάτμηση /boot.\n"
"Παρακαλώ σιγουρευτείτε για την προσθήκη μιας κατάτμησης /boot"
-#: fsedit.pm:450
+#: fsedit.pm:453
#, c-format
msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
@@ -2860,7 +2866,7 @@ msgstr ""
"Η έκδοση μεταδεδομένων δεν υποστηρίζεται για μια κατάτμηση εκκίνησης. "
"Παρακαλώ βεβαιωθείτε για την προσθήκη μιας κατάτμησης /boot."
-#: fsedit.pm:458
+#: fsedit.pm:461
#, c-format
msgid ""
"You've selected a software RAID partition as /boot.\n"
@@ -2869,12 +2875,12 @@ msgstr ""
"Έχετε επιλέξει μια κατάτμηση με RAID λογισμικού ως /boot.\n"
"Κανένα πρόγραμμα εκκίνησης δεν υποστηρίζει αυτή τη διαμόρφωση."
-#: fsedit.pm:462
+#: fsedit.pm:465
#, c-format
msgid "Metadata version unsupported for a boot partition."
msgstr "Η έκδοση μεταδεδομενων δεν υποστηρίζεται για μια κατάτμηση εκκίνησης."
-#: fsedit.pm:469
+#: fsedit.pm:472
#, c-format
msgid ""
"You've selected an encrypted partition as root (/).\n"
@@ -2886,14 +2892,14 @@ msgstr ""
"κατάτμηση /boot.\n"
"Παρακαλώ βεβαιωθείτε για την προσθήκη μιας ξεχωριστής κατάτμησης /boot"
-#: fsedit.pm:475 fsedit.pm:493
+#: fsedit.pm:478 fsedit.pm:496
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε ένα κρυπτογραφημένο σύστημα αρχείων για το "
"σημείο προσάρτησης %s"
-#: fsedit.pm:479
+#: fsedit.pm:482
#, c-format
msgid ""
"You cannot use the LVM Logical Volume for mount point %s since it spans "
@@ -2902,7 +2908,7 @@ msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε το φυσικό τομέα LVM ως σημείο προσάρτησης %s "
"καθώς είναι διαχωρισμένο σε περισσότερους φυσικούς τόμους"
-#: fsedit.pm:481
+#: fsedit.pm:484
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
@@ -2915,12 +2921,12 @@ msgstr ""
"διαχωρισμένος σε περισσότερους φυσικούς τόμους.\n"
"Πρέπει πρώτα να δημιουργήσετε μια ξεχωριστή κατάτμηση /boot."
-#: fsedit.pm:485 fsedit.pm:487
+#: fsedit.pm:488 fsedit.pm:490
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Αυτός ο κατάλογος πρέπει να παραμείνει στη ριζική κατάτμηση"
-#: fsedit.pm:489 fsedit.pm:491
+#: fsedit.pm:492 fsedit.pm:494
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -2929,14 +2935,14 @@ msgstr ""
"Χρειάζεστε ένα πραγματικό σύστημα αρχείων (ext2/3/4, reiserfs, xfs, ή jfs) "
"για αυτό το σημείο προσάρτησης\n"
-#: fsedit.pm:558
+#: fsedit.pm:562
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
"Δεν υπάρχει αρκετός ελεύθερος χώρος για την αυτόματη δημιουργία νέων "
"κατατμήσεων"
-#: fsedit.pm:560
+#: fsedit.pm:564
#, c-format
msgid "Nothing to do"
msgstr "Καμία ενέργεια προς εκτέλεση"
@@ -2946,238 +2952,238 @@ msgstr "Καμία ενέργεια προς εκτέλεση"
msgid "SATA controllers"
msgstr "Ελεγκτές SATA"
-#: harddrake/data.pm:71
+#: harddrake/data.pm:72
#, c-format
msgid "RAID controllers"
msgstr "Ελεγκτές RAID"
-#: harddrake/data.pm:81
+#: harddrake/data.pm:82
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Ελεγκτές (E)IDE/ATA"
-#: harddrake/data.pm:92
+#: harddrake/data.pm:93
#, c-format
msgid "Card readers"
msgstr "Αναγνώστες καρτών"
-#: harddrake/data.pm:101
+#: harddrake/data.pm:102
#, c-format
msgid "Firewire controllers"
msgstr "Ελεγκτές Firewire"
-#: harddrake/data.pm:110
+#: harddrake/data.pm:111
#, c-format
msgid "PCMCIA controllers"
msgstr "Ελεγκτές PCMCIA"
-#: harddrake/data.pm:119
+#: harddrake/data.pm:120
#, c-format
msgid "SCSI controllers"
msgstr "Ελεγκτές SCSI"
-#: harddrake/data.pm:128
+#: harddrake/data.pm:129
#, c-format
msgid "USB controllers"
msgstr "Ελεγκτές USB"
-#: harddrake/data.pm:137
+#: harddrake/data.pm:138
#, c-format
msgid "USB ports"
msgstr "Θύρες USB"
-#: harddrake/data.pm:146
+#: harddrake/data.pm:147
#, c-format
msgid "SMBus controllers"
msgstr "Ελεγκτές SMBus"
-#: harddrake/data.pm:155
+#: harddrake/data.pm:156
#, c-format
msgid "Bridges and system controllers"
msgstr "Γέφυρες και ελεγκτές συστήματος"
-#: harddrake/data.pm:167
+#: harddrake/data.pm:168
#, c-format
msgid "Floppy"
msgstr "Δισκέτα"
-#: harddrake/data.pm:177
+#: harddrake/data.pm:178
#, c-format
msgid "Zip"
msgstr "Zip"
-#: harddrake/data.pm:193
+#: harddrake/data.pm:194
#, c-format
msgid "Hard Disk"
msgstr "Σκληρός δίσκος"
-#: harddrake/data.pm:203
+#: harddrake/data.pm:204
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB συσκευές μαζικής αποθήκευσης"
-#: harddrake/data.pm:212
+#: harddrake/data.pm:213
#, c-format
msgid "CDROM"
msgstr "CDROM"
-#: harddrake/data.pm:222
+#: harddrake/data.pm:223
#, c-format
msgid "CD/DVD burners"
msgstr "Συσκευές εγγραφής CD/DVD"
-#: harddrake/data.pm:232
+#: harddrake/data.pm:233
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"
-#: harddrake/data.pm:242
+#: harddrake/data.pm:243
#, c-format
msgid "Tape"
msgstr "Μαγνητοταινία"
-#: harddrake/data.pm:253
+#: harddrake/data.pm:254
#, c-format
msgid "AGP controllers"
msgstr "Ελεγκτές AGP"
-#: harddrake/data.pm:262
+#: harddrake/data.pm:263
#, c-format
msgid "Videocard"
msgstr "Κάρτα γραφικών"
-#: harddrake/data.pm:271
+#: harddrake/data.pm:272
#, c-format
msgid "DVB card"
msgstr "Κάρτα DVB"
-#: harddrake/data.pm:279
+#: harddrake/data.pm:280
#, c-format
msgid "Tvcard"
msgstr "Κάρτα TV"
-#: harddrake/data.pm:289
+#: harddrake/data.pm:290
#, c-format
msgid "Other MultiMedia devices"
msgstr "Άλλα συσκευές Πολυμέσων"
-#: harddrake/data.pm:298
+#: harddrake/data.pm:299
#, c-format
msgid "Soundcard"
msgstr "Κάρτα ήχου"
-#: harddrake/data.pm:312
+#: harddrake/data.pm:313
#, c-format
msgid "Webcam"
msgstr "Κάμερα"
-#: harddrake/data.pm:327
+#: harddrake/data.pm:328
#, c-format
msgid "Processors"
msgstr "Επεξεργαστές"
-#: harddrake/data.pm:337
+#: harddrake/data.pm:338
#, c-format
msgid "ISDN adapters"
msgstr "Κάρτες ISDN"
-#: harddrake/data.pm:348
+#: harddrake/data.pm:349
#, c-format
msgid "USB sound devices"
msgstr "Συσκευές ήχου USB"
-#: harddrake/data.pm:357
+#: harddrake/data.pm:358
#, c-format
msgid "Radio cards"
msgstr "Κάρτες ραδιοφώνου"
-#: harddrake/data.pm:366
+#: harddrake/data.pm:367
#, c-format
msgid "ATM network cards"
msgstr "Κάρτες δικτύου ATM"
-#: harddrake/data.pm:375
+#: harddrake/data.pm:376
#, c-format
msgid "WAN network cards"
msgstr "Κάρτες δικτύου WAN"
-#: harddrake/data.pm:384
+#: harddrake/data.pm:385
#, c-format
msgid "Bluetooth devices"
msgstr "Συσκευές Bluetooth"
-#: harddrake/data.pm:393
+#: harddrake/data.pm:394
#, c-format
msgid "Ethernetcard"
msgstr "Κάρτα ethernet"
-#: harddrake/data.pm:410
+#: harddrake/data.pm:412
#, c-format
msgid "Modem"
msgstr "Μόντεμ"
-#: harddrake/data.pm:420
+#: harddrake/data.pm:422
#, c-format
msgid "ADSL adapters"
msgstr "Μόντεμ ADSL"
-#: harddrake/data.pm:432
+#: harddrake/data.pm:434
#, c-format
msgid "Memory"
msgstr "Μνήμη"
-#: harddrake/data.pm:441
+#: harddrake/data.pm:443
#, c-format
msgid "Printer"
msgstr "Εκτυπωτής"
#. -PO: these are joysticks controllers:
-#: harddrake/data.pm:455
+#: harddrake/data.pm:457
#, c-format
msgid "Game port controllers"
msgstr "Ελεγκτές χειριστηρίων"
-#: harddrake/data.pm:464
+#: harddrake/data.pm:466
#, c-format
msgid "Joystick"
msgstr "Χειριστήριο"
-#: harddrake/data.pm:474
+#: harddrake/data.pm:476
#, c-format
msgid "Keyboard"
msgstr "Πληκτρολόγιο"
-#: harddrake/data.pm:488
+#: harddrake/data.pm:490
#, c-format
msgid "Tablet and touchscreen"
msgstr "Ταμπλέτες και οθόνες αφής"
-#: harddrake/data.pm:497
+#: harddrake/data.pm:499
#, c-format
msgid "Mouse"
msgstr "Ποντίκι"
-#: harddrake/data.pm:512
+#: harddrake/data.pm:514
#, c-format
msgid "Biometry"
msgstr "Βιομετρία"
-#: harddrake/data.pm:520
+#: harddrake/data.pm:522
#, c-format
msgid "UPS"
msgstr "UPS"
-#: harddrake/data.pm:529
+#: harddrake/data.pm:531
#, c-format
msgid "Scanner"
msgstr "Σαρωτής"
-#: harddrake/data.pm:540
+#: harddrake/data.pm:542
#, c-format
msgid "Unknown/Others"
msgstr "Άγνωστα/Άλλα"
-#: harddrake/data.pm:570
+#: harddrake/data.pm:572
#, c-format
msgid "cpu # "
msgstr "επεξεργαστής # "
@@ -3236,7 +3242,7 @@ msgstr ""
msgid "Sound configuration"
msgstr "Ρύθμιση του ήχου"
-#. -PO: here the first %s is either "ALSA",
+#. -PO: here the first %s is either "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:167
@@ -3490,19 +3496,19 @@ msgstr "Τύπος δέκτη:"
#: interactive.pm:119 interactive.pm:674 interactive/curses.pm:270
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
-#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
-#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:910 ugtk3.pm:933
+#: mygtk3.pm:899 ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:810 ugtk2.pm:833
+#: ugtk3.pm:509 ugtk3.pm:595 ugtk3.pm:908 ugtk3.pm:931
#, c-format
msgid "Ok"
msgstr "Εντάξει"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ναι"
-#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:811 ugtk3.pm:909
+#: interactive.pm:219 modules/interactive.pm:72 ugtk2.pm:809 ugtk3.pm:907
#: wizards.pm:156
#, c-format
msgid "No"
@@ -3533,22 +3539,22 @@ msgstr "Τέλος"
msgid "Previous"
msgstr "Προηγούμενο"
-#: interactive/curses.pm:576 ugtk2.pm:872 ugtk3.pm:970
+#: interactive/curses.pm:576 ugtk2.pm:870 ugtk3.pm:968
#, c-format
msgid "No file chosen"
msgstr "Δεν έχει επιλέγει κάποιο αρχείο"
-#: interactive/curses.pm:580 ugtk2.pm:876 ugtk3.pm:974
+#: interactive/curses.pm:580 ugtk2.pm:874 ugtk3.pm:972
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Έχετε επιλέξει έναν κατάλογο, όχι ένα αρχείο"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such directory"
msgstr "Δεν υπάρχει τέτοιος κατάλογος"
-#: interactive/curses.pm:582 ugtk2.pm:878 ugtk3.pm:976
+#: interactive/curses.pm:582 ugtk2.pm:876 ugtk3.pm:974
#, c-format
msgid "No such file"
msgstr "Δεν υπάρχει τέτοιο αρχείο"
@@ -4831,7 +4837,7 @@ msgstr "Ζάμπια"
msgid "Zimbabwe"
msgstr "Ζιμπάμπουε"
-#: lang.pm:1509
+#: lang.pm:1511
#, c-format
msgid "Welcome to %s"
msgstr "Καλώς ήλθατε στο %s"
@@ -5508,9 +5514,9 @@ msgid "Allow direct root login."
msgstr "Να επιτρέπεται η απευθείας σύνδεση υπερχρήστη."
#: security/help.pm:33
-#, c-format
+#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (sddm and gdm)."
+"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Να επιτρέπεται η προβολή της λίστας με τους χρήστες, στους διαχειριστές "
"σύνδεσης (sddm και gdm)."
@@ -5895,8 +5901,8 @@ msgid "Direct root login"
msgstr "Άμεση σύνδεση root"
#: security/l10n.pm:19
-#, c-format
-msgid "List users on display managers (sddm and gdm)"
+#, fuzzy, c-format
+msgid "List users on display managers (kdm and gdm)"
msgstr "Εμφάνιση των χρηστών στους διαχειριστές σύνδεσης (sddm και gdm)"
#: security/l10n.pm:20
@@ -7163,17 +7169,17 @@ msgstr "Ρωσική Ομοσπονδία"
msgid "Yugoslavia"
msgstr "Γιουγκοσλαβία"
-#: ugtk2.pm:812 ugtk3.pm:910
+#: ugtk2.pm:810 ugtk3.pm:908
#, c-format
msgid "Is this correct?"
msgstr "Σωστό;"
-#: ugtk2.pm:874 ugtk3.pm:972
+#: ugtk2.pm:872 ugtk3.pm:970
#, c-format
msgid "You have chosen a file, not a directory"
msgstr "Έχετε επιλέξει ένα αρχείο, όχι έναν κατάλογο"
-#: ugtk2.pm:924 ugtk3.pm:1022
+#: ugtk2.pm:922 ugtk3.pm:1020
#, c-format
msgid "Info"
msgstr "Πληροφορίες"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index a46c5b591..b2986f9c8 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2015-05-13 20:35+0200\n"
+"POT-Creation-Date: 2016-01-02 14:54+0100\n"
"PO-Revision-Date: 2015-05-26 19:01+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/mageia/"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:258 any.pm:925 diskdrake/interactive.pm:642
+#: any.pm:262 any.pm:970 diskdrake/interactive.pm:642
#: diskdrake/interactive.pm:866 diskdrake/interactive.pm:928
#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1278
#: diskdrake/interactive.pm:1336 do_pkgs.pm:342 do_pkgs.pm:387
@@ -27,12 +27,12 @@ msgstr ""
msgid "Please wait"
msgstr "Bonvole atendu"
-#: any.pm:258
+#: any.pm:262
#, c-format
msgid "Bootloader installation in progress"
msgstr ""
-#: any.pm:269
+#: any.pm:273
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -43,12 +43,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:280
+#: any.pm:284
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalado de startŝargilo malsukcesis. La sekvanta eraro okazis:"
-#: any.pm:320
+#: any.pm:324
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -63,218 +63,218 @@ msgstr ""
"\n"
"En kiu drajvo vi startigas?"
-#: any.pm:331
+#: any.pm:335
#, c-format
msgid "Bootloader Installation"
msgstr ""
-#: any.pm:335
+#: any.pm:339
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kie vi deziras instali la startŝargilon?"
-#: any.pm:351
+#: any.pm:355
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:353
+#: any.pm:357
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Unu sektoro de drajvo (ĈefStartRikordo)"
-#: any.pm:355
+#: any.pm:359
#, c-format
msgid "First sector of the root partition"
msgstr "Unua sektoro de radika subdisko"
-#: any.pm:357
+#: any.pm:361
#, c-format
msgid "On Floppy"
msgstr "Sur disketo"
-#: any.pm:359 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
+#: any.pm:363 pkgs.pm:289 ugtk2.pm:526 ugtk3.pm:602
#, c-format
msgid "Skip"
msgstr "Ellasu"
-#: any.pm:387
+#: any.pm:391
#, c-format
msgid "Boot Style Configuration"
msgstr ""
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "Bootloader main options"
msgstr "Startŝargilo ĉefaj opcioj"
-#: any.pm:405
+#: any.pm:409
#, c-format
msgid "Bootloader"
msgstr "Startŝargilo"
-#: any.pm:406
+#: any.pm:410
#, c-format
msgid "Bootloader to use"
msgstr "Startŝargilo por uzi"
-#: any.pm:409
+#: any.pm:413
#, c-format
msgid "Boot device"
msgstr "Starta aparato"
-#: any.pm:412
+#: any.pm:416
#, c-format
msgid "Main options"
msgstr "Ĉefaj opcioj"
-#: any.pm:413
+#: any.pm:417
#, c-format
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo antaŭ starti defaŭltan sistemon"
-#: any.pm:414
+#: any.pm:418
#, c-format
msgid "Enable ACPI"
msgstr "Ebligu ACPI"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Enable SMP"
msgstr ""
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Enable APIC"
msgstr ""
-#: any.pm:418
+#: any.pm:422
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:419 security/level.pm:63
+#: any.pm:423 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sekureco"
-#: any.pm:420 any.pm:853 any.pm:872 authentication.pm:249
+#: any.pm:424 any.pm:898 any.pm:917 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasvorto"
-#: any.pm:423 authentication.pm:260
+#: any.pm:427 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
-#: any.pm:423 authentication.pm:260 diskdrake/interactive.pm:1502
+#: any.pm:427 authentication.pm:260 diskdrake/interactive.pm:1502
#, c-format
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: any.pm:425
+#: any.pm:429
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:429 any.pm:856 any.pm:874 authentication.pm:250
+#: any.pm:433 any.pm:901 any.pm:919 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasvorto (denove)"
-#: any.pm:494
+#: any.pm:498
#, c-format
msgid "Image"
msgstr "Kerna bildo"
-#: any.pm:495 any.pm:507
+#: any.pm:499 any.pm:511
#, c-format
msgid "Root"
msgstr "Radiko"
-#: any.pm:496
+#: any.pm:500 any.pm:636
#, c-format
msgid "Append"
msgstr "Alfiksu"
-#: any.pm:498
+#: any.pm:502
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:500
+#: any.pm:504
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:501
+#: any.pm:505 any.pm:637
#, c-format
msgid "Video mode"
msgstr "Grafika reĝimo"
-#: any.pm:502
+#: any.pm:506
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:503
+#: any.pm:507
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:511 diskdrake/interactive.pm:411
+#: any.pm:515 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etikedo"
-#: any.pm:513 harddrake/v4l.pm:438
+#: any.pm:517 any.pm:634 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Defaŭlta"
-#: any.pm:521
+#: any.pm:525
#, c-format
msgid "Empty label not allowed"
msgstr "Malplena etikedo ne estas permesata"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a kernel image"
msgstr "Vi devas decidi pri kerno-bildo"
-#: any.pm:522
+#: any.pm:526
#, c-format
msgid "You must specify a root partition"
msgstr "Vi devas difini radikan (root) subdiskon"
-#: any.pm:523
+#: any.pm:527
#, c-format
msgid "This label is already used"
msgstr "Ĉi tiu etikedo estas jam uzata"
-#: any.pm:541
+#: any.pm:545
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Linux"
msgstr "Linukso"
-#: any.pm:542
+#: any.pm:546
#, c-format
msgid "Other OS (Windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: any.pm:589
+#: any.pm:593 any.pm:631
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:590
+#: any.pm:594
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -283,194 +283,194 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn."
-#: any.pm:812
+#: any.pm:857
#, c-format
msgid "access to X programs"
msgstr "aliro al X-programoj"
-#: any.pm:813
+#: any.pm:858
#, c-format
msgid "access to rpm tools"
msgstr "aliro al rpm-iloj"
-#: any.pm:814
+#: any.pm:859
#, c-format
msgid "allow \"su\""
msgstr "permesu \"su\""
-#: any.pm:815
+#: any.pm:860
#, c-format
msgid "access to administrative files"
msgstr "aliro al administraj dosieroj"
-#: any.pm:816
+#: any.pm:861
#, c-format
msgid "access to network tools"
msgstr "aliro al retiloj"
-#: any.pm:817
+#: any.pm:862
#, c-format
msgid "access to compilation tools"
msgstr "aliro al kompililoj"
-#: any.pm:823
+#: any.pm:868
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: any.pm:829
+#: any.pm:874
#, c-format
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: any.pm:830
+#: any.pm:875
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:831
+#: any.pm:876
#, c-format
msgid "The user name is too long"
msgstr "Ĉi tiu salutnomo estas tro longa"
-#: any.pm:832
+#: any.pm:877
#, c-format
msgid "This user name has already been added"
msgstr "Ĉi tiu salutnomo estas jam aldonita"
-#: any.pm:838 any.pm:876
+#: any.pm:883 any.pm:921
#, c-format
msgid "User ID"
msgstr "Uzula ID"
-#: any.pm:838 any.pm:877
+#: any.pm:883 any.pm:922
#, c-format
msgid "Group ID"
msgstr "Grupa ID"
-#: any.pm:839
+#: any.pm:884
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:840
+#: any.pm:885
#, c-format
msgid "%s should be above 1000. Accept anyway?"
msgstr ""
-#: any.pm:844
+#: any.pm:889
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:850
+#: any.pm:895
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:852 authentication.pm:236
+#: any.pm:897 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:858
+#: any.pm:903
#, c-format
msgid "Enter a user"
msgstr "Enigo de uzulo (Enter a user)"
-#: any.pm:860
+#: any.pm:905
#, c-format
msgid "Icon"
msgstr "Piktogramo"
-#: any.pm:863
+#: any.pm:908
#, c-format
msgid "Real name"
msgstr "Vera nomo"
-#: any.pm:870
+#: any.pm:915
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:875
+#: any.pm:920
#, c-format
msgid "Shell"
msgstr "Ŝelo"
-#: any.pm:925
+#: any.pm:970
#, c-format
msgid "Please wait, adding media..."
msgstr "Bonvole atendu, mi aldonas datumportilon..."
-#: any.pm:958 security/l10n.pm:14
+#: any.pm:1003 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Aŭtomata-enregistrado"
-#: any.pm:959
+#: any.pm:1004
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mi povas konfiguri vian komputilon por aŭtomate enirigi unu uzulon"
-#: any.pm:960
+#: any.pm:1005
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:961
+#: any.pm:1006
#, c-format
msgid "Choose the default user:"
msgstr "Elektu la defaŭltan uzulon:"
-#: any.pm:962
+#: any.pm:1007
#, c-format
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanĉi:"
-#: any.pm:973 any.pm:987 any.pm:1056
+#: any.pm:1018 any.pm:1032 any.pm:1101
#, c-format
msgid "Release Notes"
msgstr "Publikig-notoj"
-#: any.pm:994 any.pm:1349 interactive/gtk.pm:820
+#: any.pm:1039 any.pm:1394 interactive/gtk.pm:820
#, c-format
msgid "Close"
msgstr "Malfermu"
-#: any.pm:1042
+#: any.pm:1087
#, c-format
msgid "License agreement"
msgstr "Licenca kontrakto"
-#: any.pm:1044 diskdrake/dav.pm:26 mygtk2.pm:1229 mygtk3.pm:1283
+#: any.pm:1089 diskdrake/dav.pm:27 mygtk2.pm:1229 mygtk3.pm:1283
#, c-format
msgid "Quit"
msgstr "Ĉesu"
-#: any.pm:1051
+#: any.pm:1096
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Accept"
msgstr "Akceptu"
-#: any.pm:1052
+#: any.pm:1097
#, c-format
msgid "Refuse"
msgstr "Malakceptu"
-#: any.pm:1078 any.pm:1141
+#: any.pm:1123 any.pm:1186
#, c-format
msgid "Please choose a language to use"
msgstr "Bonvole elektu lingvon por uzi"
-#: any.pm:1106
+#: any.pm:1151
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -478,87 +478,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1108 fs/partitioning_wizard.pm:179
+#: any.pm:1153 fs/partitioning_wizard.pm:186
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1109
+#: any.pm:1154
#, c-format